Skip to content

Instantly share code, notes, and snippets.

@tadglines
Forked from yansal/README.md
Last active August 29, 2015 14:08
Show Gist options
  • Save tadglines/76a9c967738a50d6bd5f to your computer and use it in GitHub Desktop.
Save tadglines/76a9c967738a50d6bd5f to your computer and use it in GitHub Desktop.

https://www.hackerrank.com/challenges/the-grid-search

Build

$ cc -O2 -o c main.c
$ go build -o go main.go

Run

$ time ./c < z.txt
$ time python main.py < z.txt
$ time ./go < z.txt

Results on my machine

./c < z.txt  0.03s user 0.01s system 94% cpu 0.045 total
python main.py < z.txt  0.10s user 0.00s system 73% cpu 0.133 total
./go < z.txt  0.45s user 0.01s system 99% cpu 0.464 total
#include <stdio.h>
#include <string.h>
typedef enum { false, true } bool;
int main() {
int T, i;
if (scanf("%d", &T) != 1)
return 1;
for (i = 0; i < T; i++) {
int j;
char fmt[10];
/* Read grid */
int R, C;
if (scanf("%d%d\n", &R, &C) != 2)
return 1;
char grid[R][C+1];
sprintf(fmt, "%%%ds", C);
for (j = 0; j < R; j++)
if (scanf(fmt, grid[j]) != 1)
return 1;
/* Read pattern */
int r, c;
if (scanf("%d%d\n", &r, &c) != 2)
return 1;
char pat[r][c+1];
sprintf(fmt, "%%%ds", c);
for (j = 0; j < r; j++)
if (scanf(fmt, pat[j]) != 1)
return 1;
/* Find pattern in grid */
bool found = false;
for (j = 0; j < R-r+1; j++) {
int k;
for (k = 0; k < r; k++) {
char *index = strstr(grid[j+k], pat[k]);
if (index == NULL)
break;
else if (k == r-1)
found = true;
}
if (found) {
printf("YES\n");
break;
}
}
if (!found)
printf("NO\n");
}
return 0;
}
package main
import (
"bufio"
"fmt"
"os"
"strings"
)
func main() {
in := bufio.NewReader(os.Stdin)
var T int
fmt.Fscanf(in, "%d\n", &T)
for t := 0; t < T; t++ {
var R, C int
fmt.Fscanf(in, "%d %d\n", &R, &C)
G := make([]string, R)
for i := range G {
G[i], _ = in.ReadString('\n')
G[i] = G[i][0 : len(G[i])-1]
}
var r, c int
fmt.Fscanf(in, "%d %d\n", &r, &c)
P := make([]string, r)
for i := range P {
P[i], _ = in.ReadString('\n')
P[i] = P[i][0 : len(P[i])-1]
}
found := false
for i := 0; i < R-r+1; i++ {
for j := 0; j < r; j++ {
index := strings.Index(G[i+j], P[j])
if index == -1 {
break
} else if j == r-1 {
found = true
}
}
if found {
fmt.Println("YES")
break
}
}
if !found {
fmt.Println("NO")
}
}
}
T = int(raw_input())
for _ in range(T):
inp = raw_input().split()
R = int(inp[0])
C = int(inp[1])
grid = []
for _ in range(R):
grid.append(raw_input())
inp = raw_input().split()
r = int(inp[0])
c = int(inp[1])
pat = []
for _ in range(r):
pat.append(raw_input())
found = False
for i in range(0, R-r+1):
for j in range(r):
index = grid[i+j].find(pat[j])
if index == -1:
break
elif j == r-1:
found = True
if found:
print "YES"
break
if not found:
print "NO"
Display the source blob
Display the rendered blob
Raw
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Generated by graphviz version 2.36.0 (20140111.2315)
-->
<!-- Title: go; 43 samples Pages: 1 -->
<svg width="100%" height="100%" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" onmouseup="handleMouseUp(evt)" onmousedown="handleMouseDown(evt)" onmousemove="handleMouseMove(evt)">
<script type="text/ecmascript"><![CDATA[
// SVGPan
// http://www.cyberz.org/blog/2009/12/08/svgpan-a-javascript-svg-panzoomdrag-library/
// Local modification: if(true || ...) below to force panning, never moving.
// Local modification: add clamping to fix bug in handleMouseWheel.
/**
* SVGPan library 1.2
* ====================
*
* Given an unique existing element with id "viewport", including the
* the library into any SVG adds the following capabilities:
*
* - Mouse panning
* - Mouse zooming (using the wheel)
* - Object dargging
*
* Known issues:
*
* - Zooming (while panning) on Safari has still some issues
*
* Releases:
*
* 1.2, Sat Mar 20 08:42:50 GMT 2010, Zeng Xiaohui
* Fixed a bug with browser mouse handler interaction
*
* 1.1, Wed Feb 3 17:39:33 GMT 2010, Zeng Xiaohui
* Updated the zoom code to support the mouse wheel on Safari/Chrome
*
* 1.0, Andrea Leofreddi
* First release
*
* This code is licensed under the following BSD license:
*
* Copyright 2009-2010 Andrea Leofreddi <a.leofreddi@itcharm.com>. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are
* permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this list of
* conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice, this list
* of conditions and the following disclaimer in the documentation and/or other materials
* provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY Andrea Leofreddi ``AS IS'' AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
* FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL Andrea Leofreddi OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* The views and conclusions contained in the software and documentation are those of the
* authors and should not be interpreted as representing official policies, either expressed
* or implied, of Andrea Leofreddi.
*/
var root = document.documentElement;
var state = 'none', stateTarget, stateOrigin, stateTf;
setupHandlers(root);
/**
* Register handlers
*/
function setupHandlers(root){
setAttributes(root, {
"onmouseup" : "add(evt)",
"onmousedown" : "handleMouseDown(evt)",
"onmousemove" : "handleMouseMove(evt)",
"onmouseup" : "handleMouseUp(evt)",
//"onmouseout" : "handleMouseUp(evt)", // Decomment this to stop the pan functionality when dragging out of the SVG element
});
if(navigator.userAgent.toLowerCase().indexOf('webkit') >= 0)
window.addEventListener('mousewheel', handleMouseWheel, false); // Chrome/Safari
else
window.addEventListener('DOMMouseScroll', handleMouseWheel, false); // Others
var g = svgDoc.getElementById("svg");
g.width = "100%";
g.height = "100%";
}
/**
* Instance an SVGPoint object with given event coordinates.
*/
function getEventPoint(evt) {
var p = root.createSVGPoint();
p.x = evt.clientX;
p.y = evt.clientY;
return p;
}
/**
* Sets the current transform matrix of an element.
*/
function setCTM(element, matrix) {
var s = "matrix(" + matrix.a + "," + matrix.b + "," + matrix.c + "," + matrix.d + "," + matrix.e + "," + matrix.f + ")";
element.setAttribute("transform", s);
}
/**
* Dumps a matrix to a string (useful for debug).
*/
function dumpMatrix(matrix) {
var s = "[ " + matrix.a + ", " + matrix.c + ", " + matrix.e + "\n " + matrix.b + ", " + matrix.d + ", " + matrix.f + "\n 0, 0, 1 ]";
return s;
}
/**
* Sets attributes of an element.
*/
function setAttributes(element, attributes){
for (i in attributes)
element.setAttributeNS(null, i, attributes[i]);
}
/**
* Handle mouse move event.
*/
function handleMouseWheel(evt) {
if(evt.preventDefault)
evt.preventDefault();
evt.returnValue = false;
var svgDoc = evt.target.ownerDocument;
var delta;
if(evt.wheelDelta)
delta = evt.wheelDelta / 3600; // Chrome/Safari
else
delta = evt.detail / -90; // Mozilla
var z = 1 + delta; // Zoom factor: 0.9/1.1
// Clamp to reasonable values.
// The 0.1 check is important because
// a very large scroll can turn into a
// negative z, which rotates the image 180 degrees.
if(z < 0.1)
z = 0.1;
if(z > 10.0)
z = 10.0;
var g = svgDoc.getElementById("viewport");
var p = getEventPoint(evt);
p = p.matrixTransform(g.getCTM().inverse());
// Compute new scale matrix in current mouse position
var k = root.createSVGMatrix().translate(p.x, p.y).scale(z).translate(-p.x, -p.y);
setCTM(g, g.getCTM().multiply(k));
stateTf = stateTf.multiply(k.inverse());
}
/**
* Handle mouse move event.
*/
function handleMouseMove(evt) {
if(evt.preventDefault)
evt.preventDefault();
evt.returnValue = false;
var svgDoc = evt.target.ownerDocument;
var g = svgDoc.getElementById("viewport");
if(state == 'pan') {
// Pan mode
var p = getEventPoint(evt).matrixTransform(stateTf);
setCTM(g, stateTf.inverse().translate(p.x - stateOrigin.x, p.y - stateOrigin.y));
} else if(state == 'move') {
// Move mode
var p = getEventPoint(evt).matrixTransform(g.getCTM().inverse());
setCTM(stateTarget, root.createSVGMatrix().translate(p.x - stateOrigin.x, p.y - stateOrigin.y).multiply(g.getCTM().inverse()).multiply(stateTarget.getCTM()));
stateOrigin = p;
}
}
/**
* Handle click event.
*/
function handleMouseDown(evt) {
if(evt.preventDefault)
evt.preventDefault();
evt.returnValue = false;
var svgDoc = evt.target.ownerDocument;
var g = svgDoc.getElementById("viewport");
if(true || evt.target.tagName == "svg") {
// Pan mode
state = 'pan';
stateTf = g.getCTM().inverse();
stateOrigin = getEventPoint(evt).matrixTransform(stateTf);
} else {
// Move mode
state = 'move';
stateTarget = evt.target;
stateTf = g.getCTM().inverse();
stateOrigin = getEventPoint(evt).matrixTransform(stateTf);
}
}
/**
* Handle mouse button release event.
*/
function handleMouseUp(evt) {
if(evt.preventDefault)
evt.preventDefault();
evt.returnValue = false;
var svgDoc = evt.target.ownerDocument;
if(state == 'pan' || state == 'move') {
// Quit pan mode
state = '';
}
}
]]></script>
<g id="viewport" transform="matrix(0.27924275398254395,0,0,0.27924275398254395,1.1582536697387695,0.14325444400310516)">
<g id="viewport" class="graph" transform="scale(1 1) rotate(0) translate(4 1298)">
<title>go; 43 samples</title>
<polygon fill="white" stroke="none" points="-4,4 -4,-1298 954,-1298 954,4 -4,4"/>
<!-- Legend -->
<g id="node1" class="node"><title>Legend</title>
<text text-anchor="start" x="7" y="-1270.8" font-family="Times,serif" font-size="24.00">go</text>
<text text-anchor="start" x="7" y="-1244.8" font-family="Times,serif" font-size="24.00">Total samples: 43</text>
<text text-anchor="start" x="7" y="-1218.8" font-family="Times,serif" font-size="24.00">Focusing on: 43</text>
<text text-anchor="start" x="7" y="-1192.8" font-family="Times,serif" font-size="24.00">Dropped nodes with &lt;= 0 abs(samples)</text>
<text text-anchor="start" x="7" y="-1166.8" font-family="Times,serif" font-size="24.00">Dropped edges with &lt;= 0 samples</text>
</g>
<!-- N1 -->
<g id="node2" class="node"><title>N1</title>
<polygon fill="none" stroke="black" points="477.25,-1015.5 412.75,-1015.5 412.75,-980.5 477.25,-980.5 477.25,-1015.5"/>
<text text-anchor="middle" x="445" y="-1005.1" font-family="Times,serif" font-size="8.00">main.main</text>
<text text-anchor="end" x="469.5" y="-996.1" font-family="Times,serif" font-size="8.00">0 (0.0%)</text>
<text text-anchor="end" x="469.5" y="-987.1" font-family="Times,serif" font-size="8.00">of 43 (100.0%)</text>
</g>
<!-- N6 -->
<g id="node7" class="node"><title>N6</title>
<polygon fill="none" stroke="black" points="475.5,-920.5 414.5,-920.5 414.5,-885.5 475.5,-885.5 475.5,-920.5"/>
<text text-anchor="middle" x="445" y="-910.1" font-family="Times,serif" font-size="8.00">fmt.Fscan</text>
<text text-anchor="end" x="468" y="-901.1" font-family="Times,serif" font-size="8.00">0 (0.0%)</text>
<text text-anchor="end" x="468" y="-892.1" font-family="Times,serif" font-size="8.00">of 41 (95.3%)</text>
</g>
<!-- N1&#45;&gt;N6 -->
<g id="edge4" class="edge"><title>N1-&gt;N6</title>
<path fill="none" stroke="black" stroke-width="2" d="M445,-980.373C445,-966.705 445,-947.063 445,-931.122"/>
<polygon fill="black" stroke="black" stroke-width="2" points="448.5,-930.796 445,-920.796 441.5,-930.796 448.5,-930.796"/>
<text text-anchor="middle" x="452" y="-950.3" font-family="Times,serif" font-size="14.00">41</text>
</g>
<!-- N15 -->
<g id="node16" class="node"><title>N15</title>
<polygon fill="none" stroke="black" points="609.5,-928 494.5,-928 494.5,-878 609.5,-878 609.5,-928"/>
<text text-anchor="middle" x="552" y="-908.96" font-family="Times,serif" font-size="18.80">strings.Index</text>
<text text-anchor="end" x="602" y="-887.96" font-family="Times,serif" font-size="18.80">2 (4.7%)</text>
</g>
<!-- N1&#45;&gt;N15 -->
<g id="edge10" class="edge"><title>N1-&gt;N15</title>
<path fill="none" stroke="black" d="M464.129,-980.373C478.621,-967.778 498.947,-950.111 516.4,-934.942"/>
<polygon fill="black" stroke="black" points="518.934,-937.377 524.186,-928.175 514.342,-932.093 518.934,-937.377"/>
<text text-anchor="middle" x="504.5" y="-950.3" font-family="Times,serif" font-size="14.00">2</text>
</g>
<!-- N2 -->
<g id="node3" class="node"><title>N2</title>
<polygon fill="none" stroke="black" points="481.25,-1242.5 408.75,-1242.5 408.75,-1207.5 481.25,-1207.5 481.25,-1242.5"/>
<text text-anchor="middle" x="445" y="-1232.1" font-family="Times,serif" font-size="8.00">runtime.gosched0</text>
<text text-anchor="end" x="473.5" y="-1223.1" font-family="Times,serif" font-size="8.00">0 (0.0%)</text>
<text text-anchor="end" x="473.5" y="-1214.1" font-family="Times,serif" font-size="8.00">of 43 (100.0%)</text>
</g>
<!-- N3 -->
<g id="node4" class="node"><title>N3</title>
<polygon fill="none" stroke="black" points="477.25,-1103.5 412.75,-1103.5 412.75,-1068.5 477.25,-1068.5 477.25,-1103.5"/>
<text text-anchor="middle" x="445" y="-1093.1" font-family="Times,serif" font-size="8.00">runtime.main</text>
<text text-anchor="end" x="469.5" y="-1084.1" font-family="Times,serif" font-size="8.00">0 (0.0%)</text>
<text text-anchor="end" x="469.5" y="-1075.1" font-family="Times,serif" font-size="8.00">of 43 (100.0%)</text>
</g>
<!-- N2&#45;&gt;N3 -->
<g id="edge7" class="edge"><title>N2-&gt;N3</title>
<path fill="none" stroke="black" stroke-width="2" d="M445,-1207.47C445,-1184.23 445,-1141.61 445,-1113.8"/>
<polygon fill="black" stroke="black" stroke-width="2" points="448.5,-1113.58 445,-1103.58 441.5,-1113.58 448.5,-1113.58"/>
<text text-anchor="middle" x="452" y="-1126.3" font-family="Times,serif" font-size="14.00">43</text>
</g>
<!-- N3&#45;&gt;N1 -->
<g id="edge2" class="edge"><title>N3-&gt;N1</title>
<path fill="none" stroke="black" stroke-width="2" d="M445,-1068.42C445,-1056.28 445,-1039.56 445,-1025.58"/>
<polygon fill="black" stroke="black" stroke-width="2" points="448.5,-1025.53 445,-1015.53 441.5,-1025.53 448.5,-1025.53"/>
<text text-anchor="middle" x="452" y="-1038.3" font-family="Times,serif" font-size="14.00">43</text>
</g>
<!-- N4 -->
<g id="node5" class="node"><title>N4</title>
<polygon fill="none" stroke="black" points="480.25,-825.5 409.75,-825.5 409.75,-790.5 480.25,-790.5 480.25,-825.5"/>
<text text-anchor="middle" x="445" y="-815.1" font-family="Times,serif" font-size="8.00">fmt.(*ss).doScan</text>
<text text-anchor="end" x="472.5" y="-806.1" font-family="Times,serif" font-size="8.00">0 (0.0%)</text>
<text text-anchor="end" x="472.5" y="-797.1" font-family="Times,serif" font-size="8.00">of 41 (95.3%)</text>
</g>
<!-- N5 -->
<g id="node6" class="node"><title>N5</title>
<polygon fill="none" stroke="black" points="509,-737.5 381,-737.5 381,-678.5 509,-678.5 509,-737.5"/>
<text text-anchor="middle" x="445" y="-721.02" font-family="Times,serif" font-size="15.60">fmt.(*ss).scanOne</text>
<text text-anchor="end" x="501" y="-704.02" font-family="Times,serif" font-size="15.60">1 (2.3%)</text>
<text text-anchor="end" x="501" y="-687.02" font-family="Times,serif" font-size="15.60">of 41 (95.3%)</text>
</g>
<!-- N4&#45;&gt;N5 -->
<g id="edge13" class="edge"><title>N4-&gt;N5</title>
<path fill="none" stroke="black" stroke-width="2" d="M445,-790.376C445,-778.775 445,-762.791 445,-748.059"/>
<polygon fill="black" stroke="black" stroke-width="2" points="448.5,-747.634 445,-737.634 441.5,-747.634 448.5,-747.634"/>
<text text-anchor="middle" x="452" y="-760.3" font-family="Times,serif" font-size="14.00">41</text>
</g>
<!-- N7 -->
<g id="node8" class="node"><title>N7</title>
<polygon fill="none" stroke="black" points="491,-625.5 399,-625.5 399,-590.5 491,-590.5 491,-625.5"/>
<text text-anchor="middle" x="445" y="-615.1" font-family="Times,serif" font-size="8.00">fmt.(*ss).convertString</text>
<text text-anchor="end" x="483" y="-606.1" font-family="Times,serif" font-size="8.00">0 (0.0%)</text>
<text text-anchor="end" x="483" y="-597.1" font-family="Times,serif" font-size="8.00">of 40 (93.0%)</text>
</g>
<!-- N5&#45;&gt;N7 -->
<g id="edge6" class="edge"><title>N5-&gt;N7</title>
<path fill="none" stroke="black" stroke-width="2" d="M445,-678.391C445,-664.973 445,-649.072 445,-635.879"/>
<polygon fill="black" stroke="black" stroke-width="2" points="448.5,-635.548 445,-625.548 441.5,-635.548 448.5,-635.548"/>
<text text-anchor="middle" x="452" y="-648.3" font-family="Times,serif" font-size="14.00">40</text>
</g>
<!-- N6&#45;&gt;N4 -->
<g id="edge11" class="edge"><title>N6-&gt;N4</title>
<path fill="none" stroke="black" stroke-width="2" d="M445,-885.373C445,-871.705 445,-852.063 445,-836.122"/>
<polygon fill="black" stroke="black" stroke-width="2" points="448.5,-835.796 445,-825.796 441.5,-835.796 448.5,-835.796"/>
<text text-anchor="middle" x="452" y="-848.3" font-family="Times,serif" font-size="14.00">41</text>
</g>
<!-- N8 -->
<g id="node9" class="node"><title>N8</title>
<polygon fill="none" stroke="black" points="528.5,-538 361.5,-538 361.5,-446 528.5,-446 528.5,-538"/>
<text text-anchor="middle" x="445" y="-514" font-family="Times,serif" font-size="25.00">fmt.(*ss).token</text>
<text text-anchor="end" x="521" y="-486" font-family="Times,serif" font-size="25.00">5 (11.6%)</text>
<text text-anchor="end" x="521" y="-458" font-family="Times,serif" font-size="25.00">of 40 (93.0%)</text>
</g>
<!-- N7&#45;&gt;N8 -->
<g id="edge1" class="edge"><title>N7-&gt;N8</title>
<path fill="none" stroke="black" stroke-width="2" d="M445,-590.179C445,-579.108 445,-563.922 445,-548.845"/>
<polygon fill="black" stroke="black" stroke-width="2" points="448.5,-548.476 445,-538.476 441.5,-548.476 448.5,-548.476"/>
<text text-anchor="middle" x="452" y="-560.3" font-family="Times,serif" font-size="14.00">40</text>
</g>
<!-- N9 -->
<g id="node10" class="node"><title>N9</title>
<polygon fill="none" stroke="black" points="542.5,-394 347.5,-394 347.5,-302 542.5,-302 542.5,-394"/>
<text text-anchor="middle" x="445" y="-370" font-family="Times,serif" font-size="25.00">fmt.(*ss).getRune</text>
<text text-anchor="end" x="535" y="-342" font-family="Times,serif" font-size="25.00">5 (11.6%)</text>
<text text-anchor="end" x="535" y="-314" font-family="Times,serif" font-size="25.00">of 26 (60.5%)</text>
</g>
<!-- N8&#45;&gt;N9 -->
<g id="edge12" class="edge"><title>N8-&gt;N9</title>
<path fill="none" stroke="black" stroke-width="2" d="M445,-445.68C445,-432.615 445,-418.209 445,-404.596"/>
<polygon fill="black" stroke="black" stroke-width="2" points="448.5,-404.377 445,-394.377 441.5,-404.377 448.5,-404.377"/>
<text text-anchor="middle" x="452" y="-416.3" font-family="Times,serif" font-size="14.00">26</text>
</g>
<!-- N12 -->
<g id="node13" class="node"><title>N12</title>
<polygon fill="none" stroke="black" points="824.25,-380 561.75,-380 561.75,-316 824.25,-316 824.25,-380"/>
<text text-anchor="middle" x="693" y="-356" font-family="Times,serif" font-size="25.00">fmt.(*buffer).WriteRune</text>
<text text-anchor="end" x="816.5" y="-328" font-family="Times,serif" font-size="25.00">5 (11.6%)</text>
</g>
<!-- N8&#45;&gt;N12 -->
<g id="edge3" class="edge"><title>N8-&gt;N12</title>
<path fill="none" stroke="black" d="M523.81,-445.875C558.035,-426.278 597.582,-403.634 629.832,-385.169"/>
<polygon fill="black" stroke="black" points="631.785,-388.084 638.724,-380.077 628.307,-382.009 631.785,-388.084"/>
<text text-anchor="middle" x="579.5" y="-416.3" font-family="Times,serif" font-size="14.00">5</text>
</g>
<!-- N13 -->
<g id="node14" class="node"><title>N13</title>
<polygon fill="none" stroke="black" points="940.5,-377.5 843.5,-377.5 843.5,-318.5 940.5,-318.5 940.5,-377.5"/>
<text text-anchor="middle" x="892" y="-361.02" font-family="Times,serif" font-size="15.60">fmt.notSpace</text>
<text text-anchor="end" x="933" y="-344.02" font-family="Times,serif" font-size="15.60">1 (2.3%)</text>
<text text-anchor="end" x="933" y="-327.02" font-family="Times,serif" font-size="15.60">of 4 (9.3%)</text>
</g>
<!-- N8&#45;&gt;N13 -->
<g id="edge8" class="edge"><title>N8-&gt;N13</title>
<path fill="none" stroke="black" d="M528.58,-480.143C609.508,-467.354 734.134,-441.549 833,-394 839.084,-391.074 845.15,-387.46 850.95,-383.563"/>
<polygon fill="black" stroke="black" points="853.092,-386.334 859.228,-377.697 849.045,-380.622 853.092,-386.334"/>
<text text-anchor="middle" x="786.5" y="-416.3" font-family="Times,serif" font-size="14.00">4</text>
</g>
<!-- N10 -->
<g id="node11" class="node"><title>N10</title>
<polygon fill="none" stroke="black" points="587,-249.5 303,-249.5 303,-130.5 587,-130.5 587,-249.5"/>
<text text-anchor="middle" x="445" y="-218.86" font-family="Times,serif" font-size="33.30">fmt.(*ss).ReadRune</text>
<text text-anchor="end" x="579" y="-181.86" font-family="Times,serif" font-size="33.30">11 (25.6%)</text>
<text text-anchor="end" x="579" y="-144.86" font-family="Times,serif" font-size="33.30">of 21 (48.8%)</text>
</g>
<!-- N9&#45;&gt;N10 -->
<g id="edge5" class="edge"><title>N9-&gt;N10</title>
<path fill="none" stroke="black" stroke-width="2" d="M445,-301.878C445,-288.772 445,-274.15 445,-259.935"/>
<polygon fill="black" stroke="black" stroke-width="2" points="448.5,-259.683 445,-249.683 441.5,-259.683 448.5,-259.683"/>
<text text-anchor="middle" x="452" y="-272.3" font-family="Times,serif" font-size="14.00">21</text>
</g>
<!-- N11 -->
<g id="node12" class="node"><title>N11</title>
<polygon fill="none" stroke="black" points="625.25,-78 264.75,-78 264.75,-0 625.25,-0 625.25,-78"/>
<text text-anchor="middle" x="445" y="-48.32" font-family="Times,serif" font-size="32.10">bufio.(*Reader).ReadRune</text>
<text text-anchor="end" x="617.5" y="-13.32" font-family="Times,serif" font-size="32.10">10 (23.3%)</text>
</g>
<!-- N10&#45;&gt;N11 -->
<g id="edge9" class="edge"><title>N10-&gt;N11</title>
<path fill="none" stroke="black" stroke-width="1.39535" d="M445,-130.111C445,-116.376 445,-101.899 445,-88.6634"/>
<polygon fill="black" stroke="black" stroke-width="1.39535" points="448.5,-88.353 445,-78.3531 441.5,-88.3531 448.5,-88.353"/>
<text text-anchor="middle" x="452" y="-100.3" font-family="Times,serif" font-size="14.00">10</text>
</g>
<!-- N14 -->
<g id="node15" class="node"><title>N14</title>
<polygon fill="none" stroke="black" points="950.25,-217 833.75,-217 833.75,-163 950.25,-163 950.25,-217"/>
<text text-anchor="middle" x="892" y="-196.04" font-family="Times,serif" font-size="21.20">fmt.isSpace</text>
<text text-anchor="end" x="942.5" y="-173.04" font-family="Times,serif" font-size="21.20">3 (7.0%)</text>
</g>
<!-- N13&#45;&gt;N14 -->
<g id="edge14" class="edge"><title>N13-&gt;N14</title>
<path fill="none" stroke="black" d="M892,-318.387C892,-292.726 892,-254.951 892,-227.197"/>
<polygon fill="black" stroke="black" points="895.5,-227.097 892,-217.097 888.5,-227.097 895.5,-227.097"/>
<text text-anchor="middle" x="895.5" y="-272.3" font-family="Times,serif" font-size="14.00">3</text>
</g>
</g>
</g></svg>
This file has been truncated, but you can view the full file.
5
1000 1000
6498782399475387121046527606613597177214222340655381273728460766552492875744757160600217116858348092413213691591728694543171660010339386791760475005767956366915184839473357008642180976866575106186439018575097599714366211251242073383900111052531719174522521311619009134187995006471065492141515829802028611961379588879872687110201679354251092773726690738062168648991876481698937007120558365838349535521274103389778395615907670954620034947685707071963945090713952797993960380190470974722261410228826391083688771886547411406589346279993126367076102390216620465673022279183738913851681862024974682500088407757457144693513611478417928248424313185806222626226693132828961691858741546231647112553608092478363408849158484457596160251435416997036899345765601630481793867014597655216518304799791161301028380676849325217287370193765748871468465753210747849470873321410640037075563881417980001741192291182415881721528137470141358408689939979518829349706513214832158172210564997017978153011789556902527507236545020
6778521931360936038400216157651160887407317315339892464130643121311510557699635998820487855122089777185518953788137900259923466635269776471860064758201844129762234089808390577312887779048418588807687645759005417208402804808106954745103596498296863537164526337110319941652481791496363752520085002678880508472633143477964969536304327906091996506513344765480231831694624613851390770126333915965385938343291774955649028518739321305847844769821387062921045910302020469701702097973754910184674593102456034191844325634261883286354210868447391786554342322848590695820744417359842124820083390139035738235721967433609211164538963961919379287780644098340507880405107181258966520586290058376439314358954815100180079570506227290598983778807369315169193043159451337328879497278274656619061930456606329849744668477859420308039649960413935763516218317065610906396661978247155568063683487369311161842632793116277048715449921801840902474904125855708961316685781203361462673195713213474994879096884306346700626002989674
2188666687614282237524768477892630741891549880562419412520629606126750971239945270425912586105013978642081751818470158241443821846957826457025674133653804755142973565456423249611637180245018758857321523591134634995571640793855168186141435322312077156801904011311382745754276341294284622624417353666027281213188061716558080693833402750530444565824795883032299937399922539332932739045257067607858665581206001629419725592631147765060959170476572028139365423468919327866971552149063656466544052344926643250479823708540858789444301373457563739597442971397707987262704496589932033385723343360049860889677502979208328775793095055678925579685782344067338341779240884130819954129123685803435768909036057532481137333925906661583674670988798887512507539108246047924470976406881691086403496018794819570725057735183367114576538999179875841923847714067406481353363389144163612243050686401671191074292358336045612767331064982597518725347515809379243984325943944888964777779825693258231679064756546824798085016785709
2850574115781249646333614049554006566256000469710783301954712791930240432911473297331268788962962818323301310184670629933960614369267776688814251103069619551958485695824990623683798871536465484588410417467951391084507657962913473161544950536953611769623589801387302236842313441719360056862913141038586303075479136083995554145240249322725418104897656920165736545927040159013832079028562119678893846361841900816433429616324128160226829594060692250521721010281728396547019884853786929416672153202305472582137165268900010774801409524100730832294281860423149339003033804502782717847178407464879448387400883460369328019332517475604869375222211934424804503980607396978956096856452176963964740973643693054703672484284439998915147358864891598621701776486435422109529146331702146559245664152706117997106500229417708209418390810768361664547478409029294947207071580095941493042679933297034018925242923895071994152044338477725267113786982220361970673651136980680875611882666678225396066463629909221694990882176213
3853702564741938890059509538647068366785675342843798788997550712348843788843320267741889519318430526131335234694621070295673667939409921326082454331854438024107306968393345998793049881434130118255807352795964869872198539370487440142202027451243967188133533855102380238971597187717341897899450231408357477951554132237409215032988523364044006112003460344693713354921068557076882679304313300475417824955418235315596153166227954400704766714685910567615752296392115009708062304323705384773133015927396431045088379086961082250491104580498773215893547466611910447181121128870358863805066210787216787713053563634270645728196958870895731171464975543877924171379771072941422663549763881913977213614685547868547541373573130557114710922215767339633021145161045961890898784285501028221953677928893482372661845707414063827729082828284154985089794298391885421232648930510963761884275925694989974761162800896309698833356315862200467214253078625090280642430657483060000950757976284704541915985979005476285969590008039
1212055339993458545450536901971042639176849437168132160200352567297236272232050962752493469811246251987146145651256257406592026833097949308399180966857018636042310998694530411125231623126262531423721412668364823495265080296375808520357265130447890733190407822837936929206743515825197947664513110320923534701838812561340060933429697336646341429417025340428070892563219775635000879940977461646452140959651725871875035093495608118664254848314024624640314149840392209907867825294139015375475628408991203172844623358412630660283568043196383243934857252345849368155220902828800763030701531622161801775216710040493968642118218712191976932106990680819822741884751125181316082196813635895949649092942796782364431924986357376385847060405478310067662284732102007182492552994859752215687549054806083507947794739465826501364535800304303561866000408575763873875222953362566273189779795912777894229493842659273438734366840629127105756189164261250608888538135467137603625149773796850072628612550718682557952202799760
7029302637306353894085482307562996914272294001801277570771746453421857873412893135904784779445524545729981448338117108372607854389536642733284848074375544737157588178631814144663992831206140881778263183889692755206652986995146888348188875676679843280336586430040368717805384199028552276255852624316359624089769313740247546854317636758668791246626954007251176045711222181595396169757923160239644630907562993080990729254981721368107613646672085944355727402866882652623574988169334161086463979081982735336232490604413932991986439360849405752612214771141594919575983560592603045707912848491766998193614897711549929753354438813617615628589544370849561671518328055458028546486571592325086464973985802128970064502676017528881015778300177102160506145836568046856090517093716205731581609012639839557845686486399209344920190162235825317047714219769695940060380864979883483150301777082218770217703422591209683688557410886176222891410406118493776124425663700027522943906933837521856132182016211178355887690442497
4253018760686014850523522148319711988183262685027220475822641651509361929997573657332181871636178264682735771829059070180096676116718885304781758634304120619575085777189601946927440419609941483738137245590520913241120965370262110797715685153912058840966172643679498009288133201811157483869012714792940010570144826569696278995155797135793988184712756832337169395627585353938667769432224008931526634796180885784785256315219073527732252869379701673866765072336874945356395463094828468777794189361985424278381862052816042037315580722456890181558691142691262859679408807630213030044368300443988739771528533135505835227700589506852261628082315248315658762816015066009143495061284372595622110226229057371862439480473169940517379089406603720151086291799082650090484181031379774860940000322575307526463058336899984091502502577162485086973451196735867362219918706508925598659351181939446707600964623008478624121959259278605605875614843298176801556024419509372060424349903606997900570761341342793077075858800120
6279076962229882143158214853336156384378662857742800116303068414102130285789347429808289857284430065854797516282053888636523108688989695601889402112581937224582620064918425301706905193512474798864892705656168336758233649812983444063585843881099439379559599763473206132461872012730681186994661067378499549904264479523959201376026952603549355009535307661513651036346922497064153785697933063229574125927805272802634069444526716249086759479463246319023769448158701592068452540535705000531750029032792826621733249368062740515326681378527021070023565457072950176802664058731434236434816291774273901158121931726463443584559807722704739570506614436130418286723892671302851820374741358594401681801401258951495609308228469558860766172096774702738676477713110864320369414161313213738011691560608947927455699966285035312412823016545066194880935093709275938007438277394005173090904258380735086766595223531652856742508733989588098177662020358574708521167324468410782588695348929653847258813628059494572040636258145
1871496547297872491700065701100056102710527856945867060489966228471622102169751252427779438004495950459860947502092902029699520853323640025301271487573722123458487822544792944412667723670646147063264559006259835348200743668855830414909238615151669007974547714787487980733586302305553292983093594573601884155359379733453052164986691536357020589403233040797058353374389335366213793031667356077010212824791256718800760302697501668923578679976270595186446601255007834576945801799483136837682121494323386428167377922258818922576475283836597654384082293098671676332132518039809432017757340824360747555893579150537927770571300788454785924081218648179583872137739674518594145449207799170291076237588943120644923286512384284723565478716808235386943424888433033195929845585012827397801061033429522895070671640098451795631684713156072831250938202721953395233881737169868951982825094432357141288101685509959363372924644235185480121331657622948325123713145789412484173409517751423336236098810849915071589482535210
0017638522525698181670791026983872080656629771190099707755906191879622392687580710354157107545388804957440996902112526829783712554159014606754161310703130267516570761009045151772669432376890710038443405825126727844473759189438652178301353685271899288157336304449301706454410033288376381985078467395506312275158680950995412744029241701518046646336386109215990641303057233243061476456301011028770926717709169564112718178633635742964597118792734389452577311692655911434423970572413820718188478053690335171016159458246751860702333109396882869515145015438027220532786488962014573096700603631067186131233487158363401623767630530580592669010564166362264976990136449248638617517134971685899730963597384781280679948291296156825225464324416746555512101114789348174207712395074107999945153359632947178549849890381080859235127142151399705450519786678412390228680930364391737327565010285930564647625096827274217141501119709205397440979864748318090440380375757225923630641188998823980625148388359726436533337268572
8082212369415909593449801801538314231946678952410752590849048210693145143690336674913674394886751788454664875765965268973576232581188808466716618314149221029545605450830521534502811562129203385021087177104446540024718408460934814842792218969869999207785448547151067340055566880072204894061627660627064990375664333099557775809061118912669938165198616380079121380561802939199071970020190245733558527646914504425794775417155626021539950243598374803740140172736510675779469288103315868951214998275817768942505936090584424199996961881521760700969284653937133861597730715801954641442528765973042540878269774353753124653163419778041263018028143891297865237935569836026117605931548022525244059826530746842524591671226563390947373547521232522048682054949680334440216276480507628368613792542034760232943971274621168047849725905685510656136251095768980579877249150611153699541453995321728135000219087923560609301296406413116543988040855503762647433974335865590268192553918545644129567098476576845715287513155463
2768962612291733005673530989866646131760897780636380760387405713836015924428378488376613594303184683185100202475495983915030907889624251782946332072903684995589969306063577525675745377323853581064031593257547572661029275995702712453400227143554542582591798277470468470269814924945901274430250053065993311495020272313094458825623033411931632199905242959576309530184283756574682552176156035191019436132569991337327949788978813860276968116957072894666733332155739738124119277943927396019775178364951832523971938098655329134032874267672860179609218942143232657954096485485602097689752433840975320643312625038039875196427783221017115151336117807173935504103742922577338910901785107417879368346652670827504656588655741389247153438346896505365861070447473995752178477617114176681350767521628982108906694972426456293120044254803800168169132386263591461181985713637320829530466666924788875183719242709636447044338827051741853504036120545587284672774200471823028878747077410133324759508131142174664745925041169
6013883427438074843323844119874671084375645493232345729447194383745982905898424580766669268311666605640491568354036176914557982780430249107827685696207942779905281732186228251745062277150109345796339643610270412095888451750538092131534070760934450331638713782309036102165161399536494398889946938537038377868065447208066491250773704902458673444138084274111684501490025807016430021271126651955568936630189120395218375297715595393886852995522291759253469726783475626996416472227637887797101530191208827334613353949016826110853142463411627663585875511449204345613332756690522763373568963792649152757082966349584589415636773974710938168921880588038756155462472863047255366854562350151551384134407814908847720195999407437097510428006555845757022175510831421668369038467561896288688025500883500145600075906817352024369321108105485459405268046238562989769746230827563804568090573960433273060160696674201919422814609367682489348616139272744452183251134048276031687148354799957484677051297317780690293944440773
5615828537491207448551379468919741952617139761450659307573358184628245360509961299862207600232399266604200217862554632283967711873425277745306185591808690544704979379578534409121458263114235597401306501545218064786693458752589368941879636134466206543054313460081075791047972554336325902971248730402539819817799786930568892631594929956391525139802836481311369354508407622578404919311178988527111974120389128553864329416159185137955986758200413029419445675178627606559864724654119152050489444797685576488669832071407706032682103849945486656753535305683175770084811529647930006741746249572606372650882853859279404651469662159807212626099024109275081540250510860075193979490220166963476135678275239396340472625183599431864796300131047306562563342607086209841933008211421518080039965792618263407154296830475853795031506900893559153300264089121688585251374750685998932379331322166768326002877217624642190946707264658846741711062869292785432946389446687738400973036527876664437038578459824311667133116344200
0080999761837187768338007876980855092596619556662185374717405932181724907605765574955279705999161749050176989679770358412202432904445361164741386817077605362152161385488846278666506241610935177526326373720509615685643698675589527463736556637618215409574488887978855930550779667709551464460500240742838884436170001200130108754096528870456157819273770569725676256411507104242345778427271333041303543933138338569336027324465246182995290527347374880985985040903547454479074472401664074550006768562847236535493000184370896917442887620277312729852176661995968433261251296617199902020520655382748985556200110820480220575228079298790905939492399127484101420894851815871433416477917983833068445325365769462730380608841913271745957750425291349719276696380793515231367761745253218264596454957156462371318028991548769466480846732506883184976232060073941907744363895574959533304672082043494392922715843544807355994104156763738352906296717058802908442633703504617104925815852810461410770674986025701506916804538566
2721417984902693648871939098370539932524719363703949017267440750189060219221352183228808887153728846207700308105866174523206224081852226208757364954318968633590385949830733436892511370737943701028539618795090555370078870964458337912756446119181068543835073362850568468255058737725739559662702178213275050539893984617401840694098005274646718521990959222770028740517481743389107377264906888704304127505726365916632345837932221577742465516416146381282215709976332869917615711854426926312608366592810909886475318769021992060875137925254406045609224416046958448825317660410857459297153284640938325320783427362964516084805972166941979470297932630084871799672406780716837824529621716443957365178837900404857037502690976160104100996654062628615423236792649304531525708989745062189579651018803017818087050676722598389613077687795093107908778104936719171759666921515210571879074071239191832901193973689809263716033670157335932496168919397950852600318681454512983510735785066859114572770639428852791869847241883
5242975418741778039206845480505369344409551693281934832544946952837896346359267322131758960146294615261108387496226125493776563287889871703741747387561194562271286175016572110226379316623008113500427265850837981145757605408017071429849444662498085377618351407798193175235761902355666428028983418598340334159114949228549221919037829224145991388594031375131292398302609258256523396811193388718524690399658778789904542193359930478622355492375039464310133829618571888297587921175771907601202568732344469962780308179332321345317218018499155127955277792290297602651946553939322835221264178172240097443783262224385780399544147934934419855899140682767398239998472918611176243664164766343793638589128844025836155475996245445150450943142911515703175139994885395196234245574294535691840994515522997539071770333540396439477700024930273351409919239892121824559864439759261997456514662361535333036793635733838473732485409538677723993534926153297289541506658407989992614376343208962714758127388548239387646503322319
9208162308363726645375047138728226084608424476990125572154869685040773071269340727896233564062077670196475337721817200268384727558349940992007184770868867637233230948238365268838455583638519327920756297375902633009900850684745034051648895273784992555556821323763106514052567400116891942541025758103379429957104139928082786745095657590328971978934391515743762992883011887146529086535803358363143150929437846361390987162009439826769033381013557558479988698197338373383022315942145843936080178128922360487543932015802622514491648082340333125101183778974707870697658128828434751218094160815390130199783864558937178845300303630698511531219914645282867828563097846830415335369204977951372360583929394854342649537529009463836727455478653359749219679694357880697690296215012584981136088061844639862620048210362421358908797874859472943224892876698461536232317642284974485685826807009290903142340824275570118221066213025735455625738652029734117600928353812764507880884850461325753470835654051053959929533826999
6941720653384658284809445866669187128474816236604146303493937643116534555792639896019289368700039203432511474666077466214569555834021223977829167693058632322399671727246799956892304494280265542749695100153205181270092189666586581797783880296956736171146902922688229744131471183206865627086307716268711525887236958528000292629759555744067208155636755227643572532280591275487924735285316857428254620270813945801419504206817301788129002746200850977148907491088885072915601763434304110693733356214048525757243817274346368096425105322966521312044168592944115346326713931779622307321078859831756863358871143306393349284064047954638201334221371348713852083881734705581564893110737421899946619710136989089159916963341702914288325989362197623358025370670821187173988114618517006863464865005766303077934311928643114456190660391275662921945734032731205434694530800968555537410036355050345561181638076559356300128659436979347265285829300897742921394340405009998377217799756007409084769794877773109493966198062767
8141761778391546748623231667678690611244956455568939301736269810593366903246307141798832735210843551755754066228624617201941749304734531981517131692923256753081182657155239024658488951019344401690554446703837787399587725517886855529471727054268549691806029813371637303950192628065494026951449156319111561760964677667805741693732256815194985744300733737374177413049523637221904221373127258180196688596268215948854355809673543035635840198417590548989429239904146553977413878620745429928773443786404762970346760635882824017192139936722051427090523192168023776669457432056895635275047566295643259856125952349908210288124146976208525853540188740757846436607558916133755682272113463355983788243510901708480215855768259799220299093748955941632833443751213392054962245621384618974625521379448713207055779113569125733355433118559745010767791696155378995611521970304597543824441044595520805715247533763571384570355157133128977360863067283039035453780866611736096406312837858168586950252641795679487239563783673
9828454540481063521657922478196073551493264758147970208484748163320216751524411243218528111753405301394601350611994093440960832428532730814766973115660996656839945913922313177286896582308157766451177816657323106528711210980883510707404256780971855578056643323346743339586973974065039483077329684500077641443395704815173635049575404690816257950605961421690285516110570548154625594546771091933804027679665565425873684313196392954173846012586981053201104281078670386876031225453032299989206761273454991675004302166089340620096226665744528227586444561962440383847897170861330092683380506219537824449315743065042954983693407520364787311111466229461511069699890492999008005183030902161007243352129433722190944524577616227463878035317202520380554047402268060277873740735045561008527629337957130198628846585775489075457300913676591726148288897676278467223321754051837886932489873559461565812367643480559624932715872080373886196026180829424774320522801776158029941314179943231889788874165065450987864749030049
5502404295462554394063299459626889398085230503109035696983116421083866128936521990240007973212409687967891003970941132749932920567186593190350590570654374046184761937713293330576968209698590675167058099251954592957928440667969192345965580686769030510395544220295958061094997447564143546591748322874507418648803197978472624316292477303994987239272411770823536182412307754138890631737647339203325495110888244475748655987998011223336254520172311641757418975327386521204545571776992849850958217173950919479941352017869780241589978068629488128049323479379595101582530951036299372150359338922895816559276360499635321416459304044712896287533596983306265486027532953868033143094407634785840742518150844960104495949446737526421070541832247744996377889597233300797881540549232509951176936960704552293172338302484335973018077735498705206111962423524182659238734513079998210052397442885672381713458646645392258980063945897984903098642866894853235316758106978750356335932297734150445163837139384675823165910200094
4885565144492914961574294734718211600552548937622484950407163992504928995016216245808948723986224153291336547008491348116002392054912443604120900866987034586334856056171855998528772094572465536543587800251160379793428752665529270419762355585567137886657321642657926864550655288882854707321523856406053251023466196165442148878714634618247602494654696511702928979967811030460311192511392590172262578281130528955500479013515289270758041012268176674702653990329285059086989497252168299966538905460768171316385150887983446791840547147724346652792197057436010983091025727060338285261757111139069443763264616967039949833325154671132591455121474403538376146992572752384483740497900663392829647962544343611695063934459909034146994687914358210014725158754376432901676709353939368313182823800613314672693408590834588974570821598699054193786763971505401559588854945620651109147530842491946203860897531224516327163289174747619591671934656195258428282755162225801220398356995133122489715742158386576593931532169396
9746045396446098233565785748565002769745958510856733990569257206351954643047845872675593952516724944425503231002685953815926438251378112806683806414989666183191383987465212780691111281424480090156830168364388796891758961267603266099474984484823763829625363536454477934711095375534673246614547957680696542723752995191967093009772906378139795107487868286724256717509496477167076569092491034217655526998568878742508059656241889658506128563664194454148575082632142261040080383365803305240872889155440706277822470361361724779554404474666198433607522969410187760033058199261499900444478206797729310376364403502968002083976429959042878407084135722221948525279849566819706782898922613761520533953787417571153200672679332377762930405789182499499151792456634644964210585047113549092339771509672489908405871528049144262969572044781307103407005517082056724302869101305115179084047875496092561349664434521080642834057434302602896728482913072246366481972652038042724041100973262408843561355367395922141399737475666
5812151127865788144028460788427451300153718414068833343852592935674840086760104003488602727957390572546651217062221420857433816397479727799700759063958138149792968575293157658277887620670679532296962651878168366606345973669693013572865621471689033755148048067380013541971520251534426095428130795196602629207147177679736379659545316843113465514313585648726993840330786376792727744159771376277696892626183473552094243064509786701726360918911438676233291845313513314184609209854324617662107427660390092555039463891024684878458954634102967964655902434368063126523876039770670278971486746151118713474397280911310900557127232917254953830471982688737543313770770153464952341025851109947867920204347250891609909679357144108972036056134421242730062931901945304484710412568996664218199203385400730819298386488269385246673497782469873601791878324675997169345761147884223816170963293258317744505892046759806998735801813385189162762006869879583990682951297017010035654842104224617894645232808560358922489151891921
7974367171775919852664636958763571784011936075890006473984306509074204024918370165429656830349290341015256630857583810099407840298707439605149095259883610581252921426837611916908910294224907600936036095303860243493610430774275457282684058009663004554903918514088788253386309374534949542466261382763638784980199804747041452478863633656546918528193647984119493214700455557349322361894461664443804329275014415690208110513116535152438963231241344611895331827649649070780079127467371626291393817138796873965684646583416394528907511809385398515020958695352853028836722785580136674482030850046336338878784794357309420324059086388200511218300966370758716449938636481949827963952102397403841391036814732403405698705195107918853324071661431318888205308194666601380897260695532103106929323599024123645478940507481773735684924134901687937568567275469866971311322761949322244436812274026765712385756426530930411776409276119215697591482508463095738250075430077959571013824913799209465487560543833635372258500413665
7825894687629829367658238014209230132558061869964267742176389641476470278352905914160905213203872294679747741093977645743959611993796150108518103196937887197133245323329799678332626752655390806163209241620287085355760461409840309709200671002831466290810966950773766314960554104319053343497624988332721337994711417215760116142444739817884140196028864371868414759369434541913052808506498880171433768005040492247899595407977130614874527401797075211835901328510469251172197059325576029275270128066958078610655569400209339337583926213548076258064496728586341385060852439030300405188057369499683313465607372513620725000885652922122059622308504756502850378382423358189287590893003402460287245735007302493707039479464342025598383695324334809943999651022363084465204809151303675737653502218465658375534732510398181461689654760291094278458824085424929188051268657772131004463554124213467966062803662442901738977917385753392949367018180722482921198146666513588270842992849577555166443003609197265130225423611153
2355421391644393239969544476417931473700116133656821249310055688401325009259255922544701184475705386827704628342648343851866299064376602435826722080242183854281248808500031037702347590319763338646357077647996178197093491230224672456827412777734381613376497148648176731735664304356765833514862033017965212050930962392999653114920776525424164980262515422408267708462219096708564409010582550378941844462464582293775401735326007824416202099530190804009669539658203596329430735295308361885057634933911663034208444137203986480269280328018980198512234305858657417282922666720050032383109183544653660418407282588672046619092578661976749129712031148434887778068063611728311682931178793379629047423288756771602279736686395423999984347990805177618228649978687666073567066214214774184249690090337724389871147917370560456150840917380665404118516760988133826108564010610756794777365393000675360624529911605584222042872347020584421233400109033823516508209122214527820276038118591691813367357149786312418919230528250
4091872842056137569832049586596403015539470502191343915787918740170024610234569587946554041713993246197047957573447125208741309750104199872815901263017100108664859280586408189625143240238685305989521932907896483294662387940421440123279872552328030225775374230442855794621970617269610971218490372817771321202132698734545168649510989369133859614569715753538763523573221721265897068034153958729803269142915330425933648283103777594784330832165632227487621708691914960707155901004408081788924508984456379365800053937086437365193928663402253414140111001472570813528898435791456612208030522154423255896271980693916771882612617557592842587077849001286922069700024766483830949088829112471331419932164700222056625683930099080249674059642749172562191945792159618674581626949438336350069900331098310906200683118998355562578520418189293771121178827902865332298857236440817085505846962829516969784718156423750853667295387475854813691122046176669756383231603962062538026137467611192606109823261958103243320055150306
3610417582964710407870943757081269067788290310612272582493243619597142186726799314834949930587743242876943945285758068865815870218893793719089588024584764259162360346541581798276974722289764520568577663799902350732466730213163626415496787257467223306933354125505936878450308552228795773608744014644462548818453062824445655621985553997374631285047134273877387275173761390572137226609220664818495616259676906207398240724789426370945496890385505595568064019089458403242135826012950428531112438448512798313095527765288301125550522607595352826233976527097671196430610606245051515398757031895131057021267575952085185072306101286055723367448991821127424579358831308725899051820119069071840295293792344981323445155317130835963933465585897491884053537084469540241210509068803265844639218707424947655870746497609609405731871030740281532758117034107530250304886678591239098070888299642441996661608498472437429900551594875990900471760242804562113593720898817033114130593481858822137256163995773375823478229906174
5480907284455508194940834259611308503305577824761308470568989919330866607867804273726544433622624475926323543780664827055297707884909563735993918981985018763606338562594864362167558705110624380793628873430105346623202497542454130937784604327706719549155989260756300338920584178490794642052216863615877253962424152049513700395639057896790590193786006177913809199499592637737405046914843429885500009040362783416819677708352785070237033783724989446498113489412416716811723118742608448435221828852849088995896268086282928491563367450642388622747142330808061625811501172370942015814178001867134020838243275430624549145390012642059678297561751861797863818982010386685902690204844174855634297781915418038573416827120386074389399604210623139387570090158017730628395694059048607581496154475630906910533194350363960223583404288674454686212939865619545381004266103810244384921096770061495051992813748368116932398808919169929321000526691127115808223402524172220701794909752465195072424680201845819762190219282362
7910782982063293158403906403775195146673487836180087394656466611422816067069023607758851162627410379430980583167700815108222574212634140875485918836658910614414202693498347172740899309406388825229299024835147451200956572538764474019384352925629713154883702614719523029013022850139131359453150852153519108899722838949463971469795316027320636781178727075240746809810726947038240363421549519257576849336729166439318016657562156929591951498813803120071404143003070453543894303809127808912618559089497456826890414102510680244724003956235551540023456221755016413549805254071025713245181640474178609394822977749087322467131951141063912987921707316879591980154042611861574531289577815103747611458075839439684834157762591440135645589326665238921897187768384708389537068082147980761953578583532692800660056806553070126802249936026032772538786234081321468881117861787943137455193737984817750092287596088590831065432366344809819847321670538926509381403203751166235831678798491678782999102459386627167707066130127
7642468585571311907672619365150827175062902800891210654744215318953415163678930024102965647857700308924601882655398981174795239214030409419181420160810729485161983483001926419118761967620260903626076964828558651558562907570200751570364530496254129683926071006034068142827538002133970753624964043008147407095515847619679172081676437013218154454403334008007931397545519351756737826423406279092694268562671980008980979742838170391641619421166946265902226937253178954063865433783637545688698988319295387289410094749315949261584434264681550166790806063298645770700243458144081889750447280012009125550144270911906384161209669137013710695317924224868276041723536216087673620163999338627420095984228277880982412269938119194798137282074663861705831996989728471631472213885032700819696861899616388535519308683022265221172235785672002045943511021298957291213956807568824018091807070414283984082285080367400297206220834149899874706234901132650427899749868772796441607128920090624430958673446498809841885490678888
7975051110135268745400227714909340652114948415536563666353776394307048053648398897042028454028108574149962982702066772920131770989875586019522975846811849583117679247698848492262742377075123355641069423548860521731646537805489198071746258351187042904836661988837952542104945167794687734926402119588195316477424169868469972011154128410950738456896214516204207797698464849999989794268458100862363804985902592745248077158662618253041829935899331830133963118959107812808430974062606846402803719836468874641931363876975035604039180833303488530693515218763078004414619850045669657079140945307224026418464808962839286447063803320579859210706636353040368850639675932154243050825231616875719086123325315186733438764050827910850134474050295689274906747193340618205909083473625418972245178303640924704198267723553555723177430573856119018155910081282189054309520285911188856378321901044464599039555511764915029937956610869166893029959253581447575722502718958578640124871928882617742307011426616998984753904393871
7558490210223837610518779449477173960078931089100435396568252858062157128926190396461276882605146872643791916104293217551176963541016486474455630065078570644706985295598141617556325946610400739818453300470111614530611249316297762696901807888125494479149049069907105340484341560301245709014664842357496214317407872250652682938495510807280539628852991357724263086484259662965567839734911552966786497455580740621888128861696523529274211484876227228688849542816317556172935119594119446165341571762992230371961649737526047865749776948628869251151358202805873308744066163359260725395153297192058872998388499173300621885671081211555855558492416026305537981442460679308808119774214192029042187599300698261925603936904963499345139264657141407364126582944496185888646125398508226621420312238911906161000842041602445964330274103907426698633210029225937942461273142836763553516730913569304978411604929061565783458243102949995072808807776124678270095089249438394181655569223199893309205019588542883018049033632191
4892456831233858991324763246168648546804501655706705828321425444601629988074116514704178840668389518941823826712175867055273398828390751367687829203455927341263985396496538276699756224411284208886422158837258352770769257875990270812220768184904835994192718610868499439481482726570205070976307196436042406110873349936118119760131008285361124451264491437792533511073749517702797267161686247410297186467929780370955309679430044030492463631474003105744409577032808189448254530163180613421974953715926885070592609105500384347958506381533428574468892027086381088600848709862643200750741014029545937611293988141658309996715018098807027693207286928825751115225694352171793918702520288214633618954489984901398387216444662850305385502855644550110064163763031916231897233230335403185770123610104935877050391261288029319693067418795227412841396060425160411010993320465343311387683533095315956950824573651430505310637002236550292763472970587052267634132226806341620871152062928759886405036062840591267027056152978
5315122888051440666584222259634120930095573599696183302590174860484363771324380349813576460957893790399341373493009631411859330869641576664552264544356203851502776372065317354824246771953185709142925324665927444847443497649331027062502987013987354173432478686021052726089570167866525582364593896599219664827534397464009770825418108809750217416489390075801566883598089405493818768027425686786654411495381252187915968495498995122819883485835528232235519424310188396354282614317280958513937534327784499886579875564034136882426703824911085142290295615935069367509799923391952027397434700036423730417084587659705448869201209942847191019939570561812732050920370576323587348399744913978593280560875594543993683434382507480715225443602602386945182922762600214941291523479848162958145511846384302582153600803520299960784923716797357350337053466867087901346267845609977559939116368644629236185943567372333046917807809200756052668910432749706597271486494409051421167832187825108872182686454397247126659539041424
3308326309564121258400852150743919163150396592229192605135370097066407232420099706977396863158392435864668781748107650686049408966525869175814360893078261202807445732262437875394614805738375030909960796356065509075934235917606586654906406978126475947129134842526409775608590748464090543903102598084353159595261239350248113839563024705764766331050367860532348196742783128899729537879279860597555823016639920793212108268005265534934551615440156329217001392876100981286067596807680053789464939454650450329734081553581040706701903175489227910877590136487504979202601429996782991349435205420836965776389251999459789233208518136014334045767148584517579348846272387930604422770696070611488126089762320791137218083255463872869546110583033605198885425918695238762108769633169819187837429422935501214116195864004295269081215121014161330201904460148520331557721381704322555290972145303354663350512190342766790804571160264631270940727831288654453331100162855509998765330329316626582835149261695435060114285018580
6270294019413842662443243522012363934049846383856262779440740639148515236518643408404720685999225250606831417142333497823764102560765471090390280724676944903383803383132481103830166319155131166296114249659307995394850000479854166091461892459135597987259602366671022012697744313998753358401470056801743548121799445786304791941082141650981549684513937651016664102460084909726449181215093804454319064100661549957846868892696045195057032765576901000076081768321484125679146550271489165405793522171080632621100606759418288384284472916649621019314117139076363978250477060178883078624980121991664415457636909281199766919774631804844092424481773672814678826437281343317452231476218353069219389933502539897093593133023175970587719060804952391148100185871287699577018820613127520872221738800141599530899901220303879805635960530941357691808535276670430012196008252453714724667632252941597336074115936034720609300247876945668991619724596637499369814033599494982920653087819573968026258367218394726249459959628285
1582155165139168639680103214512980510634808780111452846257192727261896897982150280187788889240539709292740911428087003800804909990071220732754693549409462429236851043303642198197245263440221908146355277172006425512260002146810265794718765583841251343990486716614303604705404372042261324323466800407572971133173222776412394892236010636473062747790417799307643527541632622351680623918037781855616127279842684998143685219409268385816956840259550815372243085383274143396948559190693888621122437627818238866655689945239793693555040391278015006325419884869715679061667678851739868112950343179038685097250165073715927184496562073941960228978313024956526134764998265964038623864296403879833786839374594257065102190178790160613056827935679865954037078586083195533767364698042134784739861859297107030240709086939175403218630393771541039959723606278033930290911501577365567459820968359858960199530909857535415988796559330449329580121654576319372782034722759044912717022848853038947935292159405068049289318949753
3032952126238787884781321451923405087175460736115034741026998807219170175298535180258523928881050720364507798647428639215522529346715105281329487097444767381864199484687173995512274100202435296026906073702641085442899145821491573745942973983896630866604868282749324887534639699127906986480828649694864806945054242366463994301714289289797591497323832107058174916007314523099561312780269874490669468108585076468997233643408250446445395094486924908065582819492900989588122741062455753804759165378710784676490292067178757666563957827921076195589987191612432211824692196440404231302160978573024325250623887943686285419708439712566616174487635081608791066661449952248516087684449267395994484748670244848863477790764092463572783761181392995597468496063027246027671025429253349453092329003520852588416828022465999190858700564903156719494716537140367890635419312272482351363645948318245855927898064611181305628709992546305380266587901945165944619974903426156327866249024689586115007807175074235392457234208527
7630542384415280028447835031660015672929258698186314666881031079534035335607859316877164626367060161718787128344845027197634814393158986217193284911088579344386380259479179373862666347341812455794851413399055849193858659675534617621351234671570535108644767436522419308792675696595365228065827805286797871203383503113213656798632482953046304439976546288258585356213842492662332286165242667079334567181053941804051296105495210067115515846989688373668123669736116084325596401212278026000310849535243144177510715076822436061056381764355762661885966311538515075816174770341667818426777059953205646876412933898897120735241087124703730912808419258378448626387391496554723672518468546642472306672791296535955307023052504226554667916583350286197187587119595720654632577809575909524262529331870608724608217939357328743686989679383119763370700809083700944689384205019589966685412329384126072270456640269639534926976091893257918208669519277270838985297301001336970299356087300144797377647825137479385536042771125
9535107373508479990218654676102867116427726838893501908467761347461148793488579436641446225174166353896672449702601147378304688332819012668233567041544264640933708750550668558577841533056092959059548352368049906822509801135789525377909205566471701762433332699932730599586757293392880617693300421341962825584236919045191650346999877311633149574164176218329491909077002185975171958108098722118340376678456179615105486762821899618429759177109244900963411490923590287395314676476433225438076939718045448880603838399505899611114038559779491604782751362191387277135324243121699220309071726073035415874619715179903009635415021397494946155882037686225918514202035312935732197176732086634304033262008048650077051789395495513695295832502619157913065493288631554451218396682785068267747843347005814055211647953714114149336596545737797039132738349338037547342710533284086398337385188212917020353120374411599345645341416481991346979778335945201466079538102782183786439764099625365684067331464946054162324641091870
9746520102254544198981160401688605303287175889951785520750526514557781822814492817628873988961048401212012347949878281678561555383672784673447661381452745886083739452294661869437350235168326992741103687215441513458481803689160769631701652308161607252467668234723418866125218172349446088355402628851545638155885027446549848814656121245191441623753059011929099120422217612413521170643577232366057156243322195980356669092111220248597678850096714590426424152059906200767058510451514594736482038551638103777346961283483970453025420299177151073275419393712960694205569230037398726267703288846851694939503589612504311572472899437054215586930324633624409009510372382750150750248908511507956331796421587141551073510402852596482718176421241479691317533891990972725464293958767019508453001365170563623850286965958028578206530631603195653229506992668339328031420891946360923339937276563653840837141983765159431539672129200654998350396167571561407894864280933524966505553781871230794607485404103715973116333509010
5575452809379128936756162864629438874525544380818896171571992845158767139691447835629432498717567953973086975377722402712472853274784370147061170770051137911990535021059167431450373788485805461543681374887036467151310900872735869024341039902369182612764636593817414555066859091157756242752833718558143836935887017470928292977672974366248212799958027525742177526447267251180818283849144289164505559977331404934196797544619997226893212004901748939963722707118989248495770557932954192908279696775710736681255623022916278845355064491817618570113085319478606698365345634682091759876856885216865499373398773591472033763305109553530415182642792232318092201401020917627693519572627646957870902038381584389553327065766332148385090820247931208810086424239767891839931806618298483404541232159735751726002496668145483128110046115643514551621841628906132107885338391301776517954243729357483718955358819709915252656326507867062549339722701594821618150789984215191806516897157195553724825140168610192484781734401121
8941517042339157402153055254693028683826089087273795959819966156381612072920494755218488266699730435194181063428821539872244305766240675227804016718741095725402844419335088288031555128927706536523577484077850169987898799665499536515791369548282380620442563108232698630387713143398533267437179916362491284062463566731163489183591628240435870423481629261675178468984407852283954018570851197379184570427027615446469817637263634987160515546576571051342841424978491344019889948510742554551320346373356953534371440390402389310188978269449874649305150956994887724096804864990934057090228941737102259764089387712839039316420810933324250893904561073462205265870411721612993690600554610043793333391265370399735898355180870207834229347713656343770358429714209773055378428277737668510835704516622635879294037169870579868818597733709215490034811348590385118875186541474217851038790838557935433744602116048264171477555714183612060716921976612414380250637431740412568592852064160129704644961501334298383928887507878
8642785891790387903652033239973942624458232362055637067191582085405408845697928448964854641412245719190121781396718247114632484616775684212922558114375809370382956781013508693797130635923178308526620902323029577620850549876387933182181690657054697548962602105474290670414397416119135005976918374503380453308047961985372568087042756632799745069840077281313217127581632314400065976327116833865642921688351028692698669338355012292997679939747782069476674364437301195591583360154919293680648830664772087179554673989627067971603871895167359356788766837347926695422531617085146824415176253351042359343352549513827851488506290833868686715639843815114062744015700343507671785161674138207361778181534429431018872377700769393677354409647035812685192671634713894110422928803107924733389896454845811869401314369736343455636716953822600338807907213673941352241686063110379657124910264114284731517394985210430736980002126263426493254104436922668402009182190618682307149632361927710027372832954700634995055632013063
8867032275482117694927044312049563714281825590630380761289192573630335872738944994690688959793710791102511323710634865807998381718371354290367726074371012209415224555996756898485405659962177281504143092301141449199816476604378725466836825648426184070375470091367532769339584741243485597568956202554480455867810637711280345309569587987848955148382539417344954981936733733905606245291461617328226147847551141183147375059883343344903508355336255149637298668764655063565695456138812483647897481231968299127254555846212500561648855262363160724719650309525255985926470350004528695051386583238594434035308391772139397803926797523719812835872974695467209226895086882908083148331314687112428208552055470709038452522270670718228888841591348457066066708273988318761019747955600413208127111835083898942688228803975858771041803282567480873477923304869249576489538933792297251877554919975046061069838648795945154310291860714378338755970252510027391749737323134163904070786518097791204029427711095364939618244909337
3800263679878636025881624639982821150386498544307645452814945668202431894003440084408852416785719744457978459084566166723083847954671010504861452493901800170140346382543943685189921229219014741767214208503802502782917985520346663334601994608151042717153544398967418101009842023961481963293033803556632892665162736842742899524491338045706013149488281957075021737893343072196164923564895112628194842867489892501493426565517004457644652556594273496980875631448855674118094956666060166962075164890976628194433460540803740079377078461748774525646222329748795861916937696684112521846595503515929713128907156683012815875161932697451404598601223297834488375001534276863693721568165379465729060279075799312946842953991922116942253500184906999503743229853757964979464852102233124464779139427626519094607092366860283420749688204819810830361725996704472488085843612282805167938979856817718684964135829999905455905609592111087691596403041903927555659014472583037110443843018744455245785949222431795719462342953954
0163960275180029182726996443908702537898656094084777890498442919894938038098176798354360650162976108829178244655394130468577166424300224949532779500881876814771148479189448663248142113840263734524855690303256474686849540295654297662341321255554510408492762996629682832394528393026796669479961655804681426666272638056729328355862837926656945841458500911198318173692803129019544788901610701043041698911296072448339874241217652589195374457458435129768240205110114882705598751718453002401962457920834672379583113288153228677408307137282072479670073123258786931105738570306707025687981529263866076920670940002560699361316581022523940774784923629445898054831707738365192666264108358006174644384892573895178146083516079175188166420901749788933704814122865117311609232965620158107687096697423136490130402800011768376516895543933181542423969517788320751520396987249931846231500005980529589969645097897026383407906870832531387740391548785701647352479987641523503886700571221011930368325305836753233077962780789
9591864150745371250397738167081849485231724467333533624069028900293784654798769597300199220258281657509741785545040746304516920802447392266448433534312039453475458492601751245076714817832726781699606847010148388375260582434532912226395900504387151970885023997010101013348775017087842156261414156518066622546899380546295626888294074365574178714575350748139166403227536407957728268124948312555806617177911710964043099073388607353606610974123224253337002378083165922743534328431076907490744954044789044783338065887697530864668357466291103043774811381128629704904322378529353254291946563125140096740772452763635477106390414350207920151178061403588613986762755385189822453638616447661030374173319155493780881731333015515378982710994830821164951102674189340793769116443356732716832009915929423150100672613177061030458616830682623107714829021284175256478340709110078773678512631469999336991638666092612295025452196712876688358298716929987462295526416403237603441060970567028997411963982819911571203274422239
4618686422468885106808904474396946820804123784880721566657689114230881558002557772353753726606089686001539681233418609072184532157380092167622301007879961836843465701074661682141137063089023645902832877364467968603231062787096596034993502131105016705424082666095108774044446968181983537615804665875862567135894072630775912927048842384191097908052194431504514807486164745609170642936845812289283204882334241837855985990652932565747947111095277133961265744811553368748100449009403148804453300102736365158501546627268661004926952826054883876149520395762656821728100241800579377060145428475005332212869565943397825007138128914129672004851169521203203082301343676232308273502062601494962921682184590847812550362203570745649119915926974915985604568413848710378711986895364382773299793538082824756767903115149186985815110146560731939487089371543432840756074281477249703487960301757825521940567823408526728660220605840126557063872102767476434310077015616397647151851888609961039910831883706166864448179935266
0246963382377612216677712111447154631108088758766374316642366933116936402669290435740493688720461755456774900890869050317301391137391193181607149632739127140235939684012896443616759474002296211164834731783267606954734526053585984340263718244879897675744298888179508728260526054246432567832778862445777626507667711061583341076272999930015938299871251697873617014751198423103380639287393460537835962503042263765938791042126140769058989038002118144090483766684055386812396133437170449659531419106423364207881447910608969011530073845314631764986326140801439257139841419088238222432387238865154633104797077789722269024901870853177441024008474758000668671881332015471738008556501906363509537507905022320474998933663303450508983632761512632250173352539959631268792882246064581345040542103640364552270804054169249454879450106150469033831209272084097283174255620084685698963987545160106713419094549573243069087409542712083427018990353531224375054504132109808591677224966249182411905813940399818875936127498065
1642466576101143984149227482206618325775118780179973521832654291939085757079516960795449180652568304909357876515193679930353395297136818922035404770696787834169588304553883412945242671243526836112289788657875871372504834650755348671597612541998803825589122912827870781330016139649351942653529622408424930247292779603566189908405451590210394765822572440528271181943468733630196898321647464989508571825159790321981799063228305627451803221620999995342245994353349627048126826318761575534371987357642055042475772274893712426755949775873409943368236754267912680724593281984589345837584250290820399497639479387548192254900046157896273613078029996711606934991838848479783176584431774937452598734828169157060446630578086995171843726456795143233959341344963616660273079045655533335760079692252394695441555267637279959260654038259566071310774208608137576996732648122421660873855544264238210055958276849938467474012752175266347797987393029134651781790452375506152111621113266204103484836306955828670929491601375
3699617794416341926495140077304710079344790148786261385460606036044781583835478956745490776752845129437574923586891817170149773277398467658632850999083964558563051066295532113639052697888759993884886093565115732443251477159420110007295138022851754395748545472653178277737644175048573720118039081984576898368698434897272606377936114497760272057437691026817813819395440988457816276645812182216575087202839227157844439698485235589592931437043660385926770922162892395602791367398192738073466877861625959918915767830593262728220032291739895846033919594675082454988337293722676956432540568956790503715179884404877763934911981040542230052436537330577070040626352918788412083780555896302957482806972842460972581953164250410107461076486079288195085203426174350167045072833120098358274555402067246058029273615508453708181510961131285436275174290183372313356851340795819128926290982352487538057360252082052146811259695100565931998008403481763210939707783575738374972927470602418396464942337251516866013187803478
2643038812927479253486793805231411023488729966675656990604026946930698047286385477473482937766473493810867949330304985561851188065926831914160495059027594630896466250689290478556804835081767392389619676744649464529744595862157556757181753233285198290234388367961175151372091956939228023662344890502889349331301873834337444492334215907301664727485098942803427330668533276916967716708095722255953087533975733533734736729389919502614388230888916513974594385952672175557253473626361449223375535386109831813056032077387086829224242162624067917944228801287645376166616578018635522046518244792805505272744912840265591709313296533675534916736392099798542237902162677274105831667887038364732128334962758815290418070664752622519914735391448968016709457915708090717363064892281324899602311573585455214776762134733259241371083564388261958081595762934917326329678501851294647278968031755791577747047442970413655423896385015400441153530368225784540122572852616051713984136724174861724265776193494256543370584758599
0485687964041679570640559110842857038998335422875945449367231079839900673923625008680932971868923085753873616704306047595719258344183297826142771835517656652409763180800274345024174356950403251356540170331599391111143344064803455072630094305545827343573019141329702003978146851367296147056412331078287070271808084139081964725512887473523709297908382621095136622813236997085246810762318906319203350526028267202308264532736690651427017032228963450737454034514477846148955975843695923192909167973962434917052142013559264792039900673358204426664852706557054427920084129088470156413807931238065241232816866394170471685302765154671048736458298384236769308042018357225080214267042405134804699222265362476068180279874342119113091638957108897772289004523335144105445911170734095390308493442788641187429507594317609077070776058031748010769134575875505686486309241590639622442151754438654105654798800229991843801545892724802209166995528490097594985066810598270311555273969921137163879159512917732846496704686947
9073523387260431448568410096719463717843414766245524321062203525297850937262342239349945696795554797574575256549009008743227593474363903585094270166428957404375457866927566843435317165867224553043785134509669875327641459803393917361171639907841963302823780373891973840155248337083329501170967227476052891573218727075114265616717015073702685700781326425476282793369128782389131871860676507097813567600784019417223937228609258960831398539100868237629905954952823534615933510122875998553530315436586089494645284988814984901105090502438161662637958483563068799072294248142038613255775363970253586123115432978008001499022707764001263844541527053784045963299411732524499485434560306295784162544793661096709149223371062034367470064436508724927939877151098426499573919399824961719422189908142455272151820255458594142866388887463579568227841995320114697041697672150231379941108075535540197828742544490348133079646279108719710374785910594419396940604340037593622458643547538231027752961954574765780987561158857
2711094096526246250384901403118860797833887030222063917618874225976968969949491937696289824138197677376251430152470661197658837065294420177230221522185309569084993812952821729165752092040346747037656866970501561013960472079683489747413175814262416676081407571821034588419927003885055999580947157020347709497133439842504184182956739488027121260874370526466135727364932264818669162688801447323789256071172655422672701076988970957822112935182912806262808032247020694223004349812875069867491897347230403836769726010160138282760815278037522114746719586899041562603351041344135266551807400388067252626414198553990746892479895912660055639394645787389970472915585320271404623797057165895679901157265023357288186655780854906096537539074135818388041177371419637939258835261089625079591710546535092929192993625268596846056327384244899456348736035446799714113357617588584354442840885278497917050096737945883802960318782468649517279633609790302473715175311029395653582670502789244135226031466753872057368873701213
7111335869188112903628074174503941468248159003098777366182869591549386855944825002472120059356044110417693821989195656677743058930752449786480835471479371891163476980475145989901811581926025602025668908338308058869156095026785711008434980564649965283101703039076699367741727306454462920364225905368215092568233823763188476891901503858069479238168450276883314551114764688722020255104486986092404571028306247518163983339187942336095995161512608979597023405436746776642512072971903538127183758828473305587101116574490230446070944466642482846424231444421948169175603346560755224728354613102852100759280714562794527877658987033445440123370632090541911713453157808475742632028142138871679067505840838795299004460325764355689297942222317613165912393473204871954243688302938596474919968065216712464495698638248390642778853798896634555478851311245531457914336440929508078177624432111928538639527131842665247247462934912461884765848618857445450652476941788507836689764567298034453575285348294111427994455823504
9645586890656473885870905959280268657109134422433222388534855064153549727882407040859310331056535801216370841547073492432619050676530079630166173321417550404516925341243623732828389101909446454702010197923046684945916029717985793314265326262985148714942878189497692979861727600085752874729777155620249663569974665455397374870879362088970505714266832006530737130638443560054067873855719940102402653368688382588773974464108299459782338507537262532486590101797520793791038874500385472750153115668187126902670561023847652567206029802604453234203838009718350583392628060162501507391579040614988457856547146621555789488311927105698183503687782642565057361169155757394173710168735731290997355524080942658259736793460188818909332213152303290002503697235870380999478333522662652426676272193044262046158906593413274667748386165619991261614059248557205211395996690864823438900203525641305038024389588507405774300889418088698462905689197661555446768905079279287015065517941018489735960208657150249771704625677566
8356951875786434636489189407164708076852848198546990472545227600831234926925290974086775682129866453586439123457259483242741745832499170338183958801272180048602389792785173908154219682713336951289535952056305324242705981365618559062611370330650827348392638304450274534489691595699686878214277891474840826264585496721689123750907393462777614805830465421939219153924541949479445186723796909138249196022758723451393573534532942028817355113195728407599695338531884563810114671695142532988624108679293874056083010689340127949040695341228448441705217644541804092423725198201304980738830134180569235924044723775709207873028615019032119355312851957290451032937811362973930776273561232894887846557804408573287263843661546795898137209963847528466226920427716615121628253594299933551073826078286667736123351639662258330796195664543170256404885272363877182756246757378833511715285016526166589171111514053241597884635024871699021009181109700175207195069408181582157074949780327470381761452511215851946398847622758
4610282175323485986520193148603011194272025920605540447396659594344194659679590455656933589839831555718785238382427962996496909310847875278613667045189810975561073396061483462663881971335819642372956563434262432187957260516652371931737960606813581278154586139655616281187998059494610769851365775277460466578739802129892421206507726428727129775827519152568981894655186410857300032889840575937580688987674319806062711459744723914161249954306839857880586269708975647459989976623271665246096196184835486441984210173457185557271567926147314656626120934091839860606120049948272304658332533232516410232475006681197019276424800345504160543767049291623701538667562756772297525571465969665315784156691304351344503104637548251745789846343320597954279820250983125479507196659038913946692188296024785490561756649567283601756987628567441815913462432850899862732320657487325599963469999581153595902797727466991196549387106388436226008582414768709188747563307425701418604569921257586604479393987723975986289719659823
8721807410375647578987754433305943061204316424660562183290197591901865206824460294640105701124912999988726315473911645748712058016829582521803158162615871674821087750346637725354245216407721989677045231200288945309686250576081108795683495824398779166653002276250035146315131670890364331767499678511700805830944886215909870129295681714525387490769834673746274132700033760494017265435583067200896660584418146869265397594392547489149152451193368867225480073619579699467233220308326776026324250376602884943211603286853971507439213919925999998111251727491292033915212474400667123782385430492279821603854097904371256253729876081243460613798847202200009209172994800163471465109521442268814062957032636558880534984635731687331839717341208804671395709664627822343275286991962049995485641227142845753886516889275063855761410782839986335409292179820095647772047752609422191103726125840384035551481234830238022734144358666743076840459705040489473545240725172005001236278039856283342244893268512378074816821653903
7429166973770509546364265427717116194052482582101834131240807764596863223568737961538049125496987275624352188212334764469575743844784953239390806659168509264106337383062848770238132600540965173983731620231118845868385541285532848700067405681375740780925590131463587629788000940089422272128307754750165666386466790643541748685978364449697762797474027053047314897506337458776859390164033582240414176175115523655667622390578925141319937114889609814611037880621720145239459400286200881155134155565797398448363016584128565561327576059851795284335547686432160292452805565289315474345344000389218584928303820229215756248667499562127229388264306431936433067383146665664578913112901887395487997173813962560012746395889492301703113049177532964641403531691799414719220498209787271571319499519106690236519540389019446314513746722798807204814762573333677955829771354460729993526744185554731403372396876404390953369913512689189142544711903317682269976362184960753148260805975009874649479212498787310889001669538545
4713886079659102973815892886186972992176918755713559632595819384802203747216698784938518547480256697703475736913296867742890707217018465701358785613330307202573831342856563461865070622143341123484326058325957970505608648202510152790897530236413857989827341946413250393542247437663054557838995451910444306922645326296812468704391174228731918737708590429771847532011491021381824482359942862558962267780139344817726206159746444363634120782594391599109396460707342258454206810892060527503083349940991623133412054043294807844732113074363275935864048351424679097549817136720276141974023808733427861666238603487525194790915735835130411670999753439250246326383684676356398023421774014674966955140098051208772067732870109037483800209289641570374144444908901471817781372452320472035367271304459659843759529741948522785209884446490316280070554261770152464736685447998002685793621229191692610685489150821982638753727062305038041944940786556111221413241958004180604037025981940891067812314393855742807458223211272
5720051127796571609345890976377480770864092236296040288058305563839402660359860696312564452227752009114325412626986577665540114013956349167508827505455521865920432445898132344583332438067656655511931339046392926409657978139621447470015702069734516905701312889803746004949542286820118525016290236802820343334842759341034407592519193985901762992271282517819973666850170346364983620726622899364666433180053845079618653067501940371877916805044836421785361278672817288483688540557315093559857094848393810205744995109632704188884682131569807068994947867356443973424595256650382250274665020560453621229978917760549980939317550289905870322517794277531375780018476649777583224203652141946167012366873945410542624438539593983821865054309642395405383480345803564728693492990673546663202599116184847395700760201500114286550614242782465965727427490367452631442837517740001561242619597502552395816726507701849491068811317140337788973305524955103967894155495369096021799465693453085088571809937381086958717923693787
9241841471698478249982629209379246813545881719419752110298331385664759679140715869113767704766378917861044942558231498118647272386997268067322212442166024263498212576158450789057311142411608912344286102306068661227176848402927310465395559492854860588990659218054465600736536722054415224617964655756930815223677204175695688154193650734544928264262596167126796303436880024482619123830147190193286821004971730974602861828568102275797873087299764808366752392535485196726681709919468287037222204460203366458009985887432025729670215050537626421218221364215283956934180255948456343111953398271960982741630691504535519259659995396305357903541097458010966301228087656183413079328431660279590776481876286303395294654949760474447106475863898895086289598245289552083136323945731635947579282961517399340046314883152592333499182893370961717559539762334029409827170079332245458662436133596106019633191928804315525015020345448588448654749366911514747758053896348009882086962742541892388722676614251669202097606116409
4489768984029397918412270033596062123576749985272584948120270610336572327824810608243480157433753029124629289570342511985017113298961928616362635150881506245396619250850673226030301278626641428116098525447236285348008194669358697955550796960376189426317831410971257791253635460999323369786587940483431593967072508529080629076926491061031759253965848693761755005615385588390127498442588306802050271262987086516470055863647311480876466509294409563477265026327448916090068034965272950608536183045212227885500583587941941082842783323205257818620380357756278248951139493596385957525330744026276337069403355880383496964398562210955953352364532297329180018394116179697332505359684819579749037102649374464247375508021707572512986191575282833652054142835314453403049461601426234892408983097571352860468031091012418050667662793941460846945414284068899785857814148614746983109515286414612201258557108568886525221987973134881279543039862710667819868721848425973798986673860371355536784814732501883170012496336470
7955648658325563265446053523323392290105772827361295480604711034992131797110422174643119533927756754544373450330005088043591648722681255233047811959638660705671797695197947783091798544894577398513429696338635546320253534204153934323590631345285470083850346838580768558474971884924079640095558048569580811504797978146940117953943682646458768397338103123383415578950605572659464531843606529371428716348774245773002575433220155807903340209037101040130810292640566482133063422174650986082835544149347979634618278431898085928225671495148604415873255108984878406697895323914718803277178109067362929823206324352329611895123762509275269609344154509482264915268710585726645215688324414439837460165694079260222382269567433086880278508578644489942649704028084328383796589505159605024982749730062670107981630633622064024925852685073665473206040911984688106656936438282739105548519171393383148438405710538467784245680806010662322695826055004781101157489210033981552989700861672560936313567803157401046332836352360
6419684332139071550113158242650270367996067738359082538126906317093571888216840519500733706031458716847469823918412864235517763982533249988502871079079350249486338220905147809954841492829922827810046096541862759643393233502861069515646910315004636508684642552570493927004017762987891133671032422594126879776234580467147346095356627700466476559473523936280646262139812892402811890905122507397747418851604698685380676320629179127242528365320040216305760281691754108208247101907045820970871581543107948339708694273903422660459426207503028059946261679946996996473744032780654486941824981037436148272494329060713411060722145686173368963686857067675504337107889289733052944588939549558278319351766006874891471878549597444751170321701896355356863880643879227545088700496695429061718123977040417408170246992197838175326087225530677719649766095287720921181686240108270425839220173159783344683023547007308314727924223527180304930080372804733191105587850736389813906786774507563566242475583462449768029485100909
9924219723773304656291917924276861218598718220446435042662379826023847493725678120420781693473609055577615739644323601405477992611822369111977860379985546403895556320343047862619161067738581345187157025114587226090977461887755752842511746861559547347055110647556609272215698119930571210021072591333603630444155929565754777745069370228491189745059650989268988242785302587785868666509934397920994341878650773440768774769299701210503917373522066625484512721682812722736643389643475590352296975813454061080207009955590809728480754890701316818608010967821351561058051971459904508668275502137976866475865485424738399998288747488639148183111425704796743533067402923227122859006010293194991865121553604911219890101536353660802600510598594229306502143769034251936847283593108655783149993669035426354931873101498236306870065833059029036424409863506514568061037605175969131010860650554257368194825172588417640647102471537553159523801704171104691988562516066304129965804610456171379807267598797731501047845780374
3813919301948791814430933155956113769083419091113458793394268793944989954769054394411552365404146748847478921133573351173616674054591808916083416865760885039320704147589270692021207452755091422641235363456587661193705478550869698832194162916447006538049899221246877563990051012677958786135414321503119179603180401598289704402629027661469498229256510138135244022342321962091834720268286280393105654648089793379421949846918804315411662319319134783445124927945273439101977078754094943492423781875879349268187665175023316978864620577253195624002921667549432311297173008328540896728707833164218648896092152224875238797371282859806487429986529224620772375654812452756649754080180809507707529825978813353066308705376842862822744934838162265564963443918394105651999785090088221184601949586805458646326401689561183773386882201815789953104944450252384419412484917631616676343949301612027119916863987344810874751300766053985184329471905777692755970914572316136543911058102517136503116954861299404368641909226472
8731492163125466445966393159643682624040578117138641795000319432776449357499017508608575796237939179212635672210595856732381788304348591939223100801276183042272357478361510071101111038126490532494931791563586366460744620014872143903968915482361723526179708874046782011365754462294817765822621726193017747789382391149485057365931762261877192072613334241379947449144479540280090645580626881390389809210996336399951038182889024989956497246987084318450020932229121091186538713684564355714326277138405503963394240630305792199283480964567528805909066405709020841555301841938550695809157305412458081182786740176883396982601697717550000362850668506902555998920632341374977921339997795129544808224089957926730461573579483810269231046924678293259284427158904938506115274047764177242568614095141951010834178903691524791057537657084097246611122971752959343266097803323899188843927547688426276192643155657744997023649844573793987938763419754091102187484788768156914944821215600881145442310031026404691256868245698
1193610932148021751634697589501095821248921582180675372945817305845293283081499439698557325596936058533099708417727825179305796356918300735856707876789283980383934961444978949341316876441018389418400357008581884069005579429585941145160628499616171900075183612427939104938208331407501148752516573889815650798755079708988906645363561217626795089496990458965930395784276288907022608047822035587637464834130840654163110414797876410725380323071654656357220184089267551427603640905030767827312507767916813457419614944369201362223209899525776817429372488489124028284993958946464034867612673453927318820990876031540066315373675127228290354083442202338565058403645022675271308109646303034072912412816852408784525097126626981886840704503535704481684969268467236787373536373007924669206552240907733132406084501298792550235509636371477286779990602205873602556952950906930287970662065487949740425653552181764208717455094486739143368743863156723973562384724423388169497307322464123631464337132390423066612922431713
8937665719190218011358115913008564403376819314894163021065235551300456903881373573569747502216329298643586585004608727798717751507325999073939607870508781833154910991407884738960365303306786756374190824360031502481459322777366010341414993914194707031612362019994320066846608001785595673039408478032725054912356037432432617931130850290951324191883689874947100819700199159088339947028614592939602882845909179842633149624549661370686496010853739231281852183673748321697744080512556833090231415505680920864232246285817828025354918209368852108693583268647899600402339349304560777873806020044507571733011969237487010618839496595788097456538479817194249958539067056402959828336445930365620914946468176222133213912599242100194856938882501549442655751100768752962828936171199530387899552225788438501826512743701242315190804054770553217793595757488203174376599128503089876737400086582019964545303761412023366426063676350800352009264874583721020077408589610708406307088231094373478232645705672784521936171737835
0225540317880056522485082671781086062740980423757019194996709566858893166067541928712453643520684221661268710914951421277169489766267090940192281770835406187499576454239995076022466156671585575520452457312386397564925478270699841559796456560735019462193363434949831071407224706707801965527683366734014801560857317614963032402560734778263340594079263929468016371818323017980084821269597642813214986367967083990259799314795528262591356929587535985774669589422733013920225184734871474811546660266995456482023570321322424113239541301193685029444524462910100779747817409932021636986494532552743267047393302102750812472433990508099631219811972896535212761109120027889455589498472645677720824322893687438667431110250529711864817690777714222676350883899655081326657322230248559404142016743972931415077267313465462011362385561115982853920748040770521409784048622859840956735122778346055031838621679188789083198158107358632909040516384212564607159186383259654281926731481406996715871718786908862630278163991559
1121968879778641841227239469918655055572369306892417478273348545554481580710610365355244460752855074410794776816541654930904272773483654157995305403587791344870568094447061156361224665690425508924058796042118242706076473460076724140596573891619311889954113766662597774161489094283292939084864697030170303302070137479751039910114410591619505239626302290974129932067590995387569856139032630755620713620959679547255121760040637862785490884871251506558545668022508879278519013032796183549081025604006332134122493321882374481996457512870311369962352128697953838455121977980107871332803006117115627635821342385117008593508285938448798774916926125420610560809093445887481202577696247850340541370652584447185080890019349275504906179485862562794198447327350382552648277829213918668114675156305461965026794285156448028275971617254045931182625683260277935163371586026779745553149859627767314118452935037324433314469941917822185450733301102360168226387567866953665791635768480192925012885217705964428087521110036
1110024270912178893642904679882060318625462031739982040514531750315402047133125941610480396073855523629616143437807253870080160493857975093857111272263790996304232191937351169749811363332446266897296955061521062619752735494998532181345024317314826415425536990916982213312916567734486226219536844575964685317265202865690531123042017963776534829783239595828884047597558749235466639813750804885821603266158382897920862823985535927899608040944585854494644876264775124436047868973802568996914791302645527499039898991189382186667725003843340614397676120257645597721926505501416986912266624652532912637374299841704963127483131965815267104624221590568632359908134463421704692331788135471945685352604838741502596321542518824365483898702832940143596438151219548299706799196877621470802699166828352066333811238434164511399515877271396593158273650580945959992516415096802594396616959047950213485080765378341059014459617368730218084378260531298071193189148019284472507682657633813668860386400706524533904022810362
1743222809903463100746844389579639200110603661748510503407109487803843261073481601547244149507416710719308344225758703518586594674246769450666718065443184136714804883420911684800196597103565563811991374206025050100778480488397085543898356058694610916976770309991389897096378058325509468504051283031132686506258915953140706380877039041873065147858103817855597509869218166925053771390653106388937079684094449922204455499422395229207716088194135713764498369550759893914033258368134100263544848782949754229686247119870739085126086935024500778087405529576029719432363154389020976153037966197314191377559912747622563428050358915338291140452989126949360814083463628069520175847267360406245275264322010062476060313348652791036678566356150597248019855858708928704393100931691930036411579201375156290129098902321164441909479552605519732783753052957061415539505957521821501214785450594000353128413809750507768946553735328337489990639094605395627421960222824961511268695658940117835308780483827020167912706332510
3348079947188602235221896642255175656760489289584629059626956483774753495209644304887417994666124307501374885153904230981756596064621424114031994068832285674594180378927632777820720171330435341750255549054201584713944372967241694466537998341792051859100233471679977876423407611068712513967650127297294301991255363619537240371184879537779261752889799255283284650305202238206340657239519854281159614597720185264853791964857381498264247282214654839774511898339486551928531772233437344905298111140435173045254794126776836558615484902697795640380030021058932226022497129399882697827525457490596914427571082413722853286013015559991409131429144701690620271961881662391117822105633161662809323566687424447256128569662216692038639259813907074912933738124586539164642011816566010045236115551061303047172282131062525036621732146315641051403391458921630198980585468283408620157543711499765349520183741978623679070893353095407222997478432747667559297690110557513877709141345953401835821597417682824018089754476203
1592155181966861943423597845516650320966385035390494166830004518797698570930345324050677629486499180030156141556592642175464566904973959367726030285476620915727558269577375062286723123061898475007545171072864606393420820582938211068685177227511081021246788849665073693661241968757782365685140104530532318226835749434277806267850739520280776538086966769939716122249916207147588920460173300806761457675862996684568022643356829587022922162484773372987018239403786822617864070322555584056744422413225876426979159535689023871011256835236923192696849522399916156157384512210945912341602274268550023664912877886714717120284153800368097833964147123114627611608498549020446524186520606075648719943767188432071835346005159105534867105695257237374872918285869448342103773365189748339497544548958364064543734460188022361108818792554550744214081225338786538672755926064883664309503440163806849936589281515602029708731173133997607682672857238709686264780610363005778612376431583289382986763531668621919416966377700
2691961232295467746422508282672325636099523856121246537540501399324259323205795439504684772515871079143660657381032764017681754560664169786287885845311627965438115130132009782448081209260371393139844549634134075427521987491797439691136936574855928581274985985935010349583806838519474818598604403334133902266494775142158132993494015761501716552466715168420098552730571148771061418305955459056267929251778816331756514443917526120948912037958506366756440720254242582833031610056554634913526270747070911730080103325747804052513299420182557977646964751838269429057423607263040407388059242234159941884006858519235999574089301870650365564704582136159265704556338872075839618211163034279890422035167758961867779532881088855090590241483871558732196502925873810267374287311880909527206737567494122130372678344393036544154116861500880663444683798440988197186029692820065163032934849312706267701655594021793581523716898460819672434612387823117400307599799604647240637003021378142461984279089486654202493291231539
8137968682367588959087387718408514605297630020892685429653318531880121630341815585112200311209415631995964468251313961964719395893511587838099077387155806764226014073806426462812980604409669272766832196109873606630381105671610965549252767326522678865354223618233891243202932163473319549187314349605577158188122570055095111185531289252409461705236657336275935492252900702059484451136135101412574553403689212993433534696256776410901921551268431500913194153518804595946603838508903843716530971097026780289094350390780087439319409644902219996497975179389609904568924876445915654705849072663768213776289686833913141521116540809718667619187868994585932086305924425109611082184113279416068369495738144385805880243420543996882330532344227380816966346247320564196430590937970929860172045055120024995904276642665006993488364534793727893241208527763777962754778740507377432964014958568743625337032473913132123525148224028260307909405628927221641354423194930425602023114464168747356746553756231944556648066372981
9536428779399430709472677923170498502324252895176199181272545610873928935617594909270583145604974656397798206669149654875680547610536635157154012968721387501685492583658404421383835222265093860407199789262503535006059915064648727612740881908090661053109282161186031782839448764079887744468502392072919440501389655161268098094907817480969112309476408405113994549933708108417157101935298781492167551277374100125237430025122770792322765116103375459932550424921052060493579120923103890276446225637402485584740919633498648599305859605057772447203600071787213874788578501780045751553087721254341827001005252374879051441188500345802174663495854060785036093245865420856536243519423501519230497068725025676425315948449864738937193187826596611939692419309043790214918032868479222350631431032564274293122689714638535837250132702459203552116641180275315431965301948869450147397114661564194575709965208771324861747547544821881858907442140772375418672005246063703800115259327836026689295690594292059311960108047546
0427374550787346919304309234542112456810018084457012507510890814879222973681997719457319720350264977696394715174863879752887843350874509440879594732123044905307422475031652910538155858377791860657301681078518155725778886523057785404858445685550429826293219379251819290471680444879097438015235411721374879169992042078846171692266947778636764400201098441896029012958564087622323533686227853586257422545951831658023777879400462712814518582453798393072961870284489511760191575470380658946276309341941938910350087058561496749823972910993870004134371832872576012342857425020378186112075078484607843282287021010813152854947457647176614514458408461365503891846792226060989534699136264152474381371973178399825732530106829887141452886471064802024808464893462075721525711612931547977297377054334871857570376254814157795199852265265155170353509467017595215532501958858740977803196816180367130823197902399545285276077427443879466443484734110230889027597660677863778005852261949960372712873532325252224803547074501
4780964732065452683578857876616013319070110432783723056428312233904355985134413770865125088761582275402062784148758782928197791711438592240663676224848694968309954061056127990484521955541645086495307151369859842442295181873376854733545506853493377007485378169494270023870969707544651014832866359518579486419652836255147417208222326082984393381065095782679631324432661420586837147952197652416445720970328812330341038525520522782646755549444199136057821549633013139224991278527531984533797042000446833676761838697225752736299843925769742442593210389260730926591665082604755927757012172867644424679889158260206829122833256523340078603095719614457258969838466711937554118120824748978839140577179945001365447096817634768619979161700137417538148776390483978374154989147107013448494717135630750145670968074037981446555980198360182532398835644651325064316970313926336752932301604662815204732057777199685488697080720226878614292927734389779412560016756530332312330280385617793768048861410831692271050553162877
4370991539387821850004634088201324485136312143409861255426546244072096703156921201273613724132164884910637724828436868466646962084182662908651081362388631947028193465415559231378161117335907538609840763693668951429090163787606709053029554930491379481902456177891765688395439634908388006499474114497295308483398577668836610081599099618786796760176184707276220305923982561051278244694490710158470804909319766192027800008252095862388505249125800150558423764130033577815378924436369180077174968851034727194203810486227859202776169395714203632185659781389678551490171334410294106634033304466965173101168825367681889817511826971480766281054784614483587262963291953576488955959679601686021004489846411119612252921105167557788204340576305214838470728985123306226780810838172169418423947541394039612182919525435050876044965197361428331311072328067413255659065562005392474161985758185649233722209467501511014695846348497789124912522988112178713947055886795941373143400369679454335295946628041057113469963491674
3460123849054663033522304472022617987881564365211903268076710997107776086017203921481977520940030242309509232802754347138974743661083311319241987410288727070697796832000315489572140089295200848629483431781425813058224425470519774593965372787074333032705406199635087070692859258465739078731796508542414375808728113022165650467381909480520902160547027731292332030342251383497769636667735144007908695151629238572605226537544289123982025939930940314990058151451761067872034184484249208956320635205731363915405023303206176359573192132120093125969058297407742033323279223903876119584054748561818956943426509120145577935673614254023443988923337966209108589376850768398927459282144031640129342690354167794744399625557981626627359952451374194737082647379984432173551005185104727759569832632821802156234267588596775277915064747068521861571199385183323390790059465970587428349295824469001901319364110776241113852785429279559173754976421979329026068502142911622034467483783233248022488362721255468383765973766158
2009559180801047631307134701687085138577473767825200798808611380837267789360327229666187685505418674909260837312346291445766117895657223699714577175182228247385770555648636808712646698492819902638200809946453332679857695670717527820061137759039658328593788734895484007902151994409357984813121960803148571401433934233711055942891247069822518616723589078958989014061583879181008558602388886575148159876782015685169551694956007414733569297360306695310188325750908681402188439743537297093572979763303708473924958882692051692962152111049769124026045883243392205006654854886582736962410885120520321335888392000519787176874715950429408214294842683797775478109847734464062466925209557887739872983131505912554415060408566759734492825666218379229251656450047593990120397819583260189798515276019763843577449451576614987469734494313623749926255478850287511093300120839593612152437415410021602853529487758391421237655136851407670076951301588518886287338531310565915235394794432779149009795407962430854424714119590
5478297380561588363908217971177904668729976633217502237644649377248850606070706580689216603059023589743614017850966973490483517084771968525061940361899209752522262949053377592528747262105947089270022231023864094605204916155755033226508953888542027857879314993432421348019655003477139831679906822444543442759977637559907614176060578288694946075933433052134213762464805502719863520684112351448927776892143860415309261244803992746994115311843325569357950201878172610677937198731777095977630720024434139254503266190412576491419874074948097569576621024593478341476145714673777557348339884035156209655717356944923400679546407325366736727506861424102204747320794981890993256316295616606292169821807914572287383487933660211885597082985940485919357715537055199728037120348997245893281162198959850954556626265441302908737154936297297753390157240613248099948100908386490075878733766104420698119720892002991300715122165860909994489797251634255518767360217993502708728789113848556433444546244371301836241590994902
3087668562653790833014787016074203107253956118593442744915810130130518119254572992368109201026616713131098283579797053230665270263974099517139289065445537320641670337862807667201438927627776455515324183729852776212705742119299796187116192528732652120131519751271504532725599472864862116739862779695602370565348708319154513269568531677818536449480553023214016473706955480791397879652357001358275124860577805841489679133317301291427585820701414905299673114100782390854148848483285783534303281830366154519606902970477157478969485732272689375044944521469430960674636259630722315133403195771363882254962699338773917843897867441925347070321852375854748942806583721332472742285309595804387221294711327994415574437260077992125965052372067879118487362615323298905889245223786468778133072152840876385537545465379618360771031797800089794366255585250902831143406918085816572950936406230241890719243952763640063986068700598437331704087199682764713161673444737121051509322640236774928316500107364686244973109834955
0831248338990074764577528614754591525417804213707090679255713384034795859220501221419598264994598087882844811547111435677490970127774850511887892163455517501203928823743438454601411672425284169673963405745872166885964041376515144563707054913417657782616629610130628646338944929764652835398348030984214851976661863410712282286421349447529112897196613780642348767410659108473452771132137878126330060110684041269612619097810372628967682700172748522609583492793102280034841062957587042218199234220586202767455330421222755794115309037929330821501516013358642362952998498315312771008524930599352136491304273109742388860070438111770405038734192678066786500524633763751431337655731011145247176868424059796909277567220252479854242386890000891357987166566533603964537866610984652568476406884292247666828337698605350799943634753428890604080411466682674806772399422638963972897579030986911887857163994843142108938789803467738498105097666253021159083159393210392931225847154585824726827443554815042461756948664136
5647361742798730728046480170506013230482608915825825391122815215438550780788910906485628156517973324382326642611559491103135551653912249937920441980776299814442436276519393759873267528968064771323344304227606253407588784265254243956228767998710910831506605420798702209074137791733300246591961357406421604746300354750704171779865627183331150732388134763989933093281560620014829478642166512517664452057859109662643440989357645961213856010480507734145107944538865872887431758795299998278002202905019971686008848253457300904077853064957205226666735311084018210040421281130948839069022750061103081967972130011445122716328340948942948259569200651222863934156901947181821456351925405653144662250352876460885899631153492245091554534013904736992668267727901375748494531809226569813206775180824503058733073360319254647082236066967481946812528266690689950594062773517572294040743421647062282930112005515160915179843850959407961762192093310110600419665273128415297212376954513688160991855392075466917966719216695
9120197271378672572158906361990244409120543739010148944363743469093503006540964061632068144740162380983781162692973877405548510877327826570564031283772846037767993727609415877397387992580508134581918891710565104011670256431315679067103815718887187976983552869301888090155322567456124436148233096080346779019291891916203741185398102012311523994370208116050251930690306936744013416422408633480952310036899391046451130235810495197383429324423878862813140254824007982329385681525396342314678315157174497297021308263924792025567305426810376709582997151758029326540767917888399229620785900688658873487674767834684640195321763223209090359721053357791915167454758084488485312975486614207328773612249842997664318420623718740875692635932967938036601967018566952942249275681478197844439554508049192931957642012652124807192873003699188536493595684579046022457243817398299072804455459156700052720661988555953850078901769281976108548067300498109421207717936529691104004167159775756140060658029028457727533457107129
7763116550006304666416610598449948263870955393393930868071336747512587549550596583849219790643201035679112189943067323295951325913435091001970933150872361754673031184247585375926904787377659539490845650360308536482682783964545378529069775280613731616337801813109053516559156184768144750160541606794383860278619173103568347869119865369903195403720051660113940858152143342476177358475935837113996230350072598393389745165442550300241898206141339071727359185335283709200781815247756181744878648078385532680554326008076620093231681806572444302906437650998770772433776820036967821875372787705405195404463317931139531241834691079029536644916939330033769079953248710491168078067157696142948571975129332485597751807558336842717098781115469759998142015554686532792414497620600295930633720713655614343753104825593347339330398387019078386565409092627842087797854790671021939925103184125438578281951910790114516153273951810067896618550910396658179771577781204742380414337429629111349533283430915945961519645808763
7204334964431850283369244152546949476543182968111454728890293801526368382724761368472538115024788899315056126723992449012486604138276206311121519798460782888233457496081244495077157709357032859332569219266944312053855026535044452489101292212339056198396806826112692866313759724772572304120006015416408467164368810589917441361792649576210259387889693396579296735622666582280687877886120901733465908882253206491589993725005340467770625268140403658245453055793877378754352412251316020301389929332529524696165760709841248864312252963009364257237247519479175846065261830901518469944562413559318570048686439099554949484173357123406314578838997237648058591567879887480835451936913891892859007894073577351180207532170264864138620842904670322995731023109034564728458401436979031656091439569968710986018934129496940489734764773501828905756043373602263991050224985373786372283032108337848102818303834865710416942027186298780683636272841619954102859929789460253661086068137846318687102673996845702968283566855547
5347083592269292449588698953520983412337883861106865289976784424789706580283107333988806278174275077157346825955396572472790821504548356473222942868470474057660742409365784761461849335428665377981496298937627575506614357947620267913274858552431364697735255294293074210393164255380135810634056385928002250794616052223016399748320936536546928847873383435525986797737983159554610075288077340996313751019218145417814887344910998453046982609546667811387809646762439188571873820048613805226237944086772966695875288321241943533612384435900748175885922739590591185605735318694847754090286310863753005387770587721354658845471946794608481151439631442996478169402443327093605702337748202901759557293282998059923291912303625122513509411299470004969025942123549913337808804763627951819095963983401330778500086085178323258476882687271818852675340857400980049876393122123971167113916632960745817859800720555402863973765975321465637266516283657416450843912428826980419371187525810030344104675483124192903540226709008
0489373736475003758468984122144707786696392402056400683666913575829556854751825248098542711591472596964768377945621129233485792274956137536540433142899341952726918937324499119404572397135907470870003425819382277020190593185316346142366582973029853501413996037455267641937955705127520453099018519495191231946038418452918653656075026844221761655228116116800437355554428529291858381398614963708389354114743533047323453753397753135669539277994511317785745444514518599053241217261843795868812369014150583618983599516301458597405272093637403642897533100309188429505546673657356887269458645930043854113962684624163192015543413842248727678360025737294629268237798530210165380797990670345346813309582634249400966264264192194534677490997392295641336508291029807670778594999185081652843689531706924822923283476267524116635969512302678442259572264897220895229067118418928893876127047797794961621927694742572612676779559448881586198836596825155036342473887974790676494454225046643213070780283061410052321749683776
2505555660022024460604630081371653271978016537613385963444290070334578788072011270866581555738963829998513497618459838633606470011549140814002095484451651676713442490655417911817062194379405500119297718871328458935331572976632422023762737075529829842913187135698229814616707328813856463823921981907695504686121588408609914214486398205004507315472407368362519428361969869160064374640223454276545585137866735381462449037972800856300448814207771091866759062181880063057867588298374247773256650535498843223913067115051321481266051067029738172249306064256463446682061329341270718180749593821861068250988107494720408317966113496718523309075777846285987665554343091981570987612945785184270812732011505376080095185159120804223754265594938784568093805629189249847410024346179023196946535562691726012539549864440200435241229850921938976443673883963818253105478972055673622505310978541099769983890058746366643110929386866797244146489746621462848342241153583872846610980698223207737062379562727062743554478230415
6110987410998187059817177886221314642207169043770743761344757456726101082287654512591026492006898222202269707969581499952334831871319149027919819396808641561903619323402041409100184198757377935937638434562294029923264223687716196701518159280279449805365809938752001783649494666296132308765669867742634833339507074288862814076343891385211566518628157135755866691407781836705729755088823627110701230218171415384008756847780372630319442440737607516537351587101692292099040633137300455674221450910518448456813583560065230722491672908334414295339582249020224639939649670656963706417797963012328682356922743658198308999904229252704049454576463902417791390288379998719399407660007774756960598229674730366221210181061596292446182873517478784120575714125316652854566736443491204297422866208555833162675810751886474515538536455326019882105728726563385379037543251240248546531199681312572851887121560035694419924986601748029310716109336781131564168764043589332690676833925474499491759121021890545117068788489797
3764738351522674858398004266592361249455007667347750609457121757457946580005191473600084593678070083702303304982693465393734933319482355855015347920881518166214756217273391384683093499388872927719503350094847542401672426054942384923754443155403577843324934699048734984573912587530989808117899614869540250045546113787194517973884747406078987250542376624359058764988917863281155891980891601308543450367168158873718494775107297664369552657563576182171636236535880642098512927707396698283752953153552089734136837636985805230495349515324866795968626806808399223520065509819082290659640616797699719632376499708120558801704245747533076726471834612530535771796847054452187216921206813883522149868529869204046677928288545820138895787860015259346907814296631560441702487798106868604987738068202958981290183883919818298247311574769437483409324241490482917419664332813451403549950608421479635190710915381262014722136651633512759075598162604826468639307417186329172076507480750366422059243843318004012504953734027
5121220764477870199665873937296088313669612870527417341623321320837669869860071899826687535914701525859116417471849944397595754449947168205895451792267179945975225484588232025745685696307053515546293270680027094213544602260031530194432557079021050387874368470500051518778790103559738632569735261555477530976655983454131251963683595398096793375290963095982892096796383801058179725145271194221527348405715155453294494056232049893459755290844338214874287744811874551775528787879015576355304369289628700470221210953989795858680969196774438763184785622045268328476405175353554860213546731697174194250089555672588842947886127574688309952643466877652756956386758854217659592626597538640007276848383857606657149359099465527971972358128468317947654235755305323765198953489808887849185723485909319309210046624764808866076775110341670315583008624735989864681301840700132394034519815020051703528191100247639288983014445164716480710896640890466753730599042006498559222674136379661073988568429019904583515058680279
3999771315851225402591456973675762441613809826603476419905653114588167533163974019392330572976820776528590435692953455978705868667531351955571078545606463774081200042197832052592321066547605215762891770287225056037623423597377155783390897027997353196803750610068176159409462250772174503709547237916334367801077853921262561924182784434966821617263410391559776219225021379927823802466227610105115209301898923330695128901353462200843474447279216238614893096876138352744851689234824221301062418103251211656598296543914999301504764974196044235766858023183502706034740452288048105735986757976293350063108786920949742453242346672572978045235929117721868993853638537382225257164418075952269784996110351468519884425320844807307669318186460589555635030223802235200300663474627358950691643723073799435548886242285948073072554778682094700887922908016019079229994930701639198246262113227737253850155893802663493330270904084853007579022314559178754642005863062937114136854551946357857103153953062838040688193949518
3955442417676273693083505228346809680959970005188235628950769627838645427749724864493247711823590224078652970236544400834472033603040407171654034938858844337032508768540860533768801181617227244346255565256323847676014768066243555854125610927532430078688957405832732120921152561887717356389389711265571349313090638515113059745268878292323849482397870470934019065465530142848240195427127279841013237386415878945424806848293612520353670804730807466063585786437637022253595552393467257206999961917983319848826450002770210971932215319988150321511713438759328106559630072637790988620019607780125453136505570688742875215223002512522040915071025717563482047432610975810331318504280734868132314016248255934922689379281414932303413732057290958532208282388719159597656966493865186450710036879649070788351851469599986315667090968604955995758042039231934611059728789987160615230341742922609438619372176302616221367306361816133669750219779600339988546623393416355682924544280940433166492442750358320719659789445573
1923422594577025327740710687108690507617648542264451230087467720686363792915236311535867506568908881618742992986719723515552873438797788390233854166415142412339092384199440711089064219901676642338153530308234346507762809933002193823905009052072085290797608377359490188395791148138623644081793599989226548822489588273121236337955031810179121724005267610774314446503448411695683451102746362920090322696292715810682282865364886717165221798770508526637248277692216235449341943001707812727035524127178359577757809134728555426225420517220355188048037293528019675615538571238564976649197068927155380356932607633296070451858242023046078388124136040694029280274627342003349466190484352837178953501434415662192244165287566327251391364024685546339156629611930670000038316125216171027284443199403082926644526915564000391446083782955369328656972165933283623792339311186609753520410531836722095652100237124437286004132496011324817608047675660275643256332885441315767125522208722527814977389001667577354580680997919
2874517300754515844596006616076122642301384248830028440720225600435501654920462810641719739127384502671877033872020581731470854546129775668898778892502564226344217243261426773268288852008599127831074494789339400692908210503763708877228264764162379565090691879670036083086100834047466776264767792250960630222675152107130280739370053537721189352431737668166787372007045677164720570209978415999378963720234691699226735146364726083269007357421420287681561139143702672093922029074642415254746465268388829653355807485132768073287497062809948706418112244628205723026252200480647844670796923952073749336258337580669048623384970445168474452326099165147878888994229975508866137158862360166202270406515444763590747467579444889813494557034441016439772813400870611663587307360442264581360413675182640596922842141348301997768320220606122558496550527215467849900007512237646094901329801644629154868525195403233247984192294922349314899588888389397376300445709485918100905073098842017816957295710760847026702126989621
8320340062602891997405272371901681929882850185570154731009839742936066073245900138414461923635603295957535821436633597737822040660808622110134000914866381217795710065027751279385366994599065767107890819891585132382712644430615723298712550601778322156677152275712314299272779307838323713247236281814265031016572677747319198899726556064994887698147807495375986249827959025395109662480322474877798289642966855793893834204193051192053577848377073827148114686536961530936902416873440224025035880700304428941541233532687947248604840627727222004383635919891496965757472632380303720694117504940256605493898182006534496673073103699812995593114495654731430729217348094184264839784922852722589742241176067172631540100087929321653732570903752205093428888047278563485833236953721027227329020833329613125237371177186218328507989527636769309415019880968220893288442277307185863896490645008507969438041317076066661011962074841657831437760554444992787473209439178548204102136736775686432649959314436541479548330023144
2893515720666211195505464012271284731991805741126988242103066081342601583340583243827648527789844495915196625282298012104460446478462609471240338721342366432899039189660231917368139729200687911708021321328026533121462220507855034574279289667969513927301880584815685753088830509990439514006756943095728358603037970918800783051390040216859929769857674294437213736517620366452643557033676171320943025415626132711925363554498610205760153155657236439042699275356686268156293700240296887842909596071821315169968236260779478699866230736550232402646131680680048579546338942659251252294203057473718519279978325773062176923868786821397997371188037624541724931737633294881043633178124624125615716754557318445734037129862615871802595431750894886757253560936062246903614076799115292429328933588045474279994114037705902568740162061574553977898470084587745434009521875301050313734020801150692422094761216063204837548824509166972087215279613989118052637341303417782375937936148836947748074146292101128105333199492517
5090949122332396470633390507405040077775028752644058071549054683145499042054250292178492779116504769956269597108462384387948070492606505520710631940055581604358778919554708075042326223255460217836834982856620583572674617135613905928164100777688248927714704215721489552610351133081435911108030120113471662190568753928114805391817401176525405126187451479610171628766176941528353222415035140168153885538325379204094875738516656553650104516909888753431581756673737003068299567643728906073232257031996560734797644889888109296184118078255934537196223589721491595950660208628776645188836079992607825866635627660398134328075335487943603258107119341284844057630521438159670577731155138388071392765150265385856254671307582064204879361134642775216303557033387708489253782716677806636223685374302900005028424805288536962522492918157536570701836338266691226999750986576295960852997806683850895544125469659029567738115314537683819501672601260579065835247124852671163465913056135691441309399566458391970270931667444
5935291842885262952062150973141810894903830045406216627774817506425090730716517162792293343591243887470651664676450198071240184488968773473856090281573109590429293854047532014957115129342670902499816226006442446040491033896651586213630124326536909554748128957936310008528996055392971611653023842707619483376984265284503027142006457522785235391038209920645363775153468653166069492127666216172214085691517676645086103739607394724862255263095757187808365428026584799927272749681010779560075485491895397254239746856984390173052209215424674440212824396238018236265908298864572921350705315817191615210090533349391900057856962735388376016385524102307815427994361342376884580550807856818428029052435767994953191428944897429904761562644029901086313620558703461765292764251317348092365261044851034036947258059720138693663098170274059825813595546881373359279977493563828953780946209751471879607996398714625173133830792776118487260458986774460575970932742981202592857609563701861041930748264185253265043849592010
9455827645243611920528950703490518605230360681081913569213136224339762393703267422769683079179044764398906944721339035608414167148336689279145655792186092834694961690261678469483269025857010972893040780045729355636183124443290965079943056144679734887741233796290130560110714185694384844850250106744743156076702376582239933472813782754490405184232085473320093037900518135354907802287497266128399520817307295183639205172486923024029835984486780511114591637809005153283496815302702951118941858019340525889280595370108666583075306408991910701811283026583065745245547599647900094876702587533516206634654186653731363810623103018789903232221589593300053817093490655705211589336476811868821046851459517903272918042984764697165364711322513803786878331884243481830828420342532638499233620597541394503690931291245774722941833921443655210565409949044465717837772911403991624634911032297989538077177931014552601810079591464213856649467485546933749268312188832433093389612383158723203600590756730557892095820864050
5451103930058336961974334562857850448920073538726579740967963679567993868518597195719127194838472164896321282914015607687949513687682622656751550091433249363020256908050254778559372376256771564302858641461131218767888523567370717437797236307870216380377763221044831414767197186625686988708315472030956551344250095267405547053817894070227737979106086620315697951908030174330020356342216962096953874835928782459317714604010964803958024161833816626510446341478675709359204884225738198067045636660380279947476707866592169889366679060383986059890950865094835453028308085560669094327766647350648015582632575578163721907357172509603333937124357019871840826878945109802220504573799075248458760360930859690848358839502628638022374919957640028132894212565096027475458737171861150177923169144482570433725886000048763982860485616458982791721137415883229057448833800120357068424777223181776286854925951504640872621472622524173707896599021014655667625088068181149025750636463212952055178875501439410333689295656900
0683186157528649457332768013185195607361935511003648368028515633125221201498594024532692356484253325375277972050315368693718263721247228741127191747200314611299996112980596750963282104662476608644441002110982179617400916720296435681313378295921760251937201456055675093874742714410168777367054350636857080102029963046718466812945893563734355815113913153841534095623829893489567672015259731927638554857036376736659152473042385407286989959646972376997337705713485493326874816369392936111347733950354960346257513174239547362859199334727606412224277651810433302813438452210648712730597739436188437928289538484289136862874785923296794299073269669113342282346385152284500218814966037791568840374328073834012249597578472915807760024772281760459714542017292254284297432044899606798778522074077750518249309608108532836337032120509982238045165288961119832931180814609012851533191625164021596038773002600511729153968512540339235245239926210024825978854179474162237728276342649136164751163884319313232766603000808
0514987813468632586454049617755399441770787190743243373894978158823848827193258829832561333514940033908789091775644636523334672957725523894363717382092807306439847858907152401644937153710655886565348791405319203090681904282276824501300242240618287683782443785705309093621980567438865359685466755597776374164164989186098002150089812946539920506533979262873732786486186025301136013032688801005520457696414743986277285078110149074483136088930913642695957276029358930842973985791585935243634269663586606288942724828828789860591508414951831086713442288074155268293056758871127522333526811649334591218218159622190295564160475072395123537804402632532913953143270370847368338155700842113303932683834250158572192886004348614083680701969671543746652953947450681280567957358449686902874716641307984785389875235575440868137625370175100701666388319395987367529869527572451381308665001115309621785978309132102947142071582691310177117610677522492951885057999205024124775975766562147876724007335963323715442536929854
8498761751825990968552549437554857315570463770168629534105198688247497951442554009456258253040585857820867356522653764459186873774607312168182468991135403005717020529821580995156601979437816963320753668654210080123756313238425151806374866967636201858558792239444635790137093208893619159152830290109224030371761587288387046125379699813778863870447579006267022668443188010521777700034198515519278571418078461378026592108353168156156530620610949920894659900423575591411614201473911205228075976184133839735885704637211526771903879270259746323419470011806779977934953019280718227606735644987504994242706441667509573431721985088207313895025490114200227878657701413293562291687553790862182986409268750568973801372300405287556769135565202743381944633761397089063463657190511173668340374177058731695858611175118971200212777169234427020738255382055019674331676022732774677542904431484620377480320363918419119988863634296955171390906992864295984250164102785490303015516428657747201272600691255441184614138126728
4063924660863049302524248216157314642746618587613543566662475838669486275830013325813779639774347544738428035210803506076965269307418680637665728863229130074703735167310419779149759521184768824092021055644531551484401729626770913645106076285060186259214901632957389042257879132083691486834978246293137507032802723704882458102674629893150826554707235385009613860395673112163475461703469045773782339521996810914607799588696192175072410216751847272525370560662970598713603841271092416543756531329179012861644295885775868305974504386042537222560707603311917218885354821204191341454772248303727768110836833262815735403920831889259871646494085872801270076999562649404406371363002851862976550701709324493705702559019515782750546356948714890575129328413891484798236376333281652938127348762000865085301211171154077223661325844289060967309526673704395506112853203696783329973771231326243663182107479338349824984340784964777927059764778206218442924075993136549792606098516497398320498098748778588630878733024028
6018625018104348271893034543665821155355858794087974372054386925271717194946130443135906650955604973098480413037992977008542123870322372270959110587864056052452615263704230872635253028702285916311368089026795121897129592375088824707038680957218831915355370482284938498655502705675476197227740478643763530934428596663029193731046017029387412703784294126410044992922188524781748372347615117259599773838267292189011470750491627552114366116719489106770923352853685906165138771993841233468572869683699494288036211315021254615928830179467117427007242987716665722300911994495128165315039065266243924306633920718047549738940078144203495516088325146707786846882408533167268435594038319912141408513161960902545885531022366597385643037444525198152175879313694252658012299563238238990731314603742717717819588162394823927029145914004405445418157191810911461798938037614430717231642603732128538236917754336607354837367077431136345442298473816496752424900668164808483258769162173306453382118960131799377095215780003
2803628835128379174676931051155406817164100417549139769748266386712075965546316184576011774834322995707564815082954275203458615834265790978640504780067051604931522707596071602720759684339945561374071857039751335160427643362627698761532537408829350805042024510945936933451446094458280008782324123529893491930201681777011944223067967457908981487783888907416034826957568008127424762891167971904921077042491427679583215779697729791706745698569719920326942548914092137200206061269205521389645603730536691226369645948457178298380513983542648906350303532671110701225485467556767046227209789170433688617804204570484312999201998533163757523474596407998501259566019899174235887897746537620477265939018590970013341755058392587063875536617544620996056639089194168041384868587976642869501879033978533397244544740912936065046213546485405509273537835412305681095150016513764133712871186606954796752442993085997985779709294416718260743152795298473611273664122728568688697810132731144169279249883965487863259194960688
0151568567610888155529899127016610967647830648041351486141468386400213556428712748086217757148378555187297588294499467719015767515382437793407616420808358136022580486305576331960153525865686214560571943339415824848217545473794286960717928787584522601355265889629165216988874054536412340545761057177962365334076364915963252377051805815143943644428482625251713478804241938275352514313454995312467504629121090857354647830661275470666311866480431013942389493576888762865003622822513583871193552557700228138380744477720036869847523643898688239460471829937957500813729211619817401098786374280144525447670772688465247499863765130495646507498591668036695455014631833981614736063840834367498431348677156105155629409536398403359640331622857724635347306618490919289350936265312944243110966323310399768543110929707387928636650157539688891890444327568033868560464491089556765453877546219766229368256689888526380019760433905481534492927773979891891805887595513261377589905875845832940116242526990609270323742997583
6005342660746419721075439972511938048312942723190403657560221446319351715685153354828943764628781175283171240599016086101065639594582040926009865114798069985102860651272731850748028096773113963921448708544322651505331528252257995790438731689735064483255655229974369914787279289997900613780867617508305988037865528266725776302625972967155101202368554184331369877979768344694729860382948711390102104484658272619828122686037434503277610022625091804052286832735364357751974421938068919913705304660596353385103301718388239885634395722789147348491688171739343539940778213358643347911750574999107092436543631519913930625792896319265848482175049630389683266743159592030691224730735770233639042879375901133533066971500744911065058403792475402625676551946115862127213740746181675824403884302725010419688919737053241674791700963257936689541499246966054192316992071635669581365041734527045484165022740603989684509318031958529964580565788529231139051492351959241605973605623918848740233406487271292310843429183982
6518944754799661990800012775709014831188552701635820368414577736408184119242976246204334945268238720777331814856794191716507049135709263889337093294698496625403797422584683195423487825726159440265013003575031578401227912525111187845642946263621069008006749703769356156338640601557530520371394184638360421859995447271781858548903886533907050871987458678695726226109061883823888172788359879850386472523226423297173347969394179553792855809805496690353539781163873558975714888340649779940811354900135545644766016532341439985485453154998755271766126220720196328629598110657984606530171589201568721568382647871483461390917860655678134584608776286884719214048690690417154873971704194779342814132858253263014261080244894263004508042554787106779521589099626138153912637635961129424886715416383832618867655205655352944659410285753236237407582889320502853923383636563368547458344761418190012609684303143758188970424127642073790285618053006665700530616849620824394781775732394144714105887402450985502050127745345
9306777678498129056276107820541490835853740000290606960669147715647866190283232099008595496769431859268604094859010879249460241339883690053624350818761265335877940345096957324676263487145438136323440866036076577763333002593211072969274070731658039265098057414654650177747808666664993584448378277903898907858833354035355931333032428272039880228949112920933797900778687200963239609209609018329907589612752865520507947311137632541314877353145510619561748807744001534641989203423858319593565035138206082339801531372692821333197182537266636773774653871630329970396335513487875951898678440041629666668755380615373547206446849991357784904613666885808549262678703027888468349084431444061654464252444620157243046724892198073011723288127978366949876345235740855080439684697965069075186090846335425860987193664164527374387391228065651956131081810468061606711420218891449311123680441477014630777078893020747029372889303676874427263394514755580406772195087041601809243077472239528108034709772973320624177166145589
6632326382448251278209306769257044962637632031615506071716904606738594457743442921347181870920410099794457150451759215007345332526531651426446962969822627697883113660287561660684411645875235355732017144359221711456102209122203152878426255840591647496541586898965310969680313010741000099507000021738356754003624036209709845210483251270693214840378380049716997036818965583856734378772116533658959625905456527768436005754932820960112000516944862838319200211556811221194985232261387908064049541119274668269104063227174372651773185189909349106330757971679846614647060824485836754648939032524517320989149572839543322894306529826007379725255431074449152751660290267458061161489929908525438741325913839402170331826784507534450479238760194866100009189097120959073192958877189854066934785461578615465910741104017751231893406417244517202036298236305118041719046758103016163368514572500461661097465588236713415917679549345190314962516622217488881525916883855356959220839812246411427674657611031140935088862827314
0722223287421881794645683658064404509086497844835085338129216769012859790048296085099775010992848393758265551037062335840381219277946731974878351687107462052162155255802448471346558665321548998264657101363635700768122580266137607624856210654426108209377650366014143897496947873539456030848656105149297071930921215812155757147896663911758515409826582833801472473834486132765405646478127557434176752686301016161190284246668186560316226854821188251847619780725610042374668599676236449329927806670304425573361933825216844921415645462113801846723942509054140227028334072958735697764419034138034350486794516830707683264670045634138258193960800912747178733936626451129921435848557215235657893159503915828803958989079109858735721178104639498653622388712282093333200059859471147975310714995737450849293679278639694069822063708017126329038534574966764147676222373000547714225625535069830261636304812219040598586150666413203025753821324956393328191252375376424533531798102126236894135341901643946238164139888809
5268483582745715921662056921861628190884126575045624493887071426916797895218636478949804093422039698354219893740661046223545034739432810755498143785119553490415820559326754354820384615898390103251520775537075736744852628786726317379625176010887400129419154180189808748095033374393788280976732525375580297197483438592989946582581387208873903980987115415005745511711534645015697905101227054261650959924935921929870813397716794331499418404871182094053329854677979588197652751873241842696289230374680314470046615928241052782517378046812712924599688801844221373973013429289500306380920937822543216042312987592985512293981806499340043756155701653466036335584295279099980515652901236153305976956451264527233386024700691542810943877994840635666248088242510016497878703420132729745674468885869452401441477329038893021671260542861876191065450736023921756504738401327799878891467981002212090103324606813684928636764403815016790000511330716002972903522544691262902097441507645663427990062402447597222037766965986
4540685002008907746602107614711184694175650941126517809265363969563150690160696468333179051710786741195465347319469237995514170938276778512895920806951673347548579869600826349726938709896525488435353246823973114004414719222657295149881994801869958395167344859431659633120561362089641188746450938376171842825574280912758501040647921251780285240654097807054800256914586092562836301624047069420300562838734969284512089234719975582477384022603788870868135095606048945020695535750239866027561857653877103473584392686521538734408583446917030564576231552934227122528244213427637640123313457276148642336690794345168092305062833174517350776456715016780180712230651231121218076858570256247246785320921957021144505278024293306139098185434091029242525031778185721277925611272939864930847952839587385001054188542278837836464263297601001838248926482410194607956599506302461825009346909615451915422451999378304954446677683686294634413976635268957927864658950010773162866195581309655575638745736634756882546521091107
5971360274613100942048453114674420883336043158363144158239094017958374249142387366130472512368623584674680644470199657669180153679273209883237734652150707353291300518175837012908045535623548137685265482189440249569620780291946210263346820167246011427520105884265813287950880713272007339903551273578762468010947440778227299825874162113338492191014369021267664323541207424222307956651560187148782271877045124742107794636043742189637186459096048275127194167328258040718295320105781199050983046812282507581629611295885615914715403783064868110044101038307902057716267855950582092856728675238738384916249242566740758679871451132771622627724719391396139582061679611772639908371831273834827921750595445118551840893839615058865216233524063768342892973512090370512059287314123905794700644737734401294275485345713778753711952075771598989779718881711160184565784734679081347585312277171659890758257765608769458558287607729993317290988287071596548377606687359681659122958246063366411254380051973673754180739328843
4545877277831361721716516360108553749907540947416409106346779386834027892018382153930969802634697995919711788157263682113690176237925017147889746590699958691486185712761879861608368269432539272528092583590644815150702000560505305839819145153469187442962511951842455947817272470225005645019892551922170013826424686469587224025474739896997940646258647359730014091142826197154420214631157735993171521967947450789235693277495494847644885417730742819233007404623167048019789429302262869603085648356419420336882805855934001728037679161060280805746382514251547475755167677004630844627953429418905149387835344127988146927118555542425065754090974227552530401250809674184225436746588703756517459111729307116308990717173352815572912985626853245734212017925952688207913562205109411072421313970969297981837205199391184964347153174901566779240713414866734411923967037154619530981141859136337003393824975868800756512886513960353874955806681949571174979951613845489004309248345249693714998891642290006737832163451147
0510793922322100674056239886749425243881727806146146370402124693540647181880326524826278673448834916125745112642807573268688834104219135099193177423549147311793336614821634823523008456710813596719874876458735595087262296622196620032036657306908777982941930944228896823288617024999269567267187881680066963138578914213371162757758728162641296646489607553256371520756253745457141910684009902895892052241633465624109404090219121264423588957032622733826133866567977735855832135376521603806832077094771215112106047378921298325454791688849863200156798352449958368715208124357998492304902150260655525250143521243288011468528138619132902666569607755616172461496599474989613685815300697710324450311548006886924117444229777044415366375912731693201012618963502767409322333645907770209215671968382579633473859064566760936175085484145131628537299632763243215349857203013783834964859701102112703235905452910869454825314941567197489058768005236859148396384128809421827085988908293026249483666727849268734968682156863
4107849365082120320194063925614843391434160524129507130434903380770699195566388347541727676787195954118071663063993106209803804354239589488371435892128507906362141096259134895778355776505791499384480208684138966737727281615093140412760407846419597441258042061521292048009391764192548221506591719931811308062186064950053949274577438653927449313033525774666537006348222565063943153103204335789927205167513925341817602050158146051804733770380346174719383652119836399525790416790465262839407781611037829073752153795252013846817496439070709493874713221320092126283912495783501895291058272301055957783170136135993657487937425570092267905376827134258906692615450935998263228016431654469794970989817148214048864374916912110167164728947286054598555437654651508517675033942665738654532622759815196751533094330847912389133283777920343912008160332383411764472780975370300051800207456475403144599233982451311521668670228602870836921958807855073604937191585219382948789285669484882663072421462167267173620433365211
4178778625521998954846597589856634226870130966863229499224010024272870040803941629631710081759506652726208510867166853849726329011776906442332387974046401417541308119473979955217586825415817906431046421499343741350285455034346894968589473684278820142550552328623295964429178122060902436899386473370446604825307249039062212768190431754123448206375333519573198923897686992765959930252919194543132943273299813266326372742113786315645313964419786364106217286449172138984161415947195711416934319349365611771657118413517653400472603422081754491195673926028214511393798452891545062826276657566656066879131337212125055322114577550786859390075438303010150348779152816306896869422229720258787731918121694759739191632912004212814356864238325459543185550730225746265360408572703721649352502839374001057053726104136572944365917565448943045856972398752891345841397221033028874200260673826173484552345823139372798962459489538971146900806885152385481775996323423596257357234051240193024193528291549089924439349348956
3234381692788109079230680720983696948323707826842560454214668198336402555099218593569655442087574876778346977356878168515743052059593208631195977813421931355110755837044195278535482023761924379211627915031048647692261192070395556452824069616701052305593654222813018673236769751385061769107301976904338260312922103703701124337214109777499626385810536689620683223434038848056459182975321377983823055696482635377300869372722781413833956315230692517467365386195764624895356555552256872126165479340752238587250886894516899872619512487577909793149253601972159048858295586533134740032654837164548738061922936542083309570474918381886656688689704645548731361668985322159500420245151686319688367441848374825348390747185363999320758638186638111642415733330679394660644975547661591533418033734525735517299302531429465159750557799860400456834592768213330283731776092862326125002032837209447690226968315542155806510540311885952712145568231551612074187485044096629061059572286895015695888022602795271081234250653376
9881992929185412009635652941898784046979133428111491192727979451564833910647660100191259340595123562779708863239122773556916657472984327935694875758969593798875001121871018261862946655328537550588188266167195867882530396335747614634600995234484047284108581925067113316441560180328341089904519648013520625901861281142143896079161914210506127525199496202649899529607559778178247803698937569653355030210114221539431168308226621722919066650476831004392939747185668792829564181187392007032776866472887508130411660949560720314409592432859157103875398201373271717738528098205369773736514604211152438406636351020433737754443277428492391194862060763832181290565253934870398615027612747774800637786019252153426443791590761658325213099409980920530651319311596383017730602556246980421115229754774151488190826189376971327237216275693123074651720226761581432797930405716553963366848150481502345728128254029288101445215391861721935376576288720795656971517848851686997990000197600501704128234698971296428569909208544
4568575432564495979722475528089020339762007002286243941068513272549589260729655388962998152751919778744764754579964858891388670521558672029014037792386693117443555164860617719992230967696916684943660806263728657888229065287727588143935325457334675586555489032420811839665212022471263053328841133534871712194584499665244221445601166257174551055902671394225894755726261715639381576755138113229505164972872512573980242595749793620798121845661322774340617896600652368587267687211600542152324378491305819940866807207603798991661046037535840910555986354401460472488077594382639832469816047629194739860797783180636343301403114305078367989255442259586204361694032469016267658728783549166640802264144657043512461197700714253989765410689375530281976214308559243015073257748756719037139784414776199505685272822242974011767190055521616611616113238413507895612959207578267379751159757463768048350299678794739834554245134741385800856273799760312487461963399409875618218483747288771039741516031904322497678618318775
2133280987991063940970161770630240527488186502652192958143164621617126204894006362265256929948992763801426111499740633410286767066115250914713660815945207119898043212867159872540543590374983471257072695296895066361516304675204145901032393774630370567400379700503348266924417264803341186128919371599772116255804348226363827263853917414357734934818430445695751850544699291762568366043925770558566195620570206225816383890538117963164986346251552837798732167960329555694259550579318524781969207224925291866932097214519420500405904077398023644448017690176218823830559723217069122945814657276688312037774431436349897801637954185951634309430388336890127481843616011872098264791908962302523720861072123343219695804062542816525252880267620298012579051051680277206785426011129579236899747889934236086598461134765320907573264470670409781490762244026140053349764618331250735221019085552978806708188553522592546795537469333775351245787276543226089826362507705154553054867699933587534353505487864352004280763251540
3282871127680919006738841023322540341567656724788694171969057318114238707940828564865458512291655287023281000598332061515719366964042136044253308717603850561898907087882616841764843507687135264650722044103899969546589566980681655790091279271166816012020476329682671953645612007169456239335645407745862794063706891008288934919177544009358780921086220742484593834693073148725379539434974992645954351824767431756771482883454949210384494001574176058125420112319108867225288231278757775298548751851728768235834487718416110864466938803883881101700062722671305441407356624053335171632640790241018978967604724666212735481722833293307482397006406540705756325440310622517321745013143721543991031146340984379607916473894282545214251164176944628781709621821112419198138308777437391055380457787468253461323783153862908334979671785863944240094520739560918840796963054662735111872384563904094242103743538471989998207770435697520258133966163386218374370503669770409820625607130392516243667692030643737639826348200267
1701622260358591673058385682375428966145984527312536864353222605725277665897976916692317408235128653519239434813046248958610614960737684849933765156345210749022309294505522506476866710030943971812352305801790947022315185993968114650674492400839316203532720245293867771102781260935643720564854292010471092896055176518172057737829150909858025591693589186349254662038518884248129281990908997525215228853727029918626032582748313489211679201246585613003422639323307188336003715883854239458167395762019984558646617997206426847394323785346051444503640098966304614058768919951521636200103613157589415814690960411780458737706755816278113046599581643071397690841745012855705534558176707102700857792844969429082116881485643815446034158461755179829313223988696318715316294753199818763724221631114482189634381121458423214175704206677244473140349243999748837418232438199065416975965079924601146634855274706196353877523614343100460129596189074395244797749034640330054162905531783810392462556824379952594623531953893
4601796201207229889546998919664199906885738221517938576209134619850002450835833454013149066007374662307107199641593224340854262947404452967376589436645243092687078660145007428781242884873778454216099412822825564707639338149536495851676975118957751561566437790710950642469268130946907961545331032801077245433941096248365009514039199721380344440334818763838484908527945349390527876933440212708450156374344378782268150373081433228927019046361803192002170592606301060092593569891254788523481061174734132532905828570967268269093652776742437003235009694997621766003496671302030270436455240740891123455424049677405910507428361300607213404150878314310038330051618669492873458850644654762159358934396140184773316973363000303519246784730096943195922696508799658590109829899946652573898977969335903610870803576173508644176100150072192028757945411028565735808289294347256770349526619966984435276129432606747791359309906326923827101566438826380845900483237802009554692082000643839660651149102692660957901196986648
8174809068479698949993663745491730979410466763291892913604986539614719044225983456789333809869592597298481752675115336284933130665523394120763923364947647974885791811177968825569601318425628049442592263348561094358917653541967841440997588368637703079565482832346019050715398567523525060999044024051888654388594822576260058913639723497763153270356351554111856389543401964295995035485341916631788787460724035732370338781659228040037916474300216995781823818349351957671515000807467360893948148328397794881793096555788008657053015055722717193811393520760390067750819402316211315310638832337722049448919917617621465478421789644008848886353137481574292326604241529883023196947218336020736217268186091383849191373202043118440466733164790370561566819875461524698926209250682184505691426596657543976233674044874271880930422179618662005930485514589229885308175765939374309429048356658516672506597487389874993736046422266476524040489824984417231834310085190375059072568063095519318836349871274958201681197079379
6142761094161614164099899407060707474215263682135180103855692313933956571354882837061229767953891903854221973047148428203335587442885366212650579507678810499216609355949202371765076807580508728181105684130683242025772120887988547602080734204500319655400283675579632483401781594893784171399001374063905646938072429747896078401464087512755606608268295847721315773104232662184120597997662440738569801380835740224006003415353878990189208025971406547930250274544675202337918454874811601540086060908003987202364701940858195745285783281263352798350140818242453463799507512226069864991164605530972502909448060460867927753716445675729461851164388316636251125487322488750075519978397525899587506963342339163991203780823286511377539213742014994716862416435698065952300807443942873951242324418334397556215924395427328373528102691136836995842662011303190820359285030339872120844320958016189275952121641860025491901204542547248641954244736610054330631392902387368430224633739609726353145152449430150390098660200153
5890438761567645059832064421886706009045809945814523096121035106714857263437381307530463645610886738270890486273439297001390303480171330048827360772410462616902939274232379138240468115965720378127676355828536290180232563543748391768539548139699675153496142085240902802377155516410410376653691474783099452180067232359405799484652841241611424011489401933997633622430332719408761665648535013903286834499138099951698324982200921116215846738553016508502877910233671878625665938596811992382210282629873839851523281906980495240570167684267973844441610292713605939803147824899244401725538647719370014120532136773468911429415822043529951365373735947999913983296288616428789191813915496303995337119950996611103022990037604421152277863371772970824824529858188172250077459284877407780193909680601001019618276078326977853592183320872531910596641424667100560901731462488980854835917634520474711592722763469090250697565925835513614900917243965833097461653613165130062540311585936897007259807169945600309290844625586
1290112649045279807321478068883539852650896349739731906727779011408817399355915265168927966290829416714121380705640355403724602039143312694524733199783246278290355621890472704350483914886564642829327541894015871976183058438568887474163351985523309530851244419334325298038193115390388667576491272344963090868436487456645704651816511914501079472951866494256415859868938858856783385778406563809967839598105357091775373865364046659560366659935290644778376821370910897359749004930331493801262458737437880754727734901495104953651193268291006361030198088441619634984122290541762657240875627591382228333486763239687072182420200130228806880456062507438081235917150302749112346805411061369575847407000996569688854246199808239908671947352555277775198314975762258125753485540438342969361605180588610716897507335437004250617048996558973667494456017491097392778896493105915114319727834141142445963355668134095745279380340725245210245201867683617270801696417705392263226179429859080796600878188803846713667831413227
0131795714409556738354959621789429537955777459420468620426069719727701477673380748864934555753819850966201795006946638366532172767474985617957299986826659764457591101529540722954394905666075507310291828523734340556197037691075713682289858441267751271675770587292444371393112013668006334317487151791594794407454214378915809024185584706861369289585202177418932674800092489256773185851730947798426227338869866572750686968704421388565119965579724566524051049759712417788970513309416921324216191216994550043837137034599035247091345725538341115024079786277221431483398011771120222755378773675962469952233496315617098434267564602943433394908521972338517581900397854431517798640434589606781718330803591007742719130188016630826405733779585783514434420848203014136894421957881746306893829631626260163439350675806633244655901157119440235080204424128674710578883159162016040288168133331902193839321179646261664468600049088491849995980478721256008936885423975592280693624586125715117132756574685002088820105057373
0118225499269446141762538067030653571403089705104804586129626802845569819707163981184523050975219703212611740246583750075779176128235337783072609359784191333354708252828158288923509189602754079873323826194076946520139425335979844844803228696828387852122374788135846926052267752936533564555520230929247356731419970586948475854948708538528369571611432567428853911938371898761303359420811569856797847152369858302479873671853799355936126110241140652758722395710942749962537756884976979970528345319507335434531178298522337413122462474222191603643715683097878686490176986059993714915283841102397153787087781223517701130923571579458433939479584301556148407364268463702814668003233802351630460684534794791078608304730245137243755677615251326394918487475027797658364280319191228444214729441834208794443881750924395670954500851777230423316465898237469180432421723481695905530629114951933151205918465243047714213478235030505612203498270653157847075272065774287515183544213123235040436524142055841487817987623617
2086711773759261640199871219685553851506829022936181873731162633422267336969300060931502352868152298502440473279635849335430437939670588694713776600892448769464886220176306768847397854100131394834047391618856331942398543203156047894428196151273769532442699387738819261043200676418834927803709717920009857993082631270121416284597636552443938193794993651305561993293199750193621916257358182209231050997601967136820779758519571266822154862308070310098616871149850038509988367034138009489776704553898959426045012491685954130981237575013955020539423010319161959954445780037187305711631990404002689381964394080659333578214206594383572566737629604852239344735887263414317793754577107226850133705678299566209632323602724589737305376419704873692619787477013175056103434690657902673068762312205757370091872763298205436075677855841528059869831526268784383617654041764650010860179198323855391823313388551827361526210427608965674890740203867991834387437167579156730315417927999916138703914695850456362060398501258
9190873157486750935425114747766045508722019227970972699924254533839050609427905073149937549099706931833425074440882792462060911402094461140802780247903747217524216450512820368049725142205684519543969793678174634565843484605984381348786367904165670939221164179862140585052081268895018895051712100149118360130733356157236470863854481928858867401759478533473371163443567315503375177565576519439711981285135720778423516662347704659600309778774731101425383821193744640333842516270334035696188133775399373607999820960866147188356351248793045694428156131736436957480458167898002264663274908034108283337174883258050689419814740274952990022406666887136887798807625044034989981666524739782361243871671553034475439931871780882563936999944886299691136302636108900200233355494858112149890531910879468327060549003393597779034016526676916299113750388529706035481879221441910020122845729637134348049034543153428567566206322180496733172106770600592855894442404541271210232335433505917599348136139766770214336020496172
8693047580555648277923134229465393467551005928631878655429306512102104972513605720791438518145386109507113528961668141091734763924318502930160948037342018642384058778644573734464980650778144907075645620030403975967389457264228349410676684561123086895288255708805030748344038796912024773788608047931059228307517182605196324956687055146903398918836983141859245983504073618339274166553855039627490530315119601706794044970488390549796080778317709380501479005977197739810502225158388680078351495156697736303024903302060664343778365126510874397818372819822839471087556390448095365176691463380170974314399609611278227034873867004067653848711941043534035974032245486391961964197244782827187455972250986983178211242846288618767873059468370149132916271914579769786308125121528883472304418112454878275109525595261324814265409923343304595027412670286544141199158605666456267703426285553491522778943821537726986784478125416870542415945860668615604174203712627905752678147568904396717475617270841014885633730584578
8014854136018873111226711241399176432502641402436484874481100242809099145175787641668955679826354483852211654283070171407219314836805570214356643402836378158284457368101601644205027012656778616073943207970304988781915858089398048825337582263552995788974901001885161411851464009730655682679294200557081277146234611935435770638438073935834070332727970261509557885770191625971560386403500909166830551508631675894450757694566534693425939280580067591087466421215709266315281023933148180789683587395926611652875291917023018657717737746148013338877757504579541292037976303580446012113250266778820950592496161344845164782707521686461998256836826402048529265362578976844736499080034903260015267244902826676187720384885569144102314090661186040655509216530997371036073529687560457941479004407438597125896171687937425847326260410565638009904751022495835730798980586527751311596097596892108224213929308487450514909549039057594374150865160862089957243171550559692725542145588348140450199328996094933224548199715685
9705338000897203451339806629692824945720518844438984408105702112324028880077544109472037427320025294153041262446614291084501160393792794361096827952487880016491252265476984571982610975091768919799663983953381525882621195080958083541382540346359967666504577796239370227620906665310878381608339741312974309561764508449395468939356422810852012748992859942819194998371173439670385297294630927649062044180606603383325230942142553308430703305501444377528551357142274115399509948866312516069769658229939933813430200007782466692374257390223718663108773500024552710894793294966167576978586993210453926075581995608544819183193922374472641311060734236588969357207426381887381669673649599603610930507940735550409758795652267301359049070154166747548102437662219804537804368803723840054727916910162682421374410168801223026949802516921677522037819286500956549644898895456298163904855394213329197560087291675476553165958562733044967997161309092610458257956774173105815187418316622269326755094920637126369188709961321
2136447408836155993562544775131488841458311940149775454501265203597589465704081463161443737477507912323739459319968020692658154555271399763303957602500186046687816210265664991651516020412773036064252767896186394782656798236937512483706153967234635129229336831250179536577458186872668605755475508922024821039958009553307642468525765073801579326496394868429353327482836817854695501446697916116831344519021517809818180617164299807593666841852471133798298156382591254828395287016857905860535656649218787953562789573457717995803697529932636472446124792562032587465244676881749415661955085108149920534277328512079775012692343758069048717206942948337099410534971963837854013836115634239849196358855867385667974486036955853639637170435692965689474206863102190039115399825268496012631425877043485667317766378164979546808104052541255800936156601817899227676581873090941016958777275339138821522890600600772466109737321769867008833398300105435211120078672856852759279632657260746887184868950270060135350729397867
1461910386564838571912924236922387514736464627711503822121167132550676109052940324854346910658629338090978246759404612103907423542650604279881175902695187417088576125472273746589095932524593608891831679770434588005537360340452033347632963906974872255676636026266300535426534370227936871248038738181472574504938957115682585612943725011891886792594140392261447192724362018439546883652762002905154500618376702669862835186260093255312958152984863661432450493869771120709793031143926735275004370797183924501642392825919324505159752436817029163406468966249718634665871764420324232428106769083663484120772069731832322560026651846519213932464249618514905071838068487736257064264455810658492748517708636535235867745633949199811993189239043158513319093408707464736970380480430385611094747038988485093702318554409324503779747273347942603172372612654878092647081472443623353309900693923787741333041045317227112175702586401433411782487138960533587164599789635198737287001514794384862642118754460114976125103346240
3372802015756485997622326107717126795769836270428220951028060510808268701503589764681960473984558546072817044872528850761204373061649008215920623568008872001360406687132241581779806569901564606704859663970889351986308065201548162180529202749809670216826494553764997979526137133337488147647663706963891007375078456077831793040777023926538566156063307476117921138332291890278930025049892251032988711754865792422226701952418893018054379249767453007091858970440835151803717863222467284842259162785721764180306876347998543464848976745125722743787503580664323058724400603967712949903839062105047278583647512042965890276959022767977651407623179984816976722123658959518230861932364699376845206360725275528645393283569037017564905367476635500010999637129216988394981224934556899794468456532937414596292416312861943469426757083856990182061474173193208060809156041928935949410655869559330516085992108733978571095110941862919373708287829060355334232807407618252437315903097284864834661086834792260264201604803657
4942499019567205859822625286999444527836793541288636540324928627176885867776143179013971117437142835644898750652910960429070111571595939295712232338423926118538824422952653891079871345476928842198501917451338488905304120161740886685865483000725955081105621628628458404801434997867795297075410868811387775834951014574063858952719755302848585905194982497683139412440098740975894924582602234584353035685649592067578890447178592663206972833577008087951225402009068719810276416118301734248368755137694833934391370374316043067683483938860032272526623378112285394430609671326822006401921788465587023942355994690261655154760755863557426963423697505193645094962230963699212575576527286063811251498095042804950295821043900472702617263960868168174755062700626319715801904755970370081976034472070507614520074729571385639945726684661913158669897823150931772286400375261632974838676233856795403689436553268486133696452289020671451859048292036163291638877262195289564562594100194926094338728565649930645986194592274
4820441714410915463135529196807293090959362721997262105999309540171054758904103769661273751576371208174376834852345300269652295274246566477926011313330836009313469047763108215474238955620734970739199439212092990621979274851859459717867630595793529781567277583693669468965511125787728237153605690370823390298862980880424879108556442503951572239243885120295931326730087121378388900698103839199497940109333537242488896136210292193283606364306541608976838164250843419252467971723146311710515447529098355631851073538012287205045092303940793340465798038817765813588682563135412586796314404453085927109387857197190031729348018850897953311462621912957580747210940570427411288794289983642518860012673764101741126296557675431897632409293835406485941023653952568940519239416247001379540302114599607706973728317426170913666877494261272678911874945953139272094464089184349920480775160630698714860241956738070290388994328448400477625075584236075964963899949930181041515570986611305742944547009694360108177904293572
1740685908180562415227486815403357452125331911281985707782350205637372772049561525547879528669378406497652740717247042374623498571857188510235596138658268677880586148036980966178405470630350144278553138410240134045702543976711104195537576528989872220944535273352533668998054479480941049949294463717723764398914445556997868888963428672061204982222024384558141847270421689616833361498279696686882846807723346234945701518616169503822768820202079693970292090054648714058889099060438283918505411888470321930329553210399513680657964662259127389195803794072172972249042193081953037722844213010574983451470551350219701638398092858324628293485981602909964201966173364447100770188014610457134543250582610032686555731287594324138022712100658307695555365920668836050424904938482457194968411232065122835244760061626135099599698108474163736553468150389478141318115212596228580937093493578271057667541369548350028768097642322314380278200799317568420108593153637812217789527015205867696332626803173088522400917494446
2781935152779177595311222701972950435847420472528785974348029800706390904552331850884640527212659076071742763243797609533890107355742524707115718752741011717343898064264233257545037373968439911515262743724404224983199002683001405448594864271000747476192966555025599996861121314234328816425391300200769081193665463659075224638963735819136973764371837564181448908088797524416421866304126442995553665361477827645317160848268376637289594618491564178781088114291866290919083767132969535075817030696822070964324669833202002656644545698283148662512892698462589489075535252911809742925677342992550860524810089193906617847701722702360130684374660055594586981811301040168401300568476835607217650071753692560220305996496673211362968092512640239005959909311874566068437326559050875075275525411501658276662744526170894295215788692397146439201973300253090215188097298855193863395587302437669187031590059982922730656321575363086756670210370649457321329990045529109948225916910535423429129953527740484879486739673659
8557497374393928145520698378617674110067434490115050792503699341744663012803129048303430609477947528134275758044302934828341926669476983736192195962878389971382583595603622429581940308954073333234517560417864796488819055057179377828444650759556632096193591165229686136100617570761429923024077068081684872653677088302455844106026017427786451461651482563666046634507569722906023417229636910805480191684684667189734512181049754001495544196116099575597688275703649769326605027822105726953867564704245953473606914026803157407194570176001263900498932370752260006277370221711413254780159090547210471820905627173875684903609292168174278303326340103090303720780805644669306724828698088298900340902341474352187366493061266797936918511211128813617198846926693345380907602228573977957168683560251220561473663790603188555450177747750836949221148163089770895779935206474817806551083985674900590629791634851273453956246513097259957555274353764451161236527882966999217025727384741788891437610866912909991721818126271
8574760110619163397643381249188330612903694212155415149345259406159330452544022760482596725071589536640829028817683551211260460224608861201647073604140238253576856515700680076518505203538697560155650694105118658339847747365829463217657371652008313100031642617995111306239408072365197224356143118257086364851212599990942111599683985003292385829548151802472283564470209331215320839344084648920550442024407285924281058014538827258887990832679987958917757302289830753806491685831737958084894369413950302087677764009029334726376886846605014751215742946574010772423478782400394921727772930968294654535739190715984924913222581398338718515861467349368088777216766928094882434422480713222419878016577234212520583299793769119076013560507043822414864148888001053385183173738225287968288309880420585954184845472588629540848831307426945385309692054021341368246701650703578867165068131424094237100235650605746495940745714906137403066168405765396911647846661607115901456417852609782399151284530984815772735033880626
9877618877769829130217236116137571628769850209845072250819420513927233749980283899979509416727201513574995647592955337286534610679272161742463297218260714673707872165554992081917686183497663798855591432568521379611191884150592357715903901101735731463220855852283294626789727993952848538492223862274302126774298223420235294936135008851299427606943705867555763007787778542055106746563206070698399442680530352695670910841885628078340560297527706518349472946833070922721448542512819743977417644682787336043837803097512740692326763272551816880336681834214789980860349099244746558631205822515621867097519687498087770133082735049000836497348064978664093233450250456428452790582353351814643421898921659819106506849174598262399520494703475769577716099210657895648109325232803156150018343129745622173470461237164075128753605416717960720661534813419985176648960602202402019018699863961246080687975448452242097176702412721314601895016280334290841032116820958586534165932764703809107656008700577582057297229461571
9536046066054088932282896191875484156772305933320963415534540758141053880667566135920726414226990139957357014527090850886547819892304234423434236992589107687166823944481606644779257819249471178503724047612429975350931440436415235297448058932953278703017421512644612086528763556202372315458117834448523721141771905404372771578207904473691625846905230630412098930538194636889709603477227509457159974613392695131116573842211182370112529190717103019306700302034500643724959852016853092429032644821885318598919836649934521973247505270326489967450685175246910362656179174456484741113197437882942981903213337737741837559867359828953692182772082080646601214849378942525195079156953301511459516922424946852267350015420554239044157016391750842402786751613368576408283796425906555957529121342343019238293266418402530388515944270277188289621378312303290767743060227708776685145486857852166611187431812735867686443224671465973436170577697739752672352348546075129329133531770117545714440620481381284458437471893229
9573328605401983034162847379897413163695680271370010488567157772705956405105213956259849352594301938694984769878749287801399396235572779393446906464398315717994085606859863931176125638572971311726641281574264633218568024558079062000813346503584853814746630599832697031534280585292374646535169888695230422007090578427719531359439021840953113396817952939005818794607307508054886741903147825154565392603880981516911946763648466840751566267172871928260481867730023228060727094365362108728330746282270240264346575946340756044438952482164351745446667605231740010263568393765499999544832284893140722662827998863282089936452963913959806383485084359755872347581763532218837835656432629540477140173916440853904129014420074208207167455915576660293813152164659369571095694727390522649765493631341578736048675584226425140149051131835082294390006876639559901842833299272076449026747299509763343832422938023503906481703681685874284262114743850453962158795382966413138208597772359649639090935093739576089738894512544
1876154880739440430877077524659855081844930958391789699338200218398396996769678329540975618164443509274502079287346380629178112784617699785343705587593026751495491365442149187936633094862444843414660185349445090260903887768213709659488201349200779387998006499900102753291183412459424379270592040414617416237299335844421115512478791147642259705991249110135497998951884790951268893919965164224820992617715102314793964472230418770951067900219554418066581964532909484934486929787776239486124493367567081547128252598958117536713571535687842019922747165301375455607032969316547923760203703339300362889555418942407742626559745357985764094067115951439526542807487459504863191442637266473654219398685651279460152439452814793199134812362036341796456486118115117279037410992727562711508472920903139701888658873308877716113213339590336549068651950066783846539678201472576613336315933023419506741889961099204266340301056971262427305361881753839622521122138945719340405923486298513372011236383185026969573003873712
6463923080253236954646646163689401151563545881623141809482284249686921007502546100230996341778055659460167532069707183216647092242410081347637416133518670336311861021303582453061775629036747121271980989737538840041324872098966487933838855909987298076757738279940537307977868589032977290517520084117352917565912227872875579709004307364629938760758519648172536017004083391712750952999403230632326464129289537660827024592215207637269961732572534217471745730634279302767550550537209152649551818450929996061048922106337830477346939446689029265258660715744638580540073581483297705749007656797589960953656013309688692243722665050508352970705336520644913778715776235110813823292456027111259687875986894575198505796840685379699759815329866300499628258870942451508373161613329159905710248186929178846250401891242711928573635546549701861926746331651566952625741986647759292657068789817432599060757124659168579022072424438931906770221066084276094114797486481204271480720353706852143403672257147979650757712512747
2465345483004516668618487813107687206252629132989263599327246412364510281113002084776156808215955530496704273761516201559643583536869475729462086750690813710347786364481174192763978675675492402865034804859003762386739160702534535699232324476570271073137212195502727007438665036519688978862149173075752292441302555069793009326445416760438345002082403999492558144822064328799797931986249016975979544013222441901810474210328685585294749691278388812262987437278397585046458222704793755316374014451651466369533958705642287184325379000953570674267594193846252133205206000380080361038942165497061261848561039906041203153237387150844260100046233757912905515331182025341147285647618791094581587987437311499973478415061647163430332181082749499927968399997752844150657748740655424117284296013509031106710472466838300938042622455599864226545763468505570129775246893500114935339120447628738861487048029801614523213092141729535475664795841361257912074171178770964396368572051882145672292415068917095964923017561626
3477464526163276192792472918463020598203942762675641363723454701065180790676736984644855567296399554096980843902703238328232402619258020329260516214701660677728078024931130480137396751748946355802734044811683327644672619797370331483268027180336655329771089437968738413411194080660255202986176455679021935918326017280981995297381276848150523818069297222100008060180700630961147700815510975951762640436988481178707532107238869208627576439607615168424499209739143097622935481824467020002944806266669620491744715056972892506200758485579017604570256851779914379360679650964956412070029274316605100274843401610799150047365838421906650873134842419926717360489151509148613394079982185478718880598837097615553070475448470130009809296624982685206058124784628664862414024302806911459096666756119241518029662776497709936082694687435136158149275104509538809492919092026137668756805336953391388193284674886597276618462544298706229355540899052852668475096120139075618305128288614214073504143082567911656628905584195
9174155258638713476311947709337186476035255817582418896386461752582652900379272774271188792008907268226186611864921300638253763163201873745538486516265289430582108967257790957525868355794348075367699889800841957058718122886835059936823196684630851170209011772032129407702084587999465074785763437329686007194779660184759631779011529992885033941991944467288033881338881367632079705696328003390690746940947436159141589689599727274997522772325906798583306297538349438687883741542061866900333103323079639395803727017412859786936223856783250224784388392672418234333771015462014274262761236488715428762483857544161787200846370949192665717075038962180536934888123149860449583521258561517048592529673219134500060699188815782113378535551838454733578359029977046993968604115527131674480043296789773425834858241742533138858864419545023476477405022416172247982843281296792379139184932861981882235182238236971349096083035277288236427581274434604404446919436459948041192774037061503585742775257498427326023541700914
3187230170055832216004475660682274888068741089947663484112478290813993122665519423161544367137142522055975518124735262172565101762426296300228032726069583283496768134046270465701398517908547099702872052225945549305796192637513016282542622570632752980158087038933749136160951458668623506067975626581598855505668321196173658847122097980812813331028707519053389816386973738949700327181691993868981385050544207953394724482281252741413001820588319370777303024013118871039813799698426580877402268550144735349303487510895715930685879855017470680185552558299761769175546477510560600296727314992489166556723842471450875061038779792578205838772290874240948114970614935050799398884370325303959706355184739285310244826861801315677664331612539984253238736769564800332896785923690859413496342470897146118759377294283860685804254944738435069387580320897644915437757747465163350585649493972760742629341693396231672028198508247122303513516784579165659725113030508493315779057884688970208627926550969467028188038636516
4451207763065184744038242933163521031111402222180103000833680084621619869991732531591409905932142448345268413928617587617048727140994340971218072849569657457892555045735042736282693167078905462452739728961921458927540854288732649432992873967915043584979384021019388870086738009306802433877872560976961438848952482496267611149451169166283845774185671278967406462348870297969149280963957821244414896046771021991451647855889756885095134973476378650897167804353650952393729322486626226887733212026040139658739889256725605295478257645621204666655692373709220397407649967485397909123149515533998945782303982875089587484615860324764541808949913183623868657260082240881036313557344799037551536804665881365858344507900346528630788328697463459172801991690050164888204970678029927918009541437755320651278041576374315194669825991162213537897918588923787000211774706758768888879297403996330229702328438390464985615801259213461775821349478706351846963496655536937023176982443185271947950508109305655956125245410630
9367302914267651834364783709618679082285760585541956709724037593766421527104860731120563677579585033420376329333198306442704970193082835398733210024638584811195527257454872698720300030299855408481664901015229332082491996082121830472704856889612171476241094509407911804397093850032465286061581654106311028919758954463745504124243772249946010069095593036379890271632761327147834343083562870016321090675364747254012555824585018213232903899646295818645977284451898731603939881258376662394533015878945776898285918973511617924287985607597063331542146512224880926105886951745989865044457237288157500409064036269744834339013938016965357761427495644496073126329495580483919136543329710655272876903933766904352618715891986099373610627830432789176515025412975882502985694332436098655361420097147692879713665054713991807400787539380248357593241561687783815938376771584040235095460975658968247848608161265470739967195844575362869601164245058899127886492949673051608212046257359832584240809743372090244882224008931
3787273374719872109988428467408632356618224176841274792759538375833649835046393706410148256620427492386727284259660455537775123263647571174550939498647768035821183826254551854595445685309041237844168058354776087212000484338594793685964780857515547187520542057978181104555608117950749189079906857518549949908275828374851706737087636990132075895691134702933268665885926882238450921043887113112163230647331843729011100546720208609204645545379158322852411029206066471378279105805901110293370300472045796725802967820893249927651356209914552488746892267238354161874184118184215915660338333166741662664062565952198479403508634473325475640379758203361537204843493936331075956739541428702251817306109581071740229685511368548112079840208950777181838341018452132690800308777905941802302613371873710915930575769371789404067372472924393807503800770209178737720823160648192970794945990235113142710980603971351874418925255785630301635760666665274270829621375234142192567284677685227530729018397896072622550016979282
6337228054379466044307242204704371091274432996271837498326169019352941781425433519616880671929183242748389962509728975718386717731022738113000344834754901319449349384374274147540143617630671690454383149184068127244034718415272947293311402642759245523241345430218479969376547089666818721174664379692228710836496591007895165748384286732770762526368076117966648879378531764133764148036170282953117507119358087668856043032412822860069563347031621732873409574410889323200926264471668541341365303365089175339586016572998710418039509509235462049178570391672836139523941137979850800741715713812990801374775814145747391199688373376736535461190257398681421212438411615555438988273069827896561594315408913494607203836077904834575722160485003661704134008345929510160712112262210446402256250357243965576767390689961548223553772092396383208083644674206381025484069708989456431860590170096519641400910515279456334858980440563109818951058333979309979917138412581902721466500210922931715009463771946861648005801685138
8776269911400290415756351848639358659226527228582853810237406221980016175064791577926395308608906069224184177666114458105038630672208334566266778992816801792574171385193138229162467321277708930581548418228312871087633173469163148503551021355855096381053151125599487681546162260290379780298378450686980693921709385582779522607756252315313582773289709702825890047154425443134245622056147113860751490685909105662907758751688007864817904183278206423375058100170105194686909414875206232596363947302105111022283505543060570316237607792222166017466891800053685141209764284754383133545669116795813381074985288944649578810051365842633397623603505964189252515915756899126424217698193930777280876699019720054860103726364244766102187380040071580381841809681422337019083856979305250883458376102523788721023956345595114672353621794401708155987089893992783530350213809016978138957521321646324183455687980144968015356887109673563092751475407015101231593186891600092758036593908783494061413737016164313652264933219159
8155257173359088594066592342056267026788174802100015455233399537586689528730098108518467206614851310607639269464003357310075734445952451426446331885394365330934595863749305845005408676433671061636331071877851552898470458194899426097016812757824956341388774503352711771421578808194055612708751672971803001312043338607954920017890176661953752001548385955358541768103581225957746001089563801703505199932259445467785592301746588067305812931773514962802261136828800286517402613500353515516073732885197833798920433202740675237815415080463742808274046860149316960412419592415041060708650709731287596502766254785213789934670309646896892248829824944098656869457171421472197026464161740811888538977122878634479522673347138085509427183899149517010827372423403450760779198778755949629575468160489667942637351127577170992835617725473079240627487258422907573713257041513291667976436120948833384514910897614272460206344616681122564838174052830068249547027554855474481618335477253190802672350092475238759317531320600
4942900393660389864074566357018671006606714053659290810378579433080396438959366580973045644504214584273149140810818108303050680644561216903993672683331493018218706479241988876971442629825223087693074484658128415552501971172023333955322876350931908176545901203292417821875443883486161455163104561863300118025974806150520584318370439681632649913585602090896610230534155651857951432026882569129922187473359526232970608838225614783203511724636503819735322620948237316142829865934242840604233400471513238156913382781303548049234577961093232129304816386672194137201723747097151203340865788504660709018189332524109216956349939187810376949971221653805999166292243499142943124303938410640401741041407180892187568819718338872457778635668353491189393531175815772579506768700604449364878566876829386634496946909817953683346095300494217897957164729393719162191805338416373628994037658599271054678192637412415036300183871872300660405742695065316484374349432054957263573214239886159060688153321431487558268379742861
3093982105530764725424744732301729635579029070399194626957012612860120395378190721350361855169358429181994461709080624018736781354310057831468664845248242141912416051409916733404370227245661170581287578111235260460108072205270077574674135361409928795972364946092860564919066929719987522563700887010225008202832114489963688007607044474721103104971755021940516749654427979150623833028089752422991243512815056061503286771068126974525641624939736179390439893955827862570092080179459454402756239755647538620493895088044569322434691503568766157800030239992128005062741222787087714389952039764185517613458015710570240847352164485661256506799482544982396015462609014646489354463581842761526581998678649048740341244915874625372798952951943692765845351405542877869614099395442080251866751469684771537178084413272893017741495336180518146043563064581929914553991917115889728759014230776698087573493740870234343843949844737187057492454414441115599377926233204319165403441206910804572379058658330710817047381199222
3408228053253888542237044933272349639588988427149483959367030447620887397803387332369982036892157074284487093750049082275347076370942287418100460906465468829176010064573495701117457765714659229288891177981490443492896445686605120932878556152241247663833934267002404255820113546920127133271940260653738026005336012172365948876018496605353186203197303174094669685259453360862222278366317070049872881784853741539722084318221727823227204259148931343265202025762693421705866608894392052159768739775087727395492256562773155812461847597094276079981454480272774236842836886718949865582713874911835131686606167601554260445450730509006490033285216503551549273836764642290451675917863475979023860284871144104749747498208261792172780745132380707767378507776365999023870233688915670229159151046775691230919872002281350641662814298593398487256876095166152753376710020464857746095238350202623219514907097120844260993268008228309285671363117805956767406363904327537436997075171137392903787436076699835005578403393166
3529999105562900211772487315521122572696410023913015189008739096923169084292305098849541452409863900464778728586388832779452259202894639722693376101219827654561242058929336976999606873470981721690115453472418272609287993648227261190065356249543102714158456792073077420777982659643812138478210387344560293256421705045357941169977253987460123423729964065202248290765741893623442780281242153414200545208814496449074211631740891118240150777013053192866308296973759943086761958002859559779247098235131249869132293139096496753953223961276524333756629867826430358203231665947957334182113149800324905186866614344107688375361792060414378968895304021161753388724635800512361329121213437488766643352721757604958121936706977844044135211320388211633986613276972675325103280966117462770878632226665676258149237817713883475995176998750024977798669995944427894595669171657448665561685433798540920159183756226888313902228999770308406958378596866141427225608429415729303000770135719338926546442419840686360477469478643
0056875837016698909399935172912978814275583683301511718010541051615188627936477613646604693092425668966531455144726745518037096802596379853505667921539438254856999384150700263942250928102336405069367087579276852040369473991270116907752564384442410637421133576162222827067533323679423955373150936666838549602697062300532774656627746591392617320534219545081521182372644769517588046496038362597381971349843005147939443666835175343801620701810833543651784149176544973996368252809109695170843430677063666448412447584351728910378982276029342033476070443225440387873225211468434263787625209316831325034414634417606244211894014322188859404639044020549601040613020270792433935592816978605743972324876927034710841882422754292117594414705100452806040838578813027344926733119260435622405112237318427268428757680816712231679670149908491944505753802765006168605235024560004836232928165633672987405041186301830328398159591195220652446357673574228783377665706413852260956501855574371927518121453765634402003375412016
8125226046388932655587770434626531477283295063282426684241295829876444206962598276189763699324013121659673432445870950809897144301540332020857635421341707602749695081473375909335257837771693810086263759251169973694230856293814024406285348707763540119642490359118593640519283659912036005642760384943708366150722786004089744125081788210980183880421805041115409277940838884031445382708860669993754212115742848983344145550814088407671502979289804750614008499623884364362897608921658550395379798216819069572049453042104061832072084079285669430612780398214304025201241650997579718677427474112895037411041005117385023453292351518554274833587952215810815800902851220301912088549932491083212170887727756192544329011083868260102369821859438290739259149382898624655133542534828913920568604336336828296787661115449512562376430427622229992341438201021140231644747793585536709874531345710378723989067208233946001710369819173605930049419864673522148693049933754459944739498171276708220736134122394153443882271320205
0661584863662656632712749336877442746166975909333628131179715043176747728484154194292415905818534195428690323087486287546979794545020552974023020097476115278956286295345716442886046132688087356737882712148505131190497141748389636242763637443613548888983142679379137091345195443731822313365086765894262306921461273365582025408287604179980261600725976344768863550757253397093994672317326945214807161810321066236525014460870841857516160764067057541677828262515805088092237214282281102657166359812606193164158047189953184714331074874906254948410475349922353143720669950503280354603141888864841782316707430239399273193513380145797624142836448533594849266944035250990674733366490126427884826382496459347859103603740841072256623622956018387494593473927539918584008754956629668577120358593651409520555091890573940033814370363596506254276278443339135154550946832396690767916500308343596854586314948821570933489478271925493781461883043174161932106044522877117577665603107846162778042437924640008910668564644577
6417361175156550992513956553722421346400706592850235103289014923908560538300700273969003816483006288637430519096089880863132453549783915399753906971514644236365926863551068326220469223233154711612580848188411385666434597206194287632735333248580970156959226430320242010813373031308160783688964664741253868062679040151248799029643156414110517248692683739064736224642100350764462332221503475247397814321612989651020849684767068432354550827476731961132472150531212633457360397510276947306453194336993362642743442323886920407254599992725215304758578789384860286019161485134009225403586874452372750349913511964825880786112432617923898155820195814872925314230498784856611943239914731675934562583340705777215139092266066086424742907072551880755981188593417352799605210972994543824720484003661430844215892801364158905484417862410500709898395265178588919379355507680862800665423018707980935569291022636347894928921127384581800241813340838970741393583232136334315337236838531368570387383775438132745717682811466
2512355012443726246462692356621231780781673697302744118364048094380115263197547604838797429824952728959960106727870253774711198280005689528582972823468220624690980815919801727525879562132385485023351555798462172765223957189116941304349310918379701132221758717729189808160270041465464155369075302900787144294659283590642822234793815576681305832665998616283984062716719814002052689078167703067000311310353410079302981865502207273874315461449030192590258162347415599609338219986298352473637221926232809570577912182919753917646612812207795074215967035846570683494531852709874176066749366612662517872655402617644800500692409156300988578192457060564418569062863924921875174455606519469287299883995261762389926889877408305323170818262913563801095726138467928792675958626790038369900988995130842527926939475800888454027137209319601081865266584671982923118715514948139080803702419519744018313594213377937961985879683526314900425584562162176730116746488855037391588137798071132542869331401926352951781620697894
7560427857631648043316568134992684250386840930020036199213315661759338786674835655197080578147474996012292981858143527478454363886770427941951158503270299906218329346985989574385471687191195518781852157880914320398464417158748175748057565418149849357149862151246741367847203547731262901119956837758596974736888460747189228878345630839103145620608161202015017114563430810312385713010246302318619320961888661816369161436714480986435673280517922229429636342071489664684018492809436033134869676646733799573266149493567994455653577366502542359274042777497845206897903679515220490219231352083862098355719268375312554615375822343919308563096635251358587822242764308329761918951754931107937998806707088081337977655882126055703549002735823701658538068852469344402858315664670439034005667326015508387903093844887875332598795596587567310933128097643189774623635122537013816509837378321609139620984505738591358670305145527831385205994971113916988500333756615887595945711246953062539079396102158881246297254899612
9603215515869359408097469896419395631128526692844410494714438846153975997743170878044221556245993015974099158974132541733632135317155912961471849711783852064588521261241520715191954504940827211912153061552644024172077137260736618591335815997643412470497880129822111323697290241146796589529494636958141194929752180707798514311925495176695678647008854589487454237463793839356097529856123367886122159443798978982800830694898816592218799597144085276186229386299473160498267327589182805025333269374275825595844482851353106353131666442997000702961500312063641848376713524058399052362201705327385164234784324505982499608485221801312016831794106943137538307084674651538853417101180775677674040364679495273112084988310610965865200353072489005770594520555387586156951673022141444622957295532681012935842078282241212810742204886542553148587596414835472053560958955338858317804692065340150759653424602751736349123492563029259596187710966762363040337143844500929337930264258538788426111264740673910097666634679226
7722739862649146311735498173296492440407197682104650181772425844203829447208622615681073695975806721344983530335200134642817981574319051498055067570179081664443846222020735854286027534960056160671150625526584392753807218084727696281301089101234404691390144351615598444598551387859756636325299053728617608012489315798160527086486413569015015617860905589827602876406597011453361003913687608718051455391987796062537617349371300792085473077162752916043992541332121234913544876994904563900143762259175543711531392358766979533402294666154589010846783785014959820169004113337125451409127791810352735418176438924872335357324877034586581712154903079319023601011691233193721757244367553010966673594366169197152251021103756410169074014971566636051394167897190603336080317708855059265080432120734580540809998221949000944847341572784847317054470100963754820645551175660631060840213928994540992928608133689996203186305814462943456704686837976793710950820841848949291446679940437460589420034016885002192418588771805
8709010701661776256877721893706270153740872452697875391633833904447252550345832573754498491223771249711553376028767753221233394802022063587928977357791598537203438357235501781759035417602344427576884800669712366666627379174077550232780784628186989186939111057673654708016387507034834748597327947143445348996174989395747691278903284796364711405800827669481452934290749421275938795151230520447934709586648337292760626012761882734675429602455817193024448607811346474745852110113981723972101869599639165523739123063291425043398028789653525833014000872829067952600242647108280532117612679974063606776239923460984557219355812874320998095706312526175003840334537436475734490447772037620264856423398820150153245408465650572507226135364138654386585359753179997688140340181236367094719558894805034425848310323417663777170957602444400854765126831748471613258674286431511748241210780888842954921490713556550949089897342525619834587259167722357619427420665389215159850141254190515452810145375100594750400358091210
6606752329639612680627753810937599753259079097848924422646369458852123672938744553594726425278397926537505758587517709326264302802267348319639415368108609616833811895864546483025371330605036979034924682844536615480019662064186832235416191293430847774370385550399901901600348361171049711927413577739903624193633902130224094808281961666522836328929276056362110730476739329009210944481194177295199701497414190675419822663284345176814018083093590072133130999118036557993978501610818512198246032012344798241693416084165684797038200831306150877324983637147778127665437200376641674878507836346596958062953629995365525598903731609407917861075060351011677204621733546054505736672862886039195348699052835506513273259848879846870238552488721548301409893215767615259237988635319032701207896909012884899842345388379544726989014824284468046267726027753185171385715487502342608366973060008080098147578622457760474395290811964500121271957614552935242942345748926626349962695790766340089752261788808465432947795161505
4213142763227109503635973153390573646677729238208745986506294493443227250222147208097796683236556386824604058142417264219458057773575215739871592580431500740149678979021581896145884676662070024047298784712058657365043818178621059634776153338196041906771389838832860212416640682015098213746370785864526653102941358273030909199941919964767571202197148844557263384368781904434455277799477103325814943608742012633190524884733447415204774372842981025680157326174768226328143588052397707738578750040936817516922809142801720198126839228670833550924330537389330946581789351838274893397546832529527292379695122524125738478181924231157442952203342773825528918712133508666613844813436946659569238912808942950854547773461558349290098907343981193835658852209222580219203732404451415336987721385524891042965242960919713900220629511766537231263730349377133134110779858774212313196964839133066439638456578746025711119020813279408236777038211204027916214183456952204211270102147916371116228625186530857429279156988018
4164634554951258883280695386895553256175420243768275136013335268974559672226275792180497040219851926700421225715514611721126214131663957760379761793419864393443842599329441813486599890246639403329346541355746540958384278945824363673338426672586029838603795312644545053078726543416828827910058283426819679365160086571309923296494410745062885847185383748652973955743102667305548578563559973527431641284764674697277399864796274335178355286629622313515222457918339390606630342955361190442983975266163382476581643196508921374771648305166505743337128266048451445013549367026479502618516613670686256664640899309294008402740535374313821958662181732320692335942412890606457013086887568314042562309389640112401814397230648808072110075606539695042254405286394903268523216518691240212369060678562113848134187927789915545144790865451353258908693683767187535964159281890070819465241934313524180163656016346531600981156400074192263396906922045944144932782366919378160813290891975812947160097952097443732236122136848
0045205621685230757403049067960225595769816610277228347732438550592066695380804244311845915560796524597121130993647504995657008733977232991492949470868456224873150106850892364951967864630456318235614722618765680895101932934859571329430336128198194546025559209725885153611225703733132136500439321011673125956064551572618189367584352096760339430277963547534317498948770329098330996009539774933538529721425143677085670933860213239552906068057909757833807345511415014479874223821265853482065657198894661736661344135093720721600936178451144410685044330648540249171130599131653516226031934477738489175298455656863033235278869920345802706433649273083839042186106712973475843610749596428808292429729675690178451035999958713144690345903468799395799593216089246690902310515983941891659814465305209042960377943066603121025706026794646504914568342140152310581757050042546981243199963233880044975728892016987674247812060983413116854567153884218317568820451046926894325752790365109972195731063864585634283276099518
2542796083203255544090831132499183131412124008580103475200756580695680114213138996436863010646159026355351256724145762021609392668373641975750366015664901719406433478410717600114042396815701270063744569205823836696275992070178205767068866555314388569884389351999034769669246778905611513469780952200515002489446550065447877960723615396189182975662924906508560801043680198448129135974682106575991518742480808224436503758488108208165422079915748362078247704302611950976793570933583191536236442113737185571786428669923115480204791495733988611442814097651309268322397136318104600212720515201521582166023219778546263159513037174808111207120437613981991310085621517658747865120653213417898600772129584510902050378956535586778276376070816669584224157678559568617262004839196160125454512696408558263879706072295191167297915030044505749005077438387944403759247830966250695601220217329326238974308156242722207369065135187186632934336877871907917004013084700164003857595087001349150667059446152512753306577520384
7389847556041227902507973013721913218624592828296188204578600156399221927021996396731349676096074412817543315845862330294609188043045017072248492346472355673246615152669044787335916245412812453837027238905375129415324014705047887201380005240611581340569724090489203798738599090302362730107638718666294070271427131268105789288986778359683170840965845429473079326370186211549788797031372765736919597002634981080108740243358158193379817011902942785514273872094184674172145544318248119810035630152106514519131677314257876817247487984825666659717895747976773702700132810520613055374721952152841964992607128902712599213951026014221751706230909051338084221104096917778794477083416840625810775780720165459558216410127131285033573606266274727086072869124737155924873596430283060209601767756497144731280111739261137571014030754908434972460133452995804387890971228077999191027484071890082208140603278037827835003487594553201320126452353347291247142682432553818025530182264200611913180457783601157147252673026227
0891831611107874859354918133527732750249940711599501953881950141969071890352342886250536240482734129298632549332997629774549320725872611467044431184774488511543122824089329124713838788803764607715277463933951294574270954494135752175212567384440790311896320261030444506278997406514362392220494180147280411803814573716259233663266438755594254783629567356114292859119873335751892720438509894985787318047436972220174841849995044737478571193471746952037648338298521945495100193399482829725512981955482401426162702849624713559927750271917888407275591575356323427816298594855036858900395730027311892890140626994999533491810360230890023185061626514560054497327539867993277778596847295425656400584441572144836095434385035202262315573938587199637707674950089148260806188469801043960162550877118146323841494085555901901015993389786643163838892062058276554343573529825067616998587645672289990978072225650829442319764630275989828805582983811241961079563937807172566231099544571544353180666815043852278647061097736
4977870644211912644497538316736840813393265279658722377362767523528914727928205546820808441253845418087640441464480021765900314169480941313524113170561435977779831217208187228038160279949915193751800404825022720821257176149053920281986438741847984664107602891818772510700353401957023662777332627175240264154173664104001980194556063060046837235392455409194742603208503542276749822907612804512537815386699520059161182752893808136466003985912973401841232707270005589315575004232534947937177044825333407062682148382044533304971036116847592184628706380762801526291494766275202426869399701507475069901292122848084461172681339124163010604135258137187747420460237816523088147839801449610001127904097056063983403667432735896196754945452935738481830813490786038429569014922741247540683280272694692036459934380329141827289545535688589184449105236599702901692588221798625364141052209117446236386985650147578243075674675636999267059076613801973935731333377618082451689820744716345731711144014952355661210698020312
0119984408458539634541016826356528410581662679247645435845882310918270479058859769116682492128700569280001738238696807117074337681322803448135607946713910843145710305589647738074241760708713230440109098143243132738287320517030819951461373548163182825075933257456428416758803441465754883892113087891633934628637287019612870722701713594654086250175047578660161118612491426345140424043640533702870961715511081536780625376670709621317708307044643039317181984888315511955021512193198695257543420614352744229064707734214529271212192203471821569469095776181430736980840309793912569319358772349354594189732600466246668716658641908425442993688514878237141980034543865603916737375007369370465717461162377657577179253684449990446357383254029951561534169213318721537859758068859431511303803564164533798193080606540173629152794161254178905896483427624243165843084538265460868460352283776299870599670856737850606396522403771028994323991617623582627803414088064631325504709902060745921413345252215498474225364216158
2008073010101085330538974734563562678900374295979238304631319158142743693835919520460323552600978469491859096337916688479896468273320397754337466572231231094414089239675541888993698656634863145658203489245380936287074509737096721236632959281351143499229300710662907767178320258644220650217920000157161830545835035827772813851805343195536690539111052507651504047036778042108818210877277253284959002970876035660322791876754410290198112932024883342838193014859982750550896974580235678647585300411633459079028745574355926996456661040829859772160875041950914299266814262252501913641414526850139732323863389802694063307240429077749451802325738966860297637072606874186526900994063915145737552111344835154652290386140277310828986931451637577678894761272396544915881025155367937270563532019794835333484426701317267843776766679265428316373672047375645039049858579767654460577686108494477655711050299395720666665103604621182261943500509812682490061318486137344486095499342524694157756977605966419021859736143510
8388156531432796171081761958109796543156941955904809034322310433515474241116414312755423691850399672656510854232763962240272764037771448656923901267567715021551916799624468995782168618281037220057991102384823638738800674584094338280799848112320441407565069945720908413840152876135594725069691667385655550187441778677650742454395800099432090142210071626788793753460526606944166996011107446132332260260955593443644415415736455377833006892457490944622303583806315995912001521878118770486349648478315753276946423517839380941557608875050967237386086089419243192638473199698919646742873425065023084169485302321351007341980852406452603328495066795044011312559994499133141172602903932608238510095774822353909326122096469306279795564974949676991544313414639058944816031864868778150105492962210097296063439272097448072260893868880410656697833569274961582515923783358587304859253360578599262566899915852922470147518910301211491110054784065589382967968991560567048279329813091936408532394441356565095336141020486
9079228119990947384696683917172305563457171906785369931223868818764691545388966127009979256898566479747713148213579033226277270119316002839806513287682174635266634187528630784009854889049725515133231842393911948876127323759744346070732022275407309971803116801986784932091857295619207135932660326133642482432416674386259442103228449926860263966540030100120796579099604374434901997997016509478779035214874263407871735960399487294199945552433066022234691284855041815167728591472038618826827222346728440245651302262276680870481279590135562206567758653238266546587896046630282669492195291897146197361703742015043980248610644214248832813555101868126291080551737709535582571961881346679607048825607011991417294709726266864797456979016160954378795308472785233436971621090378017793689228536856309185843933552600487413910010919916375625676417959567138131151291339419622616327517678876476039238128191835519856100760795574110292858922165636009044824030727212951910500585231645958238070811220695863416777801599964
0233317034356059450433927383381405744305719304645583669356779707619428306587211928134883661709572295512671460478349110770877611799944143881263662764095386870890264750667735928151073905866965211559023857010039889773158182038874873298797703601909341351184606811992656420130281642873320233883698418148673382758175428097261797195312108124829267514603473338081875812939610159883058624648094156439153564859437871092545323274717383640801946930900818178334008680970441699553879235360704564177302085387017412336526909263237028328585440312449031087882067437516983299202046534308394062910961845384022622309230268735601610996198361039462005958986143226347741939426581402873886976723991866800208923517368453590225721984414503966063194620638694112773915102820432679758804039369056255879188899117490056844757358092847295972862398997261492630000137984685905539262418343329582366420692768947408688897219619867620555794793950363953944047455708583268698426427943836943349653552274002404645089353737677133602470615587195
9923282225082581388738945690164047967211982747000163118960724584023382384527683767738254781792107380304309545197982892548958700682347853249288111309530697071721341743236838292247036513291163420821001258850428296585338446401133692122504659990358332864558752979295175357382232879314551658713078676386948407919366905815731438594680475253780518568983748288105579782330093468262151992494057807890951958271526152647469835420878141218029746020515227927887702189415455297278197156708924741593543455979460535957980168425538848285512013155546770244634539809292067905181890967713359752636275592871927322268819570352466454377853388478493448343539406194383387657451505960334769061316912311695757779412140239619673270278231451235271815366470649448035852016618952008254664876629946512162726549342604312988683530933116334119843352001915705295255682096341915553441481154003352052832028154612455286438361442716958207914453900866276073169934208188073663609247551093617533222384527425173007032129648910069156990604430204
8229353891924336520039864596978278660881272289715575935866678546955049590623178253436637762855799113838950216892332403230374897431161964241740926685772928751806895961740209482331209814369041113347499681133322325991150304666254767633261572515082272297867507600180985179167196606226006712011548226961575688409261760202903446743818035855064114504023452842732905927976329788344381926605594432084842277333552122935037580631002474235824210874038523892485284182793664731480764881770122430858788319772030902230235707718532844906384662005250482511067919160010832495472764342133850014927677688780680626777982018435688371699648342575801045070030545191899559928938230388794974094394457652052106105742505214208207841217260296836421027120891848712603301666325253938951555229065780127557654607593688501213914874044371371526529955097187951070974405408799957437452814428890201887890533430890373963950047486804241033898801963808690147997850669159855463614065331976219603723658532285173496799184632612735334508591869691
8618276224024482914825134310450032040628875869108695339452173323778225347088033581672835014747583994534751247991776650402103644821110822776588103757705930769380748352931441576408122501558677568477671391293714515366226404257613675402439421046961302764168463559451020456866796280690357741636640106440521605405579094494407475526833785612743983916004367242018153644080824226045175843698209440308077071629903100783442721597619464462302302990695552805221171704391065846808181709124563805098650174279147054744190040942490086595865473576811867055386775384487765548331301763532944615986462875951895249565334248033175255169608116558217313762528221279468081535085303774675622863724680596319963730018677412343574263616683599706766163599557538706889166313146306787602185505590433805790762283257784243980862022151547451689495916545853161365754365955590119417307956953582746662595463591116800131700350991815935682212959955675632590085772910275050001285850052439202929432344435645176934753863550033323959458683950223
5211006359869088182054560683810719595728409551136113959793931078883511387604851285047813654983137989588245858509059651553190961814431809427165562842159837611505958996009249454673708582791411618297707056418290926154062348517003110315091810391971897980688044723985181399851043765566691280676913285915805257809892029702194346798570203454725259234892154149254561921415735293117397010403139630104664493275790245262050039027273062559286688866687985230095012817931366706001182770127863627137249357095191866703663315822335297912881229912748831884166702314951515830177167110563285206377203497559841031469358145387496810275616829406623091694733101892249046652106411193210506637489265531358033440820453377029267777293548942100301334795281783246915382496668175640334133854349788779299791104127893243537066782228047113867236237836682968817080097603741406992558303753428198004261947852222646149277053151460452077582550964824487053412495371553278686549502501845346039231717486751123658736201405961660201326734591010
1297504763497230456344966999936403923024361032301590105792096142322354672699697489690775023123513118151981464571330748185150840762605250522213745972233170424256080244270380691935977956728408881013665415391349861779930692321404041749818011997475328855903702399803466835491217182295689229807560528685238937473021840053038965138558272010289926831870152758225811215433807540335410746170920308087762839938837281232812521222197346500757341363360924563801274765989504723442097709492123277257930450310813501514372192875924597661931125309063359151220160192650189573632621395716701349401874607691896408771902443085158152574080480588744243507811317269002134913208389849842689714807287541684670983554335565900592693076249372508766667553765762455481730996807475479217506576966399381573814381496527800221870685479265996418153416323036399406596036413834425323503059435143534438788742881941989496832390441044705039530652530838989676946473458427932354243499705904413752955380391679967188382490333013048167195851932216
0364203649080219817968552718658648351323637576851095057404662922661428769750265244189503197581082444797005542562689136680822621449021252947494382160200146116659494890154016945867358641763022393761080463438974866334394454407330336976455614908034969320550799574562875717509790498973750414627463390623246704994070828449198349931850746010574287058379896500195971281080755947267045675916237698990341538230343630416293636141795176563284357108171388546394416259510655504988940199660716521202856497017704739221927644895367387242689209490979632297062907853648242073510093520691866896885710763584163429525295929690166876180563445111517088686576262275612788639348862949542679719079982319773043659331692083598530228966164969238186764784378873687135050398546788918294616898394397277400620822729576055544230306645499152286383499906565452820075582549450047153088909521246215593725521423305003204708467006878022276591244426012286816682670694620970828535249590028201756869791006796106715686198575072189907866676860003
4881449875522691336294711942820547905308678495651952760716636115457792742154871590201925642657060650816519637054399959606366592226051979553897277741808882063341345250672088070263601284248492719535516740382530150259759987066588165201353780968663354886236783143970109657414399003413791499168900231043211894273881338507634776865605129270599575877737274208287226172035846499027014896967545598855003250936076977118823586759941268838265935735834759525605149305500379930108379450313822478011307759149917873526945002666069481582237585300399994862379543857328488899227636682693285743701087979117680630285403040519924415336073861686541072886421449047846531881314112929917429346830007320850505006058786903757678644321286180667595397960931266061077942603653467093530720297887810106215629923686841123347037374674572858326930090329832397746376082682597092831126003028528945868593823177316771014547485282580143012221031237576035291622537890391611615646418788749547152774303603587807672991024132449424535583658368119
4194540766551303064398019530625525047840302228066020742631567025850664773002013257152504056924376950244138493808002365079948979012711669958239000794024088329460647026854089807052309251928159274716121805541922873052360688046689559395246774792702864244861025267420316956193157736218218826974867273544299916902709833650804451763217324676267971609980307270526591187051598744968043032187497918086819918903351622507633465868545650613457453775789574626345577687262415424170734064197096593357800050638847882297704482837944914502295506906375937492329707447865408533884429935138195022211765894328834294680725042894606478690730909698971515713656740864494014698570956870595642394979896284650641995303567245983984418986987237528660260932008964759782051775040051280664473049673377823977844027005184781812421407891487434421868462431537268775551487582739825317709215579151017924492972451895453241566518128042758662192989650127629616218748483712645849089457598667776060656471246460501473103138789932774567487809567257
3447335367615240733116449116717032926618316104324005135374064216853813205428319866563775502335510035033186035193712604753535798621128456713038948406776266141085723247810299947182932317329823576721839162201950794808599371278993929899171064115630782313538776841933120226050940021832579482664000103670541255259406472547407782238710466261225745313441810726441015868835560128955042259502261086341687339165781532744938946623806228768846812636000922708800020765742475106608531057320040449611527593323339751399694888971233178394245437420651465537916347784226100661639436041676522251370325101595796116533718184633367711257638524671348948612920864332682922152236505270969399548318409555283350094011131058091221566219537389938416477230942412721457760407392439492573961513930809950114246541898470596044847078398626624544338352293651439639784357416844724707915987492581986430337930115890790655338973313191931494559011353950251829397329819271557966945281002124799506939580083796030098022365871465495408734427615386
6257301010878946890697394688350859932737862974803979586408618263019813382312153313776662522307021642330967583962256615050744238006414508786450014226153199151985257917029390410557185647214356284571490320779561136913521576461863173309364102662849431176231088731446737596157399128662511599141845033986233273278036618305018328110851059499012361210702840993017721004279313361155863621653839816163819669309351245501905593521034840214294218305386401971700805788353471530022120949084412523405148987075238513293087974645250868953434721963595659780479870646369110906979276312141199809720639354425062169759092277706393085022369399600100899229035669163938217087210310376202219062471569050777409006288797198236558486051680713162431802131443266463888907845273229265839468074431864130120722114316399293105944588912340022145545726334035432749899688225005563825151526602138238207134846332781072342092763838671468233896242556426713961076101090925437265654061817095170977950268597342562751224309852823432371638784757122
2561165255086860548403018294007214172070538160284399166876346117934611869449174981268897803044135116843422326215674768402890939944804031304224665954750449339877490123165449714773458727086727303812700926644070647032483411839816528684158445560372124090377431405406363022095239643018678743980920803195417122463334788723325664847167261404692904679172798950874174649755734697246167283359877054986246334696022322056642340235025591458112781265413601701868857693502301699311912702396005143337341322078161299566720173970143320803543733899076882638966465389832042961928025914965600334283074486003029895200741504605499003226421935323293906697183082552492107746843027477376213015700148093291624902908561834386583072914380292295625397219412401691993543245204255988859327241409413376243060814297238858894575010396549892751067125671612442950335467341218819492107278959296222628775732023255034505277080028064222781947686539128522598588285979470790216838805356604234804650595609439369833608381053317680746644942048281
4963079935985910505047659575181944896242699415311406449341615893447943597070656851163477395324056157757335828616692329639437464283885005961429469664144021119947422804549190318155367935649230200927703558552772238232235486100956432085236194414392956550301020235901809624976984608539803199289984765551334518143831091196758693328636148417709893363218994395237260731993117798001802379465496629951112553547187989912037356391213542168615056038896405628554736058258815279561372755610684479299940815132036124886238617096997099933285411950294808155100740852934918927710223616596181610957339333421994143863211852845812601419306486083433758675588999924900119884388999146362841593320403375048461217021327243264030584997846441919999425409367705789952934335034488943998232758908902429307392769777566530596063670447023435451435110270212602517440277904098700632073392923473734914817545407128780352760309023123354435123875821081992089281996490468998768087506530662677121111906286130619706404034184135048684282500363093
7168906878557610730597861183702757921674588340490427811689499200938940004629838818543353892039936747523904572899383581433468236134568289399325253958415210446303759540824755174978607106218226932643425092026789631731513936347640554702478713568306119264135721027242198095704713818803506538379962336739165107050086210616296938125173470882517211630954458587269356463544675417091499863806922493176320051818483097294643349853949586244853873731266764820423386101228636263990339763665498434073239208245797765172271523448512304604680596966394213998389256151115954506497035747574141795946686065741805785756500672724284827218829782413254015496469824023370587420056982747495786463186985448405977350530060734712821172581333651134835480564899987745598054664031132894640431168456116566598742483656201435612964537775831951741595338943681415378673402374143002519815393452510109284646433700756414482051830551885842043635747069388895887397805053953080641189054782981575923052214532774634467566508002568172061144902264967
7405036149414561689292630086136327296340450723208453651407452092656046794915014902368061721988409103906595755888527734172884007522139762550714587776980834161026979730303484003267552364393127271453251845557067576827076613355355566857439715444215144115512656620673539088862463848072249727266220033441896904258034678917374600722787178921461184991636686517189331816346853910340584242346157353089234943179001859678071008914504718166183108520318146074848666785990392163578265790326992645017005259394221241685682385797465321841841419169910141573281381071697224981700996576715556652796625782826334397938001183585379733749133629789493736139719435775953917261911730462012947980242663803418627594097670219982287468077644153928908544100331882426796508316210660866236402723342181200040321012718617700108617991950409256189487661812967438784461585299191367876617880793699063509774086447315692053203269314710722158843026438844771982290111365733538414600282990554958798315863184932758440930605298442848189281481323015
8284920583379275559184879512183514208638942895340955129550371461303873948439165645830748399312214893010111829322650746292864960154886084732073436088610161083052918344768755297446716740784346097014810202397723740616740065656826854067157442040243279380330586638660993099095880379793241187474066153496648739315623586647437495915828785118755419206890064496003179314971256504995139028072681070388719877534145075123986031234719070952419770308437205456355952684290229653713206548823841758792076582916026466289802423813725991071045583477142321117283623109802881734436662125310223127967806489772519140299230475675318078859191484592791346255133158675458116039877883259876961730560551436034561865899883007820762570830261419734582072455136856458132082202736713177506317173317945155500234240771913588237270158549993573846994524166257973554628359268294449114975541690727666182671544524647977687033365495343196268604516057527258501019771338878684347988497057236590879273933031330605818813481115666685625255518852364
8859907326819439270165545233939556812929844235905330261698064531340207121850826427441582396683209764812070523748219942451438549066759469003883694320410516987946337840997593646612149769229985120996954625987322317678695492839735512017898450285397768844814455363828520288414942261867406984177387563579202459926559900423606655215035472914403407952238942728240072886502178114624989415079728269918286261266106968039694915508914313952930607010123274277683632349317521696363971130432513462611043589306232864468439128268979905583277787737252632561366697209629147366901617617377817496189106942318034210921237063116765604640426336796689862097147388094685920740130959880123080524190575030239946622628087660869766640237042383106893509073712509063946375396720481101928654882419298788537391969245735057130059263650580526957923831799832178025887098938504541449999222641323294618658357406775810010454087824930589554974705421620410960644840839514459161550021480226211531968746290968409469098598944154772275687822380340
6134030017335093129680422819343818008482887472629214993718447146127842530052287749782538375957653546537593900708571113825944660578148588941906510728834918916401385446831328873340390559631904223279859559634206269245545467415836174432954227699166009311357391911535785445456954493452581414092989961283287156340951181571726167781528087965366936088779947265119141522766800174784946128688804526407715163711159657956760069406433995740620364133203545207875026157709119564675018532388985222884063403852886210357702127672420404979832409970353367678944087556971112455844484414982988382246050815377522076207121733226782720843494586008460507415992201645394883125437657952601009180584318599764216137158438839181619942687322736943359489530013900170776161624728043908257658480609787932038135493155495729310693743652532136696195067038153707634199488507862889795421856219647036760019962817661240472189192258802782876058767060107354382695287193817232752201980613667126444869245213930607563078488053603112358405394018268
2159945775127313739787210226022483066800287271301824016939350697028854678473962516936954363093058119078876110468624846410859655839867537239032560390107785760810300346756013315497423591035915655150316544497797905995825717304471549971733909123306959899276427084442577344134767061333823970502963522076187917214864541629994274969797848289036110700787397512031653191334325165061278132006838528088795338212706380071210089740098831035675076045889705240378516205475736118636238565919298334592733580176010796700904947054310943729282908945971441871558376040463499350942703513956033585359071900356680021755014011784791569053591910712445300243861249617905244864425554769511995203112622244760411252338552867718737592521791822605103070658996177948008997097981709887814229946413270933203203812815159297556869063501515630233898529911522483443911679239001538377081902038622874456993353218314935169829748454545074472676494838085692227289278207289893605823517196931913328463173450713941131907049060156641126120210292426
3149438309094129513028810018193277256652360504322106658125183623125401571684925881436686059216812360374499565383469925019696794517856044381937946611948234759174222187514976019150019315051721532405341626400766908815293112330098686572644258741916140096151801828065827595850821468695068821448133046226963149176809192756298551729485488141700267428946658615703481773281584821126563172035110832604207891059543138011586572317161124537747046091165100833887144817859443027619176857842203071891124503298864955870697272395344109285981111246085489021056230236911844585854081177491717669252297405971724160911459935246138655656910482848957951553049764054003637147329780532481969189265897815297888197260826305252516142746782655264876723690404035359596803016247806972613338002552238874562812863033794212775156026758493271471496954440557668435152043631784370490606364019589490987066533720003074562197692893444832836323917599566428607954452808389422422331391483144640034997217855470804101656662991180001336508887940448
2156281047116744013963490910945329060105188595775691990483243862514907103871639788909540386435313957656967822393128843553056172481717185618730237563978875612999138440566726501664395043383296581141813601491137636421287978805864362686431567580718384793043663629761552296946236085005044100912864847386033863111938639054174265072453160791258625243489423026977936799323150794400268168451102874925948910135771871434559394939515491115781379558927250146363215349538299260271615394326822799211830500475003085674454441385672092714868656555010437432030716419751935164511711474760095832062957753703661492614521378894900814383939869630351869349575700608249086956104417421448206357456865675411337215607622686582280543414182930453082637245169120331597871078817063602977255923238254316909310059793602666425506950463442887426155953309772113417114855456647028809977494898062684860515522598794451750002924229755792545017670714190176374605067892352019380916494524907879721893811334843888877848367783496285361781471240211
3071589987992761360543003910771429968646921043246574057413252879564756373836033805329367668616090970082737522876824526996624797664894762229028394099278958344798046005830733568554118988156053663033206636186074855767837738372404790750609162677000962291765060680156999359908329294926973524407145448869889417206990908101850948746159078292687148887221794424781081368895273522132395562588592715737636073495647825861365372710038718703291920099013458503181513151565814341568720670439664801875103771041366288960443788101857849016514309793941438419231797458481984930274773144249580084317267508325637781116495882160367835573718593900824682377148027278038166076768108641679364785028608634898011008898913680107290398725113009815652426303321874003023100043043434924287380583123596871931673945505684418315855963936301903494364020988455236367362257447835353770531655097328285659418568111037406026623982895939784339431352155294671428370366212299048301173056186059073646147758030928684939206818432530817837575614944680
9196654047980419024643268813103055023440883501328111525673222817010360762388423976741580704166872189749774484303745796443851573927708806424925913657783069519523722193964473525212758591144894450658321500692657380261048814670973310725561430459879876166650140421763781678395429030754261066320106147071766621224573498579266076740842286808257335825981743176247702867272492076388936374409845084119672582551410452023471405055332493891117872848409250762165899930746537317084947288168517564050938779258744773687236266259880494654557061347999508172274854200037109158002467997753409443306138539543732746158800383480385107660826179199144109210178709925761931759726337189213748281222895328320403293511241417247700403936305214042073636733471639915743536152263683492499066973608516920171799117491427345789620329245601870940540236951805807669861231144542414369216904120318928949803371939156564896055425778989877700055762746060124924595046632829904631894814375243211261998122364551486442134579263642592341492735883313
9965723511957791046490442601876715059364499653223377647002426218643144756899696817064759841018457605429818523336624212338144735349138860881602774704459491134994054392585116479325072210570395361305849693142397770483007611902928073829570163757072851475395559861632370306918835655911189327371704178022253993713476230162933818559728615683719331570050923831151498272667908160097213777938253937474920086133740795584958664985296947543414765402206381420403737659588455499770891859628403005196488932124998699074072567211783106214329160094444887456284018319549153917938291894242130194845033828319110705263211898497268594022158384251736082186059204456098841688682963523128305445315661587328829849000945557867717097100692040237968970862480893175056625414002355166088443052136523665755492533439260569706637423718521031933684060954575481741200556746215231243360512993360944217602427418641585310035984895772678633296621407793696951437107009451257793002100079783300020645324023147939529066771248497283826554169878828
1781523866296502367092110562140355292344507807321849026690452651603431513067721865299688134736115935585310962024755422502361437993217297956474144606034880687671105357904947124590238617738216281538815229702399323610319009190048648095338052274617471083295872566526963680290333641369104419593802122617393731324225925895047866795035945957014771105673773690041185371499869950239389391186307859853888118781027019541132931452813058507695962512142568000195449489367668278642432401517823764066914390582855735565626972048546395713434333909058972087602647131117491548326080777449987918952473785243113185781338731977385431932683582326384323105052121717714918623250327018766731778815803131850864824321948977601061559517406135805576416117714121601018281225839970152260020717669953186984621760718299745773244103078032394008278133364834743469265416206096899269645985828562464383866648072981032359500527992262763035694971392175991955631917591716556345174798387796201318878792874593350243135456017138324341482777079846
3010618218952963128337599657290455223996814832057952184220977461858327739709916030446934037274640754160778038727775853111042122560327624229262219132596345789119589901630759505780796071161933768165539177000572509763859885458025868452390517810227603355338751382824333528541087645123236369616096872813774012421318762218099228075221646062397049253277629242993820148151470895814465746170965121576347957810961115428400467622976114240759980482917139850944352812780292919735022086196334933836462265428059065824674558579455346318515646621747982193289444898809640073105775702353932828760553329401713618054666486508462518093421516965393928146718235634317567786395817310825669462178878802227600927596861944605616967790131253638328385886519284522216383814096557142261536129535596513956149084354563747255332470941996413867067623786612321191983867816849336566001336422341848266426889559355082242569202536394000049728670150244038902073060821422893061308129939621000931381853316891279822525613820958058539869730194050
6661566594945256700377100930055008396336753337832725083518369458564043621544108163265918801234652335012044329337401329209814826318913086580371765112971634601546101889388188428909426558653519236832350627734529338840974278249108268973277661804611589428992344876546557917177705523620512559642246866785885706241154597472610080022534504886658833525685452265963759533032462012968407266706025371733144686709309858854280858786118076990258543655901906298582712427058056503565570274767124020691791141098031593561270103518560830123483981122909276821454846483679806381664383359661604872057948803667100116134548423731798878882907961183624419060043360467925968889295724230198310062127388515462196930169125613933238723758162937338134371854680281592598194588811340522056457752769713029665872737716902332096159365975646898022103431928036049759664006092639304251932605878967180058381665969366137955194045382136640747144227843082846512893055710575219533820233085850308724833338572177012188587803305047703594504446901142
2648449604556525161831789233991944440227264094158990699195822967146832246183603696650713533817375668309341052940767028939041285205437610285533851531782875600278609179390891600659716357677200909285895644746018668358945634297399386815491317618685156677429844028912346433059529154722370016747057914566784722811922960670802365157126750811666055643687321910375553178543972655162885658111492444113771456803040347611673984696057682227039950795787610913640138308175723770032083159081002718529264647384602390167622503803910904510326038669373339070072437523086653616228965325391292068694904702634389717234355459387526533793057174118221545047952232444344396978125573258334242712496365507346233507979986117039518076423738216444170829884042707882418387711740295920415762640855955463178386265028521092812891110457184277916041523109973987515497543596160323236129898123564573150321838277578132005081669809539061658708754749848851249705721291384220439069173504073276400729974101281993233592791166295316063033804170780
1799105614719933251620285247325519605452339832961914963844902851605706995579705077610382044147420658039735955487959089543259181566668663777482505514506427323662520204516957565007623405208487122677998535398989861515633490697056411981357720632495079001408904102336927190217813628493797253866876381850356194033609244779597826416315760323297183691048344917823203698448566519064827020772145908594258702594509568070802039322683362618482199019472301447611284939944862672693329313806637336914469650547529864680314965971092702545863649674072529893097453253732474415563440795753828465863761814698708678976745219165131280620545338753514560876928278884903251903434000318931766765693442383611430551060937017240204955648978730048502035718180709865196816088796656433726192867859852129086574021265373933114378436312629823335063423116782931769378538568340856345799969514225297686602206107736828356639424974394698427594620725785879483690256913919303435911775417834234472658099479180211500039299155142677737808924345511
9346774187739980250027113969978254105652258976275922504310451704913945270306104315148490817461979426732440825763990691872540113549332173840898754228570114285160219992317303505309086917401180127487749911173223690795214493703458319049625149956300783805629988004117137352596185613340857813931837254298702298106401687864288012189769465599967420985860859222894930829257239913257830331104276182697645318536330327340615051989484814646436328175230521117315600014912970419114031951074609906876959435468953116763941578792471357754466759809473291801487813623286356169943862152886792052642927790501935802492085210549296654654426546278202660300864451276604796890906240973370038830523640358590398866776386021644542922020428018340601223411077980533793236592802246052513360583177835342496516330940028349541046022745985214563314060325570265790578817170832048405125400449036764700204271421873462346580301111919571484425613885671106452151941240511766483570087838025661197508727109032706476455008883468187886357118379028
2546316727724698104714735594521806306151152653715698757844704859555515158955845351982985365574477310652910638900541920410089176891125515675679887489887388271317922104795939237192112803099724234368271270593624482275166940838904357882556567779612158988316116918369068732488012956726960206399826668452794583615152751329724885951096039681413885410053508821765216133789492887861054672181625783752541158779819329585600986823376989375307670772328214117820273797739704237817018249835494214158328412304329440734088735348971464032314714256986414500491061448591403608181646762285466844620990819519138116008323699648757325171590465486777839410247258811931395787930657541196953222842722895147650277201476582121125777650123458599876601187948461863260801866242488613854711724981959958323866640424591074005451750792362707547895599324928740528691198501095137113460115804399288679505417516237425049350093319676462036386022765266916498470413399792550864393178052674462185251369645895240332026381123606566898063548188894
3394116539488673956273546221976502712181340377404380604565374044829123796217132278810711149898008084664378382473865447877387125081074209459400733470629692085607920279310120369012401625593467995530607234451640292120642149455239580218422846499000762258680708848220891743610543842330863382284443595074297324814423029575257265988248714705012409370730150974779133305949398296500527002009535390711139744201821571653124236935657311276156648557584561949823315391182843684057033055081562876219318085734684317260072234851121495224926368342005112837762782702355148889004024602174022302173136740323700199413685088367658416777214763509000524978749240202021340125875188869645791734203805960502146021312712885802263360795508226530094346719610442972884056953286013940126823294749492776816454147119735565827832316885356851098809168128885195061567114697898855939022934699740553877268054275432409713613093081655158014987437161103528685743616362745636545381262464549736956845152761986201948216013362150789302932275397470
2935185512360082843665765838801505942625575702051505733647241408477213705318040688183766772583133885419293391800347419692459380081454413676264400204052489823369768725731365175766741110508569260221210676249632324195045461653033691754821159046834005845939081392711578711521419205967732207208815703452700913681876717686844496656096912812878559767535729695672395093590216532639770494048791606266589230303841992160868624772106088183303212154690002101190673027281307058373954398118295298460310936587843766442689060898847191001075186667197063870807695553019159919751195200715865586929676017064190803796407214202868507866710831484806971568031668431984374281397049775280224698784669348950127878593590573545583681281282817240304092291086893068428617015146206774014759323024189216682294352765486388319986769879929049840369517795961116843147925551249997758871261699926603891599944450812269842853996195963090491871476429661155599891899620912867336736889993878529821537187664003889062964132536379637524371929475232
6516904189566667051170315007699321317161689610573795881819045312556246423589132808235326600156020784399595331376967594083951983825296736537578516337352650337675134705011938725977460142019680752400595984252977707267002134908585370553879118781165106190634950727369909527630249911274795485477033145042451697757387009708032137490783089355831480047431022443042657409931192407070254777277282391208996944605360772884073689772758001245146864258770259591142729776234051036498146305007351382937958682094090167674878820625672858084557550098947072461530983350412635330756430562382904426381172534637428892451743784607175700596435842174888123132229489141651586953485441607303631124143588758060196610712432481727333699060173676447472386841543958287615256609308709663803542195787159597666623874360362095200162555253576269880614251567931360340089097760958936942499865618185367930662380495423045660760890863000602882154781880953516057400831576133287323773225095002440762433386880071498738781489814744743010865826078228
3499390574019241476849147582712619729398932107129964796945357857501599031038755100225999145681260014976612181031669283750331716072777872684926401264226703411993427475808789766257262948897968721899360039638802499037198285069149877054680939806492827046061641288086351153352393055630468041123530337451097203493315665912120032738088349642118593289195984781897608496666554808414000229878596647174953364821954768466589111730044442598385452887771889144695281715938070850473062629230091219661869368922946842860773708390678543781413177864870039662207983735069082719045899285178924164252355607674540150407913278133222311846863392169178377918699734260120113778806321445166628279115392466615653198935235874412070272028490026887886457214039061221888462869441935115900742531032483271235572210677663748738533634205300589051401354461601421422887539982043121668428094320367117357270891125035765883718125986756634345799388368856355370381789879938314474563780326547582690660174182455113148041670038420248695520380667172
1880811628509506819979705529729123344061282520407294051646895975520617943010078125334055240660173126289170294575854129514614656177167094479609743712225379463906973041382457319099947453610252355729441884860197213707549151059405072811650469212475299059500293839670698705139890174115864344465387058355954982295526045111093366975499719904848071054799785471385742232198029809471370928963905417518265854388990676118106435044629539287666378142449403794812628409502955109026250695861154187550967881411424955840652845475393749391281273755964354554452460095820480154167359593066239255817259469668627271327919743443214293647026615473590902781649618672817561421872394453486871367132961188849119563751253715876525707276101970712440979597912843769371296373820243042539218583508080721875613006221237419932244341459314285371220456879386809763528819918578816833215531832507635462522150072573839349531679516291757291006136390811914586444848276354143015856420202167225296178565103211825776804103971887889248416785975096
1820189333773341357720523695049388261468459234401118335729607618985726041976666953194731858282387924296148977277998055173487472500742033865343950035038273113644473517840843197454272777991009809673069684220359490665642237390805855738080384898933767209691734642048146864164297077307125976012611789563201152407549392900158146461772635376270657803606678743638177461475723062297813042356338760507415428476699258336747975789898098075040934430715836544510751452593550614473098847354410975883419345657930843928084372802691268843838751598866665150990751046710549667911472217398677959176860800822814354651401817271613296307280537332064300893399750934638607863530989223912493971163005859265912385108715869869828710589903655033182344021991060293379072138090380941204628982781483825466491087559451084810908340060644442922341721928737748984375126545144429086025430998357946225322354383235668159818167106966860465416232668259788548930296048775249000371866085868369331355508082627235865170027140009725595686946797564
7616934458867131975139126137402188651868782878247244813268711779309102845831464329508644775813302533753959628043873786070126769339620716076041638043659353197422201481058058151241915338393000624041309750684500710287838047370970093480930398382895539464192670253851749650425343070959936826704558352891775566309269477361303840722411410780786625787485748834806411877905504676003563424721101824990600646328935691348371330485665788127353407725764724318468642882258841241638738451247841133917102114219348987012137551653107156714942763684355551428448373164352539461176935673205824567531166476452445798151687651222280494668148854341798785184364642160292864597380995063847643089793774548531425541236032841769043340941414981158899173340170838053862021512441310141379384146730508577029682445039126903613653071787246732446766893618947693376501251996995091170039705773467889534407586773979054386464391307375560262786237770889021912656629034641218341360554500808105510645824619013918047428537642892154742527279159144
5122430294202265413449609780945052478578141552497446977978314853783520390497868059606954386335071700515319040320371762037917617428118098051771496183957365431257270943249715860174564742915688029151739387599038760951058709150591233849108549801235584775937070952039577743129214403265181651406929042285830378437594038602690371137491138724839276004794903410889422821102463643355027666063866731158261723718977109968105125104260288265331254477152269574726497171962845045399737857912026090546391193534652377184403590866540437535998858744734337609681903486888575119772034691772252249383241992214594514160530200839170847465406019587296461939737716223213505233050670544986171763629880068077694899458773850431320772952303607862105471294127692986108349345997474339820289447721559036353018370465599669555788339756074910670426584820331443443459343850167572398272486597292548023167382433293344090911763940878441042648019154875302340754945278126064683388269253685246984848778108775725913355355055071222925885310732176
2564969789960605706728359923191308658673944044573336353821813504327006288617620273004954076569426187026074931864252624667185537970935151061087976599135350694089218447880493031120316654923213706720332496673599339930586009840007626051141314195048970815630454808786895515546415313592164866157629713113853758795257335015137821142316594950804572285541839889891845451307382189751084024226946141587216631645053662212526401720633566185635704155610880636541377720754495076739576164732554449246609433546748103795681098224090548381841473359137953770263355635287383697808993408253783263184481323598187429392552868255937855495539249747200742840199419441463936558386346628325277350102865042142390816705486891677600818139846041490995807053854546729791372799558817451607246073420797092506061822342480851760354334791515911761972113021972558870552725769251921103815578032520711995607762130619294916907973066379378760846259861734489982301076042440257054658934622067619780982081589894721409525925488572480818851403759275
5811124379481949031532734434164895199880440370642024708781929296518028518322818065324008914342384630313511283816475031632766164643298125578547998249328300495076944262192698978732385398700971454190992145307308102653950226029045025272676991154955521333294538290537115594691622186414496116217872741884759740707314996007080981348795271659133710511976849709184297660662127934469445403757585398464042741420152246394956577856078098956584051374025043581058319419483696017592245383136948935705401759214396313697349330670726253371476509416649328023935985274188028454877001382571175251543979792808736333113470010871585447850128980969446244838420501528515968325061398552515599724311050723990831466854817680855851318841757993636059420670714070130809233275768160896543609469546092955979414958992590213335346243115199176053299555246601757976134567784924818102927548090037278283466838295065392300322130775036600772423930927457686713638252829856366015546034518667904301264544385933209956430913009479811256300693521496
2308489532882995991733032868413812581366441069480800874558744635755617942844846722809628114118104342015369815917214949271936304035449005695607468950308089027960499636673574689368397179247287264470919399289321765300738254232632383233583787420986181990577429979846655812736216696206563049065241725346153189593038295750084910264015286976161577617358870983142602627068644419094398181822134645182192635746573888720386168661013319164288641741810384683854522442976643557188902370309896981823462416139043791554170815432920060411651625513841595965145354366283958023274758109781043022211163166690223591196661792513254147536856115133813086690709368106037699523456648738626473631650783516990322480873769870909611080252386423564787912661437726671321556951749170061502877239166377682993574336409995590393685471463007057543004346906676288567914581661639497743635955002427234009744487417701561511105712004560053628939985263176148848941729408834401495584954402412586209599540622412590215651265120817648727788916438169
5753990872745616037823901616637653286279979377951902252410538368285471813781322689592334047196966970263812582418760604536602446876550146908480220273645373889949417622110985778517743442170728827925121420814370893602912745496456746264755816055996715682274516677417268131258129752513161449183521458684375408694411144280289261990722231866703084586365470973447201295369725098013095572284198152442490510607516332812520821724562116139494648660814802362227869928217461231206440046334685344547142076226324715188181879862893950249290210514315658192881366605015992023781849146005591850696633570196471712966618801527987849600807572258773719210880242825055467724494439058556574195509730613889712112243525834958531692379952861247654363123087662935906547853166555649237039603622196911641990685502597653722042606694761079261288469965421954829686844108763862826220147131572538299742333036329524873559077385597428751737323971148294347375301224120755431084431768707803438137099620918598885120735627271347690508844198526
4059188431328319398596344900151731022416734726085900261152822470214085230212342356312758140973859237293025411528006562166720530030723596308428291570315688323578627247988377724175525221368595499895270991535659851568483278948664702329786932495304159828825461580263105684138178845878761112243170104207836138510818394641854315298791081885622536344930661475225436194675263796793904844142641997516084014806477075209340720993828495871391921668147549567083790366138245598171353220004016518400698827736621447423301777121086147959320251222889102728316399454611641148923448319879823568712535987524064833970031463968724066292743456947972974783506846395928076329449639449938512255771472924085429111164463829370019846294961112072685116157825016484318881268408093448011152033047883745437989284988346968628854762156727926079023246746435372419556027842092863324839656439169877213011919117431184076132994944057847298535284326802803103666086068214068052228051615577194471495928913248519446271929331349225372834067510716
6131620733579011075862329186533519279754298023124542119903574752986873451861247186813402995909510109788329139737563351394336586051649093284560619748565183782149898921685388667957874989475338019333743943383784282884975819832280973388593646641098016329525321085707471691551498195553007263150295946461870301737749910983843251877266386078767883261242240625421628777785050601231397786530117640943453558826831334151083999372991218720766075232954972285404508289952278444516197135935182173901781002059854180993730244455602913945632295295499583156777016177953082399338277320814301835998936481894542735598876050854110940212668470854733053474918287380044131104887259994697007233913591189599874038265638778834805637378853458840343402437272199768566879178229408721700847186098175237363354670862059303425129747991777969658654692896189115665932367935631328715573682555120096852354442218120700276783842291689385832566308627212641929867026130743647397757709117323075520339143468959823756878056791807968780236079703546
7023327324123167316032961409078525376402854129260294869490522651810075418209626446800688581919559618825652546584096511371182820523716019125813289285469687675399569893488950045207429139586226907941561625620308721385128623404024001591973327300075353420377676072435866547502877833580289151065749419657063875155364687418111580412177703175923972694926806779545905507653528205189909098116608643516831220708932248901390215563368125516992043272503343973359674862642140850845015077088315901426341899340893385965338799117717101274077997905034012905322149840026881333842629280362927010362195500571914407864968513388093601205788679500833689898702969804075708614503538416829931119370086995238051490528261520270927006375282322737342797003997710779693127652009370629714602469432858284917260462137309436600870709024468228277469525329053857930894899816524047033823272129853970375729136712751032409081362128454028307411417249269005652340675105854060361194343440849824292104044092564519634850617237311717559298756352769
0198714962570534417974178398772693094552963797425702486777791477560173334568989190339094488627476493837778965812383858038111288557330374271195778215284890678004169266898692393303249436875865581457007865049980439491044351235311546162744579736842275791944262971944450576105177698241508204914337814977104647686852173319744203113559725761332059621362015603594298864812276771139398646826777635512920283021014062385179998788381729589643879612874584772406070725905167547803417953927781644680010883834959083981070355733645437327190625455679999616893392879812131011304333423539929985830337901552182707883106719241310685270495588730855177048148966175351266204923198478205569171332120916265461370043222780140116817648150925590057641793674706370119649442916515498312439605742573749446350542277242681980063170364951253265290647538010152185637192529895046716854366569123982810039466298929572193597572204893989023383670756374338089463842095806197802435643840561530102626249129563235441199741108784475240463798658998
9729609710391393020638055006439248592269934322204236636522487177139709022862652654581348231387215314956524954962908820447711434386367964080804832691946606439924418885436674361237251043486384295119658839780983159582663907497917321627058406620617991998261893520009505084957817634106960039361977526688944227350550170355484692578175639789100363085359832227971632613989066894244441227068287159801411675151895362584014906217012253861093004091262608072549448960184251107512433543673030191013303045285450104371089080110480784625497113646248604542658711146150218646789184805646164266971954564449967435542515966865962396756275289709343276600450974577306777098631739708935558237267662113161584393574367707741231707422675977359393069984632397713464702146137853973705412963969551479447592230046330699676940753013191705551191152436417533656826422735558979258393645329766237656503296844918603996180156141439036898818690996046256533118607388019074425069822786352899590859798487476574735198180727588144077322600405723
9209155247656922779848345032054048334471906012955924142006776036808003994086461765403419227534446704402854685666872959178105295515355950279141030717308824569735091485431865777485292355900957771162378222984332736295605632290078138974020535635710588896161927733884017975611844522301828144097363184606551084866102646099110766628920654019002401699618442828273185564060479271091676501608733426668968314432134571667907615949467537333337491998977702463967503194077210682483590089111935064869769912866595017332620257494949613299811115510701188815015971410317475981906398993917804086232456454034096646328494236741478848162511628007961807269150064955451721343715171096108979679759822300296678244703232138527677438548503647161753539531538690869427937110413361566906909478478698381730816471440929628269511890746877567187195759802144863529935339332207573097934952612118505678890247387739306789875527209545112120347333633573358842492914260766140104941716851318800994761206799259564442198403902788013994841985215008
0944633266730934047981087730106326085753461431404043281365318539121668942582405470188180460025391897975043228093327489539835444811910225268206037173497366262309297459228424026783265293344440932086019980789692179873300047681758164290919981779029725203627901455300354639681741528050158691707438954606284080404309444685571175995205406240971633910850228593755202098977435865238320190644972918140733204512955350049158718837966018430500977690144625070544058488253829583671906781756785982773753618383839861507364600555139100711110284148278077687238322359212077295179230719783383719878933428425624045881994722221132033451232863691864708451199944190514058661968943234646625113875790648741444649254012468033973751404235066708017277673116555146890566885446816525501792387977724359558587839082799516408917650951880042856870301945644428417485163575746790368348821048355798152176846023044368101843409915227919578557871379886246620059057181433272701646389651975017062008805944297640530913672393061273722727054950839
1143946320625277345566640320511966524057720669765011100929347267305744310173226432256965673704710138896973794711871203011017907146998886912434992166032133252104710090100631504079886939655390905804362356429037724097537677534616890138349890394390574838631704279870667559120862043194875606016710724023386982617461293665015146819786192249159931049336212276861632070669104915246632838849241207178497986312556766662509713531424938538910061833621352024407790718328685344351350750797858420645944020900136671993404385962514183184455999297679471145911938943818525183339504033308859876741376761594347877790163236937849009526473490128401089803242176477803729856923287061570905344467757895440809650023228732664779683915681043139897589506772261302959237892250427407742040515803404339778311749616191963228474935333149412063055701077902582970731925471105714212924045334913346137200473469685614168123546042201179362479569675983843938863848418186768599030348268964890677497321038368313936922258866566988085229589947160
1376124391321041951088456157038275722407149187560993904857587901752521439655240366820790064065708926974452852811480621449593843879691258733004541326933784467767843608856557762413879221826147167108810423860357104383975755655950481968947196590043349422721613122334907711917982866438606156480258562002172904967127767802411640684491099767534627984571762431703324907180216130734267881449206424705723181067095275620200153139723015744262725900746632202130268090847860640607207345336951460129458735698942996942969192433515810591907707201834760152760663243304906364114313096295117296876540669722870113814213629314593857743978269321220435737040312555133798436473617930341435535981209415559264418158279499769306855527089218809004453176978781529420384739058450713260653819169726820995427795258997943500364291419779210480726378943686276713785950689634036317390041003803887193691204314796977833976942604253626401930920580709307583100638054587083212883469314294425589234203057503331492822523229133685736609816391731
4379248539380532014707758119260348987964788998149272397826544655135279702333830141401931947328495045854442369455794864866884977428795911153222886887373346024320726976889061899469386772332804769093995044987219032031225960819212021882201359118522729807016832178949379776241079497672055801045028578645855395978986643104402423777359742199003143467171538870521724232242101720623988954830298925484806570353853465073222457045263768877964059098842703901773411373262574513709138341144697282923697891717723629039258297456576213106598529761904110020116108121360450050952500934287926626577758230631958588352937367431053815241895859719072199873703234864903967529512137498317262755134929476181751049911536154740812628917288019899311667879109957301578555255658943511373808192107526004096486811027321644159207944810239573492961474814899843960775916580464046108401211508461402796117781201130117651008571225725248270900276808067666041299690693275908594342129234588353586005082523182468360673310135555782930305548482767
1318175841369696648191659609652274888024491268092601569811403805965140109045401691908207216039282401415402667812075426651326948964987677459886574464859316767660999275589533755012788275555858859416581172427756404737932780978105920699810660916362042603128521277217964275992214244308473882994703666026571519213856888941868063627801487820813845447044721949490373047633869548012986443820449257196787087324306603321217596248820595040195188136685648749829680063920708934284610101278885056612673104673966199009873072402580780969900828561391406885403772174830473946243764700107788036384230303312436054114975891781042597264868689856566905332172545804531400671141987925114860971644866443251897233420872584977574492978874120846845399219000261592088680784969104892434900171264245267399074398417204147851682147782765372592256784276055722653587336579061103745093631691037473462069058682343128470147582674474883207533199903495163231082459083341188685580960018205767457548812396521369144550403909537600264000833789801
9628375810476305701700323572750017735727440900834699663560366422300834764291131231276004107578938175747041836961409342187925851120398592777722372059956449426885470553387396565324036619200272515520295345646746115505804987609283662576417963002498813521963442289976697474909023469696578504246044737637844922300208873466765071628300572071458835904922954377921756288253254482061700335857698511468688311177004181380456698155693118905297651457995259257237154444661417404800772748177596999809542669141461472120232390183958057245475414646661641123306447179696931527530196300168241526171433234302389262192547517499674783748257988274188023559227667775177442494023797755185737140897203889572314104528869644187148103036078834803278268268149352814925902917731983532921809398260953223856205471386281162472166917908602347293939167426862568131185392149529960426157996376345487286247323120257975812631066418462759754883141342790710064632595474796927850987754172414311129499262673065264080169456080031808368482492334478
9671011572279388598769418663553365479255145473720514316962670723846049525392825872416092913254937116164693468793904081247594534577163995953687661497410550335429964245606210416180253880764153658198661329820109605375490563177930796961128207078826985342042230669769317424148791731307712908796287049866113102919150296857433914319866309068282165523248997487087782065123492715361445341150834841915019090356543329396544712231252930946517946602308500868727499149037938070566888771497954106483901393405513609662650042746174054513542344627729752157026246019014519960990665866252719372178995725338346426561974773208257650469507550749922937520939954639537124131171994278590866028299324891534835168494206619373269605106979176977749993957160349193509379821196371616954791202909366303273181263339760163162884958274888953430621544411959476543260736315905598024271022267570190958367050685259696180935675636457292909286687383545386514413392181602257095349829436889088176046871973565925257666713727402220595763106681703
8451638924436687906668051679366704053064977616999152410899336456605031746192583372545189850836544686743153176431450130378301798255344820908514533029422138177427713075925343740288750332674413962951032174373114519509438732950937376077305334679820555431308411701263858329066727270077906813028451451915514204219678527137629501764871467872450981234882357140135447693713609695047909434483301700626201065491027586892067535449235809791931691333860689164370200329023010630894299608617975177415132759039250883333095162304278213036819414584378608352324628678649907196381247077000193409167467087499347176832239721370619193663245812995427343746638843363977750746409805147299695492154991683138968947411550732963629894797660864456384987424229835739152241046926946856862803613419181658252074736598286394821352709091422232933744427997037006217816354326186151637900025209401112197348729599126877183453064172009393039506562387101013902710175080360204657044845792661629506558898743178702932305790943145281415408229217036
9771640582811979248533228504846532630888147015984019426012357295829043849798660099938767644295429574528719379821681637968560949288756292872773171136796288425319624549415591085812834580099967170151634936885358468970587636382067384019689113743547149245696498501186297912377788766123052089029658439630070123027067448434054269133291281256434775210651087099143955123710804923414958940377455953189541252709581010266620464383271850998316488658290609949288378830825279820601781571682430921111416923813792690227886587732205650115944202719564278144362598461308345591886790638533720074933780660155453449113000671387767723214192441424113567403648877778326921138006425592149291859819954111592447669391954262082853662233733405648703208219255273204658403041629261431578045130765898148647507445118242067365503900626143849665567872531245273319322097885933023463667329568968395561163883032630428949025081945679065485733220772467538433856474699842103715194127399905170556644812447395081642847885180693004310569061900793
5347051472022815778000964541962608556809377594112048731902458784952836737309787784170982798806451947157216525492675493537115092053356144952898126546752955880542182572829381831929667095441560883840655334307681695889217398462371692269975317706454871147542979488877471890016380818576220404550841257451644059203278178074359093319220424816373009968961897049564327207003899145302389522003227408992692052693891608724558420693183066787866101108507735368431009721068780887622622493689983569590627452268934211194176404240023731322783459177476799540189470486267597783299668240885856525915554289786755190098172814953195911156485588098045956519467479509465792250155795481443122329586581621221680620202933952689903593783437582869655345949639194300476080373936970114819495800528122561812864799250889482290285676127965778790651027214676181953448063936402930794316379180314009482335700613206034052135148377735306945866603925473281554128180459573897257173122666569973464111983116544988431271154289218054323131659222314
3486294635597496801282069897984071420989335560229614892068128686295741860347599350004694148374993410281289551331854815538378054117945700050330744301798529668707150122335470870234063461531416345003932734799865572283107669455852279634958655866269752555251940432502509366971033840283068369308958632445023686644821293729137497450997753113688770963137721964989432196007494418953630559835651138685121385084720704748796143060901470782336243023009625089988200291650373067167626771285878009770874776152761964600353278639735634479120114669169288351617934314391179080123938207069954946606704319284949835586563265320919169216915907561303106795715664671939524700526324419807804004056678636258641554944183134915875022984474620232314719619370581923274138872655408400707995577465263546633749427727860264076500765460048489698767795300597429907315335046154760389018651298732126131481744927289851253463058016495937085922705086491429476595108953036595739043610846821587643799547126400440903491645937783666076443199501756
3253046862078380935086304580386321627334233287522981058586575679035354480025777140301556749420947854371459315040953314364608888552537810276833784204019003445383535386120867869326978537932780102553219907143957953168460096417633133541670047506298386639081870046294681684794792747542984177578563497725358668085792492229205372129868100601939140307584373681587024671571751468561790845354661384668140655793673317054738360768869329419998957490647497471020508620976460128169258948486684143993616841175825924357429299580714274664501771155486679346590595988463156543658734579833648481862081026586473963464111664778540188940793872513671211377301564101454751058993806705811137756672552679021238491669735593704105383581461907921550537877627017075431529397448088092070209002036620654578439393142697317708489334462740425012892029559276565343844075427944233423813388243522684672118934345899451030528370751266705695972195011625243169421833453203080433399727670910880242072276325669271980047592553214220937514687177335
7846420777931196695618760755290596830213019109351790942663167019556575595160299757925405038051992881850206733006150175219437370227036913466695071619307509323287035951408163946988499148271481921722507200084652955293102132431725949063584454291003799229975364452458446007779113296258469644918783494754421343386129992664040626561171161372131717052491305702194389811197362722082120964350852162095911533557611253772893197745571786446761484490062993050940056871913533465974014514777075551402297997044884618990041722938847417118375320614575705697283097084439895396254806630595648545148585660787251493257265723011871710195794871042076354042368202171506836739007698640921113856492390923111226214842161414087594402282196187006984660267473331521405044618132681642958864326805006573335874771866331061156305776858037664845989513355205242547854260384172902177469560092724549449400728071432708205926352261573447222932523977779234762249264390872087540074551807077376869627849817477258658975999818315076708406644172954
4966966155371002422766936777301245577352571843901253850342086597940176330651342067021608826327201234704777195630399170562739995569126145635475012246630894992335468494350050486874924659399861626709843147677228604058379622442022331148561004150581708901182456988805226945545076611042062147545958213238615500874467789386782295578449650656562535259278476668731057240763407906289812160722627556001363839847591715578331678781630568410983572816202202403384081085326814842440199873840762006808744083778081452038904437700506024464937522579114951730829193761206135728439376617324940266538205570964406686157197402669860074740527960803845118545195601558314758679967166380056952846009301718990780714057357323401590293444439913592505855647485451116854993656751334031512491258285016264701729269825325932774855777228047181114508638969876997791423805077289081828005264689215497507328120310673177057622535647620451298438910797623865757092805428543574467683981461427363827160001568430116936247276703949971105215619655783
0688490689663546677266139613999280758698656970710992682937408294263850762297992498023767787435602748230812871359084937467719807690656416498146214116966839419245374625355273098765337192445663817546656206542931331533740727102551572301549739821464171186758824729169700316565080620595305124295927222818118069742973652919827286059700549260861117391153554752567044442474536072204204468473089435845055202831334602282276129131238546681401612083093698905550296736301262990563810964874163615578945669761564446104865690422715024277092601480462412666607865937914390303738413658568797318761770229812593105246414384724943363947127346311000075408629506862789580045168940277818167735881984831035808759150314226145170613956315150985845768742799867810719579930609777911170789928422581259791150083734989553412926732554647154697281427885098980537845626725296263251647913245335339594924465748590515572523596193389083481269959403029430553766763942655927983865570810245364913339801672295258461591742261836089534151893211835
3063510914689571740474016239999024906167583640261214424049192813558112782041329308319928691224697605514362932738931299887571102223478930558173307603903831439747956932999281662421944454281328847238238831977428878220262244636386118793089918239380099497065590281538504165468398742542639580708965145807835383261198827319328404553240365623425156931899425604585891135925534592275579676392822912532399942962564404902314137351132037269439359035531882353767877385423515061436162191490476732119610399980535687269503660600485554121274022337197462273582875200439635495441823550796065688066017865737087779517059138920693238136076237360440617339846789173477408278669484988479145103245507146238595478048069034267869667009591467248317982438643538509039849434496927830779008290304885728825621271211119420592754523663970169261028450709609912858201648032118291921436822831594172748549689740213619506676331237824481769045652865997826707868456427862322425148612325011060687777061905866562552771133979896945986880868264667
4510418827546424094453482697499254357701529392993819568436160358775783651712051611159833314147228221044221212830309072052978943143329240172695076537235294934891782955528096091612686888827705589403997569044381939972009215623429658566055687043145084866890086305859001894026088293591488568845816535528168731869105777436481647582267538881405010472788616304602650205620421440316846702833503774982092169571087391188275098026438079139427314654444892914427726288141687090172019518747365289145264014083747778832278440668585514891217473648584421730965858369461435943251057667770827046966945035407306027122424955401399063412529281227332391727239206927220036411701206648876277293342446664845832811449853034645480043274906013774681104911660245051498816929001682509292817001297448985211384792199480995531813480379987737705137579732232588373963020024569644572929277564134909100754371110973605336383720710368101837786445058894213069224027100255515915290171468486122917047045999663751884898436392418096519318318422130
9376503558284991921996231704683078250291247049721029796091898855556860241405276770333865832932493133855366358374147335376602046573243486237745074835314265008873235980168789643059620501834375902176574493610551213114169645783545470179736266940537289726302503759168160096879116901013208365413854671873179264796540066937498056887417317237659402277725715444975570677970971769880297368191843917523227654119522842311962285660680045969794974342968439410488229682890792963520467100739488966147921854564084178445229964410156613289087521594125615383124747973642822718677529182451177891123659324496446966612284844392127645916775999504312173045256733588752142907488513664558447942091087019464117447749152855550782450613660887773517673023725078643997884000084811553997770991340506716920333467091522922422696498995127835707311296340303003718016054704855639688990654029258773792347946290820792849761175829914775572566644872621701445612355102844963990481011784712121122354005852019117309991335506997333736479666404652
6942217447604249652317962468119771072666557834925214006949699768049696135254231978029122951598468015037984700729947927358973216016280495101798022601880977368417017208199617601801643022022772388513063247779585094758619962594352774321668174992786602472262509250211376924593837677954926340024806757249816063161143856277668424407655590337302164203584016252901711143866231514932612895357495735235785529858460068744676203629179141216724347305330683541207364007331737358054230622060468113031970726109426519358207603308558710844919550271420310662295067693708231052457202771426485205594773696244251102381252680683573894846797306252111095117694644011917887209662258963867745876281291633323593717067630624737648111899138863468428549992063809949710576131083010806557683906464333339089406389039902979689324258776621910902562501096318377915892086995788369744701806204282127697393664628103444339277110775523518624024198394762886364256517453086839203522352692983338225950130771355955591959888024398113536278367321185
8446557525645153949102792603268498394837287624479064020511855940068966981913670800436653058034142791495145037785125176984278583216671667586868196555924089321416557524010566829727881243457065781527503167012629741889777821880246986569754333399672142702697329209912488925568334522943807092795363211511123594538736167116727833033501805638188863053015263010091943013277590457915945574165821822576165966854101249217601340872923016347139910854743378296161940459598354002787761950397667195082422241206701952457797103324384534568170181590494487620675446190323752238082230209266377027484384066700723263867804622435831573226594005824075285917981438229447174481432820981393328187793524323045758845089083670065644662479045561153600613218761166712889626967273660447472891323438512267234098802013057894726725647722596717946992981704536892902078334635726747819975316520515471639011869954116976190381428539029277244815562502025131636537907855749853772676550810997683166388861497301453195870770420731109502286235213596
7589562719991802137836599565129621730127510053305200698554696877535873851961639840598847530686003801128990950040774596441946269371479183772371410234694214674794483363487063227844402088845705684908899035667813675046768301237152883935021894700013043577298883981621477950074937836119889857895309812863903033589517601684994390394262269403240829928484995420759845636655468341187130287602392170739192643249779904790266226850152491975648653098986724252521684299058775692570887989572914263225632840278729674332702012783893991008250741403435569730868761936060440741966333096602029288742760386997207781944320939759205429749808235442826048603954052702167691111548568080113886779920943183245265899908625699152191092528145898327847406354906088914840795232342728074617589294133893426190614553800575544057566324755446566718558410988729358053491106754013289867811494076469910388719224053336971282625950861324687205294206157917002511824026856301818037638255950646378827314980943200368543545537748191069550705891862004
8068210782841714124911429034289952666872888088174016782746177568884884926610701222605597304861390314722828958811155925198830424342403522483588769809579409493775881654441526158443860100188148973247340985728957603339015027156758482381672895931064882813678866465928932653973491680861414724902735564619022111809041347421458238017112460172034394525985898068233932300926867423538721058130039578044173055912013494837148542255866919455142984910227260108136746548494206702353826278907299534595865734699987395166071853293006144546171173400453809697126673667382278026781529465795893612471224049671970125496964078369384948877927052622101241934518181463860315278388275963500104314858365775399273766033888958439291220881591014876127762936481568222018386743954980949614142772430354402125229856943100781812772144760628721998414205444181219288927562116117631376198171202478624725868490420481150082182316851835478289134935725614066025393440250707002182205865127422737821669842118109393926097000559535663280519403213440
0932273971201732478959617289679766504199393084579630691372646653124993079514896298280709521009167524799070300267470218766726514978364238412640950764508346027225595102651242100980613802913757848089546821034428475714311887283840394848219902191520994404312090822139476473342266860734723816651394159015192654507239831596287685803981764437990174095631138060319068308001590751406700819044671145958148360404215412272953435666344042725110233346622960141715737848179383198231864681313760761943041373015367953619796824916155982052571721687722844443119973669209008482946198865384459462981735438824234166865580381891399683322641432132550658040987905783461340269275645693754320238085772111074755866741589128651402698354703029894576060040335236796063716282671635189284580930929804092428952348730301001322854941989217930424423252864623502517559753209557247469943656398689066707584582762246695367715178860839207306616911384426826828969753682571464460470680042511167495662358623535646255011280741238786383110079801376
8238985684717198283233455520083825505982486755312991623845681073222826123641512878036388637032022851650529322050376766894439710854306193727900748741306106892655650307245310883635635924397618779325218437195947402516488578166371912716783119200500625749597583433786344120998352959142469368757221721477709516282148139903239638184755653750775497003456366463911820286439420752789611513599089701058160205931689235382825419583668987092656784392083881432955630721537621973704679980960902702825857043258967245180724357283922058070851657675542321889028083370832831596883053202904020563723995752838138540512085867212023011247299182024562111053662815399498919132453049438734075983598580284676563965352044262521034143130095099348782973064364486463581853285049778234425388533702813533679965319177213361966231962968512735170267634105901937276224250391996702316045783413855817612472367116920281307870678211454593782188545468792761400868664276652679867044758579002188128930177050671357140759996027719870280532651899019
9211165585710722887729093185683287381328620048596410786935687001492031259844029296906690692894645832519838321695393055732868737441684870542227460926917650549860813344459559293718162988305856342079421243721014853534996324608391974386807239688507806831038891210719252889940228730413676153472798374269291515506410336241008378150106128489096436309535447307937712099881239311790585685967805184178150586433289947542856710735693738718201100608818863300936045031207808823320749774903294224687286714015699739014005951578541824129657581012004506560096532703328587340881605016724593195095764346835132270666334691408260633835510243323062076784546043465679172762340686353644183564852148298770092549878696459295485545793651356575974652483575381933129090689089581042311272412958902215110214533155445805276280842937817892131427904223177763987250073321890603306657744683588966109487210396059404271005311688298594440924523628144280717836527425398923618718236284800986113939204586757243925066167141682233793252338202623
3112267885403748798921524428892579341692903961238487138180384239981590287371690339126069739317305160890027477528215767405354717599087695621757420044761156055223704698275145940125889174844997559090123066191177718709858727685422468964348468720062818831182817983970528321317649797688189810718903489740270841733818475023435401831689998000531873514031102595379565729572113459534353868577325423438687478307405494527404171660066536301992751564370516839400989435433969360891783837458868392856888867360892690120375969586269570139118605989446446854351641747788660485525200386643940464833580384279176914464270137101723465401315762331711711125688888179939942546606895115998636653820386888402794353959369633064657906004405027054359130328530163100328746053962446023385926895449767435583554562093237422131388642111900782863297205944029483448856778567602668107222241676937232357546449062342301342038039877475518458189944161405558532791265391891629399651752189359869627001100573722341944042430990757470715725680738329
5707405342515844750749415091629202182954625793306861255619914343721537015626088100325111527971814613308088150097678403135992792400722438317925403944919243127204682782788521196716515115277507623337867947279620255426920164488349515100002177379190368673734375856600303147338936852473403095686019931629765937074597736426649749276980110173488904732491522124259260558513451726425081733425190809681303837894741473490478768070235524615102034427429998030370351521678039123794638185407999068266149533443860156379389677910007185493562847643371467624879014180656296368908781650599073571843683381086409788296068496974933309589411261515398435330555865695644866024545948450097391984573955976846676530903736952993105438773529394668129469972780806413397227770746595605325174826358393356323724870118272921158169142616164791126252401333848438566230128110109212737467258851943581920892291529330794455469340574073371994525876720510441453844223485684118650774645917750873090639979233553419635196274812883146052342642942849
5539306451952489171107060429772337937259578582777143567708961974346321043929888915812344778135918602107983423067962807297196182437135775182399176943812216016383747512432751837314073522838317011400417287494979947329361838561550211550706769301918450551621554565530744599779982073015126381751515401688825936148176170400061250572458047752967324126226917515537116244225889316823214344696254009305286730936131705225463409397456197513190256014826608458764716992836478021370367321177823915230265516655501759870303408596971754258356831010736719706800905336322373867088038056732917522799834888148843910194812683064659023402172930937023976037973582677421464967049866374282983829891638356612082093667456831830617114592105638724539295411094272367914753334354825025995898068500367258171430166095708221396709229870351296400010929963938322002895484314466352340910668624011633141135113052729229127044167238825435148053157235701325813086444907482512495730407639083808596615842689948630486793445994276949111375755650154
2435107573575680479802432813297335763731181962235482426167043517102217157694367673372078451730969031048118690365344803949968104803169380909928642818484275907031934918116179156261694374072788694012730629572148101760561382052536178776649765182604322712305146154462303120607240869604525386860391042500636198329795646095187715074705557782206471582112718472114800800709912836091596835091392196461169124473383539850636398264579973051620146777462455002779164178557015386128157012311514615860766611005724310471511254270836622310760500758788989407881413752722595350279575643259977743231494642460109392942228846799434964076608412756720609681011656866590979297503584727717609554923400161975871288121317439068479353532592507458054488901412572937603179173580995588267594389604464261885797501204807228338712404849420551165144248405820409417559806623256638675983201087223985523982952652925193066632230255700085602940418480638739187006316269755954013955668137605180892989904929400158117870816566164385507572121746719
4607122780136112510682425582895495482381152263591259459647113864468907320816249496680204175978435091943214621373383989029006215555640161215611625719897340056032571754824606984624696398305694806033938594134669456769538515864213746553104178372033146313008638322337823385190662565848871878583387008223648242146940816095090882388560406768913438740158844835227289954549566420290194625995892910120480558505834021688838495081701494842985989307101638878757898062754368979923439056676472664124438995536394298101328118724332290019676463385649040173012688149144613167424825093369777733443008639765303979611781638354628880393436688548997163184290945474144196994331118540807293479183780953444607667247756579429459652241156808335577356789383311961549409226416846150763485497341660481920408479635751884105855583458058203764907913243841556228863243968131007975995111652894150923505418591081229469072871052750160155120915210242028029145176011771154886673551786592999940013556692821924729561083306330480655316792726584
7351910645642059384986217336037149521885288208654351913802079702628756392933292831170240845570169471573697053445802439625897687725277737150776998471609902322271931639825662882549200311442617335669302367803222706114704772453567512442865108410816147583114375598965575663272877210761247630005431346828053254885842487359342442628240220887637359937003609992576328830907739726655771223572928933803052388506075297234132335866545121437188351639172647537451547182416755747329405382272280563652632109171213379920265222117735060890609845402226962221810257918206521028015662238603952667206942293240684726718867756866359852611410069395328851787749959705137298900693288677947117525339013464755972433804743895824388842057571452194782957511130064869722190734362872346857484100572769686232360963259480240135126575107793023447229724565563013279268705016512200694864351858624451894813934554741063884418529606031022192795282853458483659679588907206317813860766933072122392141728409546121606351113067207499432811855025548
8580699496586771013905716030504481197559216424529556219555307461714634261157278182242568060411870002149408422295742974936161809095509644282755522297109282937502688804677516516997898349738473551993009645116023852745608456162977502839471219826407256590230698801713444494806897222827692939079963405335913962063797450777150913789947752135242617943665989246725374500718542782774979783143751427977952982115397996195365638289719235365647451342481975055996154149659190761549987572285428354462819018178033273369985711061458136306915533202428059257556865498411363681294588832315867213962396494241034292639373464272197596431789786762717745274895230475482952632013808003710691206416172809063072188791808800954479595692802777310323168349622362977985258840822329612704999228140455699848068595921280898012157941639941341665842695628687328095248550059705605348248168865225853586270911621030863277896805335900289282072913800597826861365985496001044772665622578725935338541328865658924133132698494176262901203409853395
1120860827525127288524559474502673273949370695820117815283622954042194702920221619957416245641042543307198624183037589827078715256699677925315235407220658169159743389890124775405538718020695769887387183794538619618134983274212396923837033201967841256294575865574062884442934919721231028571488028393037258147147639729157418394641779352743090728504113250049791334292565801299855722638544712678688493644849826551776654553636279897216417463924647707077370666220370273980212389836432374536616119898501702130924310338529897249297224766577907346966985279226203463541859314062252171808643091639248454950327644121212782178341511184938538278379474064006501440246571018888105028707687856848231625854157456828670406143940887517894885633055794393874843748335558301794263621516085051672179450689502028434176611014002427275014472287647113563253850611707942584693397432362121476609175972303721620662211638689172467677675700126784013967082105478127594242462335269411790593249396723818332924692445362493904722062324017
4242229459344493771684426261914673745433917513492662479465225809806079240466560124651185111412768968654065430077082251011540363469566704186945714046939914561971818708959568572269037729468252567114786370612499954252459313623240823867905965029515299692502574678059103690061443792824882330042930105631502336017960380884592758387987370443751724763681876406008044604565709213728424671211750046121444016190880382289908843709149198058053924000377332149401990004310454315045680112658704839199944757608552213536224485386754916939703989050236892183011421251521002263184289535856562560062205492240949812841198543740363825410491143668198707057956064466160466054771513190746588733732193612882409987145142178824310980507694840232272501504463162086934572070359492521160961325384990395041915050572418789440611998954330913440609884460476953687941357748199733990451736832562419608094662398990397702886008781257609130828331350513303140175662213247739795770454531718913043663083424521042538493618158465435018180481332307
2514038765546887809989528571054944967512335371207075885363126587601020784265004758225109912921214043541665761355250441290588245714739527418403495087311082383274300949957649372219715091209673078145782455152410059120767749564649996638209067259414093295692832960888495467975493803443156834863895574806358350793550275636367378690010438602246681679029156859347783380305258795982857931781173888756788110390371544233385925478031788605355020197641423184041000734239748849703422233094143251506125653695962531872313497976870577065517745832127742713105208571378289427560849269487912852213661708636308670854782865279136658959798772015466284061066456772378042206432831817056101644043815551895384241491333410317054685490492569598974892594307999083000986814721203212102475552935718397658838884216264916416492034430573316423775790826205014982954161475475141069885630138498187147045546882832575470985192083028332216792592229824563387156938891526711082502905251710514856581596137716990635346097202210075041480593670662
1342510247190428214464326367969175872415959813843829570789487904845304120239272556924879092630008383999634045621982314217141664768575950357951380915613627480498647034781085070100709895159453816054107611601570221421003024142878847554435624388867329312743520314966850947810707953690022825574208312792139213762519410929397021147600125152452185198639476943431091791635410122819562946702227963724842016940339660524434142975467923023750138149540929210548002294981043511210535843070822862223375235792126973785951689702753943615693351628618776488925341073298916228365013119410084268729183868528457395871705674227675076754890160721253824634030135559724156243442285271301150025584487185355278929460008283972730096505151535620183992423422542975180588862714778327949287580906822815250425017247114423688572090746316828541508435612355563620631831673764960683089442792446604394978316712171912213599362001425325144037336483489158465939225482002940761861871646805934912429706594244485576249250186409394002554293277311
2954859047044831546074286126559224569833079363131390522076731126478688456235819406378008118221794002717035997546380780269320593993598282777877406824497513382942517959680313926799366439387937652903095023537282776357065204747945603742912590665511739111527764305654712470864875591099946851851075254892476082919132247672498105255817551729350544883975166193452241066683042295052593800497621987451629960648550499559738525259949738078995118054010054623104717384191514160284298145468647667348821546363171689798374095442531858856027164374630934787849272537284996766834134342969685439654086632139205965994681237899473481344730398459062952893313507695513676322586161943243670511469727389759397024025187145459312842050283849182624930581990310088988697284151326996432574263182952291869495756105363598041910107717596462037341032100660595892971085812706715927532010214580798002318790943708241093223685055951333056561595550204805732309801200969092740679195564677856058812250606324290027701384186370164697477244339610
6496859979535224692232768709154116426554242234347615871833455195324625665379904768039790931538688307805444019829506644871942679712341885108191845048013789831357171018388153784851510928324656733149527481700757982419519164582347937378063587092299299591045371793462768422986018154472308943921678455069128189844176714429332725970959791250324940152228106436216290915146377375517114202422469940044384411267806098514985777027824894264428906174570521421410732484787069143626681980306216666930235474586729712649056955540911948535820820080352594457615598904084575022403958756050401222547006883056558361997678619080385204230201518528565229710257376973317734509261523333783841615174504116578920089331604362567335422865156120778547179946998022731971461358019711186003499125211665068818613940399534413832375345072906897896452797478387779768446064631645727900213467141317976311456556013001369031620327634566408012658701823214898388073409367678131723099322295686702063352769506722503133503880470126013556319050493852
2996479936515690513076859002610836746333076374604712141083053389940736538446275572521587943353708685842972289703866144896662923852547738610122594836461293413235044512366604980220810837405371039568083456119992851030591955174630552498118308449811656453423854478662966355700589252138934527529276362002534178891302413397640023382056488535163455013402054161312635381245347194721156240059910354667744978986818862253111910030953412338698074918658020152517986331522648876798160340225397213081636733213072684774865140920121220244206045394127068372342765974484350314075129736679588809979340370885824090918256474195990072740917978707833294992047454280153098451410803743638065685367266408823505758726121605011994333634650843740363554708053659359368700655978306490062581708396839230065258628132603762148286701178658505457333894318001355726475619985306397195019725387622232323550746310936732890782519719288491575566073662030225720800799191244698175218353574761850429324243249735252242101408810634992816367602308162
0439238530858199901679122974663428858268518029235849862249825320594721492090895162191850255533454972903551833253531388017822821124943214871770912273436141228709874089308062092866644132747388592205859779485803325291077698300715283351195567222245442891783720577118557127115200239801892171406688478388949224794410742058702436978061301282841003176945230939181993465553478224366231869904413139828333504175416180382186188910268357296403229618181218136776336011702361262211227896935522215306898164227941541133332971873797290655898272692308910360029194312542462058976534712806483235554780457459465037394643362811919044137126217730883210264974015713701681797057441505059491107101506462730327261904864060297963182398377796173871650578623893089765116020357023893686469992516537528038100329068000103539320351853071406499265639302795362602954428301964245777259188771272985058128648353842097366670283249466491327529750286788124921793094261651868082005131530228200253722105300961678773574524902460681879448550170324
6629819211073445835415410315694043190111751442551401176294064799134681933499345273196972955795245897584783868456876170906593881211392594799556415478526632530929193082947440274137210670484906559798577575896869958340794582841701884804889466648532442570723325564312113074491395420139149231319212212350502261334315459524191289356148287557868207464898248749586385959857922464297935618519687913611623241778855361712624977151283841448931699873756873721337041892884982342071498806120261568664467891543098333199687180354745492136747571373081390547645192764289439586862131016180945508519337361886312584239458290810218847739723909061743731402674266808887319283185124310346227550039251434684553380594220887317713167935379953934957750061000136833539981915390566477040878849262561722433902912839267649972028502682715835860353483113658807399881528165002895299273388334704465183400083639122200060447891930946414771542365975802728758823961221299672881195777906401135586270949931104403505375292232332356150935628893517
8879937339719554665811688843030988714951011384591989411007016683305935266817520379870491203633420336176894643934602045389161047478002731388954960573214135999917321231776686942081194632623922443863819067398401185443122906397776480780164889278241580400033173759513118745296193002249319596448031970548192082862569225233148695489323824668281690023168669703305730145801390247149026710883643402153533959591164249410755650870249269209551937551160457412089873337943446800685670240010466446689249617856475951602454878671046668051751471079648950628762236331137812568796980971574623900090129431896816555547387218074768103252492447985872311013201972453668351206678155605890044171713555580212934946782752618952072788410789581943008400716211208762741554212448576705169924421975936074030613569726236148477274802487130642881804328297264934381503400678341406780541201963484623935488351324974516413884585337274677031399408528712182023441134125295032613790739116271146517258902507488650007829442080308965156227995405009
0946564597889464723906285096926059672341160621567403873313939443138560668849842092779510954512249604453944117754114773495356074946088134640602006095661407958362855973826481977642299905525989566222830786203643179242483173716533268069573810004833364553690469395041138595740057578037853696128938751426482781917163084525672657549511744085850191781067654121521635286011330513761181282942571683439042789881595359162731514546711974144585925664708526737536846614527961545147783868926812637059275020454557597007395633762686598714420760387074021152983346365406648352024521438675362061080773696100805387869871589088640599015090267746529151150195686662910435087297239238923616175944070064018968972357090929045416037422223002408384580069583992176721146723222462414000976095365912350258900945502323110214892611769918646600926653382606553563871110838713320570945028802282811422816763578247911350361679404393369419736227671504069345296186659160899377066581395804578408139465725092168410907314813787669869547420902133
8196976419593383367736669662577250257416686064762470515790073940717702720503377560556815995111586879672346375817836736325408426792409578451488725750377415293951681355530560333920855950218490705896029634349460128134154310502308694830234664192586766814157197466232714521836485850848999205348321989091302242754977467074224774385426709063203090559917764303856601678286209950311409694709307149219032204626660854863258673368411481751453821163540471649584434719499306206004952640357143407231900483960483539058249789349192239516750840574941485437554274767204713515724707290505427547673422800125370468948318652274359202715010680305720013443254193530448724566601005998733829163871422708334200377056876877783399030333170535176374292500135630575813114864273622672417466115670861670587387569216756302988586498609576402731421672167051889812639592962361178282244962751349184242307652761403951915425369506921178612080276225636434965108192727018541238463306453243981310613721868688383106511738502717020791885421094424
1892697991102128026640758944179827949704028636939072563096272612316084686476302551480948152365606855588640519001078385749284344496275872137480339095404963635613984726415130330796877452093026380732440403403040334569931554661078215302847688806972096208214691312661384443401656114670477867423739195198755965000189067740895872350804867038544641302165553423961979696107364734288718676856621651297169077367127719110125395383094076247542486170603121029320263933031763642586493497414948672065906317948600777702786438441468058224660695838920529476235371594995766264986276913669866899176019001525409628905856754292452726143253587621379217839494826026840370611817983416899086325318271417914220133418734170869764197089860712327316252561012541450805130160974664298634770589223914564627420676070441619671889007706496819983799389805295211658660927668410392123495378783197178602375305177762300131083158228996168875992344567906568660414477044168033049176064268332461025630274324103434154572813589124729423142809589048
1034146526133061546075288888137569394289577348139780518423247196222730688494643366958261258729139570247123598444352632329293049479057088495631981418084482031937867011915775670439597631431956048469108560486536131017257488865278833804147734206974573776951135144075315985016877374742913886885141221187066073725814052937301769733343832809478454365624969157415231740132832784059881599021537392915610252223502018138409861830669636869065342444010441980051993555507483422120854061568834732758050522059780188697009080517579580925131769225888263091656144381049193725742604859414886622707051424735376028834222379542922052404808612635924826586117409569373858888716634269387559955146778145345495437398406431169186580201254005305075605012798067472588039134413583557762818230804341487927875422444070323152968238081721845881402551817156189276577117246288234012817141262203883929830868129582709547792376586128297838333273949182134488799294841802281702751595384714305781331869386803444473492628414854361891367003899131
0879399896725027152802064761361523950092822591297976347395699987690757004489370761488785186054058088283291556650041914490049692013378914438193297377111921061755296479891480629610992610923279897597624616023694244010782790027082871755715653056032072280481333899927826205926585910807985033613415882444577860156863882018574344934012911090674212576940001281532316023759650039779150393605631304999393022170829544703661253934366511875354113435305299194178150130048026302314646793222981682839297680954644910984609719942198823562514717103937870055962749321633611501768213620726050830547020010083529964616198047253093122848302041531890780971473614241767839668482132337496221514661516638783214392563508528408278577179972156357463510920938635898006157463656630821603977247331869219494360777467060292371403437905589338836113353861726481009506892582296539813456472598295141146524714914782644266076998479359533723256975437922368795583174696919836248549748592925052175337431801683119635231542678861772209173801601126
0929299392809000120121447216062237435471657591046556473584056780883271928721522571171280929650959708986531685752302467900234087717538144492168103288182424311609625893009251809996234169494161001846813167385321349736933590592006687196320786867917770715418540029251643234162104625276854489561095752674868450853713957399949481486149633512695608571602833331649617284516260799485446804405076567854434377824069630515011578155310671912251817291447282970497472895328156756782896924169610763729881189745325467492641854281937580872238893215714756970430570499368079294389545040645331555847058015274787119664709635304894828327564373345623539248824243792700265093111491061773581073905168695702319028416876291888174049396184728402229713218712302169912708509037672578265872735822297171659090273518271720860070581033532153607844596562986378525617804024862637970156828364529456623835700466685933477335502979488309800990139133906277681681807464973902455271744952064113756085659716035856294959405593999265131096436668591
5294988193364101448361549187073571209811999780328103761736556595013589264533807703594280277538134692207161353148610038144088738349592598758653832493735825133961539954465298502031588425905456786707594538533055737740239414798688112054489243710283339914502593971608455299091283334437260654020744017082925057399839818727821731013586109806150855920790311695444704190485876749515670399680745241253910613370809656870300019227418470830040170762932892169410289918032136276749059138924945161854786021983217743158655458130804692616720976242731917937893327958286430757503646866300371674298935356954302122364670941867020729315681917988647342749983558146270325039727604104994231269873582244457131638824823127907011462814492930953150363726620089240259014183651802132724100212132647119743299797508281836183441154651732541226693745544900646440452088815699493111157363415755442920789566865029618626339320024862359728752124687467553929366254783543976467486680236570357866770545625437757753522203639825895028405614874537
3073914466388445098005852423497948108780263296908064456028171827753550892416287039169016332251900697552841730667943817016237625864364423787069744899982606896426315988650869130301319065326903287586881786980779067602380765163353531851676927604042539990861076216323281289433037028440701605828927622245934903996513394561232427535560966778049043296966947294712893527530606386215294968084745432381104319175847848771865775988385946926466605774187576327252433474331377816929889852464936916616095316643591316916616084117087912126169245364443970642763118040797796053304289870590295598527195595606448488593360424102232209293905530251845504530661320610138304657849767530753232797823448946921603129066578393180017303056350781047171353828952140606348760583549697386844829640897009460330673882865976879947225479057767692830625997054215785448764417793218038684628225212102268560308765703512778346432431827974185346358990501024437789750508329847226846548915119183133213158037265159398943881729342166642488005070006877
2794530025408720403522725224009073323689360275223442936291682384769748460130717453653346840496899878128586796493856281815252764404855015840245209013205266181613686893625320540528397594183470446432559309863675583737806862962070659082885001549740183302827575677292256439267198880140861589963793970701011160110070705671561744588337218116056939923866085038837410124788927944406430326221578278045981773947650272764894606715114791546917264077248062616051024597453302883318386845703381879505001782424228974187817077516752615529902285323302995266149040322440057444991047675715209876502301390133924367596230299233618489699612667978453513933479633052362505389136667125131472699675762387611631340091104053094171800787262032214094203740737641297969567709437976872643268793761778998322763150703121159025475705103264537739277831584397689194904705894549023365936260394284515106910856020123050044766075087610282746167490836011327501112285155087997867331311591579932573623588632084525798867811698770920345846298712432
6816703167242697278656629316806842533368577067617904950461357485169517568675715904092936622694409808369093315875845453641468976738537162743308507190605048680182325322134615764121336652503340027720045587469814653865564304776434349180315728189962020386191584564713596542913066845350951050273371232478574607709645925729964419547441804202044573651472776601162244100398705953056255634594762540155620732027990988469594738681230996221069284739741767120171446633887384636295437519655388617140389682981123821268320322245210578895130886055850519667815734154301436791279994800947027257685914551641497787284437626956159553930045645237023710513011710596875480030832821085164698492606362886593561226850772098163254945371434175543261739749584039604322657677984105314971916450527077548701558239989169682300495022139499652907351851653210951350613706866689021227426356766058328302813878229032233980409011580195609715335004088445810028909997497970144641057278990543380345511761890029176651281217368214509310180249653590
5877272858362735999541851045059342082598327415799807937461117333772520148647187159162229103016438096470269215201003681763857927545396942396314050313513112603902063866462416008287724736147951369339536682077158357394459413103931316363093313357793146154269007216817539238540274858298557887318744861064998269552826117358529486063309101180342165910789221095444407564191391342116331845261829042897649281122231053831312230706326486673036265862051330601008914615551536218487095138978871718507685871280062723595026634518010896259298582622567146159467009280967814499823876940868255041703421049024775736185976455524291830122842005585104274239373395343450649936708806895221960340464968347860415174708843847754770513034911149804524695810867029467882956034868158583217259227645925511204219104131691817245338214776788452546401763296975672987578228336131563547481456216989442692438703987113322941620086825705061951154397769439887673627766989813252435581730017547982570606839406832852248872792088177715248804057033589
7663643830673236975143863023291440144176413137406436780793659066156368807609949962987093894348548704819083722006360633943910147607632465671004795968702904733616576152576803901914802203779336794116272604878801150111874140238360045892460728357601851262544579796322897737179980339245981253441454251041874287389660327861098521867912007308448082748061433698418841562707464497692705347859780442427787433584728438449698413623445142141512250405224175207827049648819313364403027452917456206616626557758674270656278831153218562152284364208263170533342393782671324848513108598289152223286876634339404128760486175465838010226496646267028042663404969759336093352822454784039309475220290303783489232125545163759273863449108441024803915455149402853354817672052563702909629198063808425378709955787051945551605177654322761557709075622808863648138397670337351020431651522893297709367012949674664839379544688268735500881393388752734285786817514463235039945304341567955985839371117671160990040651843180661738616768109550
4597017642640943395580755871277612437770739133295796378978881843239256556866868361264584840557132643249675214984662715036437218187058366703494300443921313845994162941453266699761392558234467424353266136145673211157786117911182057861912446596975291742379854276795105154143690746067764092542557982418495674711763558606445428960685954871154318629135366835242132086978090089412330718608361721792809673220282919868537684487138537153513675241834674378343975636811395047857601383484482044401492851467247370383837469076107039618516098779194129365697187879821080000292065066005107850061429476092286421826660488331491356419627217072144842818098849543527898827504107687244203547233103511147589490321466235416620593170107433163545898165166338822233692725502786102644783598929153793729177634094694456448579706260857318513228511122461186418233972977016297687455176111077557259062905088799976975010390587173114472313845256457139431905149688430223202074833485141087221512812078462913027772014272234133095132138539552
8272646934469065786283816290834524780843801501644552415155241888137176120162103804779054015099283367679552150673576888117922810293829586292056567076748844401413879073568811513845654485954613446019639115702057139794811706402036348711050408247744921012685226350802124140416222025608179961470663403604939643562287411053270725082020822262717361961587705784241818653430619182514019834969526408795406896115152172788845810316027517986724895561444714746426899884408107559333995225966244611368285786340874498254018926467931826970953125047388876082462999956899034820127825094229763187307195895047533756403094648733539111329610358938325723818767159042355354013289752340202054668252128943800106984207838343447006962517143147005145205148864370563847636541420371395517077692973196974269685319173045641814289153819755015456383971693829840996718062432377409554955655655634660384745244160888460083131977980288659053997270890157950441883553200289910500082857940804546167735994329541875037170303058780617606385814412142
6308870499024531885682283647678991821679823057677561717109809520448161123327858038089698383235387133241688329263956542708984799667287075298980901941891565167416936454852067632337365488175119235146856029574899325292032388759291458340081813956238182639533251225910145069649260987121826078406068388327149746303996623482077869147656628389612937312406672098188985653579848169430432640030022316620654194447552171045293299386396956233710207420683826724982547243162924233380148689844494165304796487295471933519238528102181383021009996985044482672419162774896616578132400742867460406953054735856800198776622130495140945044118939927873167525939213662497124138098443800093221329976402159206647322740847471600077296955390104617830106818202304616167115968444116355955966224893922099805919787544801176739394064180997878000265677940933293912344746433482270324462865494273021504507094656511732374261296583004540897779205450711976845472840922935344055831163845469415227130170317597855860556373552965657964477376496058
6647411352399712486455502198023582301347739112133017238489620276346547601194728073016436243059659955103097916217986602203684461379649286476058012684307491174496644136660385680371834558861870439277131928763373189569516175770245027272499086293443387215261686954201557929009391073605070112839805661180793224799123908742958274454535861619432199982669250039019393469159203404956452238037568981010119358321014834108885000504412571892474946699491790956404798543393279302212788050929848712348206806783070228879842639630626374664010767785546486771447832364089554723933802176910841210446031700451464051316975145763548642007798830875608460483098315011581033648196612937263077783482664550979918611391733241838871113704792368065006082219464442969701324215857779295263131647062481457194480890635501222987229259687988687888616163629249895742315133065492715729972218395200507969426154074190975836705454739585581260034032192432580416259569089874979744796138346826989862832626071285628414716952129362354600651230594363
8752380728816663378346428989150952454517764983962102540260233893621150357646071690636570519805820377333135875700450466756872435780387759568434568850899245970597815659966871365315373068020282328748486728309194458804765358287344217538304705843593296603209900619381785101804296756038198077378343848604160524245224629611514112540388910932434249464037502682245721777829150585844518740422109646251741919131323044865516112731425313192117718661837024845843220143921917454591821884828992461448459810010758689341447953877867735387025931881692324308660331942722344363960412836039281618260975490250300410994305168984180887484985397303164220416300443533579027205272812776077782475319939841061154754786602587293378894986263493812913418469536052977307971337880663966379572393245410105858070915283925659402296890027794230610652400007504173534368948688392053905330750122628457048631951759252797848751816123746545262630727409437076476250848497661671566953015613098351446306012739009435501230767856313989711029886320183
6056211253912248905827399516092163521116035139589030846410149727292379715330051160439536453238362612202906548741143161604996176500275393427715015234308491360382637361661084963423116122886466799265197832860575267532511317512749170056355464623096895735358716313304838750034989343127823748708824656779186714626765452063507227216936995243078362643362618882875144611065565371525706442564262595841119797786389115195757887520715407611613648991353514175547681565206763602236787917682621613354317417098458843566925210315677537093588492143331669854576121076296860916695500752270051089638275720061730799507186977683813280262144122304571045693204822857083473044925260121746050691311876982070150840103352688872012714068627054115353228649726161048250736068896045331064602340464452970254832053758207661415515770494494665280503419281409056202838543690226648851632830026220324142872342752628129688976727032321358159607955095058374894238725137408207001483070185983816695211617230114236517443131254646089715335877094888
3300180004795866790443620053253888011398748660418072348333109808738526174607378924128846014617933098050086843280873224366416244122424518446398004044419482447783044389678447745100301738294477381176890447913397875275408146741215141580590857679296029075464018335602626071083553589226134460621280218537516674444087131036446838447168266894294620065747100794844576777825057851980245483780463125569579839999768600666660312177414984018971324309121041871708625355670149532960031824710873506569768835873540376833562425484540937202957888161069350904126105351281359565536538795117398267483229334607984935753609011339858776161211829531949344289318894947162846554371982973978723374034939814333385336288989907684455992227110166326681109201049754954707796447429739132388334984251515448055538011280000916159552623875071084471031430529080944521887250079294250183624372043497048311600356362614452864706370814785202979519622951149400469019273986558078787112936201357936774878149272918157479957883020246775651130189371233
1285377306326025210174480581838230516677752641181250933940218765396810102715005171917408955214495688634289618502373526832830286272015187124451159879717685685133607995875182307104052064306558104023797931711571519767190021195092811334990073848980332713354476169937827705774133195990250605114908421991367116005382154386291363991834806627119251607861854176487718245089728747743828829150448208466677036654463982375994564134971222531360073857366012340193659958387213741459854446867512879439995794620215897332286674534259308499483425206481157043153735044782599443597453638835847517801521701247675292529360301175626196684974873021079861440874209779676079381226550375842055081002293599837107681402528945709439134823403028772930742794630948932775590255639915658909595888885541380131350042839394410706433972825320157396603683687137120693533550952956408198867426456696851405687724146539328916846266182263623580534021872069335645273069383090756459587528053226903615438875157528201747368705606851275189927340678140
5665186585543214098188971589693159367449705449754984717120430569187433801076080365759195425397691104270852453970822018155160977642933939181875824388207166312870573413213895256502952594793809287951010986505632973099384522206168513224648195385157267327697222511725419950275573308987476298426687474619468875434796466488241101850838490753263209882231066937452217997103573328703648023423234080914805647541886747359522055589082096891365391972581573614380422579439140801446426589582217282377288830099484427421327112440304204425814217829169954400548747534914120489270144729254791332791346400567487043975371718352801800983042780175474180004564383631711948989737456864028350298898761244660523427598840273838131549474099206616340949295217207588817343610638905090792236605362644659517483953403698421966808177407141631606981462143417574298565176709800743384625593924331702253769455308920286401068409966408204243789880707729689288644232303887202599156808735720187986079039423160907894706826940666800358095806903612
1786166681802786700357299370122252099493001350243901788814293370047629423101830945264558575813661314185357194920143258025110572488356026850152982552749329368357853693349231691856832891963170746433038899331426291879809161701785334841528397920376552114495011192185227099776891554333271310448324328206935915967841647732473350335173628699723595814949254745849425986315275516814570197804983140511113487648486995601778784951714859783093686510949523488675082824528939411714805454044765219321389086874737523814236606159624416087028932287765626353620562489914469149746594292815310216408560697533960810971326670445762170987156204520598696812621963513779149813399283706554709382981314664591716904403495346511174060289407391218263114929427239214578498426005408391806903405564714092820564613744937727852843427432358995006268987121472010447966675110901527594688917961366050754829222180191109059819809764636040477358492060031366866401246765892467252499019853703473979540398442600282022292982764357657212378885578606
9878182103640462033009866646922167196262354170847699343040788278729182465871067635433074206066975613842068129902002381801232494675776644871652026871282914731442306846105428643071323445291164306043625616823805802791055083517396451523822121023227423830779750904078779310363169956024208149899337393291170802584256162244009282012854792769602703650093407137886664052954280831363159082641414327251105814724456968313191857523340182866076425209805513098228545017051055437862003595412898968481269600045606322399147335382130428792365770325707118728204113049319915391787250571359601656904966153860168443758919537024398610704734985417114323403040927753708478168816528783750036346704776496963552538593992959312038597963332005592611860258741959102779546888963628849540112716480843839774081533506799347606375741962569575243684083085698960383351439824793848057319646175770223198319272241148520255372372988958883518977663813993948252381841984101262530261471029000165505323850901600823246632617409819384776621665284901
4209120907990485450477151224499395475132206887869235595059763944812748212724940592910259820338150154318956434684295488663086413206242951271359220324365103356763441501570314171078278221754190849049949194457543933197990832867918821984866186692783147271423158421622810061634137509782907244171011960928356872731253595452760072416302253785251997212657039662683481940134075824192151654831890824743770691649693363893702591439295812105429472537304272923582020370011999612765691262330127954172581276182558393036955146442591630413374135748357582792986014844202764133102391183486772523621832817234947736307073925631680332860088765385700302293628162580831608367221989538067712913859450598186609479853686731002600573744838546674669558031158291737372549291360841207617766084231984474915667798814852685872871643344515136270807858908693248070175930359117871755267964464435291470039708712772906754466390481130121566475956692632299810814787882573524610643330978056352901602545581754316851601369322195095208010485141876
6498277042456266581516627134827204639254287080419607921880120123713528900730922696464769464100606441924755218033558041381561821389705590533485692271318851265756458876712722621210735738975266637614028861144806422017365666731305434450064471637608207574727680630229013534221257823435043323381502810623872839956650815925897387571235087464396953392757538235411985914308064146071828100508812122537012300060703472687954024818518639275379202317580724268251438599618003744660587240390088432448837505460404359620778674620309962241810618160744849816199807532368179638258088401107919032300545917825566137922990864270707783547637803457476296169054436456201868033874592950985054897518449617573883532146205503680517139295768133862608265564126664434541551715682977682441635535640018372698956063353097514682307016410904284268778319399882719068280336019603469247215963802102970646451172143658070113329820894419680600174790145593369398631281486345155550018843237663253349340054398686252388090805686228103558430392928217
1416822074415561824872702939479683624506582509332384860325365747221189000111624358073747831615268106790354767951269997206978460134977879523684782131404683206427649913875651230677940068539167791580303351674229463123081308747506217704071960952864944814928856530005559761769024586521504285112733679273286117404699948734688986518470777043810012274756016349728684149884037013764061934644584336967325846503898377170079626278873256432568369341636815419273434197178155317892672818783664900695489024524349235462314587998632870235529802115935894159457261174809391939934910060944228950413739707742144944216911034198594655485098284788572063766029602345920350288570163047853257465279330087373937690598874214873581643064792408270399554284949699153787981389477638890692985711467907712142841544425981300307086053321181843084781991760324504070933259282020623486092789763284113831481722956635002433907109578015272471471045464922109795775303569520430039825421905792528282307123996148929012927367915408568264462726663282
9253384118860188117148218545433789204316637736959240649203514187810098283789437449984770386148776300414765701463739434836467332692323081003853950275876714563508139094622354736208961892691608422580951363452007003016407538186872418196772439406740968564800211427440363002077586320121972888473965227898992217222611320681960316259426826535031053251658590810863729523945898833548588085210074089778856027569692171638768785944812702264525029384043758399510549939494397969952169678034510039071038276814109878329096965889953474007875327727401780811765539582425373381047022995782735713542681725453924970991388760016792794168195087832002480092828044879939077749350652922044298010526736908568245212786409470100396998380457127456189276589160262849362640182740826064624796250565603667685323710276990768051854414538297114798043487511046889781560411347804644042224826210235691040932354181593260467285992440333719931917575485184791322993951652856846446676357776046263622864254632699103744229451942843560978573838311342
4905098763607064853706917262041089004025595471752619967326628500122532555600010852574109513057771025831735498414912407891285060324043530607214990212129579194708518473531768473076161497743682352955688972172345650664437342712960846783451035231289134618658559973647985005950436377769469851517470848491026121504255995818277798960961645860784939605866107843348830093299125384691448461349519318590915615399336592204415711041783026135356427962733461809154623257519707983364375565115401876549845850152264341917057949136989227934770559234865484122905712144173095272961974168577382208366248875560896541174459669759279824003005673062802274204353537149436197952089397337922420884627208451038749326218397268295012640105794872447769286261905687111254385450561684439907718731605991210309907772794997440434115611937493743062697535871487965318072864699349678588263239943196274712050666871935252323131505917034047837328052490931564530748955136196181965766212449409394923694722585329711698505013259007030621898726870118
4429768939470108095242693077029401565688953197428123922046807436710172291975142173947191972382744432404180094154111907655453636957262851102293849276504026552547269657701307762432084039289252461892656337500946554380920611736173803470844635695190349029918439851568855130941665886741113737842531337892470440537729709738245416349984030596154569783893948394828589221446644113008221797104746892011919274602249556750680753547460436009974942713081497739604739512225547844744135595408281488336339673105417542796448160307611994074091049939349392305294163404700443101818039702878319171310676973689188695491062657460305500831005185900684281902655544492439681413914316762978318418408916936709918095224830481568802898664234701593535623476948205136351400160263266234809489793584978898365272119455806274948002026783836398961749940654445243147208333070451684813012780323162197274861283466989309713415122930320863913075410401258920964461913780717016079918038977100639958696389872164162406998654945951924938604430274056
3097765188296990724967417509530858345113595532650120713913240633960154044335605677953821655075071639504583269711228726877064050975243546823390095766974708537054867660268293292048883155961054245531333123236541521844389165515811948782367263369495399631090854819149096913150705922591474152340998911188108829490497041221283947646800205412704315581045114113346544387903122302988101866943504090655569862892377436917201863454529219404940781503770553335623133984300894098899407331703030686308358282876564042752390365116994084457910180435366707873301266583517562686315551610225534187813178727960840276324384136459960851802389291836705821118165684145482344427459293575026840940824407288833141858705477351053699465394331209200022165015029423702364252111875585037520022645582142836218559485621002965659377841960027525106331885250636734319543380866942105869407533538045443460890356891997459301491910619458186170098024924507002928347759751687756897643469691287829155015008750114799624610243417634978397279227902319
4130407064509018943705917514771327257605456962753900522420868801025537925903892145303807622812333541645012650115025113210583860612335947280609826307566606759955113853020366252797195093088817836088785412538345360327153707556243671712480449440160450141957194445996990311245164313472310697135791137018306929016812493157420288402317154668195713615030682599149358557214466883816650440082043192722768617871154904632228460631147087090315444134784842675543170160406200940171724161050414967595241009049909893086388036144429008904769972936959124068855867754827953719028421860306170098452557853901472963326598567588441909521028517551271378295082686591315512050462721904752046166973855517708647930325910101294077453107896636210949189481709971501940370633545445142087663231376758442353802573938489309781635753292134884827271552644682039063258050214584094225737195603366847780577232114199867974460741573488523056529063216614626882126240844648250880647738156017670080408662697650083171635974559006503475068408791506
0203396477591363615340707517460482200651211563208919082027084780801667169039096431523139153100291547153851139129215089992864177109016806532935545102065042706524334613032219000159330615304416431973380391563798233522508438574241427223083756369605395093226453485866536125573160308985257562934796433348098900442809324721215508105770747151202502676272944413536204063194671282346469567571464467831416823984571660040872876159532859639045954518969145725467384222069490064828376003260826414184391173437354984728212304904758834846812554245684674548363102049429665394524488355739212944676980851492383886210957517768950855190702474259122439305623769799697550970883727813831626936253069348477008445127074928921140977764727359168956948812355963495641542702399318172714029013544186886735103481939885961000016395882063791919139810245484052559118370953413439540130917676050524194976947140266594071156454999914363408517457528457795479184564794104751646481937958708798785429287570594032911357679223445569287372275792264
0209710713789797700305503865100650038977378330934792713444978303763465164306317051174871780401943961732958167077976986045181185449561876377103062132554169391312619341638484633491377104128935145592980346543513201276900352758511511201310052709415087988796941416292308497810027402891737127362523568251981624062449670581308669497779885708545397541020658869510727972069291270023861559828525132375940423887449528202456165107280690230618691681248966516473792781458120382731377624281178677994874417569188152752003855674379597452333406154221038139348544722280542865245500304186812225305075084520405826659360178232018390812717058401292729058537165664015723636397742310828490186335490491377132081178267063993053027251957103323557966895485636735757411694623778980918131619004491028754172070922774549769843657365226912441396123201980055134775871164584740000835200574704832057375432184947655438539002378535722268254980828845373165663120069545384138744509033881337682780450958251449073827071064619833145468975031891
1225663085958778221037478435779222373393385903087684809977177732008109262649356149142879714036539502648248369756525347846027403833105232471228875769847874600283331112877576289957913390676172554577109322892328860350397618033202817854114518991884629762124259782398894774191239987777739109157505090099083598479348567848371776572078295399832402019367549144283698465434972596734736430270879175885236260759210137574990515052251846064449952189100526016099618097098952359423719111611262677213184949714234000940994671942355635549037638159638299463355689967675517681481020970866662753508511735758796165221529695792436444255197787683661665485231221475198893759675864950687141664141758652801605655507562885179333249150335663801140138532360875721079006958577917858736405785901089527893427847716359738987835952329756373246353663140436243035248971267918480291815997094145574136009784229049796057028675709674550013691645168171354218891329508483701236086498258603902934418928734832717153158309704407219264766081665180
1746606973383592017582306388976632454747292468343998516691935392337619827771059456743351214968230797547111393778198225624938574936489819207705083562879723436065016070439195562663180355366494373935895849910279703617138670695661369639606512888948208723135244488240612621436969626784490435364763383722490250894361876524093234459768481836347088851599277863963493109588848049998157793309261699327110383654211957823627448694178257583408665437615113788841106069880642930826178636449833575812985554529615749106426644418613125924711990142242646594896718049339118605972273570716069449268796306775793504658359945905254953026056662488829950065742020015377673743007077396442872567685985556235755873054730635023010846452448216763272121356719770207582014608212156465327723997711568944813996642388205389369705288543956332951349741771888074731867780043970601681814447245707820583048544887115446796663407651837591851794803283751679022511813283020045617422245600029520609322377419723418929188792948607579895665269218556
3740054054307272822261885305179164764482465640024026086621119701176951279609582669671592567166070435014890233152471558051185300174647959973111762463472351224585414448507906441563646803595461040572095295300005719369004330704063592112127757774824347829752311112199256131069412287381736181198154750792666949381586968754067101853524890975103535043319143762564672605363938148814328179813354123479764888272203751568145050705002593384519418845707178902988440796549577297810900545572836807855380608471760178255082568218286807845043240759311674564171171033469814317476620553370740002785126442572326314149130589344233712018431077211405421227501240308178167148841425271025635957058037825775457304767404281345795113779070898896406783918174469980631449532230894688240282437178493707167062979884775998724048580358747129917758515592117244768491647030991074787390303605198498742346597301084772155281585363094279042497891319039778597343421559905061035174426357367689196817244771486390257490187082743008098103563726832
1716108046051897209668135337391325036815930669051647776706956005170924449207634131110280821603248894918893074349485928972039069637098426953226984606362772637172754037523253255056102608779403759217171364319524090273486940284261497964865389464262522411626414243034077129731964232247372820644449571183704727185380497866641083607615623368504271098209667218504366802387602854151238551531203721074298402185103757836223556097568911048567885024961925432448179535960629497829564452773399445272712421913612990736225260634672678312725536129296919864348247051563026899641091497935463671545034044436707094774685484203806830487261057403978902274536151928629311888680990265027526676273023867121468062093276858157851985444484975524435675863231102618846523484142066492872823724974016620220416938696310961657550835413241859431991497457103162584221446419612629264080949375383346099526996255818940714486579781007775022155148613264043839961736888492642944588400679789854061970342058011050199216067514896470869276611296323
3859773012419258515780273347810164380703240718054295045090572796244133569720899556775260551020488061379341099123791625362551024451312873657569118480302033096527642920644135655081342757556085792201739762406335850273052806182690541131682982840346739592849246307040059687119423406353726868303541400064530908354026161916809102980284177268307639277350956937755068399978906182837585696064510043365422964296895757959297460192854007100294814925412776952386615372354302478059335859923626676481513913495830754346899560652961890361955047605511543859930045280946922360148520369812315781054234769448423800313781953831924477750420864879264723240755483936174033232208240332663275677869986989079538199156529810070525921113458535384260661585848208472057885320516116064093189111760563543621393087058027574058235850876185460331472520129125181725382048754895921985601056594183488389761164833986728741902447335588873694085632230342023111727922940489788413748367572327728606560272299194779761255158076869584231932986399648
5847501425935350834978452390320637055666538254065933971078536123459680609296483568145485250726890049070960581020639836987352628562886551596155032099551912708872047623837411454775252797995955360625351177730296144992296623311259014087691354665228060523614517939577171802741507637428463425041228213030456347613744487762554625689055447447220015991600801803494241853985134883506106355203845076955277103392712768900923490584123128409785888158743148789543120740326293541501401996338375334711445728523578031409224775465969433439747283316010658655891308642813117305015054260758352367441135596769245633449672262449231534376700893520196737628131486478989493591704233874061130049630829269995521157067324864186653856182374806336602575156293646417115860488877546844306933481448296734090725685979503184300362710801071733418620265792547285237266932599966849622803415672465352278264751231279549368612489154232768262656873132242591839290686625806654894555256675516501398803151761354742339081682133329973044083697131581
8978929528544757426514898370466123668363819021511101078144177191317879808142223994264975957853356399087188904779399371250176653360008465360801522569262736253195673430103228651246202281147630421115869088197817420168577429704263683472153764876201389597129606586006632626606195079194029300834668155488832052119182544625896399154738200661569091219847193032610893836629084535033949162221227462098822409878818789847578439980143494433188941530270130336789873240664132026031713390406745100706334225134817351286517383581928605345596046438031407789941220485038720474209819761717786462338462819403141291876397049792042653262416795896269816843474192049632991782038573433108845807168291608490906132222981982548682723237150050694535579397365294757167923573390584167724407220245872247691933875494381047945408429504832375197939819972151127693678165385871363544579303711665321076606770229152941688433864938410996530260260251246119719723239889354521170518867220173688943311841070251114825359661581599259267501647544039
6558464850107768037873290756803738136290329660577475940057458832416430298793030299448421751608143218952257656311981327967525003883942900422179470767227367890585987405120028159008169554027926801717859123798435872749936261753157093628901315295789525178847273389670713485901712563898111101771627224103550415624875959649462944438230870210780478206427291414216794676651150804919707430375008583439967338853889452166892061803484560218062433549949197965206109362857073583576903826085154358686475966456546827754978372700918551815312471847101154869735199656419668048970943323320672174227470259370050296878642056799923090246224100376576140682162602924163643860151239871850552517138288434117251165642965310565236222796208573012895234918335269752396603709879223590392121803215379304032202875573992812458463164796243527930453547376665282033729077442980069620307031814922306619173594608316738394864002653503049255410571792565057361183536589436256385499933923876939448120990342717718864656741603702430566670010986852
4287602843868521338791398628817315180632258355473969331030664155518708949254676146922005419648247434780879431813011179838151047802316348187358625546468909001277150673723712626834239153343427739263115528968524390303881621398748908257163516324261726986395651493369872065436849873128971171092572239505353914582205170635632719911710742290015118936594561906750723394103973556384486836386230771818592161584735405637069862955349849275988192648771948490529594547024625791743706961190375520483371607649723341503408501655084914299534254179405451129617174694157856862718841780672661621431887455726568995543070451782965247630425173497092470076641199618063501015181444965037501524804773559789274841154695688450393679639121958781575595075737182066035213810539633494782304372152275638193607754083591516110650662612164400271787351364119101201814121242721592438442641537939494169205985467631996372970739936191543621215964595840783615026252009676722062007730684732853584047127994775866429700176873760421085273833657586
5928042840921735820282346183984194577314698294671436672296742941712941498321012817934488498188780614495727292681761113450483706967934187270074878810317587966579288723344410914345569879681849138477526200061009662842762353641025819785012237328121456392760774025019638960785380919041501875600630395119786993580654047493181871019837448887795140004967269670462358925181999595672070552577050490952800508427494053086425585119843821940126762724712931935913738961967099969414863742562952451272697979411811068469851312385751144989594377955230447357116284051429328720342603897072724972833206475581046407077616794850149186198914034958940854350930105593055800673050611577348039803332679795250224202187614410320630933853059107811037388817946559406281799126120102552736962338671438831045921518399975937747370891818204716941994466955713642561003332019599291266088903773996542251386844759794699943053997868730870068905722623750718019538293746117147088357797941477980985203578393914871847534337114965908629000174848829
0384900204084475553123498621566546562875380710162169610350367404244988519111137413214857480912742491101181458861562192713958801184606917528850354345156722576600143707254168386501109940045903526620388178890394580595473109041953219342139198733097748918843113748356712190393739466705768326150407391686129575304532606804567072294901428659548904285816064803175376014046256862184695601817306009120386117894658205127013966464633430052814363171507312041483269900876369820762847866689997014620221451873054971090759969290355867750916713496268716110663868315702111295926022206639411308827426715399981548950430414445265362556317889115120139246293544971722507303568643131475093664629299677348956957461479301922857977320369699633002548440554359274487486851123196302569288290428091743777832391457050876707183135501065587674038086520296721898587141227275122425054831735589317340777257895299062868204853976168943895724050657138537689710664376128489214130031080903379638054895036846060471883872337277919314869390187282
5897534932564220980088961689932343532907898024269127229131163538637933744520751207120949033542903458610515102235366808676099530033576277107977675175724035460413816247554483736461819035952466992541093585679821880541178473459322705563149429521232040484339087600180942848676685526677095732627350325761618213433403566393015779475388599816379532484699187925179766501759166372189983258848167990755094899151634222319480987389090770058621961937086441038304690119725038803228545319594259132599624752251262041732345635168878640262432853010801469736644013721571394561934263995669284725675144240897080636856148751191499242557711805676945683764233970182239564618664841042418870809857492105566667566690507071472326252820140262395712149001528170392970477086494562833050313175649522434758708236623254287125405373920243344542196258253426991816643876769964244346406606557398995523524929253368861460333653463572689200767029311336963144177876868304020864915908129999334669911466892255578302381002674204437464328586522135
8356040633784087429061355348857133271193152248620023021131581365355937283985201483413032941908052445295123675279569831787721833638603355504443691765657901955501856478127676716450357308758538408779514500420233078551360164066769067371438714455705944686808270331937571005734049496913615191584143372869028664785233704827371875665906923576937814256465033990307353167764807035527092535824106264323544199613852279587904530219188541378858273081342179337437257667246438424647439550298438751632429392657813316960381854793275896105141042906735946550268989110599990766090290882506233525092514979626991679596868658480783231775411196683383541098485093295980572569771591109800815833986605423400556851003415904048445643993670691639323293789442740372899100889027839520467250490417630990297658641161000929059099086418386409975032755532853460266349854459934361177540772951391994690205490040853486174740296088532039032691246147275965125776692961623573543458431579652723428649267916246702440611144314811067471109598157193
8249159153853402176619568177196673789630121615618115701667802003079692664198477993967064577588354514375963157610633978279515536673785521248097731133219178029890972373223498063208113773772185477583702079569004400478255212009235245177987440473063649523353481651657910014335669803031729339590901761754682471348698038490370901918854826049590207450396197479718324400110770201816734715348343357574192260144597989895661621899015315756374380073055412193461542741894973308159672104201285330749445776042702444490104790693992447253656107261630072172697581927057248101889966232574437589557507169818248978631486607611519468760152399634753600014177192246530656540721151642661782828660049648870623157881196070160230783620291651817527826026180895717958217099426082292488870344438251147817401363538482856512461847550525301972027873205869475623865170464788293650047192910185748168333203985376557237303709167845193764041289289215995098509441204283328387561459870737170029564383353576900593351650063874054672134521789693
7601654827929813315164825585185529799456366312835789646869572288666880775034415549943902398270962964002239692859013999886290511709290242186292274389532583483779716067173052871934857062570592186163712333117160767116425663290347808414238694212320527117703405455520816055719512526618657232454366446734809756256092586957926005884145725846672099400070784510932882023271800631679726516200308096345377714125997373015713212146733999188830110830536861856127919210862344606997197322196825353771666727973838488577546981317347280017724133627880827975224127990178012352532510713755384626906088573621774002822030983518883650862074216842828184758528812185679461179941035294047349239065423258238764956256979186430100501789958198407011244548434490280729900530679113053985552959744752266347037504783125540332801552963133041516164843636200443614677848753124198499977969873476802565446521258107819894113545723548565644884205183280237493836312164434592828288690350805713114606691377934192526991729570228441469905356461316
9082964442039687131944341732224661474330032645468104733180414453966874943887003888779029513520044423078060348480122896565018806643224808904316603160900968155896328488016182590379803514344747588865771811309379757090013989549758363663695961746323496756009237169328698675853409313331318895215892615794412509000356104873935073651449925406738881012834995915167876690499040473591508177642179078574594786746474429848075631648346080846575426043834804686608919062755923999533792878607254288355048061085640829875503925098825407584304093627910097520304935213086739975540493777494925636287141989742978874704931229702520639249885194779057420782623811276615911572884457792655692847833254416542034401277021701306094035211262878985589817989821016159282391827071462512478656782333913807941843522976158718850473919546347274280994415762634742375244501329062818739343699287738165292789230582213080424918338476587221323753760586893314215975204263343458374324984896560921301962867696250944667727599310347407943939018085695
6298732869541400406495798839588023728483965502975992578331267636634189212608912486406343486695561282030787574663373054050787506888912722350159540361083095330542759973620682982214198131838679036869803019701701574918879840409519292779770600362075859639706859365589595173408177472587710525444325392196390024213121656618412172969331705468586042681420112137168514549053489717926060444020282293135741366997481378849599224210658747642792014571189508188767214666971487240401279916499289849575796798658261496416335951044045498536327226956799556055094062642879774526705889501289339353603521544584094607424269615498238555106081069344438748920389385340951839493486646112997231153533038023983297876343561536884752847663307102376097433754556558907161032337835677538181593582876194353263741290371069081197423276486285011150973902099351829646929443816557137104393480045761002209228966178442709510937449549461633760701680301172916442012878153091125599240763450116967611896851818988237848461408779375112913620538374657
6408528236976647541833248923526643753593736610900960226173047200777264436615438939944393179989741554869717216270191526613663078915509567758963116255357976160575922556171266560453200340686517627676214516877956148876725517500941639025582532540565601397884166126980716214670899463764791576862466773085521040123511899151975048814363971262612329272079148166692559455731346350391126374072404572058889417709166648982379245930880051363799966677213084130150848291488043919824750228424180790064473304998524192735807622433711017564412422857528863177208464136944322056038276418879810342351330243514185446114774139477908467924377807284324066904854319310621286816684728132143962164913211118204796988798894427293526487324294063640853665759805473525950093421580236927299924483150523017399439145761893988076729041408335247272112992646719794475135934835243080869304269629806743423552119346208309408426096466646448290529848305240860717843103579004000950359876962084523476355613867038115119024025990701929421057490500605
2817036503123974153638955713747153697963742781993586243029555981124011297998151406364769468245161277794546350876664443082596782097802488469763423763531997663548736342594010458960794735838979274414752287850897851038326947491780907762443288529826735367485887803092804887602715003858418053911898981124600603523885797244737568962582361575478489425226676325682659329521637909120806152571151477177721183238139130934972818380802462161599865440317804815163008901966551727427928517859390255882200188021564554046068052130696289502437313050965765968289050489510753186784471768008460491056331800623898510003452609418796228155199537669436122522053272805197996138539218189317368056826186827942356842869316489442333242012293359441704409945628183199197272359582860861214686262621641636561775696740914654877176582628006580487053977242915417780140378153041587545712829446428434734431147569695893726286220555008216608280166386412825812347867016164800399581089822541162156186202083435935133201032491634168114267556012074
5486589821377994631543919502555534588700166309339091288393938809696800120352201995413598438590424678959734590015933559917482720306621861527470420934846064726726372631500582088716752986820643540110334019984181354533112541299846257288501773580702448169049219896219633100422456472790317884445964015716253807484352260933486688650541720005269646588287770600720677271792127201017829530580331086295088572709964445763066022729602155419685469453818137341548346588727480794335121771982316725890091007767367269043771193581992735317076435460173463614072144667398352915272743189251614740994224009557397580066050564572283280834082912285711407602772868709709673197395771031427518344248451920980090222286661833569604316157849552494442565731162532994683168202564291503818561171978643184464578461050830921791001306033338826497938503207474389776913666700174455398712172747913220601611744570822925833714169767142131989226434025283636835936564759277351201723564422460270780651906902258455961813016382717552321518108151773
9932283054812068466995340734653391849257646126390206536685258311331043654412698458361441615947154687749688716510202767379031679653550524422545030369670089287005463825472116503853974378186470656973532408996639984363959123321657901576872581243363330072855409434829600216614975067485400470201493576424704957519418902967909295112173761787550456156882095273655272466980294842462934420865738928373331019246025440490816604429393702583110505860979876162693934345644414615311403381043419263803836454112138884093950077496565822945977446040064312910058044449222667224179118388043812803051441949922059288675399777290220766844289420396305447856207746397826147430620911516749004175581291497806967508351873260031488101963573230932105808625660619299703280061521147912817897223694551794231592730399195296544680490524275973785484709773320125837054233364980470299903398543443904468201471966622684111797735819436451396760293102872818006609343735451534959367479610752847493160069402618937909539390031107956493979399374334
9222142531689523273709243766603610108048442568866612534301425589845568792373208817315064295815853880992121125422559712924755995661373136449799189571823952494446438154694573208362553271098494726697437618722742115258652946949381215055791783944269049890919839969395559922830538478255272776614525283675795730859185633051546105080101860329002443728798066688156746271431554764801281990365838146253839856366203736679471386173093906816718418597103514047518717845036447186520219291053767883345587778417368760991932776400621415166314770584519010920640984858470013240003426382713547196874018460329303792742403848412087636043737500445646349706026466692613662742985486179056307362776229985171470825874055647845999896032044339951435146720674491482895036015637450589069760862450509132377055702162133212565285564379218212531578502525290992557262675360121983394201865233483717825945224910289740092949752774047741128777597176940462795271748087450098262272994194067802657168547920388451028580179611275759536598829823992
9201503629911429772571521669533549915361913417571821050721488361672047059652150938124891595565992532376020326149906139796509042916899857633030383803330345020536951453948965980011420571533646946599182687529535505243824769939567990397263836733234542126215924154032164811861010275232487080385085552023366255719786076108564272009292602876735271949332520373428155999056871618578757827068881711936137829555645284902361615074647733142103116052592989488109293432549764028892110716194375477011459410072381330963855391636429624163661136431467372991916906614148532979564644042233289403467524302957908928961676970185309963460147165520938327413721091681914433571816770062714575013279137927449033357412170336607586580263747327681290177127377004677283023977550566231955145666639792044150782431466348649793488556456662036047374581768284892764374349208219637095902267279916321927720038856630098007001137759851272615847222802956565986505650077095736264873972538404514930233434053898662095169015927759066859285123371087
3523614417072359152345174270487976582284995326752493305434391549966157549129309197780778653420731711313833790328710374758582860133452480424061816269458182576658363470195886956828972569997345596622068031100373051664451549726241384022219151906346224212942198454624783353534277392030003120301293105623811273757143706592570349032396017744140682332120458509019845829883577935422967934430910373184342110211840427025829573738126042995095605459888228653613098420643556162679624721473024858265613526611684695617758594478181403924482686786507571891716156465635895901255569168484977566021667352523317520749184555324211684773936670913226083811639610546599264691383505133787612886583623445205652792289690019228648941844270047349322116516766841335612781326342827903896382341186741348515307772034276274201797181814969937963631382966726871732164348456757505350185960418936293320721161097628882801118798302527014563225032024249272979718051766022668516321345818402466929184741058074609291447004944954987813754984253892
8115756866044786796584287900954442910023923120247496792858764159920643398372562891176829438918399954814241106851863586957703177794434097060506094103126092817218768622977080060819093946118674473403617568984930701807332444020459412236799323331139020285367553206748917216002959994398443971202090989195190635385908850194534271941984117447250094529701214846566501581706965802054459535907750343491450913234735867082758323977462013630830255215052360013525138931177815104704984164408207835539484766691137572867187389243421536709211928115522977000792207131447400754757731077283052771025084945163781264139266772241311597028025730743890802980193207422804638186260169951276640269399659622474585739090857703437060993005865443995616960558606961660866118354922113132876394729335481438140487285524727353557117125057399009677379405109967442320171071161134884724191219159202855246862910192041486840708323119953623189481199515111320265770010295936240636073126523810068534398416991000626784911593973643009324992098058718
2172349920482287034938617687963152446707578293115020061354626738711593853392704650664813808582907512762876989944350004722870275273083194431187091498179509248852833075351951515359588749812672832161587021832771485033038645206541148468334748751076421896238979570420491401786992672369514693923976645780923114112221101461720191028690286621284379011390897744599808778686401478057968958649111439367057362611550004408797347778987606884136056677929969708637831429149536312594479567771354236436166827690209746028940696294799987455615821519739517114186483770671644979358106965285404396143104525198614010667122694448761199457257955403305873229761630622047273048882942286532296120742118944795215934213281233948164055332395805601594798016916451180323619573021250033937055605701061070499647516948130704990612313047002033904603976131657302098257973500371161988159511017131847177477415968576404733452195446916857247076967213040988405491585865136655538590692719493310424044477540665831754811329697657041651073544286557
0907265436272490014863092547138522333170076141272877850719332536623560735180942384209677713371805571456901709297260360763524661068229500418933406187499851459905201099742223154670061055182616570919282380646487068250501869940503996319009068714561381458090127191248429005742418350630050563586137834022230788655486109266325492035949000837892161808564793800768655153816391835364222456630453436425281433671975084642013279256052045652215268393643922764995019879165047591322682670392047039840704455730387062625948645110395563515684861606485656015209384950002738511754851454845447377971011264700344633278195966536201703660221564964848400199653538719410003387786538789985448444189559471797314437670368426471648066170215277411050546080103008175643171339173210985045133640812906457968384886447755309852721921347212742071017779542718773366377885055467065454147521667916887614049774947281525772080823108438535595757145357315997280722866771298648466519521607050117360581791520557909068768046149483032583721268545227
8454525809946003152796094652191526957736917205040232743464510268506301786758459235637481789430301893798737011005661835192797809868150716661839902120594774059601290246709173183533764324617710181821553353908746632627440435673334219774398609815970269434915330175376668746693418463455672296306500316313775602583733726784955516348872496953505597116672889705390012654229136589764646865116648417760480354597171115946927364058123983437308133640123506888069496812968785605472558017352760229757463976649927101363605209541693743458671700689772124820335597930510570832786125824882729733601306795972806347054665064337157348694733464740465153575829991870528378953519960428908279974947130870817932859519791914432466044453221408078558475521862370103622752850936938129263351164039907734800735354361379620383370337763495020079730740357319124681913501001890382121723421286327080726986898233708726210249567285919298697250478753008476093766903547887537865952750878700182954846872724055351602217862936762232454173593254699
8627827926713702699118847820291150918870935156869988123707964240287221587499075484837541142295448852060322594715700722930231924772469244763598516249357816484389261050317554158473946865158259513394682406160679822373107789408132876663490713981709225464734673868238496441694896083153865189860692761908269716737109026845349131581039695765000299486592195612916804383242179322570847658723508762838826999673936746312847589103204633257788641853704797633243407344945368498238377568680927666461280467788452879184830875310854379901850008685543314549504597061981700898302979049303289256482957085149901921085789668568793701734499171963068235806885736532250747978878367272647077478010337972729856677448203918875270660384208970356247362204950237141170703244592999471102969533858514962238484956600378755114195252135299030314394804981336390670990059180645320264683078223800892583909524842943329027787119339421106276444963351886484069908282300848571472435622513060939958220831968770657806976203032772930029483954589519
6394293182826712447004720044040100806089900541526435473902380244924769697063311787455888560337415982862655319135754649968635608471966017956762975718210500364205857657183217203843737220481421125688710075773585934114614605508589752548592023159537130998183573202828430728280798619941212333813179164607287187433597846303734334725308119189263532711530935268093248577594622756866177698535333410013817019031380576874541377719116507144922352691296405747917734140496299338147803198829679608187516178210249634068704642607629926805828039417536132503579361328276667865010123503886119678825072787653438105347209467506120048136826245056231817905544297082727218688009629085579442589683109371374434489999116410378140166148426882893762281823219154869195684109894623639773031188382477767230718420826100956512753083607228786679637043867973956647574602697242817392910169657821288203181221713942612328745235104603327082623797858936529188475198319614881886173762753022688534649880463901693089742713133115625027458307265714
7994004094479201171438284183173605335748459377120767671493926735098871895379618693353030228638918111838944024131268960534824057085540966426797745407688253362035097448828134746351638268169292133785320904937625354732688915481824222859119150575800620541558533630412889077058256996731731978113502654150183118565341946031126735212441441289428476186134255047347126855721488573575420121487266989712400165131345123289012705883405259909607321943583429388428290396355006704824210081425450969410952313048150413568914833415931698513369700203673398114297853090062975940223422761295951384742547511928063078349887382594937260158094595837094915013280520734700030314043612322526353323267584044675284257399450590313420830579831044822271096790130850165180161965258705362608593638925326466092343161451525599389867512921071053857379809922308381123505692861956229850422082173789790099390121126304088942430128057712006361804685455263881125714625397446911773634650376298924268427391536378442628267035144215050963926142895438
6601766657004913229969801275758655210927663014690719846344634382657035496388415101387167724053116420008894110404275394456067207192599156929300408917364828445564481792633019384818210406768590134208308511808994562413339310928631910933105036931848480540311507085704536945252851394469412331009400725751199260815456285584183144452286897914918841073631911745302110875688928007340051697891267598164533024381488364374974755730969741367851061142370605341694712397082751275691131758835283039838921833515349644636040012118637734472734712431386097325089590036715550815598586732973343008337503091759781575834175728698584976670381663570923925755364366441666930178992734387490619631240401169646253708198872673681005147264325913146807085444074537000672932758247823638662574561993174057314584087441160287734146926067656250457591690580358710863596300366871710785225858251258160312184499344438727539128186307717550023582808072275600609471255327562682921336049831247020901945870938101663055221692161646018164512828769805
6127193242049871580836043760795968608285420992268764488402015549862544061893621318329119056857898190297389249394430266860192531707103945002658190225103495628031085463587003780507656272993869496499528022261590336025859223187634000752815355524009002267271091238667950706409976029953797391924783073170148569334627381397393282726646934628742086052049832533541329113841399577467981558851010194695627423672146992624480363861482282028342202982307675521891616851860737680981565316411242907052815274829598215508982089339891407186085225677586053377242679466550342820432418266754243594195980180295436525495251351953592811575612634514779925379790267341991803746152188788457507085567878380388568091311257728975696070620723918177636118141467448811189461037224280033860474781329028461242966591328704759489451580429837963197804517011789013490992644824716415202756045125412741575038107574347367720417316791598625891146214415602960667941873065443290591095808235464219322023610627809833503979687944875994279158167884172
2591031816741741397828609713656351292418866848516335187646133102637959993687207849808497675031596751312457151088253824171339943912393795446450418775496357754267416100018064667059686699426922617946423270911339124083441988040734333711348372427030072577819382166632647899685682066547725258798653022203641602377167330565398918585907741955655881627620851410673912519235039040193026830933297017382409092123980945577307705210962001576252283991430331496750825291724391180977065159725286482612362429451606807066401978128853890647958238794838743869589601998423592447149959874078707654724327487194636996148477151061971183618147107957175121828406779658625521367554100080761535616747083936108599190338385389654176932992374526442738688741041177163862468128142449961760900129674546688454843939031203194770923166707448561365850017771816567244991548134180627358202757556739553563541465046064919307696338900454575407384817637070518603013512094030014434676129571907690093262887326841760149177963838890343030457264802293
4317901462604746432498107148537001671745069103655852841594410994079699295040182821470055035764982589046944818504216629306450588328161360257277366815609701802478694263745329483201612062913965571433799093776434826609167807394110188737329656585192147614326669487310056964660446454592392366740363965520148996244101392716633492488880811424531537721002212107548663656894922540993559713360360110281395333103683600023380509530584490562467433073894824401157215650270222049719692949818117218206486062952089496379385673872069303503952969652907496817700428954694540789396783691569824593656702895406784337098396518045058241322823984012125176114914536094357746933639629582040566795642997045979437877097882186830767955005761746583783721409060166086150281105965706721516457157924654930125558341031556836399183404741105883022274553126871301176517943454461273438317985161543618566878281826882773255385631686805178911934641353189899775697573658127275531254259177541306048281797637428864005890178568204507222113716975367
3539805474138906480765387606494926512891652147600719058225607147024890912804521360034910209157816169489696770824201133214599273438737521869853252601280286972865692116236627340748439610329107907792684282174791509163343215278799357636200546718057901271303464964884434834174844028026438724238247895609931110563009195547831866435505485818238961760219645147610000712391557625808343441416269257017279997964669947308789228184824820564815035122727789745751203768551341223203081531109664085350569638285477487255921982472249092112282884322488028215112634358542318557952522686363074644697745822609248394575238166130010766780825488536113893960546314796916971775687934234389979184777261466868997584068209877503575780901530304417791027035991848425211045813738310499101116709992796081280084381478582185865631581410205662729341658537558818360649922985327381211310194321049918202849258667669773535655961196036303478925656915463884295385663740283464889672368635743356434351857996162908513958345586161078504709282305815
1840472315966152980421591147971575532044743448499309899986417968620964622316580441130528399153071778180696478903985723633826534733787356837280946738921399362379127973626723120628682256234452528234646874445882451629912172711784528251138530605914519640863399227377880005317701558699224061120989598753880826129536570509252494984164045073236583159952154153305876436331533116523039984945271861048104394061249723210712255144568074399286100669256993503245624141443793954201596653250980833324341207446009595976924554566424153867870294811171057200217554582147058015245728956092904584531264738356999471234821379577217947403897928427577478017029139869495495818925369188020195745845175882134697618110960051271367588636271097932363486726984208406223215148871263111326797750258958216819064472774145291645561798844699111519505708145756298915387814291465524231828041942090760651175559156033438425481673047315689428263405227527566349785783021580656972603507043169781089535349451392512929666114399587179953233964762734
2249661039614681794715980032121355067922342674825283176186662475757618475981326772463226136537965805647775866253269175822651976356916955987706954841869457872836652897289366990270391537951487544295777614898040625742153079513120057164325528297437600650306325354489833313538576303278351295987905249095381647466834184230246223242742757057587170830324366904448276319515213182499537060622857927603088419112769649176817317445243318296692615463875390903133354463291531343561123742768962159781736078384689926304439677926491337154065100607095242456105730241557108856383460439916409664965926340582465461148422399308753650677164945119520298621915701810444251019924030998966689786932620271877785668087606333442093138532140920618309458322207972906279258939896056401891804190804313532233396030849686517018896010511673243558886758807196574526333816338413078113101285846022939497665352995442447981582298820340051075784251114565073721710514406154940491423930338991582672556666459061468165272049956496927280995042405524
6730343454780109844572157187795690478867642962813655654560322197421133640532102709052069980689651074680774447704110965672085046016968452041837916115162651239116664422663501076898346871227694020811976046969247921720129992865015012587510680077909523137452739677786313030785698071750125552073480628548018529177621543426512664094945218812949447643883871197058205928077339719152771261139188837125895872730167367549532800270997899455853243224348403739839380117084518216873176891892535855886988019985532387378174867214752183856002657680104147226089528576906038295751330032842636183840727436615274824378894785368259849924090117521463416986511967856322727245245899004911655082176279365809681235138959538956004764622563617171576033164490945823335998378761151689025721419425004564746673761460018514687672172756935659080966771270846519765982366751883096572288106311389442249279910947324468491344365402568744438712319387799249158131904406838646011242973056692304891721364092982925372144148866589477243360936284833
7026282737019819244523614016615016178100478114155796622770188843141857288269734696340761079964540740792178640341553588486778592785204141698214403986477465042855767527638792107300845777046861550059620485639632820542902070034328930639897664417897078091595793851390966519551023692181332158797367938148166849650890277396908579309419776889168113318390404724497463166417488563663915216495474369699795464285250950483864557703450977215226982943729577652483709438558558529031006342854598022531755742512875466004649331008031868667435686400249204825909134539333794859779897997280228580262010402254673049428562342565787619183245577393014414918016142862180621609214842355457364588408981791081982545702823062033626204320555871470257533335136138561281544110581374626140555616996087605574957504101379651793973213396244808492956254114566135543439662541308861640217352268969783602376212366967793100786896445703005521935768840811802521414647247286307694737180848876816952860806964490480790825267473647381538720671454878
6845501527273139201892163742425326694220779479494953500842344835720683216104854993563624921403936421953273305228486062588083637902705648930143592976355133436869299885953755669026415678056063994777268289121635483662491246883710400742205889372165201708642850556256563301423395126888638980076470054155717441505276836056412948206170507701473780149032975170619147438332241103787786625226744834462492028420740742927095071389067304415505001848239279717319643976009060455272542149796484789524290060200854133976420170112774014374517505413345129149847266761004123050513320324417951526947888015378072326543483300793877163631909826855766577076529270711184960564091435367769540615044325696329663174760782505233516434772436859509620099375412616250341551083849103979435460800375553401916144782592114246756831814480623544467225860286488720895039596874901412959774553615185979956406232150671258150303281806744433220401932241007477930329591196961047982257023720628487977988451970228902497423204459110275401040905248841
4235551638525459546817097507679011844346795402963122236813263977824760366769649658835727970870611526546645549358458949155365502934473609019476215720015057993643331223160524041350242606974077656281231815713934633661533707521226420076446714868043834325795520984046015043828548557965205307897933195233912085907246105666802404256432694318624484695667691094135012928863680275470572338963096670259174228185680480980967151980355369639457060203995590150799658368840935609890593174954681552820704241946551715148689375475344653371460322842597846473656090888316387189057496986339843752475513468106982244972585969230895569845544801626953806316985984453379172348591873114984026807695690376494448785593000767488566490234907986840699002552882450303400124769204381953470907500193756141177155346328598652951061254503908472205763309771361687057939575877511122342392485780483921775603589607868005627775623621650795121431927221533867968275653703115322123856965900757631379467018566097727096589952739860060061729546749077
7585480048165951663674545868733402330395384172351553912078459915175695777806358519461015966848957374167053722139312765190905228497450710904794732696180761607449913261811852609643300113105001718130283644473185064044230543901371740415090846296962872761312588134944994243545905131863837838221840389667405032647961416858559561190059329413254393728322048976476875744115511778931495787433789238287653952144690292978177652322299257180425081251388766603664590620312116482294638081956236772928588311464293147708884284947735580278223539251048640187343475267638117070007526294684811041500488228021149449384557410761285303201060972879605273464475344354863199962574910110879209220533694508482338584894712274068907669424093852615137614887808501691372932876944172222646886164083738011979959079825973221449039647717854696074707956250508650061292924839551399299401641452219464336065347639390593025286683158373174864467730521599193970174332114659223070945592055769213079538923520673566282264134775851426605894774462653
3700824128536844694260069484276759995348226872522442736161534512691642144826910518472518607519683935491593808165599492575344326860400811971879585678039670830052255092034129311164601400656544156023030963161093211621463321715848273957088859524435300410766936566380592360767454608341370848055591652556916191062852113909082457607971144764075140705459319746140029713575773440576520058271168920872596489324637273920417919705151668891692719908923048097527892308060960987565118862918620992559229198538308780551124334838456470123192819303746413021763007404518118070323139873690905915941899413297675813493076832078627549517734260551174404100090118644841700612738921283205854813148439901473613679358449942236406496235472781413382298200390076817921757009948781758982345038687270879192298434472139648048879805886293351810740049950210854234544455768998227951060494118477932642279810320392466464333149394600842070963761751590965826490921617122406431789128481151248601611988049683341577794040449848387646755010390532
8268290298412573579484524573660628969133173981429316377248232219963021047366968712589949259258637868457230007936271138381416226621574681266403674448014901401605303603098829477102991894935359503864648760462523580900042548148284343206562155332657671097432487855985022422068138869230477635682426259592029024301834697107764163840682630233400056613061690934182463726016509394842931031758430753280404688035686482145305994736133560795418781714975161336868988874774785328311691938216804778844007974615921863930357523506467553182252885686554869683021540057943615418530958154917175423861714029262736867658480368161180785551842832501582028731152609645435350626908866093853780657494177211124801561023490698012672080274823361558277747778355496240887063819352368945949332446064870010883031241111212837947378987005729155367264841711607282125209983987342131571338839097827231649331239309792257810112668414710084314327460837320292050554510015813280846835064076186584105396187532412494557281919790185388439560531635659
2602753205211180727170708910340014256713168350060644492261921429189921492560818893429593785535880994832896517399784834658144656315285601130113750186753890232511722945020233284576209537162817715368577483652606069940016606362969466530760054250824178744569643886787170402514354134370527798566088479202337379626467723281806472112305037547497551527576607988829235580342598174342167755580175715789978954207794814098973105144796094726830114533498029641736667414228673432138460333922286894554654414124177769148971906391633007628021475301783479601763304561293757598917311438936414287906567513110003495850987531842992206575898734928048018533082713425675591489421077273043367775032669956515804063841879511293446003789344670886978559155640211583736024698741675821190665494036573794061148676176797972547865315308267729773056039709615452779587187148072602588473220669113346565382642125973490640081613719755774449374154901579079274917764885920169794886219681602317563087305702696328598936886189187237367795275773725
4073051252741000617188511074406008287242864890703001704480703115002768159288574571038512479538498580276170404024134420299938624500442243808047636872687291155533720954275895509162525808404448240151309885437444208187513322364359414170732187170313466592506259658325494478628188956715429059796788683451664637183075182013783078779089658436789085302542984885108028623540029818189123482825879093278474337002867490821796845647450016706035918711823414842193730003197669385044261990416290476469919286177216273132946267792327403915430389144745889904390545920803992499810992453193299723019349159311606572966377721253544832744710036113387440818630871190133885781227713291469015721220598689295575365687915775164498628736112479495056101378463444502683713693527381257193845369013529893446829015287143318473765879019930042764822414824490963056700355451603422333191475948165776536306906086910356378764908466377624457040591990473525960602351856964689880168315466426928161516391102212437264819509920561625491498121633775
0022302894047397358717032959426010852069123758878701284573613049682568111497344752491232694006659291629137946242758640054516689491414229745056979202533100414879129583095469895150748126919127926010337377542243094463253488089361524064135721618112106090376512183088831010716234565935993647580063230190377556114116782869077575020936926514917058425653421131663061236642486811885660232631398565864455038381060101485782292177142620999308078618581961776016044495040607726828973128180228723262555175204509224389940585924141482281861366248263151171450327093306598692973704752683601483381498127102838529910403445005080963194038872293936682709510555169108257842969655797352250844003234325179059480895957817611181752490797175628145264687674243088609417453774998040898674811088174113344333919675508408278688781372228141350147299576223066562564253930340710199655092140887103300541074242449987958364120190536594315967904828286205833052294547389831841735022704090217340693511893203955407858137763032383556180113397981
3762398985728898845762539654314328505727660313559776374627459247646193103438611080096836837635858028512030963286322062106359824982117024067180501416725570089601146964996759704129767839421912861204145251645136109644274796373425702860347600786925321665618797976983442421471016493235707792744544670544665711496313330637190791072839798450431277967914194557235416065243669289318400672451771017735080921358318672443525276274243128103547020591074465628137251659090392033529151646818682881217095527564399336500851792834510455999133714310854414552535804702924458104368633048438220930181685706353936612907262683848800943137584469886110891527043320575370943937259580993003651209676118637663138682822797034161322827745654608068631611590571302761882124394972214351855230311998954552434044567574221804232857719239523610759545071199313650212244262780592700799683417435196209623737738610686810878726589125520061337110998163847541486041423333635399820897372998022507112632342687918047807045008227710867212295395173920
0836799033146633334499952631538994878981433738625321100789691327998287971583910701906527545405853180615020097031348392637384967588527536403275096115876567053226138167747838035604569736487122518444901537886856036841778730055469137239079017312531168770476610219857125832639599328844805445851704556585365476801214354484142508146723718054541035443423121759561072263136652073971870058031171543197332579073291740695591369693703256726492010917636587995246008534490341644716983970982672437887663756278481760563928589566772587277572944480026495019943185279803694933347900068360606222368345689607844659022564307477902756164138388925988279864052417905961947441014791994678469580657994553097754467549160643674389450629113397242699967112054956263010939941595401993826151868664496650402024078777110670223785924966812687812624884222250230632233090108476400298739569068815541588115722660829488183281498605650771214201917200069455585588606703939121262187015899664964691529728546415475368339305171348311449067719627899
9561754017714370508758856414418397519955730725722486683901602766644974622039605908051897230069703280760160959491603359463484181866861293151450820242507895517699514263082389213423413063891746695607642091332384223576652567958792611574199463943308743560314416114852481908348240405730026622064821360638549823560418412519920087458413680512152684306493647285977296136126020151391799610244863939416675984533362656833814840918861181485255376813816735223944760608402601369029987832605749360440539254604796565745184132968498769733878397251858314936118899805816926383853145553960804483377652020144466221081203196910529369842850396637455852807642522055470077372951835603941075592346922624229685963217352993256398614903175111039868194052971502133975815303141862722639007429138952473179333144206816772125314406506482757976659518352482731691640067780279239486080288621580259999910416033519068614358743111073256132072427152670368351130003827534509808290261668192506161416089376637468192594782017513821418823737058113
2962199483439884296390149088083383336481997000138945264177824890174092196269188174417277456547176056278201583135800794683559433128416136486929638738427123944029291311343731722100086890376884686099767381938753372008835392664351254957303556987330406465166155797463759109051372311016935112456043136751692196403063428372063692066579845497227672704737150188889526069877336598478270871881155037204581269950601824190541840359467783763670423697035774893588183211486959543710053961813280027451141634640505536547898169954998448701212649597928713498682549818462041041790843472937501625629625188719206733294120831071920568244659773144774463914024762955563512596597650075769717843290188400587210311755806597784735188879733139650406359980952720338161484982083470301380301191797089077641756943444229348772747683849865065177701678875055872623402516520659838178771377496308615767642514445814590819300683793448994003295516486606574714070279952640266348432478532561894908569768865667893445307708363284382951701831662029
4589512185467383502990158811369135545018784127096926134913919240029299722010922924998812412350486291240553071877689424442098403818654756130977630282228697184079021111103184087674932527706005539296444639577419869131136216988469991295998036168928261240934970876981582467848996639991385544502030516458057945628103448417213887607311959536206486988138984097547411239753527800490347826349092935855849869316071252958102808101717374988471315840062990819837249216982276710549843212933103777028078764769210394576901777835848595186232385877980661460182550500338572947308334465590061421540883700586360280255365321221151250763244176707991244119440379568319457738177887773557827963472704418653850995718603212628402029775011681282809711627889676226346123920012326561818393007111840810399139339140139966466413765194400069264166146104422410469423352091312311766354133722957781495364849500178119487335136003450120460526385964784626296868912021428003344252379743180333379699262407340356739009115738097233300648131670030
6422003496777960227849188426567720245061221419170902075340524387559686739416892544558081888339599827981739268068054579495332089382724651257410634801752626365951928544084189917287824762553727726174458379571138659895994311410879340980307091828628560763178034573552229227114184019271532783424301501844602094874244655244194509029091569384394287577974802542286323153344534482214132871764808681008261430821773234450656447649941734971087588920239969710094861688414117616889164835191998380175065588077021144406076253194147186400513256563497038517205412490086831664004890747773822500365895212429192519427784509424895477188259242560857319765984379368051083873041310585166439916050520855710469239000140428447316268384614618126250533054519449880855879251214623069821096290374853749740483911728688467233608823666178803535906346813070217526826332807180512549467015652385600949562769810924959829695779801857935044292124663426640992974562040002150010595877068566138188290017075375066844896087684380992887194274631355
4420788483849356477477077840849239103753729418272314793649690267534026141638792892504189113585152621131677194109141400326730645598939791967318066331232790527017173076429963596429266345412222168100883929863413034177806010537386715419711486525324284871607853944585208978641155901619215492359673978514549530660737902500582338761417120912827719419691365094919681033093399790084618777248476672277109706836725566352538278122651901924308616148525908720636578591496057116092824530084881200039586849516328003449276701936365416408500250998020740657658735896791679819482174156834937927077900179301631075032002694619462778528563330892115146531944280770793880854214358319508617558853089018150284627648490110288009615388322336118572815643469718882402455018463547544753080995844166017671542359229757596494824934501775847333341003536266120829541025336772968942469208443054923706324033665666749876976319431356126718083800008064842663710492356573326186305487192739480359576702294290382816537391953287643708425075863099
9974003110780292701675166146116453336236758617262392614027806271364572809838255870466358502403746335245003367364406198695628462971809407548718172987500980170898241724025756130130779574318965003963313768794337213577121186877489192415372849725571274593809456294448067708212558638550136079294466413968234272370102834310082759074495612614116916675824088702957925951093256248640799881668591494595872808414086082282138571317866593909912858624437365768096136418316246150687757491273295080356808357860574049248522023802264899806527139018823100393332741374863148086491289514523188656440405290042795225606765159666581038684047008363721576823867930656817133994349060096503650323263321319087735556730730485416833700618712887467034130077744002897881567429706162226065840777704266347239164068832571309466181969980412764308942915914041686426170829934237053842840987347347932396928931698119667923559796616081899512328683816864599402417049707653219030291369614033774153751258264709433201568078800320106195059741830670
7882677229611293473113799534813043555171970649466219534557167614681401839571696252924092108910194612020243562877034991267866852628806053915170484196267841998260615300616504707467383910991101915640850346829545813088085030454966543381117939511964516892791846446972220204103373609687315103195480119289999165176250180935773044554308403063206434820457449521598670952915680814802097417397534983318498525757638369147755412033219931647440384608294618174237291450153608708843227079905184347075521902912684830848143893482675202296526141484353330007730078291865337280635735446026916579286042735219768146171384632627913485705622773965284436587860594064046430732504439066272796454515005887749400931401967332285790469163459615608560280225263967482008543412247977974612494975431430986076731354937393136072564738702480285850603684623497862292415253653692719887199422936073513865834597160565328772708342246872755161931034480601455934750575042771963792848768215732752718904754328610876870032707542087422663471054010156
9616851744686149581709474992226686349029925557693766704607962341268228376971132087344730435670579507189903760071753643014155298277826677165671656601313887668417256384271874566318879785351351271976200051017399316172021352669098871689502079510249131263576036013328854034937966666207422794509883330183934326066273453961830015566155583003696181605332338275246559720034201968510772145385664861606937544102901312924164411723383953920206672846182102706770378368212451066974462375619130197692793577719378082787461919303872764712871709916264065153872073996134132981781944222279910478001192257325130637691128537134660449293890408102090358649041087070729768013606895585996523417131803018925740206087453492576477640906651423563363198338405815912142530520687818681721167843549184818402439796580952796971624550268398339468582145275895532365913541068774467953701721498011178544950522478531879137568130351465975926768305119031722114554593931955990244264806305705742612597092862798836321813318990833775953989670351145
2645948054752175106084255147417731266945641073486764706891949017955523943653387707015475739743781361289668310969940222362265137489230581486670925277525790225520575450395634672798392869657740666362369774709355511739265528082168200837419918734843815208860825272451915039255272860570028534607560514783850397698828936587357779142379549053068881246179995650261976953665104560842426898581964614455092218343002688463899192161372771913678373277390464525595688071693281718956706747323170751429593678571790527970224542902333283394112275592533181569627467711439495379251898051549626444878625399906786351933124888222899883570872395383998599102662280310342426332773237324129191530103404345579968627398006537355203365672487662634243414583153872489431183485174840041598976166516877321715596170135927537650482329930775276791789909061840326078033794544662285671590578570283332759658749127888007804077888481860118830932251798208926353135307695129372639327540798614426500916710604068512731181502810736864115249286017204
4115330193371695089478331445580766203143336906929724289200650282698411931867407716830383787596042698260432519889610292050952957497437554247340894928144978287964144161179858635479559933030565104913595778501474880122649545735103692411728559475697821281855738751474097730843644680512765838914217114430854541645087869657426164846525360542960879830966992207900338675408246806979645692243152791620798840384385521821542801383423348672254844307307131210663310658815705094877649009530259030306781100436210562502310340348540168211440954634615091186688482320064456449406939455252611814013263196314713824561083479691908667956008219928418704381404851251221862207495986734574859676082798043668009427161680140013695220550456301237640270819896357506988216407052125730404353539004276419941733989090479595211306691968807036600294934205998764204540929056809861573072960692491399439398069137605378654662745612886780245091773323996660765982265858417532361341437796374299598206910928588338696594860757105561947525591900409
0363431142518595498518986071721063845430845915008785065095327088293765387803032835014727107377800041652788532237235935940971714821012783961048388738856678916591859749979995397829894186113778236937514918921475493378806647290972344258454218511688039606364443456118968581081486332985305108336541437061267423099315892831109798343221542284770847697576437088235512803408990426235232793659515331543031071883580930559312361628957376341772631447742347364564209129294797217300663104090317818394573121787759442647600875264458742148703718557872549988945360962653188457621482127853557932640294065764619502685073691324897285261489383513097854455369451965341489485637646773121028007789305918839889241093402090397530884801811613842882421177689992665123626810807224410288822808775096785020473981507484027639824273530511579954966091289536242828239757682624501584655031617557159499792991985245560572594050334246293828478124997473770976954801950321685048662942085822182119188444636481078247611854219795156197844832586687
1982216814174934810067883137437757784453358631700398505787456776247753836020144987055981821201529646212877493045701381771176421273436296736714094931264204756169515002694514639947634861604473457758571779482339610649381850662371466486654476499439896149025845681057235105606438097630924731563190387764503640157886034430742108922651721011397330334683424398512425083884171797649566247306790027495206508440409390710612526312751505499785804552319808979420320080690031610930679009049354592945469228580671993943152893415713307324839207067043097000514898729524697169530057623120947983788016742843149578214158698422257201790342021744884581656423381957082297512265572951759236513644176129616056746916508876960167544238901366594424175996526086749097420853125908385101072221832783554807111294040566191255878734488042804410493370640815670798222765010654726154519605862893443766106272316267997999338153762792631230810464351762356277728416554325010967968326377132114775621709839422224321690392597867144866328126851687
7307728413592370948321825859339757595414208935266385162116867968490887127807585930606244472105751453839391692471653991997513575863499257868233144743209542513219862306997220976001803024206036849641690483054318398096196407303341769023890557491941704896851156704679289812976709462158169947042223693808834483503662541263337746884506180811672662674157014051593826679446868316207808180811789899391947049933505428750225383937347458451535992837780293297154990183668519137165052138167898509046906792664419427964786372642841724304326471813118156735451446984169063871430294083228970966781563330206245924971993622490804679635266980836918163884247760654348675200873291189150339325882315372018413233391813431160550779435498018305043321703698207738437877918088269553604100140873664099401116980880316248244496990287536904975435739398005814328486980413893325636316347064202543813759937868624509251090104582965180644317707831315814683587742625113698471153704121960542571578590393994423804618121468348402147351476146848
7227955549246319658457276575106597237379022710732440534767839158387032586885662731279768865034678851241520268501770951123003137248530647760756364906761087540306129135530642802403797917220953856837717263535518642870483576031091755922453347978935629987499106578596563985625898847917657332796020287802557637033563460398858080807919524962003756366569030614162411563976020517765336860152132457234348118149441953830975178612555593879280380653690744060171667583119245808303956939080227028817012369763147016573923473296786973492062256118901191910430158987283059830017294402327797646292815773387836981471015646228712204702977664893379093315772208700472535940342596414748251435592975650835170668688275969127893662265826207613958215337133903867694784660373428219027306345389565966531616529854502627290058095353677689830206053723508446967580644101406687518020788100783800859039533373346611826650935276997150299663954035244339356299561019530709164272289515142601582333023498160844292334147527136338747588925981020
2616817828674758919159250078487989729542414304062400212837073482048307964771061106554509372835151077850930229507699357118882785921445548367122447494603598295074499537441922398472730256481275125501473751271867305016832692084472820792203005942544054296596111870311963003144921911739913907377776171772236317638112756787871621351331870342387253057486318427602876654488046100543872977113201865431288324210657454510831935447434411646268427650232625837018390157175348436362881006228295582653140541770192863585241874747696615701056659229332006807105193800455572789984351774283088445831927625866652708025090317263423304796905394157472856144606788393758857473372427336376234544368428786399331453273232292113288261020719190988089703453310280126672298994089480921674177238565399368984720776360705299496302717093533031499353472660223119727633019153789796277581702455540193092789044900227326594404937335565642381396904709220792242062151737061636052420783267833801129417477698864555948155782055603383641428473945983
2983423715212357265225413710329765590747988058322075316291032622521306446468149170310538042241346206830434024334195596340790108824427386449573402315525830723792973659070327594563222693188721425689192014366509627528771665741103271062497490385114836697088634636698285385550650781780816217717306245289889737864599078844973777080597135634725798519093618948528366203418534212778665060126409005221690022138803567490642301837448602541096724663107078523043041079342768071769581793024478051742388028869678395225916119527844313400379093678250005799440008200991722536010376671190310022564835011827600439261946576607685329004731248910540049879808940141743443688333940944584887149966969829016078045826112826103647549964702326325170917719029099965843512046261679599818784025802109443354996264676691826526894629302116826092927156272528719108011701413733023329728877675978702822232955646282192996181315846849722725129967123218649301487274214661750860129079962067567942449319678610241248979212528169387711482598594517
4605678293159184138575755654769087446938799553471416212755218844162784169074101664051556638987980335592746780442994101198671420784358571235239837534002461270518438939624399483855812325942437275676140978765692211732322760545935295440706007249147878341512323309664989433536120083704469533996311772586829947971574953510664238368384177029163734935579509660613795635610440596330854793702619902897253767239048248764223594869939799782457149923766956579442264804870628592560613046289050097850874021458324588315560211274901398671316697099368184095713113938429964577481336591814986624595072227474155809108290594052160391344314886066666044602444663057056460641561960827327669340835963524634959700077449266283525110282035730331129981375691091891721729831500537938813811919774857412710410472129939517405834105259905061958125646246477709335237287660974209032359132835492313324382517237310911934107340229469098787136747498326699535692872595218074687576254102234470302590574197129846556748857967169508513066969818684
0504893345298425738309691529203025279350643782075148582688068125897129172057571860036827810662477964900635168974046746892090332590918284208953447537040231821066443165863350358659601033602714946404796612671776456954900408134444121945355644239252056672824957578131293040652461398519585093232704110457794522023683374784179025201264608844857389168153495342454904501842653494915319284706506171696307922659731844681502428325821235283109756656361274235006444560129262970796328457992122825111366028472452708910179862070285510292095697361667639921259933111560060871364502833074388300975316796827300298289951895807704440175675147116494267362616714687086780058164321872000946152351491527738662216395649911083980446973181163581797135334662767487797636324772667139052934440594914412395564273358175138033353374454617283304232343536244388243621569624594717049747506168331140544024833607616626958376626461077796807313669443036949743303943837715893756871849648770857803213200917204997490382592333659118332470116932000
8368346507223316824525030924495838778700088148064413078726802133044772180642344625014574502976381045134746877049474680370886324382859158446898454193529960685038747134271070838912057103079879309613356437047991237545037565611677211625979739694463780855895903830750754416859692485184871043493941696612225954002764938843983860725580366967677917629381079431813458296368111978120337286259243347385155702657709624732596945229149202904739583383337662923696430960013655098137903788923765526749732636194819565544156815774842497262379972723453931102360223391292986973673363075033448145184893349012532875193560931492107170254033875493034786963961857210677958186628995729418037492730640710936884834849916301168847254305102861213185893275512019971146443417916988301725351305147206703795820734674067343230896813368389303324663801728260872521930941099332082608665897374575436882846064734729045221297585053702433357484267339169380101125352812745415463618051521457064681065010291293093300972590606801523141367267823678
9663188934276079269579916416492523833113871522998550130462055548263312621421186573797334121243050254875847760813434266110323444653525274729866049449821222959977393888520820871962733959271385580790346312063527293469472577758167227153590769463361324762115328449737855168686980758093712904866042757305440685718277676989994141144278981138908168086873093010854857946494909742413219365209903368275545581725797487398295732474017518804541816002181070290324434014732736119370009083500361460587945439005262322716579360499513781967143230114623327703727256685704538850256910964866664237029260919599819396801924973776571595901294942188773860854052624551915971314975630685385203751522802813279948650851135771733880280625758438190776201282218825857197893038297760314720863810069261746297553489459696860127724023978390983210199921164502186213359438855070662871394091180462029509797697847933272393216312073360185517470924479707242549606117797718479416031238747297168756839099197551541748772425180668882167016891190016
0998444583084612822332437616152551607661264312212621253347747016435844340967936969151600277032619367720583483752848860349099612846061739662352626163210338856357667396608833612673765077094493891701666035606354714952224643443582969949327074623286623984359842611381211335230739471472598213111886646035503095730885772725616595703295375769318955711164967875383979019161779224714963454407902701835501082543172746981886210537758497981670360520067070684462540312359587706635107015700657759789011565894031462774157308368484585602317118079861376483108762496889168618798681237168763909672568625865859737675434236392821762465335011249700420821521259116003791752681058600534283082440343215938668153454199213681268684972573081031948886637785652398137398547266270619124186334141294639681092063795650468125649713080418053314589335035609288733411074452090843868699681144210906942080518106124624194366293748793137955427399315097832928289896824056119942929804655012458725432539818962239912086388559006041551396427960242
5135591946899829112826246717230554535040312527549951341312126077798892211595551338682233584290888223921094243551421371736390201290120702663439731481399503568060972763396902788744966130700155493525778812456132050096234869651891869138756733170530555965673246202045857704659459692250650583867500544663900678855023906573046867355555397222429245296651869213832225957846754435487607195625908002442275780190919827460159985864133311210524600050550180188235839025559145445641594864655293943050234586560604336420499786886844123927783744852733602775134279037203113743175049395199223535305256967212144588863188168933883458998284398418416917381039741288563748475843856298885462622505841738879410158847438368364523066974368916779704501216749092866863348403390422698108175229425494021659377693350169535174710847981935235481297168252845625106442597787361267498798920909362134313008005069611627513378834350073429669823371816012702591867667985656529867613413543832662781656154635997405569744395499214498408452731452380
6318409781606471609149512006851716131597415811376126460064552395656720696171723372756732774762281620803674939781410584328019745963657165809929082745416038666232844783654472936239572579096967150438672593217419188792767680047279351229035442708360094042726057111490723396450307156555672322425253880689003969817508665232707918634135527533315981825722667137164696133662329441050040294152369223163191058187452804527292084286221455772443462812208432144460716066510018119532563197361258244846182086731309256849510937835415084221250417524528919092811574477812075003507030036137940060622702533083099600051197169328497391781691430823134697530121835907458742621201399682214719224552758461364919367148338964367202326354776642499818304996828126779854818372507881010759298395963842350747160881674075098129606971498281451709488800582343953170054526659035365470736278015669692940394952557465369270602333654476078792221468022687872466851755932866779337130739471706859420470622099914073991568698021084373087348177285971
2873130655533849202376254623287272366503918832300953735092621225152354652602883493329256339339678075123700741976559776059201835778110125669109888089425754119856539480340353646821465090738361852861985200685691612567067011455742802431786003577944177007831032321246146566548410916328148210904669876418490200566801108600032747780126777189768739731861992012620799114820811208606059102379128089191831492546617057922163648211129052121606119195523026814772016550881983648054388289890523331681138758948148154926209084203910995122825315423409637252139059494018121369683320673026836080584265425492229570452096902414326128881884437207276783479033548989966677125248159005523359176304263872384543675681884144678437162380818239414331997834519956721664609000870258286674035153033221567013690553774830529166500422844724293843270895517535623315388076297533989699036918108216977611131127462846222774657520355528704060449256653857927320807469471668285865720590222567891463403793806048702965947844412929475976925275892207
6279745166592742077089537611705579054924094596968159606617084230633153249162038196803464836975029672223339755034266148093353987396476786617681569671467351696547298537597736363636299352238357806902890262138110784539079485373660952290892381108280373633144024200842736356953815287110121418612828407194812083851768126069420681363321319903602035779719095959113853963866511735550067361784694366120349520950251180634623257476373675972668709077519002558790251350164373974821997252206139474735130673451240653146855395391265093479323307426675706365071502230699797313140176265684698674826142927082302434016793980342319139167677718057658214689354143733521035225063252120892436024975468590002528912740799034444887835431011359091699383688968943696234078269936200545167278096423612083553450118069161172394020432085694058457692798473635043084465662322059974271029975230926633927112198921235351540526585228503948381714468666879078666410388952792170145286637415837137202183038405744564519008548690357852863403839740986
6403506905262429069150755332936965628138342182469369261045412497588934071908428917370382625788597787948640253780582735537732947548585581651252420091954827167593681318229541894321406608937142856492811351043672850905484659644410767698001027522105744815957525659714935020683121239545178883706889142777675135874940365536251619113212305429328627279036120174073857332236019902669008887997121410202230084434615023845679984009875912397024652890225925201300753805766887311786565998103439943581195816571997109170213440257746636374175634245792562856124997843891397087282609490203957738456283494275188677032189100114632217320129085727700951768624037012933015718200954704086529243943688961069966572216904310810330818495697356869060945137381014022245675569513000725567740053639681351508761476463008298142018892629143446580061789740536296195964352511115017492476082247250718721998611499260479830841946335025322676756139268657626317013074026930563211611529627325626102768417977648451026850470216477422291143998007831
9366565063055028284617919195921950194758520067677367986322871456723837641279315290362667009091386369448421752247286154848079304377000152490645652918747490681840795293179330021087533304827914330323086546857165048181387788231562597539603180654915817415797830085766671602580061531712427628703489928811559415651159759742744968869890804650795810758920253161816314852070182090262011097241069910933035398980910877741526447528872164571291327922664798142371680179912660871980776345853764913084022611117691710281212488839791217290863703618534410255973845397818066611989169304649308334361600075510186405106092897533836619334494943072815618845920436493966654845767070581673365230625857781872255909875801687761785141058575542775336452039062201742860227263405587358263713805372252391269679726956836545163470769932098076726307166186095007036059093019876341022436930623313602874959644972333551198278263220017920926159375326536902274032760796567351295652258598019565700428555936693950874127030048003549453651679213749
3369937357031514453552510723726726116149133124703210479390896280465919568673280368085065406699922297230527350757198451240182820541240962650978693370490580656749541726900912998643340178992487344830903345309599710173284166638589487952223401035178293957778770136145214834769647885832152144303331663486602079820887257523622529558743082013776442129113575504397563046243957109351422270002968291725828608637760401189370852272437818955102113670587019347680609094384315130136597875244514476998937050429355321997880300128622876891151679291543327683472638179970513165958620693703174663848401394727808779095181488337152476904718305230762629519577744107182789596686835852826119587225245255606394749294995721633167731922531934059793103375426250202476102861899747394348389527758868951671024702501763101935559670149121495760478566230965705925512577352460690621274950592013936152360552736700000165205612816234120148560579941888849890548568917043597373232233360518146159238353124059823753286229007289871370867152224727
5114838673196121496284183237068459661855356374342124487211560208717777882744821226890237838307148230253726225758167544851473793509467125489742332374129138404202576863860392315800916312927395264576026310721034481227393476552760465596967629151948615226044737517608335792073014139254105975952720762310575192869136337948129809334979173802828851164560382785094941910345869647373808848948541894950231738208230240238044530904186506894839759440005927470245594730795205878307581090355243254165249295057526071677429860616148603062600473689666077619075907227263862668313437356412162360084245859382962406053649186889650878712708054908239551247825752925753409850943489795333255814202571970881631334370187220381077607842297850755472093935408808130684988369742416902553438626311842478190970265116456203590253621145896316147821501026102104674059324485252244996729520986021645370158319939672805434692945257828953852840624100685556381576938557456551681106730761938803593158730494153581866993119673360091905123089369108
8427649529852718118446448896662802706381075306217029987839747749103044264679588221795998388984656887296285710475319072868184832777391303887297304511386767951312928757932313994809675104727234619662545986594356741692440495122396274035242050911346559431877891576286526365736749000801324950040218763746696247824606279329175335016308695370940910634228273354009455019447431836884974166792211409034223812874746182686331945785353509516938319584249142693250911472842440244568594836830751877288830259344373806610307187048426728049683965850832501220294935952521689336922310782544447600051495342925092141910306719516923609930858765491634961079811756458896267577715079543147299370446518551592911558730397287152127947258115767928809943640085643681696225029509183912195045545372968528496629001791894638949809552885089806047451173213133579428517259556777030537939292062668926451121705012766367309945987252763793434077008284831251793418967147472478298222260371480319896419651193971895393372776498993169328336579984842
5105127613965661968660985246845798070824535380331898021400420386744985691263261364524634572505759965924445755579480809523427566511306828786171097078937723879601950667358433982804450254858107933317380810063347404533018729906814496360715136492156945109880870581299170569673503794669617031225844650553405260767551408389518394672898626705448877270543408011122953177472291629652901780544329288609156867501799205473133561237447193513353647036669159905453266009482936419028297805098731488541616498394792850211304781771444960033399099667631724988338619987753362542978541014788945766148610468726347320728982539231018142111614109126379768659814537829563844857524512517476627539320785594706663097970034963507071898433470130061476766635107270091213779775043180875556310409462904032486950841197616235387649340895820715205993548159343441125077913116696076234194403386595686194639018783492861217742273370830478267259673829999517040369202529366885602118323235134068560860999288507715025085062997360819084701360386047
0710585150673909241523161289890395171303661599586494163123686249071721195371724444205598019203094224552843124285033854003552405601365052520445895390769533871013164760191317077498022102650819486115299582349900128005026060145701213772378356528667426611595680457192868657798119765070019306803347029612153222248879837108763134426387622735258461302051192952427071766285143119073516843519060828397653751075658643126345167342128801787738653499465607195003818543760694553942735472447588864859178343345074593568476286538151527364801702239554008059393968182467927300646638569390541106693284278493702227747710510046796611144033469029755963681001267997146903749101190400426923482148234733030699659997595483181511678869476480887884249164289927696592875292936843503496657927340083464804371683813816765931211191029485986237246421167722584332434014160928478213467759277343471033573890062953180256849482620041045372273926119604784724735005936624177144626920047838183415267436355938779022343401945454132356741917239118
7221318593910543505670657946388760366147183623184949989511988052604978500722562250078065230733639726295205663275347658836074099322395758615754396204129164808035537349199711247594702077380065061121046086618107317392520024040660490800562725080325411399335354721799280424365255939668262941228358104476998830594470874421555032208220426587143662583166112889842490681625460831072432688978004723040124279711317833829149369166753137162159238036569248964444863610935365362052553704812791881846869580135015497240718751504629535190354260110687283522174040206792540701561006125160333088938636832057849185841694989270232799792923953650272229496206912138929855187447342235072106084623765266216363637437470116174886223267327159237132130019242000768044556064255952693695570809874572151632854656973564852422124227812128376670528037424557291722531325390489015163271068799787159743247194472692259325908097839365232725732343220547954652865155704574848973656153011911362064770211379362149578373928792532825341915430816679
2038588778142521350741141878394261584884194387597170063892471647313075647620111866567432526408979967994591556394354341964593063130962205476194643408782343178948382212134113301187981277597928767730283518022117462032055033736541462167241469984267360861686544297456234250072950899542261651284496798685575997330431334656946908455655918699613198473424441445961072674547634641368189430034855716051878579670694098036371069032781864317696073704581056626827837518126673209088271671054815046599263209446814085362979516929588232198519698197945092742441293183817408618986136000736628426541371362290154685460605546393797322214064452126235747953026453954343410584167370897995380760881551513466538046243519319489971745091997513383400359129658947094043181760760952339969453998890849395545687084601904860299396481604086325384440419676377079871597072968651855467828441987138099140606528836801018159294143130476958650705284876415144544473435588281443183325488175931997613846280079714456251676994863328532897915885634103
6799944322706721319644417391543605961942214806649719097476911812453072685265685139752296008011746089512428486222005587921508453215966630956994014135356438287103856488927001750892077392955075804680109125858386624535792357267281798480097888841627217521165314894609153746062137429113045576225243832175642374619633263130193430251163426992970944414819854579607478508321288766169575013531213405192089187741164307479524264324853293548361107355933639370828365471312003693704174833672802544927981079483568968753270050040479934844249853388258178995409477218014912361054723630827414936397461721751202078356613837411605572870921491922035127571006134726047174427179274090530261902849772760452107891722198949957101923923239140830561641849740639856778188948031159508358972926160616477959803710679700578992025236195660170727776006487354194901567219962907497695073296842497783323862455413724230625543394602750765919758500533124343098644517779537213049022140232372829489203730783978018111118478445237341057715098945039
7107674953089519503571777001093623438896921805387466805200633707113345857933823488367513411207906905797356958234093852049410645679340466029458911912364180934757088301465717643070213435436289718543674044696131044585256231810938261500231734648086603286635620649162698132672811132315166611684868414802367939255799483997275061420659455998435492690894058111391045695379469570104295313389191743767231896193430678288590407064434466567905243392095653418616843793432367103368030198483450740322732745462231903803042222372177542202163765010009330899009127883046067808453900518026945016884634524048384276507825610343514753632120615706468340187214846293955098040287822224533513206847338868643020819735613278531420331624026345418345710945005583539832564520203033034318440601626455538099917036830984531620673559790603940768634426937508778023636395281297296302738408007403254355785247389009911326574658514500439006534101394531218379734895389204905570163505556755951968744032443476331958389399657380492643483843630085
8682871284742693185488191420154888689631066210554874272616670917619266680379289899391604130499775995310569707114391098214857649860625973775121714832901100496292984530129464321369309408248432062028004370428068885860561681625122700047931946798228132300980478804919056422965784135358536754942416839733221470716543088312442423137037618677289186420155392193674444304216978892629217485353392724783323380849913440744638437687694716765462533457974128088346507179079419582407622834788230085784071272177235411473627991818157688070860822519177938008936220246439351664041044569711412208387320449878705367692861073191983383260070947913099839378968181962975003879647550251961983001460264340166381013264597839484559643630590144252397069810157571052282874477933424738500163376024308411635698642508294141402950034599625734404837003069641246096084965950357352652896462695918298937057961453027203408244943854559058376584664254751468019621833579023937826596622971435444752692155955658918628179851038022036930547164878461
7898120987123330404898248824961946966011365212397969158556923372541228324613580131423232027756858046568500971073890086558598596511153561824765122216404893791181899685007427511866990804359357497584204833805042986534804230926310434409236697532694752750690326626867971378572239442324316867840859382969955151910068109026159812689241824494731080076029763911791326832800248987490236342980006264881806321488842477038277840835563395993454372836486023517213183952829532738381925953233652350290849945293381985676244442805873351561421478825616672634504758472317318535178908843020765031643761665911295928648704919475072311283982042617955086676095269566283009042516186890052503250631098860949150182997931180259619198391611556216910863592278662013494368145495274371429896460480847483560237531491319094921474089891637004031118283491553629914274332002512296321041124433582568865855159958819315835628913962018521377108113141074779924346747216755916614218182111971458172300124869692688100409535980119853349047040882006
9679531196975176328078783914409490047783625126787779451016700089731061589976317488337438113509537806515898964174572304773295375532787906195200123401731416039480220191078303994246210244432824032153425600657607432232197628987607942017560239942575405923076783846542886077011608657736316708595633825779995995664577475838035995637053618714221013399815916187598592535212802404261410036761529177401926026671444121638271246499470562368001921118467755105842309412222860155063521683680663103342256266164240560949947621291570924012756322208867837641480517381893185568149882108207173585289262265975642107553861059468608276833797204375788190625960528152206439244810122174377091464861250987381619986671130251502024350662757489120524580464135248160606465931893109441186625638556326980133223077872621618351662886373445546138969701635508971205034698866339156982886109876973583934196507326694378219724981764511939632253548419423948667495108533765863993301597312445532122708934233747800545175119428945857050004049470294
2761174592756131623647932581015936831488891560004648252561623459115366180237546601020875038790208052698168595290300906092300316629426778139701550227171628219803086949049571513416640914244187021760966565592475302949048045620052539021985530488474010161723637977176329309312289773498473359187792359648120022305767821941825302241542190509914512440516995877983493656721864936230847266856621412339096703992581324604825306862087681033366850169116676398330327558067462636315900002573491198239514778516259070323599250410692544637621191425030485482341481089783514818135756946327838086029679148906607841270587064529955184698291318505482643481740971230513898015834916904025519397253984010913093043276190129243458509041673544395613951099633406610310373847016944609610776677676426331086696041044575518374262745825639632456580655272496557294580529886481334849982415191589917208353480313377173254731411623231887503623862026102194245250836590301300869258247130526073196633825928827274645164731944966828713464740154751
5635183836638886786727908426871754150163402729317887010378711733975248076146383379148408611994031611024561428965201793516516130450330359118720853260110107280841873082781647432715141820517839439202202735809060787804864753926328812825817376980767328599209695376082338541755775635247672205692455758966105090791019937636491281806346953304074133798182787070927809202700233365725007208771045031986491961152938972980098076372196071162751399786128994164474858429816744500223777868537690843173338932139068351037270106553540145872017030224398553568713122970403931919762306994375438797870610518924896981539063876775087882547320013020633820159390608802050262435607006238512456422953645707791190921030177948934767535292942753071317059563613851563330747246264199119077641665508047198577720196159217400151909705330135091178617770175540955219389851917614552140926367889005078812286745972825243637880531370429804698770488261621095083930238592516522604949374577311551039074381774263603576316226465497827881051561043958
1061890849885781043741475631456799184504742774569165057067744736501930180259995032294250735065159502577897381608995494092269127414253124654889393193330058966162343073205927222672549709781065230649074564433853252902088968991007668612694191939206175630077659818927538968660128728654123295600129394902932079471757743923325815269917555615109872202719927693745895080743647040652900297804572777846401465850388426871917970714506798236368337040771292328415573007248597832824668414651083165289667871530328657579825848584766826616328751698905900547364920503885573683127823212227338656597574949199795325230500207394657136939960071359288305171024821469635090371634189508618245945780276726431796439165449411735946344636658240145572546034839085106133084885229124575672686806678724790329487233400889260123182134915453829078688124044853985620882968945040881816733462346526189008575219832644051562324239462027767164056725442869292629828391789809915670289672378178739315381594053096447347084340352897672153496406446793
6857360837795055677361384737521095733925193146751176234401433414158489673490370189200466684665864290559700439280682362417296323997018916599113548986558234557939146072028416076985793556988045672066713767207554682776088512361525828451011810632524460150563000213393970314559908469797947053820899916017404719001480520340407103484711395706120100117591539375598926333710269853569323382338600057991375583918438112355946234088705769342297980840713251532503765190082080708844034666254557080359165104382777151055057122035099101816289463224571799121274160141997549430879855462244754901467662562242185828398061986381097463353947887068699070050609282954631202391589657373420364610736928948170425865084562138542515334523829098253727298983721183569882120207835786405729696907195582439417183789192251300597958657523524311220365111033281110420416497031471355989206527958418306449997378392236242997636253933561508249661438917084785128829433526863765732097105395311770327018441043976547605160640685234620640370682500142
3193177171924827588839605966454799106306248716990170904160842272502989232645109547241268483005672970168884883715462489040324260095061861605210155881154757210155933058914075734141657069371135209046235792293746117954313892816719965110169635201489432157863138249137941706335232855875531153865082585244935149683717802121247976903479922594796856947621524416938948645005791772242212265269204762136747548033031776723603896640246901244857713222259085189566463313762260200199241133909379172421337216734703743030033657494131984598360566585031651098510580866147517134642072868395785662265836480110378433536854885347848957109665533788042701474715312452105311560046208521071424984004406641552884273170787713310453503714010337647305699237819039526600652749015633605665619960157705159054599153211508886430501161649749116678681478368174572789597327120725650716710129908029122564854253344654824517286521261575241366445237861185641149397054419195532231487597468646934223497271933979043892944613583241823801089779079291
1620334693411639800075486288850837776835765465160378486644763142304955496834097346557648849203986225035920266411893497122055550127600974238811839524507741719156214971010397049024801353431473357220363360179869840990124688356848636774251323380695744886032187169862494594685683113733780177352333038813254318889500582328666040123637485325526546649652184181420011106854752898761366052861450913381170672632131535785513690753243939724919999187175515763217478230803097543285108334043732084920583069232240456785722196758176876385362799612744567626230041583163254346118326663473853601463434910987144530365526899393959821663102228879211423575901263209489369316568544965543291598271207703378777302159711654986112695657780038395268044590568107545826855200610746044114588580758085497653247451526706170283092981901299700798585515755295554908411975535347101022467742444323850151364835176812390573934090183670022972421674402966489150446884047633818951499133044015227388282253824121926169732303395155696413386140734288
1939878920314940703321162148816844552087602026533568248684837750606019492220642389597494156672450561919111577167345767756687947768332203385687678572326510912246837859564584411586553344814405357595782440548539672137280264067386612489274251105966854027949737977748194229514200427786401333338283084177183540597102033076232714737657474974405087625445422697617299861912862207201888156675440847407285410444712008359082365938627579937140864708772394833371429776128044438118513556249390292510473773918455364059971196586210428520407301045600914313556487456745384841129476079095769280446216556108725628689814852780504113047902815628878348225249103555196800250552616710004212701040184492273132010766565829165384472632326384684480341531559081420474407770058030034640665529227049292771599144879272310329701349611919497182102363922460049445756613823496483976726199360700193296382703673796008028062255369269569824985210018126359519802437297289274708711873636199323036683222407593356438438797936579526624592076703350
7441648460793490313147813692786324836288987527706974495809091211797986947145075823123414417331906735620164013693197214804545951256419790274425599999965907488581856584776089164948503238591059037059656888338864082437966478851220978195475483613851385708476871807692313712822077254104323166999691896390071517357836407597155302346004898465759639830919219531522707258013797083169537739751646764065047311572358129190601706036819087303797022637174261942423102307492205208578155381668431850082443904103322007647812643540467448151948636142532803785880979608044411634245927379842769017636707182522434071732121925240477356539122745958103210438650786720989283059733297993459213573681683687014894744361816770096746914970736337185180698890387363876787356283017338211009885260530977891396679213263781417673126750100558438422198897803952364133629392305993340198643637275021817232206350420514048929109708528579924867694642924130277423093200165378091288982252465272997092143116630758346344094613197736318214295897659388
5948103243162422442851393514683396130153127100487416144790367460640468476492246771547195554172514280772080633509572843947820156744305340666536625694824708515561009445895635956259325939754594849770845622534595452753167213760659120340551457992597070364092998316057972323075643526262718690845438053014915450119838654134412700987243750779403497271441861088272384625734363562837966062600999259299572750622153743381242947273366241494155860339618329628926093079268871130590745715097582650431789142432591433313867749119560614916683440090245098773323127217970131764840351930773368190589518206165073554288074938761157724401459901685465797687251487786377456853656611495525470361445566107988751949361383627983579319309844652671448303539727757105406721290727127004812531136488448906278997695574677413129056803759671506859120870961644288469048990090737174079260823324589485240404523612471675013206142118976480202799329491706165997901668018060328025110366028761365496261678937647228552825262381299789714083931839880
7550114333484773579531025055240466813479035082583122055281856790245466244807821534221299417066382588919671030937787317538505466426585126630054589785337613784939666436254788418949138001764269243719742585260234406139911362394145950638490523861683580057182044734523018976948796257919688450526811584785941061858507100409693666526546295355119478118260150368086894140870414368043042610487283108451832067727364174433773054501583785582079227909579917690013992663380318192563811376925320579873120964580336103176389323404065243035984723920484325050543508714529279469650631837390606781522181863868268977846312023316062598174464747664012277885504049919533441664569392223752839315098531858263561082253554090754802271923700839368340841637857676846348225724853347717149095608035533886740916547104882466375630149361016062299127969408137492053506012711692690067392454367964237434876615246272389049972323846906864429636616402455353941513859283946954690811444914826484268197091167583458300433632739140531618718856699432
3236935160621362585934706389679100556947175215007740735632236155914686835530488817595565579048365610202717491491149044438867418918279245143901675524135659253423578310411932596184288122961422847414820506302152839962684447881908206908562745083658632417258030343892995882154120167450086838084608566837378482283321900444085682559274917040217110550757483955020035174561134642710969219110011500151777993975840243128498510617789857848941856544193143910135627738109139909699357611293602449407333203427958651877585549542595356508480617594506719884321173447210757417145881684057130139016372443554630575390520399177910886994264114644014743096940023111429812053581328248633677342725234524700477727327260286810896755692727937600158040135021112444940138203344596615213096530063142614457397337550266142982774535960064652325770579227302703705431890579543070037527355126703161010578566808050579455342882603487788770707738357217962075771033290669131563738314394614264035335631554609930435691894884107332412947673418287
4901209444921621463141579254166893711628652803382547917986893460147579836988151996197412908343664852213077928859229691931391335877397289217197815185972294477627028037313924746432341947091620514765572787505598805871228154915845339858547038698011573633374308827611684941462837765995218164674690513478774402770934272401720050316176442598737845175806382397775102028739769547075681682914847492977103808763637698198705734580263654152895015062102339071275690545069461151045281136381877530550011222641986743083060943225729753646369635073811805122625167198866769190795203360714867088324522908237394091727637320929929196378241380302508969021543898532766530917660787526686848452588982927314134106250433932835040577049680870811697284485503680468546350757136262695968587606581672159043266515190384946769281842664900128338877328393389021238998559502371386945209193339041210671450791524484422662398224323491100853309578030676862900974581867688834386496466522855284806055365091223771285322633927341028858562949427061
7192120091143799035239963003821758947204881667797419261843858817303232018020872990057652063677582939970370656311863454001157275198147932067719998302301273395373794532563462502409144346343455587980704988106394103645299453702563108634818149419090102160114294708066660520393688736902862228063070448843639657754922176131870549025521189517034594334510556691125373506407045945414921424604779275238920207881139099595863372810310814543650266214177187946693869990469090167758444344991718129690279683145990085261898381722398380263256071117516444081715210854537515876455161842052196809549932509879301108130418173302997637190658718623491874357030459341980703954871883555910675872592163090253846046728998891610865017152145658925336804934989840266636857737856090590879760548785254736404941400529918834205747217094154948836790615453280257700519509522323486174578450535328599580558051678976461935560598520168303461482433355096562017442825028463774100120986932134600813802760356297820938318291356632086822384906587257
7845520448712366350596566385219655197201714425723827337360064655797362615512140086742499607725542145930175651845124317237614206645112180421115369930446714162048000354550276001489768643272748356658173592261683151394622216380237989443873758512896622922807337790795946494331418242254924226205875188688054662167014917935987606780207595203727712129566962851608077790616028032497162439342757180787308814233039620775278066316879830166072905150382607839919664856603723350441733713832638212091107941314429740044106481892173624379688776401705907007225575699583664888840089716991350221333713440603972488627210365196482229175615995190221243889307520619815569436722617825262954883897012441392624033550861310488721544599190360473695656653763190475946541735425977112310401686232588151929547815581804735981538898550144141832017135655972286619048768419780593911603594360411279822511707672901281125897930971170640948139901305438943635708191708815810062447955949037048987321732803615655523135188873779425458501600305454
9223381792985627567177430159706711228762681020843182037899891777384552538378692853405596805430270192958461416143707939985027127279688750671427083816592358248366566274868129412536923897654100234269569780246731776818057506177061513904073983058534652958519701461928642681341043650522499320117446588704111877491047844473102037599374885271160680888464828698709613992627740108921159247923004724376281710530820392350019317969322300658497457702974605307164836981219955068507160243509836187109423965756662318560680522976809759354580184368461221839821467436861182939635153174049449860211290337553619637519491672065381915968881661593048259523063930179989573989169435847471385901510411648673603782541537094634385152354312985569285999806538557159741036998539744623815977429208711598758792936615826346582395061538574348704390397079239269233217788345699251954140171040328305213710337168729603431437833102783463102768200237159132197848715218502214030307291904227726803077631516446980969385323966360622756303512788008
2287192557082466661153812014197212664033352766888879692748105645467986056257340305885085678248813194044400754204796711620760501862852656344653167603291858186394539238025438822396188355823044326006304994037294793883077734730905873949595423805645890996882545288182500105782179692529579805023363352198837056761829094614172891363397166574916644012211764949507305500480109316207183960735481203970520963437154978284979833388964149531864038343350180564719740607073141194710231749374737169800074306270355552244061916766170646131554629072546657154702247883425039573873330926965011417056314240801684772122888994025025181686753674932831320231633572927280029887135797755433671488239179282352756953494025157135450639599310711862826788887022131706381960599786088284635569523227009478797221655328268892512817543868358913497756018969245500343915035944379850710757329453622981995296896586304526675837258018524087892285136789096513842086205265431607899728127774568374201969465102191125951398819303608984666735029640525
2436481253935268568190713420946708828877437506839145900054684836185700376305444839231627015263451350096913608173850746844741632138094597395660884322532271758126258986108287098896295617425287475193676871137750690897409541851641782663575239172798022403255853493898288667592878444154326889442193669767151332037712339310169113868590185686351285905820264520509502842841057424906930901299573444330938259819860246094387314463350643059731347234548663965747005563567536329512589888976875374771818580470351765422108276462921124990964936787263878616512502512308479169198904438698449677254689017146517861651581121673254992957420604797934221183013019159729625014833716194665752822129594334879576190112382368552733954875991703443226034342045312253685114115792877795860392910818809002854858090247463567186813683469067229602052415354002622145986784946274491647930981922356596515754996827915131633667058871322829304445899339316313838425972821552134906370778264591941758594992108327540694261873953790495405001161471152
7645393766586884783877140440687083002304296151863976253128233207061169483409906322675944490012360211591802501366557467555255339219971272581579124521957627486072523675425410648847756738935887555706770036249724441272696196599088296355051830934177762998951152320627169678576568812404473681625393373402444465998032912058805076372549710593922526167392888353540160373730600969788697921837688779230152713175769900034687587470333343477650586661154282997946546109390167607582513003574533346046725147420876267042360666580268042640273723804104337284403506395033373015915316669296893378879886741351427062881002240476914100729635647710803918681810467359139581689654540574039067254943644296062678732317658553530456774501687848010304276982504634292011696924906337048244594384324842526185143636011900830793114782172907654886024849859676960114599567859681919142103643400146272548096767440255086047646439756979606535851554767965141631792845681202700701676224330362375332775060547314771976286626016208158900813864888493
3497832245217042201261950215727590487505106472691747961067033421661041950942068501338191665423993089100795475285397205225589839522071642860303750210937902439679761826208321025589419290275939533507123928033025825106343942493100225450385562247169000632928172240631354108171453390921003779870051461729523290070080098136113968623576839365554381793180037274499950133984316745642373169328407064847872288375542094050160850697158821545545675768138758092826780646809088531710966462528726869563509976400326533541241966078016126935423543310339166769353599319392442411125989574988493007046108532544978255292437582692601364575077264561943999477631835793695320355282699139242682912676613359274293834084673717318549386952855004641998666656076654422220604526007956337419787671025837470413458856222462176863418312250654132184211419520669218151183778410139479595299937397226775602977929179708247252404479041557687486354328793802154308299530338923276855301646350746154549515583356819996062279198120237386255071517839558
6343780788949331089022079021132532883900727502727462560615435682560014402978069674876328375087917758244859433020739872621052860674366801672552022656166619799067300498246872324202079668148625020342099002388048396557698708839667745461795072857947678068876682159830995862197254950763939152011056717546417588880545082636539181860698911626717140606742756455002853011663959352242252068058029341052755935794860071530965888508102709430588484813891396546934322440981137067986936161192941661510757974039669461074397259978190109957605626076775808473672741592768627582702345174645580132536195345500106433406520979166142214529986204181544811523963499085670309185156835239815654387790611049169604098903350747900654891393211525929911431504731069415875907622333793086546640623413546457128616447967905011811142489752663754456081115922041558596606693415913957589812809014114869115036306874231613061832411587506186145634988237722872215495622025857811251019189289580830098037625962376324174985901229082890387771559806564
0818933566418111172637884385122869098814444244870996641204269987962681575998895339992338773039535617171904651680706601209921212799387162550912325116378408182131383667149038729256392585668872079609682690513080636426465609027309453427027781869706976247722931277582033765291825667097307758253584348456939007213655443565230628089108232890575321761194626406525595457513591002799424232871662238117954764206860041853917792455157995807421489022707139312680356772253892558744801021210390333954754860956883085922469076414305137528496559581978334726917657952567215835844097668094694288832364746924992062001995290508467795450200946223453220070788884634041815351656588971080289852543640128154841894532371157710288774990514343452271026450011817238487616681664609606272586614890477539746679552047736051987193111112467994443112753597863570128345203547745309989190839955594306046031140586462601883650089059969504255047692418071897493496291521712615842805912369207751901823832637990674991716449663598220309983921844899
6298168494345085583798637436711231709755084386663664834166983385820355282707866921753811042604796696037460771631320086425248586984980437106827647132597180314791154998180369697212554383911912153193309563544980769315139144437316162442980375621112258731991727955935551457952400955856095742956008353393005039154995795797459990594808382279256316638283037972614693813616342540472696314075905953156185269154045460707501897195496064159220468717472364520915138529693416372141715264148159174675365947738083937048945559485111448732295469082724708692641765174645554508324970867556405961874723084565992658387452494533096285127351213417635771680124129307737576377778038602623895631340971391110950757253611514050536239519690240154908128465708326225209947835044300681532975933383717170213404547848672022308375449853338341578160487283391536927898168404433338557640087656209604210041643460396121721000374877814071976891395083756711455600518574255780625110012431956063575419128064430233545838315936522258570199434750289
4919220633950907930160982314110976072528632916309155358944182299860865458944177100027026088250146036017779160509377364789468014853459780170860394822599165572094213737208090439852813066531640197572235071726792504881441863076347114807840951321126780009261424688052137599325710784723828087786544243674053109989568524097620862229695318593231386597376756401828165163069144328466076794154110906510245904021298147421856671405587733325971889518030163023731419795159236307854232487141400726392430221257087132549432165823327874578792810501075689666838159301363907651364593427353966401603077663984369491030908044320758006505850790873157563192598828087900875730703765559202581264331744541807137368117404625913217563869959598958958399138317571738402125540155502916012486102781335803560779613274868177731875094447144938935077670157615372342590245380393892504413517249850110533230669038030343802773066405263925988769783949103201588337596416165180252556327748034058871521378801879548041209200710537382423018425963058
6925107837371163102062656259975725482534691828082062315442936658118983798943786976107757560782060564526430002310683721646282904044477573728697129682301989367926048156266861571797246877430785986166777387722892829826348159484103852492723002179519221186333541816465078846293839502953005139050069074083076642680668278680569039048221948938662168732129697120930125891478484790203202098058247618679032318872581982696117625957965605610916112374295686856440579061225206114932477655460953546227186447772957152355599837665831883423042231855489974297002507166998425663484607750265481274340058884262670265413265569045886315542327433002238432956077854211376419878357251854200817433310243938361166868321399402996068839341714073067245095491819736610741570444430935590916267487863775359007517275461997715978580545085445690974814896806118369079853478107920537010300764023909504916283807523016594986964050396991710078271911559239114647494587669777181032362048175738512830572132381692042412421586807199837277038354378009
4691806249696810476031906120651296645874497315563350146382314241358314107429616216645188633787016198349008862597342010982278055296718335753869393067462200722138709051855087509873317019093002090026327394798795004713608343709541940113215200702850000876610712416928616708981944238016845733222794828010356634527922927618087211393345454463037167035475944995075082996387310441032474307602074284944103323207276619884291769150171618811897133550603273488155305917907239466881715775316212106552675503513652139859275037027832550301559987837608312396184126255982662025516571939202090293635044517778821619994264629839993260670793674286389196821746527759667805196738821773436155693132285723751114912874601432509588386125701278932649168220707866825005650858562983339091040212262579253492388147695615818242449032348074842222254813821734952440990791161969739605437840174086062642999218378914057387197463197108370435511480580096967858252525951306903967417328600800412752586976533350752239996816531100068124325064922563
5473238507355364556995389576079843010355855793526915069427427311605139086896015400124326502126106116317632066584888091464498221250331268025776055668931192151871762456179884641175043254396730946835785424794355731395050220998401411922394358350178281746273488901587293683799604920464774720184166658138724056928949943020173405363900521708240806264192231323711876784763898977384502165967489631091456907168725348276584776023057301774126924056764798616096477717831450505049250074810302060127747389755149913143838416761696293734388164790030092597759925816706656953908410243952643810290798462126603396058633258546347304107764219591848271483853892940843101402407644162946786581614487627501351263972432800804222134718756455679614308819581036044840418780745247178771465161423179234674630286434656352400178465159218933957522404176088725464428266612997820611158596441002971524590984603268718507728083882819797057357052629901065833089777440688783794455837694913021578046818279601825162954080480957478647053466548303
4709012503864273158849878334231952851138862090991946268101904100643741697314211697525264532314778863476787550720370542028901122315243481021622987494837046929408103405199004274876547419548953870056836319129633554587638624444972111716799962226357336812382284827949387894279874389673768056378889040801142727904192864267979265341332039727787839533178138989506019576648019827374176930559282614610575140770646792284847520077007447102212971596670170609265758462247754996099090035779713586278213080944978548474186797676430564597499382859029578022716966874568522410339576692763210667954246581026389547725677069398231227728281200740876832619939377842399968200303425032710964812718911981738756191078074123841588593886831345523913723836458028236873439376933098920630182290075518534612975031181506025744546008327728283249099858837309533761780000013504996185999104866799632994084778443313356679104069008179000449664998216254668214504902920969972931536555982319513878508811855974834563045824999637438774455826465843
4317746242539159626040258577348408990380632738074875927998770151609521178820048533237229680505326717504885379661699861921597945928840161520984152579005958374543242518164755140984970367285711675118101218060508627084902654435285228399407663476013104989379620128709190734626890659708060128708170118124604498190884774576870395393495835041448444388734926321013486404777741511779083610064655786817251069134737638101969695226667650484434875958484582170698831856401048890997338140723227627869767230702914883048706929902498691680306383531573464106091721905664502225366960596417287515082948140629287397204257074983553799534588397171951962503551605339182764970013711963897731826488173170423295192124215073060322556485019524010199268893199060391396906040276467561973641727825196625454131670509218873965176974559320190941463338910789307413378782553093941819234378687562535281584775767556560893977690982851442217272286767647360292812964698255342852760229085870617084451187213703838309886514971323131587273149052910
8706698576590411088895028004250426650464290873910852136376691924487832930584191643296341648745259241663398390283084535976496459504930898038727076879264071039158899712653662443512768453567749477954051125462890583377064440341311829037411799906921774461256807174233238843564144636852439976833012031709919256864590131491183062190854123259760005226624663712103086520967052884191524946852134197190407770428516947807309319597792671680195697619138779414228707337564283035926788787695239505756396938614932223678324749770593752221052475575953676074373676745821247367420642336315208527391248988246755192713902271748299112602156495658029995788818110765740295134732093813724049350287228679392436490295714130329307559455285445302375562410702010982907945933826292934846094683644826493006720708769099828102585777318938979812385691454561072839578229778455079732333527880026410888978865518224316871028431647811688896911140145254720130193544879852799524197876291956938287777602167898172380895386730885744413665122419216
5360488082282715363058454051561135123852984939854525546994559334792051312870166550894159437131574808953192389242433268541370805451810771358037815786929652299629613689312491226493252644930574212251839426793860518804815572516342946617047207649455054718247504638839193509793791729622811714777273164781233836539962004099879566133171081500214274997162389528484384021130757087279921345700467518766708094439389635180251444900043252642570244263424270040185458522765655459817882100030882400711643932571745082844285179436361715300167943247713901206295433173927385562899387167710506744233514708116537885282919949372689014983239503236773432280583779444747561589879591138619897524557402988874625449541913197900106692798935782615346439746451133017464534010981309530323298270268781665507776482444089776011789148112110159792666939119299649912081243075161371890216647563373871832117245467798438198582097665953259637173230302538634630206951286470152502064396989492308819335756307311386006284936437098968321125329528755
0891205378256445019382997737390937648399567551828054294023205263796563042122186342311300902269808603668268897212499136607529463894085727346986886504235090377486026874987439147059430810690241318077635108465133047068261882880041876748127739909083566112706506043004787117192168284021074600873823981817146216313722822913563457623956935109855298066938520727491325770525251955707613178304937882239975604432351905761221502701964817546219318559513097695674851000917429321905804514571427533136779856762981044196921262565985898153380245517335479453353178419871848361207462196502761314502941166876814426558768903692594873226320732899967692242875981359874622779520114332213123073444741288910465196572664295479147790151232665276554101687459623013206566172873268877788344270271873286157880448074243744459489935808648376781394007086350085198519560286264101032888768336977511407691741384382462339719370577786463629513299314379189339507831793858283872427377002352725533664247909122732956382458332699864767909899675717
0000040340906633892469308966795205918188268883890376400711207723959876220268113239424692271871351213598760515114972789375037481675147272825900112258739444816418682733517358318792654213425245987980817658030175462639653551740111800981107350021067271743204464120750714035160261614349156552754404177037523752935855284560125932491158562873567646604326293554634256972028104031972357502306623365897912370825889864077696765889252324457643719253569471083809979418976486068529156531889213670190642150263842377893339658920228646828510116117377349701584847281278416218955660145262134252344465984311143649381917621405011610954287789080973869751043522334936459861562742119325640401278250714989609062719882804640751354300851596156839936538859710698284698403904009485932311250051153174502630923604728242375735740599027308915803126194717904963635468744553023133648920272489421095102595531840618726394268530028013468424584515871308155547156973931481423473780633437925042125230903678653184513300343259912786522147030651
6036967267677014873841105272084713463715422747672388355877686066590852103014220129579374900098567031993396663319921144773230448496522921607000894566009405021675911522596998733343270533796674786803408399564686103634181725337355556271021930077530213970197504646442157007818911255213545803618562507920803535687588267865333997811516273289031787021631200418062477355603917402039862246481927909472066249055926823013440040489057700051264829128842966549633135861945382075126325961066731959679551709652920571114169254526601991366343178266609730711660765260518121455603531446744646451119915313371458693191468198096842694445106581010819005508367801876956016394788526821542225319157353304401836119504035061764166501368020102959865140408609876903846104183579415101191318129472645527671783689191319510964937242520729663157678914338659724351023861008148125975732968694401349187665541925449492910892262613351603639562078340801120591445906667851859665985289698078419361564654979424886794161426802731150926584270907181
5024662435246915806198739041097041506279049239904093167971525992508212039149406249293443986756697795899501456964067579623386930563014264309656564009625986139268671859245269989012684653053440509341398747524030104606607185412642754399924253737278732767349190462948778865354902075810510786913664224453959707569742124511373926778958278199503587507434323132314986231354715127719261315314342719271294395822977746090084595184768412609261427584653055805240114976985678298498952263578355108384417857497053346186339110608346772717009723824061743857332620502370336970262250443151619233916109567779539072981132291193628640662753603743012164345271016348488581426249622421509233786334744726670745395481059907319295844319751847826754124680135643422106179343723893479486047335678234849127757552868280604565944674969960481042842699964289092413270504568994924639757374046737873253396766452249616710019530779211212409251768247505531119759530448107709065651147790264854980322772670950694379480026665343681937569176590864
7060945009276668147064866284223994517697060098986743994523120611873618117736607767358588738082113313167726663003191441732570203151321040953872730239921079134194318531590880733971623490286393044608960862238627894987830939714842144884535463203629932553227583097955644494447044033910417609161191447236531402692190905733751484725143166744924102651196438829446990208032801609976950479565462145364718392333603923159057152846376118702337477784832043239481766482706916264757841824369513621866249551585229927096305181616188994251126086133945216739989026969739507005695937800620494386014276103304006562890359458223572097268061822492424603626641875450748927102967882031692803616743617070692115800590016432515229898726640910949749076835497106214792458856971872041434257690818984504044927273657491727839444749677267606179676305290131033390589899973919544751574577191909923096830457739827792907746532692098711187360245591520262459941380578885659613425053446731685642932310004698960725934098022725758591843420494664
0097233472024540922437152937596174650741416169970877044654078462525629836016494652673638950475393047262425390337411898090523456119066619311927949452277433602159650430436363609905064206540534023207197274843784269815762398471239995419773500057793000380689931766901889548770861790312761693382103171045916707885146136442734489925107835917161744472462825587492731298098864341328417083528537585441114660816750926383228326933243772865426014325965150989401562028350444978408260605764538517248157201318167836651523708504225783959189165163822207176654318395172969408756954840782397784466721700629385075838925609484153074691146001697338959729706429018310134595884909377578406266054344143619650719454959211078697402292744439386069095160898140001115391659654581811028748748465319682888030590949168798213731609613989972972734346587908741028788819699527501368068640196692591332598266182139459491815365756708744018958923331785377019610608171415162253777181602052574445816815637618824706169286542820488270933987965863
7230858966656844469700185050881044831660660755493834430899767473035252089394709904975668341283323356172653046989554812164882484956028673559544993804633380626653760516562100763130467789115500275063140271123828878573041050486343326035476700193975343418185869838208910231901017819185295983090065650803566617972452331206377380091749793709313013590145070740741289951571657316489540034533180300438449331030681050278319661269274613554612900124631228686866512097809545940497884558287649548658996692683292711721473276043002118586176794921995793919131812139946467568307688577224167572830467578144008394922034947769753290193294788261925860663230184347113288526893530392345288420823256243370941401355878936166078857431822979173764032894356522940371634222932831808571650205016184221423584732552611578268220533276047829942348811561789576217639003079974744455205851535025819283997864101324868290368880690101043227588835586963499954972271232893927884619784625304771672870457131960079549655276695008711852372138086621
8715681903671589095496455492965485436375541078556026033538793903423045140832914612837512998036926814663835871337011638748487894326478386399447858898288907633872387008156003711685765253745970285231427886227037799557008895354354001416072085209422491419466722612110005089463770752737928510572841701249449763291422838902161626281422505837521043239335099227380584606362422099475092242892745331248196137610681610215749713230642995103696889455702794616219723747996972536516016745604576123972468732707993783608481071158495883919354630568739924236879911747905018997312450864806561805862406400074269306468760667072266592001536143783579115483300273403762716883450478220119693174470991571554601563184856196208293347979244292303314761752703914996207735645384866969390668106087749708419910778082654169389120850084378665431359569666370092450923066895267341748307967239191659273720196636212131337479782274052809170406155563644065203085300011706150652981621621744822692940487994665697330904036545219390348957613900869
2181755692915138375795876776658857243910438836242248826280184941073133823081253613397452041761133606192244465307806853570012980388443697021883494481400681960390621039474071558198517936464527788847323593852559388966582385213707738428027334416320461000596554532386429724800121718696484491615375529531914280821131678944958476109211239127364633446778312578681590663392421387519880287026179873388684843072071317755551553602182412999820349262454722803639198059646313437454819637207043946112980197389628389809448433608980033786273538846109569410924737637440227340178320716976079401944567613613133500268701981779827961354138280302830152513370428218672676524927985032213233640767046147904520079887393826705902846665260372314278214492021624636684035904006707088799611120220165039572352092544236635666004700658847130098017673489754066984773675790058336746522169897527404614220589401410438932379868850296216553973271756728657273462025276135388042655072564226096045499133766226920443923401176278399149958504156140
2725845502641115542057009619692823424068445887300795959282681559252258907971621712313136611389644507724074002084981153764921420382015618535156682494713703828239761236910729887935170200701573750268230749654772396331802704803727149463983641289822443145401124950748765940938419481643322155960009428329612939897241303384145675009110281601770371901295113870309915010949535236036467339958945458104966400828397785192013636959397496535710236677808630186435312770215486562174309967229534150225389872248999397151739880851464066631005620240457627819447100406464792421142844144142197671281052952419794969071833444828159396610411827666406109842637751976788307685404617282039504468160549067115956495106764411784070322992923330244793597610155914778017618071149459745801724988887878252769534790155107729898519682464134389417084028699544632630495268648983945480882936409982219678589912769372882898551864557870244354346542058057585328482585072004953523913763033676744508526016170863255867727554209959778553254561313812
4753703390034009574525250443879728715955280009762444696629502556805065213386226767501731616512791920269235120415157114458061254106205899969077167736835526525055423098663057195352432206850042203805782507917743559479870480266477601948250445975912103761082971436773286440519840606453539029977303488142734401338818061207394642857481223872747585783958506442793383407542845361789654000445298463327479674180546980041341000489001868569590930372511556804069619754875653198588022423698487307158532619066269133250996693343201011818476981955014120918884051003020916320241055366160832664043020406179492373752024544835718849734947440834098931228732678062781110516886061425814515943416508342783922002663538930326665388799590255624007896718528208425134650947717473090850590231906031342269195869412697515754281971381137384861726269121914671610334297719144352540198786252439413245322468235359945416654381594073230068529199610918534062682250921474934396693128152561962282878218885609626729415480518334410245896011774221
9724107891293851440963611418961316489252173663917813628278792581322497171058840035181083337337167478555939430725507649191715501305547598907179056910918174155290002786082105956231429299919428978483355693285892972517664402461116872713607612148083055573017369495452839487284426212002024454893867540421696950830964363034746965645713106415017465625106107838100829510056120873691863611615512862215355777669203506787912905611268210487526165055690803202589337570834594415092908015969249072526096105158467074799535214419951817641459889783156601080505660836083550414798607812864483155664421794002017266385253375734190362419479593917436889900666054772103056493536007172746830425499175663640094738246018008548201760055791625953905539615055155907579090520432636113931787157779177204522607813034245829824403243160291326161640595844757562533796181338868594854688842660217881281188687956838521695803299732990335945502573216376409449101556981228339416686823633308952335394712919132049018367864479573998051299427398395
0169794065894051554316647494133907874247672541613184099524060518706780026176427299869022626264908376636331274847309316967698423288341962611966928347207435431932390191126805570624779688144950915675304625728508730490785511443637909848702262306440800706681928014881144662677789175762758198358189234131058956477304483851430667648055057550711819819928980301638701878097529419876916023002925617494132166653342820370731204413756057678762999666095174495135874141362379856919924020062470107581258698690253493893793882312009022729739090972978389151087322033937189055554932783149406297734094565637764744924675609999885476072120249706647140980107298850469778024981784054574618494057425245692527609349377946124003010183976527308596673420135536313103015871566680771701850509602324508502556093625838507866247174959564600748069547767847247329141579103932923412225161462023306793253972056392643170053621379710124037356298490253709823114053632589845797768561946521828304343260013507953319645494974561226888299448461038
4599669360074171115877209880016303291682944995649895881080325335313791056379905642352302251359706444704065468521318355113635609735395619140502550371611685260568451138377416433361656206101378786818148313721171931760564438581311159777345409639009134890906624605486829183488292220948730621093111107923398823235615076020076879074907573796183684134734467729778189073233838250391297044007488469252967505121523991403933002461800603621934860497865536363324664679425424425396092517639153507908856013094424409633329633445672473003038117110526200094225619184978646526101889506814645394062004367543218931296676576851997732191859962327041199860671518858989701177833368019898447134222762104796722754545107312405485995844756909708690536807125349139631671369169917586498708765688555896525397156062240838358212424373895868893171822060430575872040630611113631330420807063869698258338865388123482605357627835015478622797581607627128726380071925933091825411987750512436645991898768991038671520429215403989598025441237606
3086957683328134004854579485707183065858429075801672109946297127795215329572181760332839519655127583362888864573519389212683462116407902197496342906846115679644275654328529301092688170049670318972993110680631339877523452319367744092345848808987858608804162284152347042365144857846780918431762919613499581709815394834934705516828544101043302366909777485366504497202057501195816169688037820459689019765367672426155952193534412519977778622492205996843151503740357601181657487023706752518636558887427092323213367270440056022530985326129468779115799722118514678680428976659735378223517939874724572671539798384320330744540620826492121790306520200345783068591785849818799413352460291212749786550261809118907610655116334895470152964884116600861613129601576162311286320044242644450065037809997576481434310984654780572997346900518186402230770787909300315041965708444478006791745427389607987203287195680878880082071971982777516957553068232585693324198610760300064423830680198475972841867843908697260609224868111
4408507125563679826731412482384090229896297532632409952185308433266107119067627562508590500957350257843377277621634098123676018291493931625401528572587787219160729192710377710916920762719772918944778691103222281518139366898037084345545077532739184366370094861734523674607983667042747465334965706686947230326050816566184137564896299212188795356504943166701151346075640975130078801620544045421948181042219597138648604806265725588228745780296435704685144128515306106288230671973632754116477223387165619647964817293598959390090468846530688897397011897983777896021471846949623872790263781728682026896597005850669924596333392240930299668621776519203813355666381453431950121802868883991227877785732744160314532159105493543049842713761127445883900642957928471611112598018557932856476591404262103918285988149831480498834850384122996888635754873434827705663346028967975768205458541759561778981108684134511374708216271426446119261824272949299726093021677788873803605355810382846332976768286474493608397173317271
2132548902276460421018620279683049909622363910242472073150596727764610225833774169288743061522153274131840376937858592287738995677173152943572634231636220953951406052352396492485003764506391511012382533209626820455235765244048706985438002882607542015708624490711645291791002647977000717754416377837637233583504484076418843634262796654453341315179411467998714121338043445609120462697293577333618576375778788290729826727255398419449957852746294951014133795400654693173679377864231545056315505047556079095169785703872506576591944993949533573326965175411296677044840630229494551394998099974662871483070021424888701686005612955837305527197065826120491689425568023342959713642027329345385105321287092356875721304167325883989403620822682676858821760532682614287523080811755418435604071689657143158526749635559096915769015618380202831354743263453639973882012772923179011724614193683651476213351027898610492222067678014294608780435875465026577090225936102031218856567798222780137885030922749132538759991454684
9366661530338870418452737896155588617350370729134827048533279928307908860093133134626064453946249687320949878365626019342695555412740264509530975311110635755686486710623101399444254419962592498834142343527834013804547527430908220581671539385791115250729712823883677435275600547152371755952468036503541728328196122714729019368592988820201491968586140937426520081266903792257971517231670632790208881403564035589670887417432287224835823762197138739349759504989508071996764452498011885574869286103479027652023841636219202971497344077921427653646644282874311287570804024979226678306608759795933290341420777616912241536320417201078893301995648057115929719020513342729345788734065356320532346377288530170550978072931745616017534001811656557000580122059850407746393936011625004954298199664583667449232913969782741868915385712566272121359943577231431630478714920865827781085355998478054084723752553279194918166596173118634615921601225280901676708526729661862917166222967914024067325953473017389001100541422499
4087731106972653400575397622891536113805936968065246712986487303816756062854265274682346018241942645280538116329898055567030422900658844311822103811260559684079116122323752024669001439802208792540625444923076169405029716232041459404691883866949370311837451761791876492240067534335027694431395919579571553698863762751917655599576270025268726301123899669548609499028752739890329598650276405344393000877631175107514932129514978220310631717082954661332036303019261270142091969364353198611638355330504867221641932962809909299643694317646326235514624849828417988636800979208362694264848963303391810608684106604037215428806283194588003391965608611399166273682634215237070002275047576964134095517913529297031179467679511266993263173774461739521836106902651752746652983901405789369568184163192734693033371142019636311026977877754575621817491973376382352703735735362422353918806422338158369451153942466555703996716558064710714410793879494278528288573992654938338660676283383349021250015120545862111275803886726
7478717274533939141828366259285828584980679948805885911411539274601045279615187867184765429512831217124122675750141058099359742197614554433165641602472967471413461089772627077923774337036872508674170742963379000031166874170655494077751044563742522608653272734759905377245896749291970532059182179621975459668298691972417443210434185972299542972688254933065277933812022059519727094577189694027295165091611245326306806049881788547078606569719536273522733341685913277839706044177151417653812694291248823751477643975858452916212421227384174060114335411824866539188501024576856181757078299829537976112502756889246297872274246375979079014497931945438628658535252334371210449981248333309515425663842396813529310223849887535898677209949739986477755205089907659041803033300328370268900542354718065697396537000304179877356226584375872566485148840600190968649526237744753234472632659632637135497489289915538735372984389098033633609522717982294118334673661239688741689155334806142159828166314772881813631299843943
9209990482165282128034659476213888693946913943021433454586732822940717005472637784256587207967427918484599021688496644247153261474560792512488446908586086476091325221377542382016903696493152713906173592167182001734887320247704404715914274524002727140480904703967001122642643513966250212640223086200914166670600197493125572110023665627018083574966371021727855691760776053927377350160899065192121155946270846546019334908013236450459678060886767664481811860120816588782564367647160593376389987354819190009161634056893641887738734986297970001058660990237100425398657049028533550168466970528951857559886495715508800673924254877976031158215465468704513673935712718222418234119936934738497674423843494766975192065161218462730385004093438129941458503458751554840745557982644340847565470079700467195369462599810981678547855500195644814914677499546787279541135237529840961188700919446136657545897274146396373248474367925411520682312397888948165938348935094387770988668838879132269506267178277183630919990964064
9961725421737189325172337419209452838476380083436033482257728913329329052583417536540768244915688689192993152632400131135638848173160983741527978042942458763587035812028530685395775812361635071996210032965698569398705609333663512877756556533661222287110611074007201363326381697199038269290316009199987617936919975252341802865271062925543024248521158035537755922140288364697974652755968188033153411595596986548111662653226419756627746466205976026178683378658557007100415876270601330398952247834109713709078577140149918230567832841468140270563109214602333326710349162719630730596146216479778983899122619201062734292842730536131153698096559948596723653082048319793921477613401140987678913247376163332934051905777028541523066188986893175196418799809453435288918088259635573093215469284852147811505137695213488636254280844679391984798644666265040630936569474620452774443431325411064580246170976712128284227680172401375285405249175682577567940256951598774330740700769472262014141076366572739883920513860748
2180342615175525303210204832953432469030482879899816872743617038076725485028258020537503577259621435348249193593621669438928421372231136029371495271233927120734435866412333304582650125484593221129523711487774594348881615833340421532243195431748475114272289589666585836999048222193123318819083162838893616806725780840959026092456574425551169139085080842272167626929911134167120660729364574006574616763582834246916443043025279235389333856463229463699889211106649797919484759122309923635840026229227681496062013572056975609214513371517215364410510458343696543349328858668194001795824653960090074748487897481599819059816222970943776939641290269201563569637504499921108007052508893408320011210033413748360695334545226613161187536188838073647749360998813362194899405364062888216332431819807042738973275625234805619245868313506578207995116977473074521683994795874481167145166076866355863766479313278652016415229938089747651232685322077346715209843136228721015511068732186830818831393662429849115018148543811
8941814161457899877823864231493175264277802805817635000047974546995609333044014517158779027430366786340689310129002349765333577174230880449426150958869616878167366315149517514759323116093928982916840209200454840777067614665396008616817194949131891626088493641644841211557504740540847238323074538563031573358104303777943702907314398676344080615524023263575805352783678113329428360643078640309199781396200463287398672020451935900589603467783857575674253304576694475912132827684980190728101123076628406890100007408535794025945058449740274664961626267471750857247504843708904249210106200528906697403838317892561727382565023190205549502077125538336846178839572939575555294827545401539180606110130794262013165191004838872657098041105451605771218067871962790283575822841199561977665927449518737328436413288699731617203898677878671156245729727945755784650642110334278856404066053445851673916345872384486888049253847159777436446631470424998296679397758703371471535466098334559659701850574439550668041220832459
6114617503747391062091403465181503176119495524645080150349267962085990278348518503709228523505390620997790366964401409840622861972257458330833450749108413994895590342186591784654616786353622024746412494587575016595842383713149366246549725491271575220314263105667503472233996351089793854411496975725997874556280605678227337315250982669279522599948106248038716722379945041022538116629155450227920115748489735842518811710409205667662457308054526597274470733489948087472495222326109902850741115182801251568084114527765876048240506123801747447550489837898669281491153823299666043293456969082433642373371457575228795333469110723554804152629664153355550914563550104562787114243494281764848509100432331653800868138427468748295586821818925366774090048537553196689262889785136270313546873779719130175529722383089356006371867637789795906139709386042077988637030733498477140999982314516415248571234237024402657984307793902234051708511382229467515066197576660277715858741644128612193716441837860910313635964154357
2312675403428767305906555911132532493670467233215231343949517757046194810349158311688653761374156322745715076058715783910961945667531918413770481522707712859907115021591037269175739960869529515155342351617224943266010080724792015289087038189022853701596742176055203165594794419157138788222396005533799517491184024062747649520201723446034477098465122502688418111675415020536961843709917017574851988860258061682215935052523297943618057843637177490230925079988865554196897569085811039484770756916330245475237470748885865135125037702297074710702902754626260232766329612534572921341997261324886345386914449869829727002811764469054156877655311516493199972999964833243063317072580605148203696645628531901013588094347682830681637235619087103701161784535963178076048472154804252204214005683093091341657701235287964192971696487556313313062292922703239929253999480899734025649117720405125466414316911180928896779295832524022220370841266386889939321467531967396549476793413684524136666186141509302306324541033517
7208480416616542435948549748377979690550470322671484179469905844266467904209388134855003495382840861627725762499182159611406096536300499722124630692155873923613940713698767278440133235639804754075960261992160145496417277585581774360718434608084543820659289274651804668529672577587134024719783849316722365563844393301881724938970650529224558578408282802258358654075013507369771469364842588928531586269716165963057545554463005272919320697569526320748327722875527084278114251589791655547675532496200577643766269561056386824828625062601021841561245012839384208832906812822393567642542377903802137465863713434189966832188595473905088346355787382148027307278487402358586120048944339265232642086257142577736233458690656171682129922780226404001006879356283110338647611668388743145815452854301772710712516915770882022827442436071228748763360633842689809680284877123667688546486338797139226563139077028318234351848339263834425947258910989019187315584164066978921449507079249891242098919981390354725542892452892
7887293848115314819277199180255579448247589282013594988967868919408805923656190205513819390491341368694770658787546512387283743109518319628863145384690847657673459033025256273796010440116779214591039772113401768520573193548806229490884338312358035385465434619733302981955788739958516834176317739413162061421412797057836405450375999584091672540952651891984236316901077318971554226463140099401478973241508351073003502615570178476884836545881600255427239418347512618301920561225714062289278417068819686163883348872666645385191256371648068358942509373519646462854991278480053611441364642934736073877000699578340414389345407451984934783953206181037230231655496359827440194721475637351323874406988034632894167329874718869388188855624842705659804466900254822387914589832159425147685166482635566396964400332931826988600772911196931536879350439040525547727724842944256163616571754788700475503530133990382538332175248873337810760657247142035100349767700345758735590512289713925827298308998902582847106916953752
7569723056276650783190933790381042066514129825002403739846420264824516637132033817070085983145265647164955221454465165669849426666417167097361156228626906243331686246525921448315526484690950452026857179512532074569352435751517993622768913235063378340346599397757345258225658509223602650878596040156021345219162284628912247826461983852113608216886837015036834861819927202954479934812010840355673853818505528940467809273805501536811941905257834512502480262342443286954373859295731620271424581158722133374559529620710758153840324563283717366665444238879999269060365927380850708369931411577073368847343676525093862046705893681064297812754349951606363794871037935005086100172198672766666820597228279354240128193163288491806515698583302161129559840195500597287042244230599067358123627294243289280503877782339297839594281927126987407414233021012512935566439448767527293416688613986213106404515996538850002598651763146153875053537236551562008275644207762269509038613293963986932804936702839198805984095199914
5692565854462007324570791377299300736822968007684482395074255707569411166926246570799208583795352549200356840717405928256251854580794452782353080071602753510730003308364807233760187850727426829066690243556339074006479048577415232613523082917655701493246129021412965094852404910350334238049228176713285602511934901506157472352576757899802221508546385595893920317954368201676773339491622536823573218297574415738909464085132002772473829924417360689551651660146370387202102407554660119853354518675747485598641094909052323969441954045695523576202935249225672557535230299216227175060515964065478974585519629118832483053076192940027606641761949982804523972325459455112105799047545371242292671355403247397825150653211048853810889467909954392550603855298022045198383431212427033224136163077583041388809252840737077611563705808318544098559908862459939930724610363562846756397337370538111278222158275235708035506017853989428454777428882189600258527826578287668930448515929494037565885108710733872566932734189973
4713781339533948093937621622291487384192059819463068556913932790971476247126005343371504963648764247050406203864696145341296911441858343773373863923811126227772005827830694197035117580616391862202825672483159346820504422643005347456711357175519455927335477525098456230304799857902644358673466944568814114197432409074981601024616400694543337258674235550623290850788417136278553340122620304502326537837193525708700675658555447115014878492933899890770209581067164117445111816847982091338599419429111010928562015653184889362266741095613234035563002390622337545564098495067005135533403575222340670560013777242395942373820335962034127005927549311216707969752001452733351920334498140412245998121371469544056450377227618151094528435900688258261220702703076753895841367366669323918708404080307194894932821721700247252997975652577921540702571159996789237733168122301134489971826448366110729476559229179906550123967738162105723559072654096875942869725092834219795806852184471384252152233232404892757066564219641
5861470460139708690718028441667843907288900828469989111686917129813820968766153378183481926614997673133248513297721894285390302362560716297870900946119340722215954436768595069835674879287729193780592406363093457492373681003380140899040285795029732693266051083743619476959022571196654094986890771973843120638445424046551332994518487534302365589827211882726580871066869342526441400683987636100652622029588471471483479570959579410991222801420938014830908891314793210603975979555687295143431529269592362818204885946839846896697813181511152439938961735385226314726888445497151906072328195636029970843356118448715018525642777014769746839376658869370341148303775833326721614747343599217195371688330152689602217744818690093054620303240769113734615187472612672698338035890012550238031154395007028847713756275213898901066189417122813630760228030879476423165126306265056338161899127856397010446926763488019636231586290898249722671051361900884996756331248559652219509970057692080841270891923691246905241932160622
7690939748572512137163882993192503988640520311216641333375962218063545721493003733225971372818990583506915579591462683058697134767684000745968718793168556378370089066762843853590188289403681403523367089919027906496154043592724715275320555325311457377110666331147536447890255558156483402502011640914837793237409252920350103724338532031641001373864466476590137530566335456564250746448825782213743813097579758721357390557262119964208304205712816951292554999276473992881786628588652753763864252307211365870640570711460003793290511714268054024160586274909838728691889913074607837146748161073893212300319506058305851285514733975971787668933277873571900572456841754125522287953662861436041916599677140298030168706312929531300822860511811975714263622380287098410105177706616730160858049774597110568756637336609340208991211533966076382119108608740515399877908139146513310069665199870111351803043162283319360860787883196227530511504612266901729288350874124917165981597989517856671325805499708507983897737859810
8168058026337366922015886843599503333636040250598486106313597958718733992374029805728389366647449418195499891674283356076585177119755011076058315069905263653282171196763740706799187429351530925871938836166526693811963378473679810124317658004778684832528301203241653001599321612422716325254342337932433348261069739341326302169036270233027294511733638221470839438505330636664685773259519099740345890903940939966640161915870198868116292900396182875218924324075627340602934471361576857942692124868450118995905999689527146868224950573241588161148808961183354185794597200895034049251937696178465538768038452163262217226825487891149075896944734397515943926458851066827122322823268219427907934570851985293294825594881719717575532176353267015509147007311213058454562582257583933636861312649283430843781603768230931632095682256295364076287783378719990224687016317176258212427471834130286455020934636462828796693365636859742064185855075726257773864269727013087359137276179959998283357397110243782339445763078281
1052328704108239577368525545844662696173353947682888020048330793439867809198859317953460460270336522461694453849375234018537021835110455511922106849067849203728816133201705551187923258628163015567390287243064580474494362236724405480376622118481264883599556566049477701659407111603137989577707879294620634383332424560380950882378127540298302575749227961569497067142321427927738159743484830151969011108908856796380488632727028317218964000948204000070539863474311227372636068607823744336488998789379298967692886872616121567962155947527050521077839805035160553920362692979313723276280661419650968149567140585223076961866308861523004466253752434647741288595266386258790461723575335026119204140820243443814616548234370049480516650130110578439076443338006145473876884069185456111926960426792194333495885589888617561353453064803853759820599215283143768357544584363079161885562827879424760212135690620377519188092083472655862378361001141676894322767452728594656911778555557279578264502215073852878974684337966
0580330266514438755180911962563243369720344046836368808438972570578304765301238103393414694339543561872603556396868711267640923569107534277395989712426656328402864472965759861647033059103262457238070404243937805543809129330443566624474129944980964301982856804888532477051960168482460720116802644335169071052780099888232353518681815043781237139219754805599400642767280539715710799152360199692379721770834382651996000829555478347573143806695148066238561821255120026366841887814946938633080051452266225982088982796842334334146154685356040608535022595741429400652828960780241580129288609775447629906103234795237619706669901789000166891244048551692847314450940879235775827057751754192130551888424526695575655597990297875029859985799312857142948949793360725916298174493793308589295068923076569377139110262493627052991091434327220606251282715250693778332175826315822647125842178500218939379642644689154508172338645800647156005069897773659088126793205701084783294965627688744238129085772238075026572669420746
0177483334815304125479436254586740746663084989833766977733660622986667694228229334966831241894655920193757143629407278328991686733590427912177998735129801897133303756231501024250531725047578757003146112566005889958695276550551695561779085763418263849530053817409363714808948957814166852987571487509057840061452206624371056978253798995504200440545965762430743986857789160153352958289633040605551840876486880524157322893682849432136767856846742108251754293385925621323289784077926841885572215998076485683305323507960070816085022441591553865365202513574582744708218448566988852166840734103225691289156452630759241954819332177922671382923286255201878381993288913643709179676331228427940611323235997217650250926603270033691477250461945333635378467492909890344227559387499640852802256772445490089197348735045313934600887555628765032395067644212427544596510227897920879484170498614621001699208243606489065684459108287672544934512371713561909782369363801746355467075810766420596210134195965683763612549553687
2458246297069603393817493013393171967588185701611550689788546758774244885295707589940880336967725069490998822418460286091381365102232061840140535566173699464690663762159262452039081839672052382383091659783682222715361703712972210183967854338688799079180996779996881134247777591308583297237186743110998761659082950084685213522204288278552929299109162912002510140216594798358217776626840405637236317382272451205099343519987675689041110715186267040570436348414470715659491029861613630323643009584544058007741421593078388026549979809701699119309576396018125803379939877937293403082248013767794382589502049029527075816457595367388258458161225329012084545254503289069222427218783247397492327162156774838556261364229396477061244361243999524061729313691417611992200665455027893876409979486764448569433192887917772874430241088550983795979568252628349055604733499713092532265775857465169295185912693534837359636676586840166753013320907044627855989372625604792527396838344065059044155070922321786117696994016345
0986557025891687111681751958683715514728472417083932075910863718289108123128524941890427381272645387614389609693937479374381715724650866558617986076258314973381848521454828953104968971347365092626264505734364690983697332862443037681008341991685040367375033455529213470502561947222069276975885014362093747494359198350573189756485371660204948571271791331432487929679948064610071256418671125362065061545072240490950227743736090476435990859990087800938202801533919689133894581703821645279735823019580766760462312162705584090399466298701734973998558370646094197855406643322900116325724410190703810163682119571191114682298325214693069783718076915627547385747262709883895227592417804264637630608522030302339260150296115384449595555496452513598540014988013724294314833098606120549295482467461348828345358857258818886507685735881511653604738580025743808487507648318954345493483699122382107866360105250631072871067435676269357004391325147779104390713945031555904220732066006762355537464837267089105794067460430
3328165743932598587930850402712062762390408247875227833395808103573272453348059208743255988081932510188100155801471658358552178204939610785960497483255221939011418769274460008212591908851834737160744863854141053545429120087262872275148610500958301043792064746754856810625402482305187765531464159592553041576130410293646443760702530872118163677678260557049908393746012661031914556257390980161666929706265433438275331684455102383118806081833133239795857771018753249436690487660787261732461270602548951803835049520657149473210146582545701096984395010791713848934369364041074758100749964486026740012888731620704353766977259720716782233080295548380911950776609233375744109639304667983984117700253343140362174357916044610976459638727154832864758220544342274041328218432669221886881381693604719548620675023311712465027246561207340796270000938394141165637880797460520984617841056433727027349223973726815004218866514726910596221580474883183177363285668732380236678541028233671913028707006622703719940455188449
6421193426287773645123334343016645628467406135683270610086552962467220952531631998590417335361430265547121521984428472069229392848192437104479824425561582308990011906009709882858394316674344257459228050975979219046866677234675301115825619417634961068791401632172229414315736965804923106804846786160170296412556090179251726965853291588004121551108391813802281615525433281267295164390239882066562950465914099008695106357536183116011140645310507831747238183320232224376838839887912286343407398535903972919640218951065324046403120634071845284286961386591609353433251804493226384693603597859763052234052733675157035821990789739943473228908372117879162452950057209632461119099652015526405349884356137505520911423369762211389398278118206845893731102631546969996693382201001654128674221841181418303021347892644624952692714860082346744030362060817344706602799252529455047434032571896895181455784017814789808207436768675663458522822062495444684176929051236774114730863219720521272174433678255289484531143052010
6852598832314690637679333971921868743070060822691570173444722755730899758218324061042685128200390264762749980361984487041734690685889548704385408046718145761358919523665104131287290654448255949514740820206518290412925795492153470926331184019377765825200264777938243499443226582309600669664672029774347365744983532472040142936270921850094406454159015510526273772953189717000260829301127540982932476947177773819064006363647744453877968078551054149876764761876431930521198291364349366080802431680830171488605310905166156914091961264877067461154687207970748390348710109161399122436112242123057224014469678320749008372840893011625989398656249226213719535427122208743174565944444637886123733353468664699795275172195517420237572573674153185332684481552481647340327714579832271897605354997577288916631470652961825552911199165949825209231552029171684679543113059730244109680009789049130089027000573400564283058313306041204041091259878323060226057552161704544485003880130372828727609575644326900577810787626180
3770868574137661278192418752367475691205280414617617791079841337260581013549963810120024892878477032845099642702514431133049706042619373083607198755676150938514153578400077514997186050683931898712916343636592635837457703892604889220472064051025164688019404670828070978183384504933536313980554744460741563335684646755613220189143844015854096054234430590443063323118830001409873902981534418469628399651488769105180305089803008061469024173362436884865232268891883288034426456920382360329709741599169274336975227078138417969883190561247405205299990937969854021673360452169757840726557153246539297602744678461042887255387395530613871039966548357495559610779143266859588783267645024711356944915510528043259539629944841077641777030257199180886802184016380515487318780386916249662728867560073759679021858639081791562631406946098170614033163198100778378265641893411666073996602872890209415162107177866616230831585618323660844393248957814166383400369890724832531179635038199146515079080287185100386415404938621
5978899618887579643148665849849182516191112753577876646326298483168410176141711971802847577934605813604004288865293715357711088501336312184683083624498773496298910340324601537168149872644547246598117681263751574524263350641700945151138643062799457704185678364232943081526237682711439158252422381571022244581502366365571563678774971628675307105126478926965533381296475807321183435229473706983902041527987537760135144205157219236776497889282865260094868368690971507661905371463335566965450546771225564370448943071395807201149504676834779464618572696094000399889562545038915664636758890232264172770678274106647892394851056590546405597998666245086052284570013837749686868080251561441070551418178771382326384261091889084437432582179970724430391700616640729100015868170349212969623588476836241327899082097123163804832308864496181064355099406428021917440157599997119301528448251053677888411341238570094893547243528768467430379591815014365120089508998580066166383977340438573208888325734832002293435840186832
0637977334366512404718862896737909477895832055613773165799875904165812930563777908945037589731225294559273194616760774235852553412724657628108082579340113649280214704838156331371328694605653208226163390524492873109309629156398095045549239094659845718607874043867718362601398347607973591638036571409747098047630466533912178767756214698592553443431391710790726615079070631398194820231138984815492793355215489014605368321874373187128575596779075031095260608022400201471158991907571388511729480357269308764861709272755940356517820723002701011805934894241695339422823790826552818067799111585624593019038672100861585839498791388046109901953490551019983449921320961674748998336031724703802053780774200155014126951606930321539838002764573240431853333976484205587661601908654676932025984895595652797122187946626309367669184549877214624094827393157413783493791617006360654672590579723107802527146996122398401666216874767669417256626475107785892341729520087122053947723525315742373559588314937123318678332644902
7920953351525008858050932343177990582328373040672859136159329015113615799846861154054029317082890427263465020801496869605123625220581141985249549190995019108984841736712839457817938900719577291651152253192940516225758224864235403620968102272665453057847680199335206709557906039003696035769639475730563990068332708719781171108904240722463281848674793001621197009819621538780465890256986631851611477447544879267947146221753677787271510688202263315397010865865445022982240499531954672415482278349812386891009261252746223215609023004499453210266350365282343835733406559168721353620556301783804660362654882053946451649667616871751024849840675092077345528972359741821759397430919118556003222384778357403767780822285644320534720465976334933579367488888041804738584876246732650866922870875027892756150191865802778867271433595282710137200049799870992702834976923774958891932964472880038716137120860856843256204169128899636163935936323479875850770316281498573871629504659296314192622276877720071285763364837224
5627878801969045334490174627609696124896901597823199055169920758134645702081616815276552888865728868627735974539827257225828631377623124860272861098144114922100222779344569747731173885984620020779748722242163295688806513965301240278954501919749228780559969090600553708065725329373322189869598759175176814453596896030950491518028541658870865838191903866881200521244175745957099928813952521556716825433571385739414203721176218628645295269178356473129979074791503032855475204301008744169221811510158358222099456045227664323388714339426367815185503943087967892017780429006305875651821300331547876231129309457162419809182086214579732204805782576398346493609023905828745081146925268903909268323847736729758866714132297512728070976287600650126032197272517838187149888128809059334946617042224391222129769897835108844852860552675999911717280208006153263110270487212584503043709754397364862631320280511007199508602421941819839161715156871920682141575230091799085624921716875465748206023747271612122773765305231
8480230472103620830491318477123199693742061385739064831321759653266940194152850588485245089955461073493056913193720366504218153193562855725219879962084933371957614433275330502370452165687379627916650069893495106265801493267692037837546337961716234912320984208239494741331179058559244438292192124883858415925483451629641076673849717854880619922215891558099622183407216052136388075058115539105493247358309556595832235769754073781682889160371845447775313157337840683413655475481497969508894348122817145561206012817775603077050595594334060921104605173577174545757333191902815610420641507797641404987675692787460667171462524505685342166532338944903858684284845564839672374997421399755630743994189835241517637047770343315833201162915870758634593746003871798633384278601795531731267681341096503610009360210725817380503003207581389605647848833453848860626934324493119148160728411828885168762885193494356802997184841865807427099334210628095912605963204323628439139822310750500824021573991366454140399333236750
4774432766530424704743542637096607013385342443969529391267007215884438388781999678825608309910382480507277357623541996516208096331045907457487295647556335296088261091298851028106091619277945293564789374615732839572233818092696761123954040080677667091040868656528088851428608833560435242867727513365184004050794127472134394734723555430869686259742524556778097577531693870763893283276356339049217400664271470278452019849273593429087150243766335562279115424597844353953931676763797959282677971940862107859014413878759582057066651243010975508843321259050687431487503812432073973198330412805957792519211360910094676028899013944089996894399742985060455622159594006303864203876576400673049851624652503618648173977723961104001075257237614552803468222781640429357861126458542050370744928032175345160668669402843718209107390482152890449501706411419614715903570933532042635880402725708692287360218649108702168310920232211912170887027765415969755561046973929417237164684299891858954086763901027968911647454909227
3988782796795811644378770400959702894468581101732430192500953361099309389840902509591105824925577162575160083563622596966072495937288715182974517026984850858728732044528625399546499006630354005760729872559098396090925812599376866081905973103058991855722685238300299588140683964841040190426339371132241973718047623892748179708344858880527425008178913880779329863084221483174552547954452758082015238405855356925603918599192815491329113867099267691173417194457450183600662930024431047607918223170115066947422277203452109301711424375844569027709843924056033891402435066795835216592806964914754094497920938940069620012738276762131140511712069796648279658427553993496323234154799019155116792162228098801582919817595912973385087212497327146223235216256461908004964887726982286253625648283192359499435397801001087280071792110731289383385082524248897372769316212117041218984152903099153917568640789980627005455146976071875747069112092758126733807665420036981279420950947921201915546914532134710030972853192530
0402508197793212942571072564366782795889744972674468557228374095593837325783175147964241274822279796489421669709034924022060092993678412791072603636950889838595178829570425831679316330475120022473265670240372128262921784490775542665606674504335898214255614936223679639855061299880155777763389335052517382146220083337779975942831341353433516917944692279805097345146568995405916394007912048996416674431294045321260392613055139011429737427447151375433968175317806260767915004153117828326525724370223877174639521711146335205011162336811116187590467132534136939971712086326879663052119018875628714026871548045175691674983869475229359552594666606584190142330406510929076226701406100367820703444596465490022646796381518609396219326594385986121287848507200309030342523817670483002364627608593317947019463287693597892599321748657017852197857116727929495707995139627094194069847129677784293675887875334563494290245916030097328279886200872094631203479246163040565989825945789175130195647381022117482662503149373
0394458938474292239445571919319883546456931665462811491463954790268925713904649670732196656314253244556627903391161850174546151412756657827769657868803436401487873776538636682159605638769781622490199311298636120483565717939608322228499309320778590035136587279534646978416068971097656395152272261488324303180494981483844488364083737383642914816008816000175859123694517751515614104039234292179697435107862909104664270302464123718627383261513911271647724105682245327787249940781840382228655810974444064223803632709957358619259726863893572169133919975498370593740502343231781850832073815554869453814036769798139319009263555857773533410466899253106809633673215668495918340714999354375767230537025482174659012292056798573877200121827202930811883560684279101575508952663947847765919233894760226554165170806616622452962272531540987075178662366090906909925071837919963413667674083910138012229372400183696737072514894536640964370823948410709807052736588603938744388531208251905149377347174746627844193019078970
8475763706862610970123581927767565612648860815348331077787685709955500651217681947369490721434216198217540700855015441435369839850281308889425305795160161687122569342584374025743954893738631754283458290474634573644075361167250637389664169080672390195231658957304930134778831144367116086156325452326170257391660758777029837245797079673672066978566094276001534569192489575790718686581637194316556352887006583008967823396150897855152001875619214614443052579748931092941539088974508562851922165462611349577917086595331294443287737125178397238353543129358395009207537354905243249948431303483336932048113248969756837564163415191463030836774321984736427136460314507557919867922099947947040623533297728232573821806850531187220505731922334706262989839511562626188384341892182696929405765605487696210471658439060165085777453965613615380856926347802528672749629278818285620613685273177153743926583711995766324797133314585195449011803860719412237454693459397828501074792725164059531187832148299325598668408958898
3967737284815222598971062343558735570517119321941871355391690575903133631703813448794148653102958505457383091029073496524884198591303439301884183971762404058645790330091399097516398025019808990335168371428930758433330405676099889479883350876163624912331265235578631015488127282774249282331498447557230840811121065613800865122515844365888177085495277066245543386932029871425107703371732235255581533657315423001676997141277283302486272446144462406807115395164270412724020530332446468256080332464755610262401347435839776773514256313297010238852084595688417827080917404925619220782753121847516109808694330305917103577618578445648265592956059551892677724541526861807437195846740129796867877120547326248475267280700456469600420043827121501696801995291860064904843489462380820830350165007650490266086998710103382461343239610627174360772963471049970938786237625287176514411287014737984859858107362390471738196612818311991700748230486970381409699422721199980602153805652566021817076249940609288825832554144450
4290049249870805535951936201798191353638908197649352729588434827551872511714344208098406891728674108792279482422313644937346829364749615012657475018693773898632713266932162563084146082894608016288670035163170712831328021978737958135299853158267447134098983252797778281116104000364779503996249005208999646973621593279143431842384869306400237617701491183273846088714901485726462291174136674826637970526747831352205632656976192039458804691290159105555645463334594152218214687426714647739833622692236621811152132454336522472969607992294760038571910772283990618904309494091411134620593523317799574313426468567824482747728507739516100874929949381754826966536610343079980443459326609015220742870797453441999729669180017694831159480801707171459119336145018510112623788362644767187198343006260959608193998840508298782748604832054863459840982085584667639101972960036829121030748032558009520111625974557691899562401346213532933763992503900846012182594158452399797487216952653410803154127162395685660451416932445
8061513230431478637487480861371210627949972439354856958688878298720997038755051122357850638407716641289023747716498598607104299782735038474704497745237178393128565315530832268787675908557591922444092886645851176010836529676395883358442010441435453038212626834741166598906546151488536110230052977683583747244881511520679493635113061533167073243385708279868026688059096702686698169572574104716313948479726067899761682482063025848523035178468951299434777159419461735912002396374153981338481728902586337271418468108748682963907811792111423395721603354708645241327993035832629158831602954113376588725571621615048575397967977724278088437007741111739391447372641836055522487935752063433049492587552579138049762600752255919606687884162926235085772497127705776031398555998490260706453987570094630173764274906828843460547363040173767667623876747221562295959299495127836781664557420899482416243695805726050424923085706654581617791152085022556394797674889468415798206039287555579978868499314923275148523027828150
3188991363052697893489447685614465957544338348809294465203026881099833267603027076631512940552094147960667356710346122596111466761443751972936959107588751027602775913557096937817051375417343155266030091149410672765788940618961432125125647627334971331457005890516463306682150179578288885677208366927157349594267854760078231469870816454880823334029548680778379932876439347021479302699383940605166155255618855708392192036446132459428786890686881407149326727075552601711002206652880962096857646643792347451457133037190363673772894940386847517715876626989118500651540727237142787521373795800445587834674842734396487922510667021510690620839015080603884628475375263576112418679369955883319876722460396395982926637563869307354586975863061131083854750946104173931816312221397507906580932838894165420649684883298097124785630103319034723802780428360032559006667076889392616617469387543565331653736190165928480106633733630599668441918164351830454430652863070869013193254868691197502922297082885180279045638694635
1935150242964898225088656144745176934591977675784866179197388631978142180792199294661786750699848672829243585252919688358475400834891040531876903101769897326719050275519248857936380314841146015604590878931860968723149306611212602834236879224962032035873655349744051678782758251383436895759418966855926193349553230358597045523183702070784065483324023043694309863229521817883992192566722682420962082500814641149744458500597850347436137197882753402362956899470152232804840259151363525623823341733730493544745965452607596090268010320057437536889656659286763482188910451959645304063319861399347375109637840661662789033370539436940502492873775073231608927936407190757681671347561505820982169742937841568412866172641741875605999267184145082858144610153698393396991354504607263962881466486927831618889453616595969455299683402809925749705001999970340229232448787628292299336805551464498182329605030857518400948498341949144976401721030560637047633220476541532936260824811854914087328380614622103342543094683080
0648542117344465103352920239163944341047676001309014388256575185446092306444961741726914841815249798875746625718854605107286639060826645959577308211727040540631832513049292463327383055728998514551534387191361579738093060862003705578047105229191752351665371337390154140692787834924916008637947163061508718189392591850379825374613871562207963016635184187204264688641032305557576552915824733957719513601764690895361605468935090194024986086059262023538652359181993025155518522568192428707489307225154839572968104188175423747942300758121382954710098504515174898634051056648789403655295184793712883257140525022168059772854224532474676475671786826045114404436662525127604650879199907999505901416142767370652376323385602385784520686334038397980405449320193876102033097738926923072946831757590496146196381538176164605286830842655521159578371236213283960480035780439793707479986688865221966545731663663874178763680743705292039332500239394838358403049019625991602552182793821210499091766399652082230484798684103
8892604457575700269569964897067084619329415151042811768367166083381224288573118533026741497861083745229614500106558060044265002615926918234570291667418972032057727028515119784525362737607863732188146054064279532941284922706746545166514304935016480222359554437280060482698537077424369624088681510634068511024398859404637352590880103468734317169240536644453553372294145201959854848929609106977902535427923543309316227484005214932228240769313869106575848996865125268489339286588161209285064793047824560930935298445636417198896429423413533447557557960098497979599139496867475802693066421533650544026302534619119161756468880265016652961087173251598912228993492105738871999585232910018726718000939821509637909140368596382023601554895428351635534142254228361163129567640223394968061452966995122724204520582489632373767050186148102176363004918489043108544397118990812711024261032284460202330841735049454132061348009720202995138536674285762013159393674849753707511517464353522628872075380936813135696152084714
1450581001288030218498827069172868891056758779360594589360691758059267412352663206911385331881355539713357344309642547375214076706318132791892503120381677259608695079452097968409667756562818243773446501227260487570989252919589120682487812036277045729239591577405065066608038449369119857272141124254961611277938489800961056857086801716349765909079707564834531773531619726181680157255699941078001961310575414063226345141592302915561860899106605769646943014162998426434554109842754142019708136228746359994406434301685287352339804794939180797287206669283411829724358319651438681774244842846478542855430670228371658360935010805303270907427312864319968990209471801388033806253184336096278777820282532660165015049802234515450825576350744796637876561723529566924733105857569459875299290716243805654025794666600836792114154949182962674949783478362050757572021783129675921648696554976024127742674895203210776418793166657570805540303072175685498845541929285238691682332668124013673794139725119463547958597657873
1913805678410653039778731815845212079553294877546065878474940966574469053446607610781352373713225068628694171682875096675243035646319367891327303634988621902088838677118717441414409024254259715317622887624365397200702891237497549989881380608774678185752314300383858936147735229856555558354980646489526697112063930838338477460983379253097768623438596602002142302328710702707889065791354902358230634854238598122429901046580923554610324963012461915396669371601171288392734571878624327849154513459352785035313887498439063083371351429746734294869144033350360067083344984998725198520111148993647241807400978951005892823390003973549677911445026812267886360568856515752652861284150763091171253228287354608602901290774090711715004752903566185244183087828123302435272492396444025311075048986663919946339156412706943622875911333213404675656573541098728255270793090080911517104801231418916451272271697372507924156998642193647753043763387944866361817051284619437945050137542129040242387382085830145920445865254543
2621554899298069499123409003412335817127617892340101952504624482007432699384289352913770650058157387333154713908648198641038191696642373538333708191826690102174414785254415775727260876843293424470162211116521989478537222668635657166314773193692703309000619451777350822602577336585528703866571188004102577704003852732600400486999867067501287551264181876363286324044093104619756399966700495337289089402881344266341618776915105357875815139167735798105233782246950663507987750109608681226555788056579969155782863315826723407784228145173372401849749422709901766007412539411283141901995745405482019166049266912508914817081346353555430819998775192861746724080351697624681049276250748721551656986549703059452380202893738231787877408813001856794445308119557747014130077933489452422451159140177575140465014444792627202454356061576028652398514261271163066071138406125856466391160831109554770633549157413088484879360350625077825558504731511858647919124143895336214985806642071103609885521903985645911446148211282
4878706722816151779395055288267984697584182442237643395953077664080077658647314762208543477326567828736861036122345179111031608909675350309173479128698968782096310864429021846054888320712270304024820469881116382248255730353235093382891716018013290485809040377211460128225785526453365370338251558152455727053690677812587934380865871746876198894832436343591785320700350212157563803389432450279214213019340666754976384539201615821895474687837433570093347556443057169928100177947699978827877470865359747764554020045362332214884621335254015915165762309991921642046325105867294943095368846607374811152503626397681931890629788094382056711852781823945835814930461065673928593346124807189094730413174276760394953513965699992870353056245531579969421034689986658063147481274754359219898182411600379774689849610725460681445874220653311268806398918799784812595346872173588387505567893810174909227746763922704794146482320965049415969684497466291877529610727220661410236457357773091666312281315870018600223455308639
0289189874723940000642945898374478330493281313300843132376435857060499784832408572706975262645642180352643693151963987602860329939639694192056836399551739471453614110989628342824931354771157121000117122024166932339226896185268644006492607802918469329890758350853261149510148260933379700527447873078375305874787227170554413449720867238174490517549773665170964042640122098200134076800424421616524547431395106759985859070022249817879814097599948236196802980209594498471561550132609085318089466134857266562751231911603621973853401743918918982348383826777987039281241900948035604319850149249480336936271249380374976873929731506354256701406619499280552938292048762072857087173862478607879858320882543189556329362192368979785563058875534847038803500175666450036981999808929741571722107992814673589466546810243642287763926250217534607496126468163541396662986683172900566839402914838650035697241677635268800352133941320988094994995582140424611274541369114807563716707966117900171512820078081863872357879749236
4963614423726168263431423503907662169217341809329743910298584942962741841759347941743075435254263336188566011865031350334039392787547481523566603637570568440669988489589290775716973144687204619805492681304070359985508738710400000786756594926020468155145661313727737491920059540311615954518014738438163094418690449648969237296794597862141062705271608023420923018797695506660406521702385830072646481771094827348280769451343768090903961592925455777705126846257168011486370393921066787224368942116110531717738390891490307190347894728534420475127144389420584277203229206040450299940169344006605694624500703023530017859541552463366776723441132388474490948406865303995122767816892764409279784856980997248278778651059280201230402459947734549744216162414167732155851984575639220890403117782269289393087757344770357273613806666355453820296671493680842221756290655552457256598203471344582968503440896063224102771915050800082702253638154990964893915416365290503813662724126052278780008808186699088703894183030649
2322624119019741276116298451476362449770755281739766730516158592013649014599109567150516819390624721280899004037484456330929664751847277432620446336891092473535639911505526631712768155608222038169485359714379335940456818542751624530219342209995341528145892691729293804374134018080569199197301475701220641397560422359319376074746118481849138994282311115024803169219602547830029347733908442451521335232040639846787970876682994665222003776475415104713479679084368472329008014682333066351995222812463312177266002057408222126529867174854417768276191228572555853737607593792258996670620382701853003198082397201825072526638954361561444216768012695767620144449174636796820937812985341004238536335878427298781532269223863302115712675484148035292458457380060698691970622870137250870474507504945346717203172740645093739738932037337330409629722481711623396054707896658320788226500526109997335320659379426095225906947762877227460699891207060911054100779564723016152773476395832764259217436385171005672530741845053
3168387425688471499548697086389213594269339877622100022894796841169707216820600210160965361805120875912907255577251203788819302971272396683884219690531633944089023147242072814795883932213394805908481027213763167276096841304839371817784073204434389004432287975205708852051505729787752895937219845609951637302234692150492637748990033908787224180025549752360829791950046926606948852649974954224738839281791165762572318490571904779187172594837390210004869335953990093318811277058961600831660659821796593110256063201058159911269340330079470069908296601951359627411711983182300080504958751796372789858087140900192095520979834070489237119130081020329117759616312756848696528641884155040444708090193670953392776684368711121260588262289866811302140616860227642725375635447605663439379388193717994629941260643641453294490170693518797172681923702740771658095819898548099577333856196587395868011004869873508045992722877096997382706372710947712747512413656315256604981340425083228693632086224504861505924211580704
9095667343391528102121532809750509872533566999166500632977584071327781384334049639444678396861805619940668081989808898831691867666421531902962702994157094771789575698986604761460888095040524793356689251186371190874236754388289324437980018627827113603412009484259158975189392733565279619423788092658227037502259836059116056926411991262559761147291799478901792873512696388102206429430267255048700157099236011305692725120660738530861095955419200516368664590627511879488910207740413494726633322904540072226380381624560279848701292045846900721366888338269790124393824444233162177431426955801008817177339564020761124440500989979817743524673341757174395939151422342227458209231106718630078560173968517849488057316671587996948401008305589385182297165465438393081426909887248888667492990102347220949759202176850593678562737814910396024715197771497694656594985103422649565789186502801102431032908462618399104638600251325181451178235093065764012069559030440704553908594341306725725596300729199752251805337855490
1886697135541440177437486792610281937739562060744615178180601078934999005448086120314735363657943657753881279025867606312109869711453599239039923490592496132789902238371241069987762913179948670038064464427932498340966076626490953733631092682290614235302011194548373728821836861220242832138766347343306230830155419407171112519592537811794535260195943065749231797597353591268417397405665716387835159730029726862513361388652792166875995563826662954448033585165567415881603566725280110251569709863919397251163699240399616107492990001901379134039924583917469275299039471733826020567462715499087191755090277829068110756823845378286983697978630720798730567051335712877795113338779857959017822963640950363857931824162010887967323883972069467515184129482246996279173693191776507151923907318433784132857953248223352036947985015105489055530539800335329912446608437201932560277812196681714126793345851236869926725260407375411839404454205578032682540276532962074324914702250835612708113354809004540064705189274656
0283243335987757415748900978968875509003739332054520402144461999802093102781969531574232747740961327377966788123494600476914924303691828563547828573901866130361747033126269244886001663290938946853816348548518524884128198966959800050558406781856671565910995405639818254257842321615767715409182985092682578516045294026459712015581200136718479981014312819886976764347881110828763755366405864080282413713659392094358439280120870774144573764578512199993368786532030030077977350992820119066203151107933523255404632591857595980119480811688403636368502514968972571983488693820162853501717466124042973895376901424844356082318665946684284281715995785878132201003762636191920842639409440130125090007979403996807985897318571585096308813527271219127662331072244000428116551582687015417017986291516597209513711089282200472317080407471777677234490610599446191836442173789148941156059635072249409709457865452522748504088841740613655396363746806037385706451791186720863537741840783961481203528888365681445094627548413
6585405144871758123000186988162774335317905660178629595201765690178595258426010656631866170248426667626344666246718961762273776091084092579056729952782447822078604328262301780691040339949541811570871500030783767186979393993390280057376966223510101311717353524454607255625472151102888239149275768670454432639835269162929727371960036084515798941519963494911938097699403584959585344654143351810087305254703592508860905316671716796439553506385980398424260533354283368828947696955937612072455003891397468964741624141716595105439638218994601752812435111451812289844657306182896623177013761467377765384639157505490396114711100010941533591713180894815099098920977102090728518199076375579366909325436429660443335335381628936672822182541520067649488863446386146102494578811168697935424315386968064397616976071217707719753037296973742426453510197300037042216299451546849289642107181590028049880919739380132302694819434450001412999110203872419458369769806694515599358758878879507368054254661164841606054197767154
7205649994916745929302068358085425791082057352183324484786843668057305397004522398109896729049918704780579431830135524266961575378943730012116795194940261020476511602983916780669228681045887063839054865205450914106560753476405867783452127391112580593248464763953005046797641121458259243906111417235427759642676396679041098163936406480680746630697444393569541714369451807400737322360147071424067092485403587049844407265356631168874516892729315872933823652194049492387830480955376328987711774382178237646559862687545875159972957272011616628521362642581439995576350426378129634363956111145310277478517446330705750029849229436383410700050090390748235169009615534093901336329958192105770556899698562516698733925719217296509734871830238909357119945347278917176437490397092769045163607854450169181442803549376685202684680934177459185048103131162612217504907796885451611801555740952287234115242352805169454110213229980620907017770632693059905672461492782816760911972689738711656703126383433729836301836219757
0787146529982279512420467164849394983261186117461585454696346944567363759667264328704694020962544271544960200494837217663522503966138305403401924124127852734724551171569391906675112405979143092902432772799573643610752746733117259923494165678597160162106674119303409681288971967935811713347616234878758198394530654782428535063221152454234584742981160142470832021050373730440929917332679340189354581285386015888705580377662627120983059656325500069017065872911399996137845261279787909242212243026750986051421871059747295513341083097552193838553503998704323368582374456756754879487475028807794241324377589031261919691230463726536075562771333660826892669660046132114203911069212592408764494428618747970328632178817675707241751734619441041999199282624047885370385815248254506381637206124058560565202295553829377054466150362381330417690890976529826299138109409820779850705847780905410779531842534904019700889532393007540775130347886389397822516949486599868269524401337231493395130211957312805570309443700438
0562135471907231203395549827151722545301290543360036590931432775502918938654764016799079100879070766645286160332947002622323923575606693838319401417713263079766354125004136229188125408912061245722818360064576989484560175918028074016273903000603718738018029311842543472402919653682523021817403377557494573446962823826782786840478740020097046873926425261637283394912395602503121706706107030210168032711366160650919715817464753648191172068288050683033244651316030366040156906439800707197421913574030587512927285361569059059436297957191897319098504764907469445549470833338897978987586442194963316023385825469218319034419003902566155108447355609097233742413450169020276484298057269100637716642940270304301564714738102131754079539501073768692438994888192588635470590508225627508309537744576558359129874860087043595549261307197167989457754194861760106614117333659847440177206116337383338032993119435655509451133280135436805527091546499888716786920237011404223039544543436615320786020258526906926859866847432
0951342153990357456540595685487782884036278212917046652254954622963533844877601220489752714897672415726581842434197556975075652890795007823832063943792482255947775992772846575369909893782322166994290031021647561032460898448949180836429737254696271722060752748402448255283825494600680241911774377074741285941853375680437558236052112555075660387463782784294058550102966135560200546237806614187842386269660868808952065633277742829379590956824097471027106107952563436959271654965046747692839317964998005212152166163917367822623186781862566859794679118305119024854446407907802513043130738416760324304396865309909384519128407207893173166461658039484216626035382035093205937258060829225415232651218229415036312451020140351360175056543531120248418638521109252545702469334815061655872585982729771152007166110175043617540025623887466456623912739034045816149020781011437340258494212010617279366823332233382618327303349288573637140837522673218990497266771301728402423529685689377022933062351195607390479023468015
9596394604160325607411354788924459574307045206758920847647544882656351883503557446339890036361610397688371129880747938352320724881620835608508279020743224728827039730286902074332977075222979026455305295089453351775116935440593509719978964922376934992069592233585838334733873688594492091273071152618444314384296971957173821972479312009248325518054910270464117247329942992051741180472006416988929612322622696274281016806701301041101711739977245316945680858008316256955769221185681037142438356492545864931039110427521535251167390481479552538371285647688252982707607484488974039066163167935211581130858979961581536127507552573805008286022015925836303320497080967474868739508095102739238870663401455985517791562583997751005207859179252442573707745806013435755772794554417868651715907213221439294942214600253939129291487196767232538779783602635793312806630483318488313248395951915942095772489837241951008995099693956381626997033141329338493121100384311952868265967954219702382407897086889497463238152804928
1536962650686496602194996435486336271985791788715078672963261997734373571242932997581805611492530570360090590145652262660955668425024039160503189862533368032151323205764482301061553262598985652440442468780353502074487831422591946119000016082621110337998205966541729257954162001278923452340400051209017767441684934021708551262570089058941280568268046483785558428711179018844713758667100642044193858580273595942244491336113605886790308286156390603761678964594285770386823044140006109845657910044006279702792680286785522771824915703405141042303497211508640461202117191637198281454533740470339597666178277974644125838661229614711119536486592088120861349619374242657881051157772648321474677466127428489972433053976893561057232526975552226646576110097878891205151865894341351933638453017652033964403184257349784614570703253043068096207995083439932226184290433656149124661313221130985211940002745199786637117378328632316900003248686898758871456820498389424453571189078491518550967391113374244928921094478053
3941420587360639571485182593137743180888375349339512531576930977583126007947176829650836464945219787090886327170853649402430932193326252710378320901188002146129103015340226398851422345357164056612173427805590645239562722074271290270624382207760668292060582044812539004206163543580791244019440868303913988040640933346928790357468627496556579514322187831860881030243484129815673979646181560908059395376635101409535822836136173179788104983579931436618142638556678744757694314105491273974255102531583995057627895824246260809133235923348980746574320161529714114277689503858475177126002922558082149078319876346934893813905695888130300049717592653547727772415111645008611975085714893863463656176553288740160658844470190216419309203624691131206879228311225466950435654666517744967429006021875868141098518645687207904710755080113658857324937581005297594297210986178266210158539395447768455719869264852830810266180712576939737988427198581482560416185765656670578061183979193080104719421713472010948978758496481
0603807164907104717776269393510125264638091512796101898653215046268766945959650661002130210889277765294561962728256898891047027762466309017588415614047371388167906007326304552145369446345136055499749697332888835082595626598321717130715799199917993853845584453680008439835248896425365199324912724265105527156871643155236908264062354005599153253793487540375854237676225297040228653928797002459202130779699501457649848226876409231721602029546819280353038028706340575185044462946163838722570904252087825736918334549772278327239059651606876282707698068213477697646673631669554763042259084629148939153108685211764500068838810797520248041154983496277775305104589444796432113804365975917595908917468989979391109650710773908482819663089210731147337689840314848768686239858436441966366192395153043265493858177200153452478354636489581062539246645796331945995969689052375239651368190770313227218152290173130583590554839870852001921657999574856898123766867070381319000151721881013522150573176427942356341979452389
9732241097979334112566228719668813077063075255282915212622164660056393988061371735282621702962454647455426422456073741202101262427725229910347237006986512001913281039215655889622416541611271550329492503953029252394424335183311601058268731056746887898386016320792846246939554213753918083588308823866279436953036327565881497315651601826419878342067859776516310631997767729045878706991195361829457027051952056475744570375250179183431188973786895100080529529227453043502322230723722505626509433527299074498381983711617703403034871511035782937561991162089365224028064029965242871519909447562667185933063993978653973358940871190408367860307412804496087049782989824783963012295561840202360185560973707699527679057828300474858236176904020184109718070151915583357961984622327812163991380656104729308959977915199453941185445523182671026559750919001486402280221631663837277025789792198960043838957945493712967033176266191834617858829494687203161580642040225220047706464291904167964590311969766683749073529355343
2750186572428684552887099375635571720058463414818879543378187392727668196544267494264084885664558829381086909674648272261325704729639278848181395066800899759056188143701151877628497320450715657788775431116783031372824087701759342482448577649566160642195660084554263516325111783050738399925586975562521444947440228167248936977796758240116486846113013301010026340651587511985417092393740479536726643682408429791101290829205665293880703645137132838989120250291601239495438431150939468933690416537959385471235295701095052198784250114310140745506671562296735370023398874326480847298249098495589515533209986781943981998821412136367358367600689678785447331347631422274820241917033191123395011899774553909094553739108248570004978512787536789765481821280707472951176121236967006423742063583477724112685199407286571065239758164476104919714063336946148950099292606487852921523747928371542908777087565737252520425482379194621130133628624753878709392004651140235046367468160224542742490740498530610032157071571958
2266351414045970963035606041935184474114169980305511865145003329469391726484350302875784684991059787420733451533717457024072468831265406636116290928763348999219056821071562756688800102381591464318773726852003123908016678581555569731829643814704781873951956274156144582336028572384266819649177081889626862807277273629072050254767346894524188990417950017864893363086823316031619957500171055252735801996728027737517645034415653763286674496567075587328802579114155814650331518310135328608558791680657878327767586561003345539675804990179423965419134563221666756542152979542326645798878743589820584704613171513444535420413277465570654835164902220044975084054158563428004468004549590264155125067337608895332222216870362221139469166217691563283939094793899166572013933685630764264892119728402082683969056297333840502475968172351201621137146564499233799066711686384897625081793250943204738280021752292285790633491335260354917410092088624596365348845823420603150546968852842822957039593738154264317033082296545
3937594618222481212987877726307029685934115276065812385463669010038414692935341484047495570891363068359705307274728252747540077078109301383525890018917784462951943431465877589340310474364811331186695887194642564653989252449781271552767477008230572459027350944521814657173359274470159902534384532972167493542171830567094442966561954126854685210906888026473344658694431513122397509834288334818078528965288122052599076824641852871644191268442326031273640013514236966915645728163137178242129580570110750247413774796577074158406295736889258926679195580526367742455338670297863462764775541452221972464072834298823189023075607450211618281835371447635528237416147168120137849088180430827219362133940622501726129240763172512845884487909478474730793545256072019239437166234796778859784326928723818466126916723173663748818348042149988460073696364672968346583060107977237743620115054858820201419518598328143237640456679282298207356265861887937921996607241191064119566995400391666227542752932877814645517337465585
1220629003449567866515375279494128581534746161315522367561437563839308526301413246293706095873925386999294195901105675561849441182392536258893701007722806000682884427012611970290138932077484580000754682313787559583077036166524976062388508079008529211170832352130148693027853147304357629908794178809222755169750692260888201891775732577505082021679201241919706627872878113696429137764230529360981244798269610640383269414934971186318121602445001662834264621767192853667906837412761233654840830930071043187218377131255818490645167312109590941458272843583653448269215362180018323676027161839492674324205996074678029062849911245983597831073910948095436242215438775961478087899742446639905439789042993035122086910295749445056766493714259752130292945152630482813477776235357496612320385478120789030335509285939135940644766567287478044880287966004333427837446002153261316176414526414854545710711355273971966405280402280035615132297431000160122305572212612337734052915251597520256679228847806865786573899447331
1884404946248031756745827570390184630464106187191277797118937020781386687322790437340332785586389465856552193217548780630521546663977892067044871600933436152168232344619360850546098859502061501948349054805350075930414557567319070784270909352226405848977947860388185141701506821471398141478440194839696358096751336489097693571243676792663062062031039625665228189981616776627042741498395504988164224565604949911065556697024953697263200339046536724238260017422099070706445863806402574560319117172164528032370611201226687894332369372155351999426161242142226394045579061343412256114231325226398121701877512302620476251782495585411468721539462186887610762918828689266429612001673372983518827404926485466951579371222874358002705192929609387263339903639686688339004195030750742122327832444278070192177610872650277805526347079016620674553166595167646054352713698289829586481476088288071553402832675986062227097871504245619457634701738767628612273648489367737004088763356681885693743842118138947664813261467474
4287025603315817287087048936713586298560870505326525788859098774828833342289931741360911014116219381618852928746230268855956062472472526246371649491761062110156665779660542413283633563701301727237780248593705391171179220341274431349104425663042205077558643984221178416446553891545600127383207812052296449229369255837397411605935939309301177660412211366255040030875666272689767908772838465355895675341628051670616642563566645533625933984299424685788768361665033537626462755687088263658073904240334940574083690099650301618848228674607298004133938003513613615435703748479093067835051814419169056280013275535762621013761081585508745934497129086683186513413233767891452914421497118385043888350909358229398076189305763138700248363324878529322261892147438150041012621312941643703210772993191701477264046284235498048567518207069289443708459882568051959873772551997305768814413399621108164041465808773909344543790365230423283823820766098908035485948981945047767505955291637620853971104541043792552500925608212
9335127737984585497078585980967752101499792766117060007500699461223813371343553942862327986774859621709645181092640465535339535189057047203758747686692529388885910037318400056516988255662043525190797495974555327204291725981126126110265497895075018166927896333202081275312588176415849485223174388204064297170198380156916879641353092858768710980047450344601056422847469781302682621804718606200729844907627129018095039116273641830919182202681539974315292623475907854057415566870176584143277419213616631470368219917955832924573624328311827832899710214579072730346575797108478734151439644852280002705135526352262917477281356749536062545810336309732709113352914774232638475106620865623821618878312204600079975850166076647315268201840362530112429482663009740170347654009768791458444633158818689062045869536125929101287626603055817806987831073223742441387227771683507639115937071556797414300414191216721255376922322982628818627511854878841636646024094420026071700853910985620681490412962391261628334159489982
3301932872270429978392316285211258856514687317229890791308668183240679283180102861333996969238493906409430440839189246212991514030865820557448694937773229493276129949032059071804582884703475920762727152962847050223612801087210375115428117096337223088287620820610786080118611949406787421608320371337118045327601526540045275069201804205614945844855933226721023747594225998178893106780577916630086284410617919574306259580218910217071749044372838846336564521219583448627963716357463746336168645429924760163669682442523041586930322219128011057008213869275948756972591962959982651599755852785686636874293002493222058219182802902047990687413449105033154688739222167690927371611887981110070181999160096176373847155678837802465272330136683107794736657339191507215647352437601091119565090787440454319755926717133362277091234963407052731178099315834106644926513812557195041524741493489065575538673229582580907043035206414038381497009837286084121940261282382679146201193405701304997390371630927214295274813775108
4700075152677542336334315665580607169606690612298133468731834762817001829294614174389188243815698001979976024955124582115097349801214941825708889590337679310104580682499222048398927746627175435880450474565081548621050770623343651414291430717474447201187806002600695762707430234320679323224963116075515313629006488781813569994154837468517304720369526576787852033865529008104170412433197880106188212496879612492377842926750888523343856029010372504881262744615058332443747991645686378350769570511176726380742535072216823250171353462805598355280644042759089083099028411174108813843903561050679084407577079297267858136272101279348178233975263215015338563730878502891490347127094476336946298240603444037346976559343449532937182925973873980382795602854599015150962384346460839545231888182948651809978952161278865250551509449801188581200302242884441799774155505823454012549778103564837947185699648120118302390686130238074911924847075000497236461047984897704062885072342490626299010126924691443961433165336499
7586359612364319656936069018874217753708130038607127317404774168914248053638834215996098090517982981928805650729822255419837805953755621391291802846581769217702587340031163046742125652334951330629630433663216704392618149218547546689489984361136978677092397600033314520361257525405361257476708261242340634035233900703204511271045912390621161801844250505635602979626340361680371564888590294349019732365863094028375219191098461498836779244675542317439292283039768267435709972831287482262641996732853623083337674950456315942525907858947742053867669447150033967671295631873171539650511814187920079226093220752485077211056007844031348126210262510187620676775207412544699719129522938510557280857552073457378689588854021732379388572814551790830519864862382767630154810964700345693941025170773443597794299760103300156814878642661783705857330946423184926846610716032926070995093142615260186917510790813862431963446182948867140679958738056946266277058695008780271014672062183725167350141104039508616942184652052
2836622086415203300211013089243235245869496506922315597866286573259388731429101387628955306102144946147691639150414484891711289815905106221540028982016317265216310901311493453309092498234858117994226107287563642867908613651108444614977912029949049926325482380039300548381446413560148972570476422194488263017524754575886007134943149646090347897230900693961987647639469138963429291657917433118203666004301354431177756740205421453222160258379438847430669151726114168339118633642489377676951868583721059883362297725403819094746553233263098753930372261257810235656232365336200157688010629427247321233800529814502258547887348245506765985075944571392163617201350870374301219416497386068194939484809486655201791071941661817398574057541293749150659576276178350392774393296231024728259243869600560763783434896080182055035867785250694076516141400834608409487825564074731796890588973604776176704731378606672129223388713089169292439034478557041811677350087307376423727296275196923301473841266666046118814698364924
7052664384552354779908468894037331082814998766261552872077548919508758777657128222462828971037352644817500216567584566308873555543520511461147995002870490690763926135442211834016495216936429431483405306476252162607175572908641719641297708195674515699511498064581443167042592233096808813564885088267253018784647221649607329809331672971162643929173759342529236945117040580235478228221762684034128018986633730786896287099412728613374668882303745042463997997297264724275891299151340282579476166482927131518054907920862722222623703846429777092924184531468629352550515535601889123029711730732537472130146267647660494509175123889718152366142609224321998821478736468915294038545230684606867730106183050956058757229083166607590425707681320727927969956482469995626176415645881179172217030394954929862190313401912828085526661939948633366798470638853063474802572448374259726874910514571368547660808945293961622541011169959038886209624503446742385058941027833715084335860711350806317909382214230950337415626259127
3825456669573124394021309344988034827250094250624382030326822878277283009978682695415955207441539106186824801008328807506853052570984125394517960729613134115157497406989659457184582926842302360814244195086807298480272311242552905234746653280762919573014412055134488808317099954523162045896604844681401517917482156220698057846592700418773678835872999050568377166682597414606703055361089043862170232853738267337281284554528132414595590901414618271874553735048649289543064448267097362489820907208442884607677445719799301839865591565265716842531285050206753809604618535325929276701406481138243731997557561652006556604968550287971367522936668217390861261932498975805078344835483127275203102293054270122884147644509217827564027876976670976643849988656113033459284714253049272497827234738113584477829746419762309370728229800359955545914764137055094362265824621329254468339197924757210558097050682273120067704676857720705620343136953193086949596027047109425113415196606079916257715251275018768599764283468994
4149789738943785275939467707779241220052833385894000184303755306632037461657857997124206031064865090628633965459669949998181060960594716950709781813654846682719779590828387874235805891329311345071629339291875277668557081298550724108849420187641255467363730529968830881622019026319458712059555508866968701562083671431709985798200434418121928943821218579822811959021862056072815481652170536941352398946224558778821319199557797463486686217124632438414622504485804938528887548931451666168508432437123922316143608985661714093662886299138833534439247743824232393373797419288908959946913393189967953685825932754492021761616058139068711841327542588295200563351995220547760466423958458864508560549595053858141723136267930797432265103400723458950775251907615445080676412833150077647688316631525664048139255388331651509484421820085910033094948601447709012793153927997274893834758777959614780063119852401435834615034994642188624140082961988455901721394321017629464796621984428295956802124978680834312409739578977
6754742853412098389933406062350018888634946036324385350636677365852132202067315905643509576144737459759628036400475635118059803634721922820643629248246410773110796578853619868603306321895930851534689713472726168680091975747379538158738455302572070683285124343887919564031773028714817436520590096199489384275729019614400832741438962241059136059644605004970463721322742153690198280455562668923532984320192629567439129634521151735063507079963602080878354087037462909102169901353568908260987172683625113413583531524795736944573094164929758464371202596194752966909104125539346814618848860047507554805744033398488758817212945213081650374154066768652470215563114469171243922530797069661505402983990779621555381300758950867072594279287066104839870116961699796977924003551668330066218441668356205983904796292922028419296829792106419270830782596212926579877177461729074029820998580220907199270504143662806216240750972863423560708768666070476330584139728514795706461038929707580907724503593396966390801314561610
3913921467662375903498555584583119386426278614392739423386342481001770181691557057668086888006868275069779571413867796635492379305320758446038089109028908557736842725767667407578515972806741341381038589467658370514351303856353545221708077395133355999338434843744828458290547509106981725840270545886076326640403719481908715367454315144514257386476215084228430611639901461312173440049734979299410542560977080802587137422898081915703282976346626009504450931055825918412436052063682300289678956901541997624443403448234358625428236211689725890042384125432796902589433672046441097899865160569671565736395497742490887157970059924220112735528574570891101205279401018632107014997965703038080400261019249390712833883927933021458070178826789195229698979450952137372922084236802108641223019060999652487852455585969448115253970703541528722286611749431601306598653266424601097574829021111820440631074020957432929356203866667511509651927605856984257749709845756874996779443471610925030905946712758220753705151186017
2351694537647494862859899815486885459179239176637132772412980605904323238805129344758528561185484531846435538666667374520117964850921138048061759153419022746443854349041023756555195442767120147434409694386757712747244244899961654957471699787560178032892643343092852373511102339811200934370642641492696180414660797257099923855876778689135478881324880969906686828455567248878331820978512882442390652689424140181961558224693403084546655577528510703087735602241668662170721797231745604651364488017462567698434174973743406559029329634992869726484283317858159602893012998413064153929342403488383339063991458785371578634251832051770549726803130428609619413208835258573818035787458087773900956962429542768005678633699830869713130084833805654230565009644420196314127325086311626171339804028919718025054753739944183959345443100501323188194869834302323265350284642217913844193297192996985131422081287783293796329916362293067355088250251287190219368295054053450309028061637564424312792877499373622203268982363876
5557799986662369187730267848567183378101864281018065255627837891824441131811943846241236922618397973178628645191346189262470552944500455363757793892604213904951609795095858559195077953672635264224411590779889711622696143798768554771717549450225533251620699355205494162265917606099791723473357411560132690882157926238265489234089921512569982783047967683049777695032694462268104187454727338811986884379784966688698724437172150482632027551918402696422415285583833157829926540344439356678984955026115285688495493267056515396417921049439951306003880018105617690638045253169058820608943970758522386744060778409369570380843137077609332191518070685747636637615982812753795042385975049585913226687562371076437326055383253649208208002944508199678526485123553993833718972049507135500018246850798402911772760570979689174867708548909642516204967682984288315091679309205122536876557655483464872175738235797864463706138946958132379148327061708086364736388910970376167249387535121307488192115005457714914475860807432
7269439054763896842969880967525874216818635047485648560113526446432248502901968658957149305068135388108049937206428164674236418625489809769697839289113160987009945543547322082517609051728668333350849535183245045418758020162899878471802133898010311354754827322958817234320528981829462546617212070375409092518198649477268489501829187557056879308103580176669523690584249725390768917314931334471639383577832229861507809491359302852163088185922558235666143572556019832165869581913890370349994982109707997608040193395123967414538184432499886996065050500494270723250103468710466608650550324215489794251571252734487606859157179895406310394749128669532892327734329541245134228893921261068722967304711003247446528237483481901683219775387228990220511329882602948533291851976392641045002816808096129159894873339687386122248548738445262961951452396151768037242044766039995602649399044568407454355349176992496575302439516259009341230701034306075590680787528393722624306940801762746364206021219478584199474779642090
1278436770055399523836985907312930666328987173155852431651098537567550817565868493999187342316878164930406725003232527755493381663619690663637208106831700263941828689867848244965907564909986990432004588736436018740370225071816705617102760920845251391575888840912910284234383268214508251319685295693716886097127707477938363823817463624340433545950050560759211255170320844544495565473542701277870381781836087497377191342589264661291441684657230578449840808228109854315152849369687685699286695180450622171151399152380116372617726274191139598576425083206695712606471835262100545267821033390817527806109464218221338210378813154016812816751099326519178061248732260619485108904046665766606088955368147540237633126419362978836053316249838198118765148714727976887089630054431436652203028557210346517905483001377963578474145996137845801624490368687526694760794999805537478750549861398038425721187257541281153842898174883025051427929006937666508014339127614560898619117192740116360340133103014945752485708976794
4356859462568943239514506109917349950164301166316043815610756651615252710466920023753139280470135672326607818188728441552502711731245348682482683770953977220905421017827159011216514244550231000182670267869360190817896316869606079419659164022850940276780679645082172276956319766800146032725085599413384102689573724522757857046235109486114866887808706387217798992511661183220879162717983537944221871125013145516781294969462577958824211993763648752663345840180707875984310531617079235609011560846879622875590036408543787150255682137832524453109102440920993166555830289253911070309849038697964990745197998303505540248023900886219224272878940658524043085732015425502796372265971462337473572020513580116608057952220899183028747380492323375977130770728087052616826589849422305356409627767174313971952153617905845711551700186951173638952301280275119705960123136121108681602386865746753760546857398963983363262462277730111055036514968422616188967251699999513237629376637267765180073284426472248005738414386389
5665555609363356108416039819965177585458446770650417181808415692178077018363862582753346376521274820785897217804268155789930030095740676066633833443723041922790270193070434494988613745529559798744934902072907812172020946353063311349583743900942583377660571549002093416818781569496915565811295571157070341435449111987777865887320171042141453782275591671246318639197555141570457925683794164822241935722711259122159270720908332332132272841515052752909407587937702985848812157379852767341338862705831203816913274624602541447185761842501984664882355732194428633487874448337756131733233588339823084019907936915592226854581185791714790903362729166230393466161224459667593915315310220660506886370846332977158914347683407472146278958397251028946109101539923540749108065682606419957122198110778824720667697527183381813488595708113529460975832452273364567652802226361327952752669639444215558279362624286238422040491364932714867502059572920283328437412643610180752780088235969786729554918938206394968442875157000
7603998482258226185234354779738156862563840858690384754451924527419706811829597135758088229514758085449058766557301733389160037185648459025161700076848553573855827301504362977776023375227185131217190860268426331258872682050809080388882404019845352672783766570205755469870033738375955715425026875653499230897521820818502449436387823870999530815425141190082664552953668187519443466269354552054647206175933762120173467284862291375035847269613156828161589855079498710540604034465352456793017859232248189500422671871818764741428810207913532911429674760621314138399185244783009296402542599210384185342616006229410518653668578379822501554539310115026956340103865775083850860415673671302273091367354161346239082602066511773601668759043128604008111279578229277033695454712425142205254447443180054294868315544415192836567295262644110490103691516116296872389141164325495943931780837834671747977506339703825797295139699376344051822829428737040742678678108301901731670565205148783509742592020435565279549955683507
7418390124230042720148413643189523634351675367725684397994762493230507874273466253669742070774671666930789090308838145978159889966400846223298946491904012212659482614346562197505434002592108550385566284753914570388175046271570928072298879867954497327269361294423244663663588799195845497237565718858541080120007927063959183170958196674458553124912842009226822113628770923915557940715702051955882252080032133376927986017747844773028956237210621163904041321201278868795294620606648956526341286242546311574175036718676366102481838072062317451257439577695162059050117845880974301001071896122540750931213410516980837846200489453611655933160013210400361434688283122684986074472996539746252754231860936993909248754309871619401098056325213375595985533058769057704936679489470945969093466064340200813260323886934754871284539785353851178423578984561972632626537837369732312225275971967509682254838864410614223145425663296541841462929981450301326882718842021019999209945609067817080336226330067959754751220978651
0748624128343221131534172816209758463099295418400204271092664621835056149265612425626955052729798722446717726770677913405891878386752956064703231972174489811415402551175359695321724256746440572366182168714504669662701951454160736780805254767942626323951084121483503741752576962196946776848908148730072334593902783734114398452681175625181217144145014427887789452964745392887614368567770902703227661773938398716331522511384734681653695876036819669631704765812561908952934759596518829804324831490040239620545774539678873901722380450551304981496340206356733989933757451865223346055604485707391374196924978614842591657940846702785905221534628658703622964738622632190022460265838963421476384368068038677152170073685274172997623442363911723422089697415961455529513597680887373394319998262001525994264060833354815371342614837304632917594490280192755273530873572268570158107941549093098264786385475027463448797283590493137636718167245406546884127235155812381205516637960061603067061725786581550291003718164628
9584553021878567049236792590182168548534245509449810962200402701987986154607046330280784608606035761429159731537729632612256809606234090165067262480675588496795183542103614822831622630949670223215930510990215830537385104000776780198139889925189381280579305952471059230158394186553174166098644172794064466124352256317380163383373674018688395973725737020226064983166889158834644783728926572846890012561504290720053616930854921283971555261175324331011747793234283652852009740983217142754351495977003972311472315362231418136288248146829341167280051575174190510711300056067203051356232257896036277034712141047226659720655936783612158355564533114371535074721509213616133728466649288922291433969620381963078143588063203494530412384745134378314264239129190865015110392367556516287475040343821124056930210003339502142906446662308739373365501704849806689564788237118308795741576460642692062494553111346274982942801252595150989194567998049212064456446075704204464944780029850649365241581155820445272972213336680
9190054763090809956398563507322773417570603136720376828952591178853572205705549663730123510636732416884980756406121655807382326641266251203580038880675641703292969195028092434388533789678336564510908019934187883036932458283674044915638940127605465735191286866421539454469836558437208453715322976755671520422839060491371650264347518900677830478123750506885424061358089874784899444530165556487216383507072671014798416957813175873687890665813515756779392732019725566062678292190258644948237885552289826156657029444389071350649319872414812311753949016249195738877507113713262853281518751361882676385798575737762760204270962410256117674503037199690379796314885030117311555503525857193425016096818747141185090824531747573829894916644221084226429148688110326396903104333019681361646181990312263955309072233301949588716084045423486016670870505039876309481684021063757214556376858986657040695168230760604401986622803846510685860422311841767854116847452039537347016554613732352865590765598228139044098525666426
1906869428713367506888757662500573366489594930064236774493824771724189604574804473923987327585403921943071607331211846879656003437135624099948245269073534622396698437955615632445603032799222832129640935785368137939269537562150595012544354217055277888125565560701236568415479447041244396218188850473224474823680184403569786403173655613595244265639859753714387221649068190399037122026949960808183556683264041442146275160161744685318237433903023614509294985901181608578917842971594904626812648871973613303140192229051702788038348396492535314698680898200598423339603883440095351825595453006937125738776393541465881359265215109389955492069163901798510627668456417365629802131981895342747608803017276779841856161108749085459667050255326038538704297592391706582017574116835956906109041802392284895297003932390995721826437808298172259183864443324325019828613527934579902869670590767133431047096821555229207082424807280993061241573117262359072560871846653339611833443399608295640841436074988333181951865863521
3737479836578240921682247268168825292118490834151157929576829029366901312056670748805197328054410158246624286957386856614914837922564780100171204280134231307331933053905039133964995306819982536311513275352658963229500419666455221416531953587482524575641603657802249753907582769117742883388527372859324920085161167163939792800452033847797711988655166908545417853442229540732126483409545585517273176383787469341796729229284398930023362253441996233606394986671955974221925377856728702232551887166895260228091021988246365365430344902764042440218245239860904530401775694814847092484712673406883389612254594271357096412390029525103651192642421485536459613530674944833394786226091608707349768266286992654574826265937077049692280612768441639811404769060395806705979774175657139358320432899152894203094897063771007484840554744173333210623713821914059694853033556303833189710318372409474087818387476248142309162846630177709519857751133899460088714970984135064204332155366506121816064229024081425349951826687478
2255700754494482582313121961648205154205732110673990324832910061305464609389820782526441860030517162742568905319736851160203802223125099964769895288430928323075641670201565105045286024180900466444973879972849356998708697678484261110783115793062856133750349076687011625394027009898491812009740238963078903348977031761134735143597938386689268053677275645362620423448665373069794327801390717648929019584595306354061535711619036361519595574541393002418546334909920358221776063461316037262769009070127875607641807929684129699986096785727854227654132601186956504061635182986188543765513886178182816986202653811535585313652617638370295617621805923725731752497027673254922893426754909456218684633462475371128852717575605940000749006861132499619010676038955269917926530664647961451911253068132060173876054437699360257652674685983229957392060602294267163383996541391782383118008206866254478628209892165843816839256057219474015539347977399371442034371406721359024696398619000877367970142764081519016537109036148
8455833300228879761019840103221964427033034862354494336470289927618807821360799156650213181300244931533001740894608245435391882562219178129972422106310280307587512542619179414480196224311303918160997899989786265476065245860408222837790797066931673144012929695785606446616439211444398406504705265835271461030328740292365524926623326870152518248471726188430243920193042994331162274392354864448494834479432240567348004906720407610623943435656023591553138035339305975090919149973925101056058541147878125996014840335287139855819294729744963262779080040131954487899317358750993724571399236725313483932406048538804352161956438964957086595454878759027799694191653991647886670851764495122660368635569866097745745867980741199709563243686168637525311265813809110758292399989236029376067098952303175620189995995135582447123915888766076647568114292648160453536438599871202828626710906611369420633589433013832861373108520800530040811688602529193085399945523643251315092461245377461310724827542202777902007250229890
9135843036665855749602811180017346337480303013045521436371877044597534086295480339665134335707420624083663296650900228414721759314799001981818095760703093711354877106898469433223432996096058866967138753722052562422990657056656575845206230701073004021710725846490591007636564384851013773590093623750834343902289719470167044082247365769607027814739303321843310409207245783529403934099498458149888896352778567093870444464410163276256443917840059504690387016332528381694225210355057176698893762437157101018082812917569657534353321978675933422584852635625187284271907772428875707568995127709295813546490851082760692178079364267229995349394656174390130415487854219846530195216144864645250105311255694769479683516036242373869883334304535951500989945224721266429172649341132368118512806858421922914637184232793645517334520572179007777283567240421605091773862836819050515730089415478038314203974093264801696949530749035289187960405009689874177033421209993057393179520953963167348978717972929656568248790275756
8204010196276550125917554829352122918362577168291752309313169863856125155438135150043913204943587490194950554519766913667265460099750413953668023195551586091619596010602713123091234436212506007651561169340122342133084661912641907421087749879595793961049839059052122797659767676234391964047691408279657449840950524351193858651632884061426555734487903509748139668956510980723340751795145423546789582620866803192688005711324150055431953704727381448461683958082883138139356884896070896343620538108072748534572043979475170759212955880805706952776976723066071989283435212553408251450439108640411907406578505025199153289464378265093035884367070172824912813300810790974331497850814646419559631597497323829370227659361954613264671566297406234912849121741131533138239153760286153031505806185701332404153631994527408115299070089516704575284705383962418497723164485842143648366735845596944416539027595266741464037647469291105806893799230146530330154595107578446722852194386196529871312833129587395360044746213374
7157743027330423431423128429082019807731604788855182980989858631978825523207707432848837009629386793953669462606478283850728167378861675510468655226244023511349884247795690676938936528400582796887369887100988113783253006747454300675704333862886961531065142389566136063900320049658868869935055652343023680576983403293034413562050788319501670526209302709367110563526690852767432933337946655291320274293776048869312331975315409513621718253625511685084131946394403005631540154717197511663930174534100480281061563619254277710047989218526484795577747861240398545758997807792623455443858251438487669329549992566627381751147003402551168326022465350334687653554837260880277128889796302468980424525199827600861258805157890541784649150743820550309687353846187935343682099442178604472457667879075801803225053323200955468589134039599350341444133159401127078534881405501544205460545571680892449852239038734589620075410868685374742660593236052695658807225240945586695753768686591802144916414788409201446271809649981
0460929589189092476884903660715449700180877275397927476640613640726255923273050463236933218836458532746435951507924967719427638561363382133762560292646511369103561090360357866204237979461783501705991928802460620363280910046362116110397937169461148406970555792609548989801874022075340911852764464170261073635688009896276987609675758341395843721182983160248961856005791148269700561459645478340785601313944852734127576103545833587124571550859323154395305305033367212806081132265553765384208035620060282317513878288069459782229217269168272819711866945429444655342629045058167424995353798506102149076563908071811590255662133860851438172172162881527816419512834784100927005060686904901731980515231258229739165534520615447963320599650887160909422029694081871290306623600220003961102257445927879282724888842346505788068060850782291981109249440873890712095974248348086378552033265876421799625006986978261868776672590616205490745447611624431013710945239701531973506748023989659139994626534169400297743616956888
1568369355901402556396439449156799413161403183742056003267581860579845548124026251389427559160768631926101275558460490611296303413022980815301843485413039432745211201328487728328829590035470872784093370715201657786745748016521923593416449495288252329514025313110873018614302759170831913728045948077793485760089156673946551318359413385948364153673984305198928418533741903802954213744372926062311464243101028498453206365100933664225856553152993133955823295243883518304125061560077974259465657731162642793808997595847957713682434070938194022416059097360374921167919212959502194465806020516430123302132500894612652787835287201582295086196575116340515192936157020674323426128158783192208036946313642972849731870991397798270636899089561416957039573504818328845892054353272017439867375004693264841680077136238308433093273337292944190333515371271001746853902022923081871035470845620159253663686481015880693211872625513719818729360680398215525282880119857553758552315284056346741030289964560861413352192375643
1726249238954707976999847605211306744644834709581568143101509323469657304244006506299659181009223379169027610167116733556136638930290448359882903391069249996359755893087131963836794100781591792732608356946060949437547867981040915579246380635453326400482401883819941899190556708361726361889206269821963739762060355288049116105620944004972077153266919027598869326646615134485237652685135274894451743738866442117304814199813089823484078371979983781341027112414318752638457967797463244724583192378339267171643958991289975571864826081338315571050361820497935308516669070522690656367090388688920943593591018749724204035276170752054751293037337833948640537735981082589970999734495320510846566124947575322991729921382957627420108118142861165094859994751711209104686628407700276944088415393784052448985987581680112265174280183966980976382832039082465856927512254124989058591979512380297151918813183521812228360081415628767383885662670875294428727224307344913572193873571073401011405305195634893849305673067648
0412806358423997035929370208394325774022952806746123018372918128897739333948009965384425623125529379417597569743129561707815337246894276414243943328825785966460336104845287310797438116658126449268197948416797361065394872142500175474354336987924992412617372747156566023420719764886834151843900365553180396510859363038223637902675033153206924128568153407363741738981845350746971546560895252864558496169181756473552757206709661297868039158024752381991817198610023960024578994390828773228187414019616093001437415310075922992972109664997542142261618747829857748939945828972325733286163152101219383962548604168642854360684540728787360470790906551640257079292138850996554794085572978329582999682451595374026448150794955561127929457709236137116866322159317140982166343734291063846709792086828780386906669543819096759021236363923691333680479599620213901716367551250160868266605929640487708048661464270633022185648542839006556253360761067305283219129169787849539286804163549436606081014200637484233406235928008
2642703480748864948725447003215818685104736657091861589115731910849536766837815773813946731269089408894998094738099535540581345083975782021202835709105278461565044086645510740800805555197754128691325405734049454162764973156944243400325517341909076243047977804884276176002307841264373239367052371717837745530587696480241067123415875171817518730134931179588614161123948280738619073403632072948906307407880910729017514588076992376985563132261739796842210053766737422456774257049610566489783872664680512897997666510410297099826354164137915099934300392335579805776017560317107508952373856897259110421591764522461052702529700008007770728220727296607560895618817055465967562219113564407571078622398063429292515090738821836930092764340773900731945185713618498427814699492804574992042209619908323361448094633197422602295479706186683261700871540226387295207321301934386346360934002861693398360849328054078240124060820668938653000417205066244117072243911568085158989770580989061569471707013303335133189068121756
6203208562182208544206265269802713616918892298420729361471359369785011276822950200661378578448791079786736698679620358285361802639686043814311392504228569094855140345400298434015770285145950186336157864110630201585172221845512698942973845317706509341988243981864291631885035775448381719131288786795761291507765855441120959278130494013248835727212239052600957907444152577895672436441762117299153288324984023504874789819416535898535202211082414285319335591365916361460035017056906642338993291562949288970965482959882944132545944703629494275769445464752494899652426590755568381586878818429367992303816368347360144012430215902537987818096165723946920478587283298538568589534985893097445999739805305800563236147459517965058811748015027505448170229515915907639738640828791322967970020867396772208857349644978375202470241659243591915858442197304026743558762890844083509772253119626072183309286117888070104904248364342069950717684883000936624838891434378678221298822975681508738163846405648701788136047674469
5578577165670776622023702531483656775468568153813655858280248728528406082245269527733719462907788973514163209058003240133788534060215959247378374260526523029758301130859813930240295010935617571667999595526130782148476878456446734342587677655428817615774241001369371291940800210443846895819694255338123104254398684299163868936014752112598285051755253206961666127271228487854980857339156470723245704555225251988513831097824517937697828112127792169760949974904168428886150962729841144659462156858206888348073685220790726446839798900349842313644937465742798977201072999075044476995054298465308174180930219097999318003772027628590600951791446753931163171409627044446714569016572661322534553508618123924394102407323722281624701857730606840186534764471234026246799004639693252086981299168258585183935466907825984456722383868966642190700787519005630893153006861053012660557281899698811999994696258888562014284701238575958199396524849561319368116214658481841503840725554032126472227572379021511845387946993067
9386147235420412555035578966405690737662242073894440860545440648868550701015256620951695619501094458464754611443223383523928398396343180237539182599098404921545148415212375627792257534002548708377337570671592563815492992563991455474000445796244038747462498941805136538075114940989886069021278923739316423905285098332420595368607761191347712755953048832969966368303668276599740723141978098991016750055114342298051603997930034174004128571226229078007986511506316738204263241944448034661748701802664140010170183811901719498339259543608664588972558928176314818872334485055674462603930248571660929159825274817785949523890922472914299620207667120658919551410003380563860965545719643851099963817240177042661322039615887331499201930017175331482180691874827084252496943815026223311928464181244967886648094460749361232458889535064813973774510153893975830325607673686147590086448458795049619550760912940210262294358922315714479690450035165947671505913216711011944908818364517907566647849749242739068818741792310
3576367684238645985054754253682905365506737094631574210271248337643862780324638755458877186569412262658288196931724796223810214490762307039623707335715607890005348471929985741809397720376149895279176559890710736034359069186190460284836372444187861034177740000931557153145887162980632573946983562695125231583482303127392495016953218966959884648406946808942228006329080738176249681630672480731287394196589860391361739530843630820849660500059743447206002125514100496895393114681139381250234293015533390592258387626536012362364655347567410251186299525092680566106758628082084389441894289628294588560893930357965902707268949941093674560495622766798907133199126367724297101792336191348120717889735477845829751235365051791069917674488890688136130704479081913014252322184077241772643358271365369743506060416218041502440795549500086878884666134013471921819223230570908437092339415192564098250999577690007096048462499983853542411146573596632636084504779428281971251449959343515854659577217962065579130080841735
1922422834943718644640368529755259291549824268974985381140004434198939773586268610574608743922245844086336718944289649626557920078406962596447154169832560775304376705373917626522778405041392124842034086513028101757541229767580116501101313157239012578538740776209511649507195793174937130574660656805218166684405675612579059614102454123115579530467863875814309489405794842400958220570864428804068594418095002315537215763128917122415983304549889615994099293922489361452003737707018704455406088624028070733512868745607623625975363711117494732838887114349278984229989929669803451622061870814203146509070629245309094659983014653130233663038536002988570906093567982686286996864383684518855035171643264986291730753348898732856847289947841126298199040762145584478212682660215303551401582768074297721391689774508844758156751659864873002560076512927034190064287862241960991868207169339907609305452968206353605954524920442414703595942225004741520965376795917295981590860040850108429568214909855612284001305511737
6997901558029075651427819540023819369683704612304019315266769226016957579322827814516850947379032463193319651099202201589120624467341905171677325486901469819030055165755910743358616423585218433858838119107986490434763536658601367224332001910642644348872979501565028004534395074954506312877508422721082781569728831511802922861046339579312920220540168201992670866198108207392171639705018101570087785740640741135864250076424072643280945274654741924063094694487328482836291801300655307657148868387614905281538625294956462057075711855291722389609924478127652980319691618302210600940962561663506379699266716048562360124406575545367591236219062097537937248450809666349199567678037152252162382921980323152646932263120792743235682567615396490438498822978698307759339694933992416624842310218672233910521384963522148486935574728163529467149179899405478715676877526006749662778243887922541597692221059967875539987415508570380355906251986373856407561949448187878253208909317915133089298413346966200598528181519997
3717261632994213333742224999669927492710556782016247037459349599807222292628384445524286979077298258078657937459369732031256635245507488873530115032787335013478101199408446285945792477651141253181758143620986596573100690703547667587659517023753355105312502004505520452539100950270283918509892707986101413395621683077313372569513685723641952999937327182696677591965001529340994503195809309168910444910856910057080435101045395779578986933845507731721872152292324374070509800965739218952118157262891762976048360410951814948398875622177342907467824397452512170407525805366904418874265391461887014372611596650236806292214822113446233240904651582747943697416012786699227969205286234934620172056288615977699636705591870071465746798973130559985860240373543423494824828016510256147254188231805146443677864511499354083609255152101913322922456985326755210274263642259992352852085131543164224687561302144029805163861514811985430593716430578103318961174954574211688090881403874261774490555833631693143326970165107
2437727567429246751881127491890719133706127664801982507401887931811283432491317767908064911698827105952038584279369561357882215746300211590509706335480065928984250251942029503173176975493900242758501589794843722587375165390927934838505370337457304639962653799256760651134290893630289191975663432181631275505525666627522724101632145119582888609324864207177257871634660997943673201854086305790086785922396334796520462140048668092859408505804707734858773456178702792922540515028938424739299257514758415154123806771537603432978769716382929345496713281545609132542335328164179696887060757488359483979247921403244797005667690984085875353135736612397960104613773132293646091720425598731399462298212845568055054575004294682663515487873488216037421471745189820595943633274759233369427170133207250748423359198729368538450671200999743966836206430203614627834348521048926957983469053060523174104594588641360754331440976382277895776432625719583704643752131753498498516487159780547701994099890890657750930390902128
8601918563922239400334245194776005620695909982280413045839107439901123687555480926336471233391381494819608776241925191631833588028780906086671483768522906362831288072062956917094476692143313470669904001420391347908054704689198197779418960695579853406782696852755193954581011464301060764829969418516310109765956789118173135854638332810523173313378339509190251478937992548088716751236199669019613689427898106207052495222539283370056292292766610427995418813776514669746104701071252963764564258227393369513909185498415898445885269063958418718937150875242081469306414699907708293937529796012858289843924358650646729149046581349776191819761069545415920170582872641190834042385736820659337126692862396869559748232336406165593082368637335793935237484705756004268222344579053943442149915497478324048787732106644668945511468426241897044776136897933207691974321351651941343515700996466750743068793419418980660005851547048262752946260415714580152460902017419397287959881597945285074002424848290018791024295207950
1543566230210397620723893976420281993779021753962078148928848570059049257161385516364306983102864926783264889697465897731344881477402673806839728999514688174230226171426251355549235861328840803779509093578485770899387224890697348423429839650356522813761589833237820674621530048159510961688272004258705218321517461153997466128427209289021012311435235990263284753699875163082735017407603038881641249698287445471912749257639504387948304545494014410740496355755099871014545798639969212151169667057604868127948418960282443997352662821075501448781020137768797640070989246472829512169467877184783117891601666800318425229403929418976110336705803089084305273306764427454131019468464577989373735180190432820352810814919445930747209972726626067894944470762872748566570469227908900339495951096476575370979370023338524542312020614523260195704772652083188644528667737579097701883534450877161165290730690624901500403650104913137531548651225005767443583980819260608967627261687237801405687832446087754341289301655351
1804692761912921039691416795778176264755953377677656486754359605483390043934411106833283241182804210605141274477382098977077516897813986623986302152699664672539409915735710185656122054139512614859771307158451378128972821729738509616622017957895438927705141691410766989380579689417148894015778740692202224109258240959059330364880070824725498728430977303978881929607658559336474015190028359521557573192796902879189138375615628790363114567114117849608745388937863941794118660552134642149666794616591069036314698203963089639736345564899950252651616224313374337700349068171569561091362463831045215344230635201206339697362498106705340469269327574334484027364261311341552449548178203209658393249221034861937831562527470652169240680920841443294359270478865582199229186047857444506266090715017305774519854211002094126484729991362148325370804176298465675434685327399493638259190914877794925656342475671238943110481089028422036600573420686578007805218604245306822900583502318003940881293853405720937263619550803
0207907843036616748274628333255743880851986861892001799365615059376262595821727739626498246421495102179629070342056229032716655308715172952602309272605713454166172962563390650935099617074334319541532278173482489885284881335313496103618024624308533903172593140806487300848432132017588641555630847373611771175589169424444847373458011562735040430464782654239843452970897231223281863065495121909465766771369061865479675628768812884646881363399141899106021155673342774323833716482397585713038446516407705388936528547178946815050390783236042298683553503565351808613197981214059095900223105056528113468490428763467553304310771413646319637783624579115634057804779572831189598371942529745430130134097456553537548344033944534492833369019733243423073927601275496965838992220281113295889689355968756407730164487602079758855833448288644857160565768813239975036411126535596188881568016822808391465242029416800847217530935697288048246271611619516904532097963269794181775952792884249913116822382897195102077188955194
2450547837247935610757990858560529470618932073227295798025603741221642281805611626486403534201946223572904365133853765942055998790214396945593019869337374989531835592128012487395666128140715495672418682354471073039510559515993225660960728794507879750376476523634813130530282314167886460541403450353723485481683385502741408030960574477841627138324317932820213562212890259603613255374579597391763167471651765149809355358318006140832289319869635310597795550630563089977031954619599172292227739353434426478198886974910738133520964341624683340985550317922541550737834985808196095163645061175776023299466664131916134729308379793182500675774486566842509786640881835661471134134924269076048328273111662006057858354386608753420341520873414948010676996492298766445152685808038673733277479295920092079886965849035415946025463193976410430160828139695793187291187472830607478528320549141903195793765659555593012390520263510325733493111145919788709065708232384160083823068034323441894851274606969430093265086114384
8261388872433381283479854101388903411450338154966424567626750904510181812810247178038554024828281935947819017363425727045463781710773330360058047148268056421989942417092690624865649315816525521404296086111810794508655661294389023200416233831229505732691179708905488516602433361360834423649555896856813576527103059062036528442957427380111419442745531253369375985977332893217953106496056625363263975851574097340959073123509415992973156564901835043997869401780241668209604960350655561588942429364345014905722608657998169963011258597399383516280548593131957321297761700750170282079003497248720001675742352627976780350349719484653797584636347061087305550379039896432667096104152336994911098523144383611362084186460190402889916261203015586223010619024600310637783315957059626410228856218036689999480268963238951272441725251690159372680342178010206873843965607509844862948320973852192589540577418993178758404953754475461992210373882977742551515237776846098814611466269580589312713338977261514065938167278221
4036687959477941434202600906304655724945507609167120387132906531801082163799154218986754785225016102341678709894113870742021237254585236306394446435690016056677914813564330887743832569559102315144634386316658750789271374171522230176892425850299486341314160429124011601343531494606549662567097705549969395452298654636378924431527476513057167211919517399376099886270060058295435211656474226438197878514795083715284189596814713925932516526308304118411345196570589086191226720432861992289672521013575754659844336495488605334764716255610145258920574918787908887433057888171191316171256160340796687262446955117116739664923714704191064783689865641175079625268577531449894930339952377421758803643797704414362608500321762856290185840863284470949504264883539544136882823524297679666160266013970401163054211276581010757085245197475461880861592363554219001617251360556654374363730915697751904919497503704381344243088624462159253414945163368096778276007882947930589147340043621384999683732539054610097558851917193
2966441985088043313569734193666221780203811976776181472576840111215789518802431713839785656473872269487214669112653331370703595910908266170630020572387180102071943563652675240807020779969105416640447533497583651246969826491026441944400374328742436128144590152026025878901137442927541452532861548318280887329474124125957843190098747977680031083789307580964289174873909058317878266446669408810378755341184918722166846936260219628050172732748867423839069971432771692745871483223792024463565153463444354667053338028213873627750037549553900705515380758064230549800385875377863787665725351325397388857411733736758475725921669860663132204754759419797439689795721505683695850920622169063953622589653227450301424573358096690923800434044102595837611910574166119929142581116111425167496621857775734746589665788483218085733347259281790627867696247087205611157415539821788790060590353577030625631209511687737528728454299383431851584725965978397057218476790149544218545703663749691275362607207215399769897066437303
4638728175173918400147387808453886210010719608143235182161507747373374810469756158442107884806849716648592317899581076720458119288248704730831424052419207675955042465096331731700899775214898406702161077828618315868043061020616831875310706685762624714398521514134952870525495694228800409848569896611535034212359080884071938943105189095037607368150035740953907738725625376589746619154779989485418350010285683523692730767829797434198236032461717365228980726193589744800254779844804163416406438057961597585471307152868588585128050596351345949896537816015903297221203650109485439079549321245260337766394146620455086098943333907821676552516449728456112828484707829188178918069818556707310436440536194562800089643816389446467821953347797463027799241990245665983248692446937001045448762197283439469627490669511861908063428322563314577856689963031733010380880688881009064979936432285255073238831707554236388450061653738914596405927469867380157732457302874486444392109186016533417470648226431811393374220953299
0357324902326722257200989352044643402930281012961815811826076909410152585335235883408074780203810263752714239112155419336035586334309700690801580340088029838547150175901941945416706672107147091013452366086207956078014887954848543065777907083580949317337414761090090615592074820425005113292712801192490960016677236704457106613846094715390117402168314192202222048116303549858762748783388964023614076693428875997855907050491145603520087453072405810248827342609981091510346504089839964968940094337892987670149708286337119344310816648263127710372349191751506539606612354672342564169112135750658714649390857401614481563614793394499133342656105053808209156591572287218638554620240046783573635203115130179990305744516482769004680868728978183140516542177845242702526328113069857165805880069159500375282840472697125752700017218026824851461957391695897034396128494415582953350422064055882901634550760197228611732382773137029507507250881654341001172433846847754887984659318674252092066796845049705627430777315800
0630872488074269491342172852947663346027019224468162867356317195593464482823936083084514180049401518924705264684823154217751983086458576272423470194803287129363348122192449772281089493495684338688094236481070330710537584967119161539888966307214180522801413170785601692820893503499604335766878198328652581564981915479327077426792209782532685209037407157364593552337229932814473847452225199944815137723276545118716349844420368742590126731047213417140526890037147656771273976830244153798228255973753677998790920335823607195911746696519352567812754961711127079163606255084888771171383629226093467657360882604811296021842578913553802250276035808311333018208117613247215542888482699870137775371053648929173726057461101614856903876547411397708562684542201282192423678508009213347695407557653093769989567723815744426756551589449946596223086798557619591759598958137172031969471001395117750929655168566334988971457989417939826141867078359649457437476682556263251413452067913750507759553765360748742614503709168
8575814765750353000784706863969141021596048391411084419705807219840663173700768397340600270935439423867025514107444243464832141576861292677242841660470073410552549969206910497164994656372083897432375963186268064785812456188086020669576144261499193708549774479434904907633084426857790870646710842632828146804845206249230124503187503380195582731047419172717718074640273592266388728186171308270525018173401882755143016911114967669966344393487469628561255245210431451240632069275320792137705585393122309616824129014035188947340928319599141953821925224152676035476443181452525264554051113830194462291348196185054429813350468659428023453118058970802184205524373847667996635160859721210635704813051103221679362084274585302634022562084139275260710487103339893358771357757083340083333690021513825155384198303716186960931577021353011807489225283594936963460084798135943972134976360545285149710261407979644301259526939421957289216211139894814298267172265849164609100953532024890756083197106020406062711300819658
1778375552080506922432570054568340905466708051137563965370745310558946528872038162237241481761068243873996197411977156827585344425126865289839201270164396935506545315038348876358729835837374279581298468363293815324911438829058981111085503240970108178435261487553647942724089561159431967189114361403969924128651953947895637203948572956208051606495899376568691677740184583691579984312892419834966244709152212425757926910716136630532107259921169235565626272901916360981856209272561104836544565049793615171110656688155042339176690312866676817057033457132924464302830049534960907358878942373572749718615636445143499111805918857685962783660924422278999363209348505776756850373743433301683835736658904800842123130228029415429997115087818770243593761142697910066765284849136749598756582451272804875592014670619746445961693435988524867477585024432767899447306458289770496057727809438805654716149573313833659005804279013561401595416217930364226489103755955108164463446530357040112255682400776929753841673691480
5938785077258461534077562369255517098076520281068922733474976322276932987195818940716912797351029024333391123864940844625417595435358448608514742016409507330545311183159947928943096084311222773481404259448047743096464476152258371990364817849023325202304975921317820398390089941861863864913696801433206022023736387654995664851834470980056884549025852746093913549171704170574334074486017024911418860388330917242582115760693838369242409575094998832740187658709339853387612418743343843370221937796965951624190826728646812535416027695420289760628392260262834806462632673574202920250367414110438432719745689086788868939633824077028924813517409834802792660388009537754573070638746836855061914113476174505397976328817033514205717414618601885015049143437312344277128789441831431005855348000483641638814414111819419824805457170336864049985172914689677893524910582691869183938310368715933319313542943596434693344618250097283430656646110097998241747171808610253684333115276632735705052072759852270007238303835440
6376845194657592081981782319432768760144105008765012210565501344649519336437521954931099425309547570300470447272222682499435642543630575470052618568752049506043504568860503632728572282464001249841906030272227680421192097867040021037618034451816010432588394811238309863734290918788570978885806161437651089993607402992921508426085728287362295060279413644778840537171549168948884943944498026298736464635015800199818507425459302413267543692761009860583074291227778982408504938101779550362527191676031826698427016657956776620478842102333824218408576693897200308323750668290279312504230927447350661789815129976669793194553131675573622446270174330913221201433719511903867590310118265381950629623264127597912584869793604293190297649863093701740203579506919438939103339632456509809488321476395044511987232440626356393821404306827180279473003868511302243970236882624266362525398854546124919783619953697650602505856030934787928505684287964472373733210572231194410787103428979834537503079931771924363295087149597
9231760749308115585696606553241704140829111598714377363812292489579329243717611664702163800665627532850687798916587391551259641245935878633440275557133916811664473160673129483810421935019853181476521953590149236563044792546371254382382057015944204921147240025388139643076170084796478859937286932006849383248117999430108969124348925865167692346030916748038082006772689358156201650047192466954235277976133266950158619628436428955456364058233586438745708969235947829493607615819439966210579932173335728381390156429607419725136840113661423404696775377733220655920123716267654634264474664036140957643369758046602283011079556613348490282803047466721634771782848612331422053491569885160768906347533898700653709833918831402714814667099071103871661984931697497070972405433401820734888560826686436891981977235706400730796918853252856667951015632034676763298013753596029834555275527217837787466931778788248072408026794008757219117296382717784246733640991580722893733969432355171595026758969798138429239858068637
2994250310980282436383046300389818962622277000277610582780543091942422408599994254082529411690937774083378664504347849288446292481158018581547829503121008163152154255431772602097547287205379312625111786611674700038140351380994304837958290603168014973596415658007300753296547812352792757340325162684383236009589772946806061657303837682466312071872427831321205738064025643412032869092915699645435335160778124281522251667207660678655919822341823637871957496520348784954286529225888062171699258056022696039424084309648690803467701439298038024156835380833024239817473786434214564681909540551640136122262276137357725593542595443746622440637023764878680292840708660173119558269769660783999246974972925210060137362760375004410138943315357252121849083237974444598700273578407945799901010009496394970227087006534073317294324924954376578344006083705482710403557864912223135653484090141424170767162445924465406338514706566066830919535377112173770077039386937994189053407322655468691177069968998447637166223782622
9910721817969328389401352244487077438780075235429578651138978353340229316024391274026316708572350450299986201677595850455096701395362456486705701123767026098323594678195867665756497700662774480653300033644332500044722373768343359878448373699648128210592304895307422064608801653259513289748530701045341442452012792972581497705922748615714579526578796036589999364139672226177350901010851464027404230590427810443986167461718111643111299149618425407405607796332153276202630982445784648604841231949335434677853768203772685956655230178428301364429998019782806669835531090565643166077816965238036453047764920475220851108595151409391602324118224813342801342009952418511366727796196937646079371439233142360727862294941587394161143953165805293897850460189847583106698434313730001192189203567205184324365250935452802195924389251818503418934110037925090564278820054771187468733111609574207222019206841795057653200412536260261877081884659786239575963197309052120045831605774959134101190148615618687168075303084894
7710159636225769387406736050062027132567792290593936358016736690240586975389826806006652564279119058561648303130004048150917347549343277994546541318870010254901804991055524321374685005784771029113458231857715971473397197548767878120827052917942143536760234219125405957794124036626292595732344123533631907769691377041550938038962390075524080857010426654421292801331537758217962799085507983388949153095525680809046826198167880693596252084265333457694997494054744378887870842801686504672460831528226433917463010619861994896003438233608795503493130807396782896345328604582681076462482654695405181081236759001220197952049813054735943590463040805205872720417922759075257361337685028312995428719670756272299829525897187184993083216149419724528517621428373353653122549311336265023056140852272213514596276662967449031485028047836512610891236797817234145470611893450222784898613132362318159100582797721479211991179730292395612694361920752552646560604698981928096421952327154544855007254385229092569493919532807
5491165504720321289951442702277035171194974144453323435892186425572093216832005703004529283603419459575017837479059692742980291823027498461679746832819781320297721379506178841409449603226382184277552638216788402109156319201253137876945807325383444707264390323057110405144887033411852554849427929636065919308616989793526057839900025807168859598403666974814186257501677779609583522725717937381828290423059923483333837797860777832782797825296903957893553999125522816705202082477123104714936557190949346502210741417268974158977701137606448275646622310089885474524310818515024485738335833636797638768408285710680650640335965983053235347799870654131125883514706309077170560284572643167869417477615309983724123353106749216389439829877269608961585085625250493425447391302508762248338611649759638151947825727603066501741637505121186945529850727888904093528066379783105900439184194624501288997000171478376078396265694417408860814952456449437412250708489515197832739946419624859471581658446112412317708889152619
0303081747523580219528173552230241302524326108507820677509144136004812363426297371020927617983816350958267196666077197533839264270467509873701273205799369371762356762197806469054170876064008510885136780727119073430842086772294883877094698863467917223036588087586235795773598216318969793468462918421815836492512531905177843031731963770205563724423376289869341025145121183825310846432341043259972380672158499021909461913332824875018689588628918107862527501613059106091252385886229566842600198663990157559143559435263514904117283563961211645496046253188958224480283240294610923232329784307282015629332978826049338951882278282361915881959469235607828614161178033358525985715203212883609186594080165068973740200712521074310376164778827674785654215573100165311843170941209934954813240154543529931989056556811588781584388508488455513572839165675763941061129858909236090510992690093449251512859191467497673056665992784044618163884161951169850716107953482982914748654168113742448821145960057525134318627589686
5230733866787949826571943936109184505855273685486498519038598538174499955734374423830487359503865026841732138215855025877099518529272881194971522495580201394981824927398811818770418509181684649078336807844183549968929196274066274136788623749193409234102212830477007214226975623226196989569043359771516380590133307567098955438754145183242849077500361836870886889250935831168641177748166762359417799594182932131279757708105102572419500234645756670402733664269441855114191206616175276159760771811125179929332618361228318114129203160584923822006392056145648535255188224420842954858072815003585726140070363106314172566620552017509968002633392588418252146606485860836569564940175004372584804974175068422085394544563986274577018131660916681908376432086987921903818809467411944206874173000490366128215617902424342659380495076154136539863238029333324207624802210527292850777427619910774729124113529557523974327143573528624997001554527352214424601992913354734884076239290337863006899671516853185266699936338835
3575406440301193690015165156366747094255338660518525327827986808524050266370515146623242872410068117769733233109988006660056021832368316020828222893960197524255467755812362064430566230257151007291922698139930194763488909197352874403215934377484410356597076211383817432919835428281704727406676060549863740160092321111307568323892641917108453357024311521430935660299986070352272917460178802330017713135728794175419715942274674845068294358015057349577087946545989951533609142136620770974909232580884241293955777812234770862473998153796378602379654280294363399919091546476996910802647290507596485726569248474160056891470435765183482366016530851462047876228073365889855805197397516594629902562400515164728148945325710625673295361845626266864219438823854461649731484566364886870824013068611504397363264631095767023804319040233407203479249929514386453864724587317168357807365386880235228716101492565694244039134110362344042020523990325005181211502855216103043070347096668362529174985566164949002291359644209
2879203306936350797408060490843283175091474087617812806295233766097654834296926875916111294511272359787221286341216179893806132747662455522502834454837551846234919191924225486226916149497693257008882816343326223710822583911104698337578033984023250618312318830591879608007274270465220693190038112343089248756023683546502929500043297984688264071458693528623576540148064897769956379271124447483135456538803521804243861276169752186800443962723004649419109609043483373860807065396719992365740697939162074180663893568781321330973448061765238264848255839945094838828544215928966243964565874828834198800526836156297352051348552988443479518595804241569001809260811702621662010269248206652633360809174203940089718255511922567202559107225742511786503348304700936020123307505201634754457252450053064407571408198733049454594148933439685194742196994349093042068389024643263038615817090635159158392713447089783855426209041708916438449544696149334526911186524139811714221514013464886732023480565110852483205463336130
2669167296113672613905714328708988182968684045045253059376298819608357866770574499925202047177820161427013532560911492026318199837110456102493446941836172402328664132065051059834895856362726417745358059914901727297644614440360602768983119895283695723895613887409829561061091903621906556575234199096680424324476574661828919619177278590883512936958955419387790368104922081521122534991588943776698454022591771995250724053759082505885040937851837151626910595402442866290438133737195202487197986636596534215536674335082249377946969292622652124153783815457656933867328161169772114823634312384007413278797218623523890805086905731723533931667760303646691290948748110283485125043621445125773788952659297039650463306019669370177701412627245993506844334429927592946860625751025558637186072318316008202130838283096187137852423698622540567197969272445705097993530427284566155397601194620142197826293094090504128100127348931994109223857686033366110940815693926929411415320237977718921819669403016915825640927840104
5178575758753258454339513103095391315110582763549159393268162494564912240027101428424263403025747259316306354824544465674169175528149815633870049031710112716695269955210037568279020690555030895767673621100496594188167864193809107708039351609073820310418677907536158181161036067756928429983589876190076618025171845986955290931077658427057086427350669343188941712508556023358903974365841826463001998921311760360605526421968898643190893324908597180857824205371887675374305684274673246163002363089500850573927568452586620541639200800794520850409748081871629060645249967822416698420782244275792420485429379431579660905734913932630326867449810057501909459240530656643745230313611735242970645153354708257529649938109129908137177661496315074324728169122348648491226122145199028311244373466613971223327940991203800530611669246404203650823620086908778926823500024516171439922018856559639174580115716230483002176283107389444111206045958772739269545680195546249900297832755206750992339280312578194503695827945325
9304073833974585951502202977986495508718641933775591824984137476057929182435950816629543830170677698020407446747837385724329105040918872789101472394128235424595140328516135237781456665373225844235454437122286817450209418297271518964998301466998663022647918984412851104258594130406556126433962473305405547315270873655387337485087134601877329465891102006204366147798447025960101166825724840909913637244700196324899176313142118141463338788164093950066994496078243691607843505974274830167491080909879483433614393493307819366531365190499311327844718154153735266705394851728815970483720708660927462577761582375779409527728789193582835849105294640847032778827901531440563199060373283936573436565640592424149370039733370476068564459793240674143878635326071478401166717783197055932047746217106032621706132446768352401818380259746072985451712425933384612631658166144451393563098456996677330568459958759869614334898750800174832959273216859972479676710345592082852897989675950173197813952074515398260205162097247
2884751836450832559649467611462544861579989368764796374993093661781340102924409733155817955650538832888631637114442214598145581156668508655359286325652101724636083233007016081009587448642604659157469120924363570845383641371453593232242919185456715549444345871958342274202642359095256137628600172164840332796134717509268688993450673105027031462954094223674303919804585759233588299042939192214107352569335711133468928432282497393482615387088787159369993608215198644153880314742982907091454457231225170447143289191776653002243876537575129302820386631969223212010722901229078745531942026061965391214608026265619789363351229459155832072908057353824608238646509016681158782083994627494516682127827764422967358296662187127327028186436320928495384499464119429417129629069857238858380650672339808353515978443132583504140411824203306559954066865863499644922997597888836350675662912493626025009860307099649979618135323816759847882234392235289886618974918957722641083969471223986165034404955055351795169115064589
2275289623407460740690745828973349891287733999937784789495681761179934200621434037645695368270981874426747274314997351073103383391830971761299714107777839810838388693797803592584387616721024507586786599657989574826126807878866728369524786177113043168540099696445035486187888425826198570223791321886370891969760305043717630938389599426048784546193557655348594499969639086122644022344999991944943312402907677342889348884082602269022749636020241475472340668038163770869981971366527517336971421712255220947442133164642550618128485914121059064157664787639189858519537912823607158092401694743266031497864879036859774205413685412742809270877945360279848894007431270814881216956683974174554642361824270545570155088956920306254973642822115596161950164808325183948440874362172518204548446551483478165226498785369801066202443999462107352825182521689485387894417194241255094650931693072583468355349366728309189039909371272669012769349570905280170880061454800158560223512326120048470390155299265503120246577906537
0740658997718363102571991125433197065114725879291398749501672247346600629301370206064621972712819590563609752032906357054428647447102020840829528976946005345676120597473054312653135137476380504339181875362127934459804334148513774317620628505270925921096007915825147480112891922685142306451390168877651509697357729104488567036087027964686460588140674741845230781493476460537370788934945988297004000060087604251147153534390804474454169237114474783179084864920889653600039753314308379862869574062385705577222982560217280686456281216196117674968145964557881557008608571527083808991338794377940202956328245066590290592644989322197553927773293986515052058994656594672816778462284505276610071861881569060550306784448753427141602657600124818769957554086459153388824969011197289601348331363637751236532736117714690307632464621366167682144592078446896820177349399392807531840748361549141991073317489414104009896513354786602588332649337132593698024318380957661182010510269119422778593779888472653348698545161251
9278158491047997938096823372901810336646509765433868883863187588828873987628611469719190532466433627161222604261768969502340566021658328392416691006636279215149191701779122956001983584778926258813966421973651022710720720067574301081742781835413614225645173059398413372051407557018630570876749643789958588166763045848754507588687849474325754894604107874004238353206161638677962349212264877299102210934049415914058816917753778267322020057296004641614685732567487762206585535798870843357302998714996118429052081267589794081043349410716212320203940168207367667974772227836319749166294581472277714909039392798272996177066125781735521158063247733283072141022882453342795573202359198872814175848710310745663999759825794367413839496643549448016166906401743603407298327394303354936103202726165794596061557645210252454285587870693195351612802536966321719020951172966627408912711240322782569367068466406965864330771388805425901910917474196528480189114814540509838627490741277750206076786220609329969785002691092
5941333982287724756582076711780185552804533342704528235387290782661032375064234859299421299554794978164776407925886253577528041184323945683184343629678551877353217456284140706151613023906678891003244000992619316935444236271446927597795143035332512211146515123765277162192514533262663710898257937227771209932004558475642474630449900389366055007356586353762515483377726685041468392494665336135987653948336096857047592720021362262655467852006248979347284730609166146982817481065070771690341069170217977907154889225713965935444460988428772184284877503948061711796709354411480295489517478986957467279910134993890043082288611835427229865067157592848217690320149664111314341567540541707072931179734866747491731387409794484804316018107784475941726548713242301948780281672240635229980577441033384882479177958892983915989941377183254482295085412415511424306267673505068014549241129812689703842029850618642844966384795835826452402339838573731788924305315799165314206822240814454559953745195745027841661452868211
7320473545886408124028030431621548483600842439225478634219951464680960816072616719873524787957377358509060904329155204830866837187448417871468058743302840289426432008839510794562911666430937205335289029820288934319688569354103373071792688862453792742033016630799827006289190669936732477216753281624648729115214718253533686004916634567970317694624803531689307601667194779994384582505045004608944529269722726667505480378858151045615160910552867712228978828505438042780685417796165014323415359304339205578299208031250251105900032362959322440166582833388290200708447390103776434998470534021655404847224925177266698828841076607017196909784758737010662915236403064115559163249585963797776736081224046238491773018660822708858043636541213329440335767035417997593792356983128413824212009014960944105802282853460055261224124419795323278179372595859628860742461474376187702859881086615586787687905534254362164933203907474340529295696468927121701798294224459446544146494738304181278107368120506322903800165885966
7040995235589308234722594709081003397317881097068295189043892630687493264283425806534972301957576469931947142110056224528824601026989886932597286305268848913111411858135782164307640906685446840403072747842704717520986654064021483403655938477538531401448824461384614975946863621980197442111421172645915467110268104436499885643089921437150229553482246589596526267947242861315887433630667840643959791860992181996536159053757089698525813351384557382424135194437605471148636417087175467678845288080453769534044661468319505366232710706986212843780853049527282889670372841270233245930914642592561992358755856723061861156699889116945422857740133820529269394045869378562629850475113856504061582053184000834694226155614895248295014250713589427016096309970666561774482157340742512457851131314061775147835752173034632943932224999685196351722493833854748835655978546441890818731024290444711406230134468361859711223519337165286573161806898201357588269556689899540840276147721880291006773773700558325689597731794399
5912106614472600820861121684798673509780272669387758931481783433015229012586455183331127584688799705175847116833306554971700970252031090946001661522956047503588936102084424683222480535480561349493653545811639788516371080800080865396040278318784037218688000272316155352234465431922664366924859853695385552669663779671934745435855047268510608176883483556942087266338081883989208171480659406164656389833358198031412528882839736495667185702317794672043459967974029551962813701989092420116636899696094180335276259910438368274683327374179965712945223715126518382041007107633234610942065836576721802945364552294781359572543705081542848467384497478562893552844207785348605286186657995330599263436751090049377326166040340262290134476762358571892130140455479449289675922755331910557299695862152025511372002315291094244073074583112083156973911838533088233339372967813249180783861079443467768709543998347647729343670111121158112908862410728321513589199458946405578728874672764790541878224336402002582277447082322
8863166272719658147463873482585437744445943264566412042602759072062076670274309943926206023275139726243530006185407895319035737456732038995408923575862011385355321610484545990330756345613255797374383635399307080274230764478260373324909140163670173496516162893054225469388646230015756566965277167154804616294844165147176610376699888604075537099118734142503290321359319060983187175143987302078547024535219026444006021103912353973800607087670036553719261350129104247110711544609837484214435395495271534482727379154890675663372210283676963316481912813726213672550923641178911858651528550688633926723938029727552216057079548175129995930794873730898535675928849701279996027281207341207957399096660573104928712229994862174889120594884450074215553483372719179343774660112181617760843180119113659026490560928724615545677251191685647785988000863839377935947197491521209827767724636410642588202038943770381605898429623889356218283835668430190288269326969029480094614490125809676365769837179133344479964596497796
3300721738157561272102012470650719098229040872314050078164066495465161441976496543352477117340447562938864229620460978831009438482067295640758180176178391955386889575191432049152283073488635758687142198302950827180854898039628275448647040041690500980906335362643778297041862060949652507548211279057463184640639347666629104138623568381574223056507175050356848059172214886280135618650810940811436169773836616428698009806627421256729861578751179608492712306287188209004988285260415863118325352077084379670045867429733373557279147098284634082971543833707446150164289223751071142495122100285822642127279552063740414260385111360579899090408988514642328240091155128786755125657539612233759764787630144030820152414979932575620143643945021055051336179826300478884442897328264177160123765765487562106657820915957641711693012835238826386083397722736666490754905148922571333455169964970693380524851845976908669183956133536838862404395057354405958260162747073735900944784180481863168138079253369453469688459029950
1014616905649674853338499147187886716355634716025658965162411600016215637990866117872329176795167524566174010517147550853758983960814765586586098400554144277648127669623141220774201712965341994358581485928286466372958484134938884322724597873657416773239795649196003291481033651790686470388035889759704033721940336118589019126887187065629950429652445513918793299872184035177341864436673817010595806967023491941674294208534590435691539197115834853160021060689064687295598088791991337896828367368505736650702767264032424996669472108498754669799434743684623714610801974160950448182986888526313209710793081818280162439916315425867976635955409942362342162785318601099428507637858567176705650082372415826364628268135296615886533313063235342563101458011799097802496701400365834761377691609035215985030307410003463891748593658858862281884154789451521195921392543093453798920295278456641033047281963569943130476499020463323726720888766862885055618991574525000357087117211458075069655877070754851584389939139824
2271863534936598142926594157066711338674977617534633380049530540679841907144237523703535057997392812255403140272217507343707579782274515694527705012059475276149397779147549488108118837418324362127691057045920383967901422580269796777403980764974758888841267327547555348046863572802412772944307996883853540162181184238413349785258954546497245901179012368470398681189099131566576749646810305597796632683273218769826331267844171415350495315611940982916473781077265392942986961574900446503371301575241875706540972123332011989925982052755638901987986544939411268433096184907860737074742296200789373820848022824912914051572831962025654850029554180413444613029987727715732239961799560662242682930367418228466878199506785923942166798569014545072054177494763133255161635922586861267717059278832258148900826515201003380487731535534375239343481801063088434082279184339958762705365226065694593343932756963834930020767966538154853297163748659648415520716406397908697318432691595003443048720340947704076518100308050
6040154588986593459442360911231929394298351131406209519537496491215439910643026234637783399912155373152483860036005217673829375146926153120959317523505504093200690710091119466600451431430203525385399231836208333134723025044918006690358451148090901116089043152457209583449693778623447425204027966406336460931839589861331532050879386706578473729733356120958104784424201523723980051469550740611650290484025974628343122983072540664817587614792663035821236786904929161315178799169890307536261793832719107447078547468876757336697120015105559670416905797711431396431846419130865985285965610481570266252597254382737981767778785192544738071709922643666823747867769598061168699791942222336631675616184649203316734604347089278640733587614639244357250280475083128622327620889945345584705925639650046794280436291712077035426434142487129139484695286525469190912760800923281620461854020789043768363897517590413467957991842710947803028254285575837931862187756156231192290660565998272800271327328607138512336689046037
7220124557680262595029284056172899469441674203718323873453927723405571238636673378336398306869407057800405825208033023771204568350044153020214893779580876269389307703679368693391106389426302059276445994730381314053842113998010473344626133192306072604370853480645813301902778420854306848596521725346744395124307773485561929357139118774727639166169345910020429773800943738173417957183563232878109061826039691366778592945599105643678290614695492533729858934048530557394764585714978081657925101520421344363746666563826473969101725244579227703397979618263059507661966421569353088057390532305801491106023918533875832857466698591140704002900938874247213959125626388140739497455151378396785752705562504201411617896943976267837993828054326296881418159192054102044143557484745586639717423985140650266477817193011949423453420227688227766041652885138487849876532894527123407296964491549347050234303478666113211303867947522154893310631877399653531572641905137773144671208671551437735072424471588600809488305810409
8064217931492071950048920226880937303402394057740276338565991520243945650749823695403842231222043136076662210423460576209509005370429058407506626788778927553945434294647955921828936444284981864750298879258822122877464968623287075834194826309720123879774601756315672863303199572956556841984845941404040255761819249416856983340091842576308253595440198924976343393799402166994732645163259955069161336586284115483083749914061213212826207817226784299008986375979952541380590749118054375003067089230183422096254510580294000129735222022197259230052002843328335704818068942233111236281337993927250028726429227770622331616921307939919791051010389762262763497117401557212469938395973168656661906774624474239169159610261584432423950722568797727428579220679451250844203860916271829352531543031315950869615648078969517543678673168348017233681791442799518930076998775436589978836377470583150692088187889907692795060194091332081527638055114447898140054560824846789178169441696180611772116750670200578990964227395878
6416383646662505199641457378851685282526043632663225235899053940002473376997147296155606325613760828402352240687910551857160839265642746945722542557117341277284936806253635654217341212492538057581460661913090659629486526203365185986144673445653884588313861752284322369553194957259858066245319860000639933790420838002127600836432163898012808005347044752374938303206062228819439959963577576077110432567817847788108407279156089474468499776431206248605372230044174710485955991592283490088394126218873941528113059329957499019664637977736018565317370116183550292519919361535573135156781022645622891169808253572493732499763107979993392710123863491214689525032540212658169765517908523357298163276907777492502872669128146299846251350319565867853375545179059876879227485282567159655565371523975837440265257288153085165929762326010927333250067726717868477809084948613299872448175474883835617150451465425893140924421939533663749196285221677814717794151696456582078356230958659866030082529301506938146040227087789
6979093314347985360368785195110754384837045514749599144359926743782784555274221112969347567732052399258623490367009413431286973725765289044118894081610700719026962112643356438106180749410535938467529015425434639149628128231852610109054207452686303458669347221296475591974772770788155869868615902484838891797687830759859015130496272104534649102095167286004326191133562490942790843510244354615592790428407125415562766372011889369874513041650138259941915528122143227026152606408777263067221393539379741277243003281223669376478550250841709101862075491401154009374471621831171194505317649598682564805193663132891955321103899051733930058607699006547109096041665132989106195819960485317375834544857652376521762917015899638839087172808569848719173372587153155000758378704923359382015781036522904872390127681554924193469019349212641465797809788674923036327239139753010536946540138406791145599431601661002287567719048879343834196934843901636476833844931095886554467560443745715221741399712371593373778074366241
2872212373284370948822696616461442677688125721843480294266178662599660647919417144226038519963339238497425727537466412047203984068140440828346093416740721322004689257925003932730154101387047075905296495811860834290844851193383624141966548131071249777789853300774389234437109396969529818007161709430645312213122047624949045291971329136432949168647749048855647956248993595688921733700296541297959935763779548579205349533365093256203696471045700947005250877396706373023007693227323946472135522571116788830448317541135592322005193935028511431527405112181675484220547019064132291006472495457570417655310308922775448273655042456027486668744250668823972792689150817197605080115689387916971825159897267250631793846119670780424589216107302178333321228940264909734256580738694555266511790238280582083279956753761491917947499291806600044860892137553963113499220508405164486398849264688530382914571758190438854033990535379178711976784804448510875323216213146351114075126865915031877717046079498160600005375198904
8904276574608242664237458731551012035834100321012801634305841452441459016007216768838367987886234160421807809763382354397318025667873901639289964229132535655821610494582902435183357526144646572723308502960404740254759248159529727736509839452187916305896650162585976593196375845293266616808835076931022900180268583746427323065019845083550776536575645149209818628066318170541547378714950469071811655086431728502231564938809440958196163579425966347637059313026979585257061259244083555636369572636453826821737499527439719078692539799831143495426729301622969631560822192210672295651607417811155982654528652286921783296585865536870278564189775909667264295532748596827758974338025503752973532421351421027182505438369399820614826632515862298842827434170654683151028105345512413047114814712785860630405594475392686094429306895853731291140920767492714299445209638212220708323562198938136698972899054127722645765952863774756596132887224534058346592664687286217863537878706032082483652105364890862509510341436115
0519455841236993669223867526455164692837083099434634005294692338755132422999802518071831282702091194557283238177770957811196372417678300487337255590245641434942259517813556646216551627428644852364659691980565689687583949560552981626347123466091674498212306169447871983703301703401425805401131218806670657247137972871476924304769635182508864024932547292136651746374963212608619256931630202712533024004115315021250130459844763831059484205353340693003948807001388313526852123724488861910572935499489529444441532434078632515158260843741510362516461361628822811721920710901020160029930841248786061920679350687398497798825591459660842509754029640112672210737191457608312752703420656824730116067064109543071027607085356020579374259590162894198318379669521403725731849465144558268403388107252620670609404472382939446930770239007011824933985402611107808348067219706603072630244597806412354869036164015779066198013644416408692275452639081512300643785325847394313164964080097005508502078478254430315251622553136
4005397953497497132393183823645529810727407630828841904663059244330618820591362066146646641264739609011579776037562690259753495318356594928202415520887316863685927858131700158066728353132654812248227472385537093251423690321635636231352241922474808581393526123165362070127874480936097253780864888422472259725303749205235330211961227688792173105813227059851850026219453463123840179519765025440397323455048070149241862134748503986480768484765009268087893646711684797537854161879797873729638712537069135566091241978115769357342695580009403880815730790628887043202428123837818213474334536213709790864503948894131061260368372610068451971333178906640073484293547740020298689269129095378653451379765486482015711974258002429995528710823918026563530861546436117381577915803124992660124063557090838106685086658557827242646815901817882989307179452289503743936730819160414497975712003968900697973219862668753572107836286516639220968787798756765204075383609306942830938971473612670782309731290736843719522500779149
6067928599344260792761840554206087949767151907410037001047019142151395730327573416853870882927610460246757825053095840000866625158981844820107845628047574481282678402454406928289783544347792106120403542322357277227930382111530831186680989674046203428984442208675694183041323444568540821884575789278182828746165885523944843162169119875877632361397984326008537820984778729137415370949876618788927337624025139931817213321123844830776866053340305324616326177874145155173173281003061495812059092896111392298656763436465465807958850220303517659291214387620104566408921800090465174292629846696470241852008584136099183678684113316805989950722875879952159883282655050918257597192708330884639792062110589232120701273733576640515401463353720663342514401127753734980721055787590964562612302582867108016024242372608756281923434473087146055368807493529607164992669202668827789421462117328484836575955973121526060787631618691794729136734339712548013024109314471786172331040935898228807645517357799612129652624780922
8546734181017744170722424571637091020355629162822069287863302713920189979301494362311016602095202959325417099059992080966493536252058887717836007952526196100317916307600044332294544276643464069217486214150686192722794297382485691423678827039431994213341412934035855337014052522580266383537736039516276908430983259853329383293144213670080649015499939008960691519938198697512237653865849751686571156111699930244287489227020010990021915419571964885010967071849375612057148072109356811826191316218371510149654632932176645456731047659740231215767414908956948113409067202105232679486780519824875482826422040851197394248705360557372636995498921515311404281443954348267135140050069266541494474244143354081206418071014488860541135138673307183884496269340422559353953054650606482198469933605032655878317385370612416572871547111175131617971158218266933777612256390251177833362109262519210983571985229483712431326140955221007317841872160441456278624961106404113870173312297855797486206857114950429670829181275699
7445242488176689845188723517267672207750503710282287513798328858131202130227664452661520478596505203682640690991853519751105670845382557183819557120131934670535740730150309680236869276743962578830689261882678891502322139648659665152143524950294988098092047952309152181037827973431064259162819385266699544395401260864456681706747692304354139200283517048254238805984831803771521588748766283215906824124731630104635004991861077978790366423385432643990372094070895281831286443979100349073355511257199975056065986036221809444504011494196210968948856669331762098769403160371881033884167482206841213164831772038307450782530587714802484725948384957084299199752597195755985730271251821175473035209435857240831761243376905952842108508579458076142682775737406622383528936113876886573970237979873685496891450521879554013319623514635294691841639737029977278756482139413148459020238436819442417052594583474776256150845400887480070316232342931628057481465620511583351573269042586117122867579763446910798118426970695
3569316350209779006362194808870939988888719518945562655238732283796985196988945391231329289355284685896767883581918565515828382626053253601378874959823872674132783342722647080501931140117750482854411693665210926709403654828770899439721298168577427795053367471211675830589620603426048545241161625748128549551914447539893011677541675221794794028693812334666243939416997518236214699220208622930910238525193848599909953976661632907451809494276616088760827351372733924933364977567301585208610073692534921432215420936335487865219883139197574847570807444733473665674263594313045814923104574854936244022291017823930229844728060862608807806783916717248726586271360612365238190000530936398390147920838051041632111419017430681730591368149976627453857299473837561299411217704768593487777524776265281418016347033563086540986716063785261239485910366312910632282088292841808800774658113726954865623195911281006037359462723287641370125243515351136411935413194911724431372969970766772722442522857144994507518377076861
1379069874136863475873075061428314560532942692531479073800398272825399998563590787198794991194466277837602968365606384072927987940381493613801304829865604479251441980730367209821367730042406747524882435155994148848422137461368908603264192839776297404938938012892530043231087805270093812414188219789582745262613675330431909885622826077219436906227749804800378498188381426706307325816654463600970550379064183906122048940516970154053673752455782013617169779087641399093214384635565807595541665182379371689584151823487424143428383670051082402251574510541733871668603226867736486122087399273641674811782729100288660147202284350028890950980465283085182928539805588297938184824034175652797030153804640227488439348674214711437392707551718633673584896488891218371674876148929582443669181588465311137805371234620322623519932321640265914286255268677673438446679381295422508539025750514754731402110342683029357732755763423137613466864450707928129882451602684373163114848525627334330608206615201778618125667501598
4169101773609528406451566198670709379571463912560771099151534958711936378123740682009016463681060801288649257009406512264882557037721089618479941371645421680169320498969875870098413585063909789358400410280820512830927450165891092134257411292040772614725538499546442301787539385756075752961302489242923874873854208802662141287889719370284360978843102062468946581620552686348045440700350065274986403728589203609966670545988340916333821917221492089560796948015167247304861530653103076162223355364518718214435913127906082437871726379904576277048617712877691022983148349046735299745240211768180187011577077084970530462648113635134216692894592305018727213794112629980453823630954447811928918070365221603032745948657113146464291190112493237566634820065479269172214259907682923631980269211750817707891086253121628265083171927552872148969152835162773131339269854839837352901588602382450258682797281341524994888879386798041751635098092812123763142125660063049701884351116073553159294796267046113005869862764189
7166184377232586639063580575708217108411520513015105131136211822808231669041591222547195773256894053651186567017206983651245219462357680529932982040471090333844910950960715560971243394867422237310684279063770417518543577259169338108969889241942282054718972268627314015807890424401949641045148413461381162839300208729253108638092964552245446851475347049596670891199925084503690861235255944044603700582590132742992084418098400278846516518998021131911934377743880088410749046153732436387040128669643150776082220074268451426708702485579643293414463851005943546128417464119645716270982415396935401442910550802427866960792150108085747488326635501387770157350331584252594921134906098907289205641007895916512909115678161772066778644050862485108707255854795037437742057909861517849247750321145900028829327651644239292488814137213431388306829014197694435619834952601060114467296230982356922680539501724522678545123296301746166480092572061652748840397153373773337434638986648617044495241167434175750600410935214
4838737025323840401829065850499589857094340451971717487839708207662049768699547643718317369063803163457135721009946087997128342059702261460638109444077468658683745738659945449585576788668386430294266658484549112341772598849202063449614718410135647463548190541369085670190002019376734526149810116052346258965710462697446387963306892987735527464681777616511502222943005987391231606754625402268868600704649818845692372733818544035534894850984299796320199821170563335597149806877370075214417534229688383984374278022092604503962234288457538199496650699559011683359991357810899521611639023226897358751019743334282534059089671805772801170537531009135536118003892307552022928381721203112353502426004802592716437911457138448603803454261079883319813721480041493712166842487783638641287636426253028441496812306475237299475124986334833499466252801660762430793679211211486608397106215429081587367246378576901630908765733110932099079276604649605200121318107940924277412629040901036765929944632010639306770794814737
2184469066488223555595374692343094803348313260565841437404149793953266626225193877837083534714467748315516430889652397077517920772419681894296228801437591759070268713303077731814241712511142723718899777067891344513782991114692188011740332029972020951249664996289236742167368025148815343052286440332665109852277997423052188659468006646957686415423562053446705266432772285723038929319949040968163587660435567759446068370614824007936476661949691551817420716174903381810802431896604071734251974475763349493269940759334843471274572888560019064039243812244748443880515301088846773018821304306913281206044533306548327948467824976072063538714615311502497351253970765081852859415698947327445389595866189451875453091715997298773816381124538301872253365653723618797337158055780640733081183458641212837657398355395062873492369802373833378962054352138191999637809347955890811519734144159633855554779603208693588691113109284915342837975972850707418775884153062822832157067048726850904250595396119693813026303059376
5057671785624085355274140784815149287275586387861297050613676414104867712969603816261084011026775480222532113514280857175338904659615883064054397761335589863635444831497189822913292878661204159165649296858139677435418755751067911032521417058501798071225281243311241269813787360506055890321067531536634998968584167301842589191157373847453707452886180037727758126815527680070417679006298946666950887593461576601796464282230421862147626608762293334070805080324194706048112519510252359035336304602238767230129214129621322851888640770336800507013903076154190715538936465185857376011398639959809695401183769240023200432264711888428595025532244420392204389840284609142242996007061129532641141692385430271601591191634892736212579828304394785233143347492960701144466773910118432016467434090475692602474967258217423927507739691346765496145831594845758400422472537578537924016179138404504244305213690953655230083425055290862053045026509127152134865085457894136929384891064593532340816184067439139651784928508918
1709040568576436221196344992661829885998650850612786190945514663275048949126688071478695358785336921377665108711485024746332433914700966154534238002166796516216436586140216854599760596340534777958127001807298954812434542149859293267151346143661558733238768576985633847554553875757600254967734282208575840588476676775971101234815028057530701553674759066649859899892790159445498369586500327381375257534538947813939521647138318510923376925038822707246468384600209964744753139623651175385340267730578366508593402158912498331837266126062941391244152677930840308118206817952690156987201277202971597356590750437767948036517760220706251645655045039454413232910533516424240010172731803142071514805168000594439458271505938315852496216744104801388083368077691666772717135004387254739805119599871791428789085637946311279793540221778127197975808789634346039420585271989505608189872807718164745953075242102379251674458179256503820789199952997509117588938552789764194188324358530711696347336055546283970254522437779
5345732669530101278264968817228734283109509845566184495736582990478118613003870731959918830961283251061650588975253303197761880253263755843194084709975763104945924750653131717584173302142349961489367535550085631035271265181288504584971957457537042070156329146867827904054104455575162791988894416760553514364838002993618465335778986311634047736202966095162201625937822937432643292755975309674352178225622805588144918413297317493573106005665143680167177896849300638985653378239354430377341596986982418875539081713051713708765097082323283733927625420997117522096493494348916428439671860978498178607483192286421949616181521920396064343068245080778501140810676916537433000785158055707722144023211881478774374341076943432993630147879923006925299835178265212451977655325615145470848305091882745223344107342237009206279260372299628736032240745679965819814403391876895769721883137251976731516775811564199638301416742621965437048019849781540637671162450561121285044908461056221060041526898437200860308458888062
4699082167729232410142744179316080209883863448159612414914957980557932326764388568695105843778550988754403756957248247198149931222278870364974415310401405468393918022554264494602761217960785553328061005073360636916606615445180171344125795629680107199328332040483558203627744140559685894187789957615247837064886251124568678239276551953979491434563926231105984882090970022563388475617873629950100980943479369845229417317585714806067533020583156093670436056961298116607177843157045940268231697408718913095106570997230727724507177159096201429272095795757818147159906498686361772750188168457404462782602165443278441599808624414267073275536648715221712003455224053385966153291356999571827442144637326875977431454458953851151423515362949872670138370294419701052023154321396414852453236023727567452279558348456605385731294434871523845728062211805262831064099138564290835362083672068080266219887162765452201535547029863803088513473742551122299640111103923680569715417502211429917137924772842196668964716515999
8718835872043707998265272598082533421255061579807152493028395520880241072746008588326167962782790182774933722375854355929552011345853940181370234985901341724659223321859030195560821358602474523542775250880310692197605436508625484826819515153104544362017905901941032716046924982399028220232750556598047935992685093685859647212021643238228684197360476472972636254908220124292722824007398111476309821004758501885184299016605959753035449119417667629903831504721565331210827333151834106478433776894133632125624999916325498074649588376390322194133643736530738957008219670871028057177439782988809467423287970748023089528268660426523002195753745109840266826277744202767845517380846667195077664693234287009570853722747445261954810219990938138973858726478269300440520874212052896505939838137220046112221089947703178766546501537030519998573714869791469856152604601822959266249023755908647001723423294452526404455253414955014750663392504394682835934017908867637076626985628440952595015804980144782351506430951478
4491219536098098837538775711383748834568499443834009055946568284104791382623432490476782824878157570143131717551006339686877327414595087408240989124574462174595390918367245377840226758730899425161201596762508821888418905185130783047310201327095406009919008904553413111900444412230340454360452798378880364033396453708589974471778196865842639628500492066901199601345157167653641186779811022566919508560808241942331199935607418897556506758592388005024985489693940267038663562574127599382010542790242493125848305932959384679548148526898386181459134700572053672317694348290239262522143836518175903312361473854145715200200601184367302490432249052490052397184214653124571151365151605068726017838646541412790090269330593401430183607238021048361371621267888498395468864006845962426045323266980009462101971925235316300253492035219107766339817018278712236992111122496600940290758614188240524808096301766447468838496394558998690799125948950356519531834452696809207148266373290335167389334114503348925452005094667
0097017519756753093953773840686847039743005168933481101855322482450114039832022605599446681699573523337307084829251905749187701553400205937333531204641783534922929332916963875804410273823939884067616265852981390871901072724718177433002233679849365427450076515656227042430368567950567278077399954895814135835704022019325299320755998245899427066234548800992755856465254482994849927875896341924783126109116090556000609210352600850382392015771032161801545717279344404911555472276104410271637065150780960157717718307059686531932085681584461880902078247802099096466941468776571811323831323979246289039823619476188118680413107923558606695221657825975749746847437479210666173627419092608224441967909121325584789189046631735975251721216543904349149602175105241081836154538243588261479214519893519874218325922418106133004051876654448854713235544978256109856278691766228294163780421267855106968842108159570833472980063958660801552936924846441437928362914737512603670591060592849094605292209430641976041737439054
6407450396335620317849851426980543646634481148303573579633421737915766282911379323632122900806117970080931471617802025926636842421158936469234973207142373698015244997432392462725588422279753000273218184652370933981503845924691917878669040585168262824620576218027531188031684760083636764257566324618174697706706854611310064741156445401229250035458695336686099311325038391549774756198735996201651521751643885147841502063550257587781574593631081807494988848038468648605541147575910176104791343619255855541683166756131689481871240262040381590875652766075986197590163085455872408644951712016090152037643450964171342153567631747930931418876680180872192883517491216226178700012056858852800999243695792264874857484133446666611701319150290890854535213588646736025553814550420979602513109002956135649292333314532096273532336958258786312791655586443304576839755027372169568203401389218460216096788135335758506069676962834797863522402058915259563583869427161315155929492636250694651911483531305676361093776043672
9487719017563600795763845046122869918215618944397854667386056487561481285838644760881705382057476118044822000364563551157146961220609705993791740543186509909709681679042781770216863147582878284658208935420868009156389145811936267436890739859181084834011937117488426306097368703522724801827030788219976724002261122401902530452655780257387966473720337042054270056881992052617805829527290453259664468254198857895794407484036491066035160072952537649073728369355374440564534587023185041594771038892577106548160717224106209753307297272894909925241986509894180090868386873897092264018424718815979251980700573079240754245623527492902223797166852831629944422967700326133763551265973473569523280817473116439728409577280538160126294278811397355742730536230645465660338829077793144521385354348812918164583833808388363999442868037785813655222355989695747594491528321805807899595894843040833681711332251565146387542428229468474333325526097707703759774356316035987206705308052465662789294033126117844218595672107887
4125264004540461352470012871227081291509234409524744027562196316782083596535616857641099623773133026948878427127395051108934132958365438158978295202412702271514239281756102208492414463516002465562507220780254059431166095311623525671015037912098239253821305131382826266958814222998671917025883466899797357146412922873940477593510925383612912482398799826937768349901358360472346483082585078784991519310569232188683016134991643646708996223195922513629077093634713633174080218024921170172293409896046651222993778355874159734533095746160367734854725875499481132126537426958266872125490013168582547544940349053289079263207430787646937050221213663760712727670701485665156853868072030592887285499181977351872331926246474018491733331821746730050311977808196593311088583461092755060676035935347642638960681939079847536093844610666526813025787220567027005026836294004006527962419897331311922592398513413681204424404810144259572292194288558120729983156789373462774308924084232666393555366432901378144933006623773
8792104465786825040092782804455011144321948143800974282832280107827597005300015014086757510508770695357345965234956354852530836748872640501741916450790455614930114562934645758276526137727237171592024703973426385779585290782226599970131220648666219604119079221582297836873718896076998245110798018807558844760398623678809665140649437796445733227679392530008395137382981227513620591464000681250954824855668430192570539177710737822681010584416947682687192615480319261747381250025024651723250623784041233109333403353961824919828733129669121983506391465950480984593513691720125681726690949928345235120908224741970208368694753005114050533012764221777087527574060197989805158109746598772930625081999188411441049906319792054738381369226914514813014717435732856359534288302304580129025724772469801591577381584653055606499812657866617770264708643854786169746947217623969153975499843952491911348357322578985374335041943588457099361517914863333127703205273882957740641447561426596511203928870691816896938447529291
5027496691999082890853824042673808469919056566703098575744708206445575819969885770650206566129227937199977681176497013313429479281564882199140155117201444099826629312224278689788197840141838982049963289867933577492030904568835005062352622122379509652751472543173375026071781581391470145219717932291731981377934976620022852581000839342879357591706665624636425822703108018256517824192438585524302770401317347979343319420072686579250153117201581296246493028426624908698003089224823691837378232123001389948716657549872033458208659761126637417591951308766870843641077038902358282215142850599955836066415184855519777782258428928818431243458105963415101002546448592252876278817507885981692830090487537857588962617538945832166147934844550770718257016340351166447859492075765440528809992458827345870990555740422636786321446443794727161433263010973041397856032497948459043013704582555627549629939900327864598979392985707138513973866270656729179803143173100833661289297608334421179673092594596913173367661304459
1652716102456553656708288918661991899475941595621838312757983343378908088343641395136747931671660299872536965681452794304635538549350103545317952264729262878161037099555169615288091145289026840588418112313067206553756873073835314162376834390224357873980552953243306610498333093940022715272237983059799497288749582219158159476345475337097883626537957595150021688701180441540597239271185191335033583697975446528541373959430926942289461070916598182350988945694681768319530908614059151406064584025251168453807593313899446396267789151341502229329854658562707193939867663589413305113756656067492697160974475772906817242292772780481276364834017284931473005755719255060837522590229563144955988182298357392256279924579580653811610122441994662371765378320405685906213875753967097870071343386539362099050473591997781115116255252190453250812629299428735595136268998518659506506992627272028053503547025646259920709505584487194593660992758256258628321166519611253945962230699835363516819502708362912153810954837659
7083217849684735739852163114121579032767530390987430939743506615975194751229513284247345287541373381840376686645460663239640957922208708641010865622202154920549599460979810840772056462349620591040105199922391565123893335699433257357452309352615204679023942124769736965130375934184052384133445236706315876521369859849091250200599790819275868679096203203406180597757475209853695062345663312497972492244900798513358424431703828067163742816708733236769670531440550449456330001676656923956841635025911976257576177516426993101863987110813175476766239144246521624501759370927905988828048018730379798028040522462790654382327966446938784602075426897200335450496333444508127855715904075404521922622291862246946314426232523712809261969346029966990801172104088494698202305610337045131927943292895360279880266958083017455151268954346986810960251818390106406182011438079952754048945397611369279014998516177296875230370382954720522457714258673912417877696398968760332034816060354943285004598672234199044200462809364
9522566913796792162629613886797099965149275418499854197678434045821615874151233962029943584569311666355690607137080311583748795355764374782551289633038861480189789990455902892975081512295034431705702227315613974822401122589589524202740738774038194686870014112315022314247376875635133923929516030353238702559272052349094695202855836484951400182779202137816579630192483512473018407342018660467022977693964613389423537622693354430475645089131414542863649223409283876224753587247925509248413985826797306129546976404180498833047512594532088536242169833582955863057936288929575530569002131749311837017904701436524864236349894445491331638137432042745958242000580001762383848782205962190670556724884618571635468243926456379728777271064467984036898733840448730330653614212307488231934303126695163085739589014663527295762033931876780006795359977037311311436812827875284154670657131128840036846625874964696621088213305460990313812143503587972595004229360218293248337029649752485668287885624726155950439291729828
8921712868062330600887677999807690728387925939625940452436652990112407780317041455783734121814678335146061647921135396983475839738598665804314012658037788272752476715202403427027515943290258232894229948310272461718941069524381504930594350930733660697570356637386381182027348455763246701438483125472034427026394851162562714090017283070659361700034598930887049612059382082644977117210552439645103649735463540825810602804097334197959441528497635865033226706616707563648221395945217522705761137310887571922562259761386206958312825759011722375608709590143485992480865864691665760316951121869147416067030059973220772754610110052868402277125360355134757326922784847045061412261975866040007780852278093966614187238740909169456573462796602027560563053414578719443281930818446900133441984682084858223116846291982383367857042351424057319644579603904468126717013992146824204548806838795172489154339370326956785773470999974867463556522933122577040829614788060645406212786757894963002054903761657859027532605897861
6646302052691277796827230135959494075628930419507871755433263359971396902273882223836289409146470540474318638367026284068916331497152986927694436671222336794985829533349690581963320474050277724149724978769179114781471188912834701668576759344520073661537352200249765693269139269266767476926287949555644948931471614641643186991707279303778415447573897213749529257891014467823727885068844224025044666583393201291645171820801211540243253087386810096553354817472407596265209883965627150567095775718652394245965916070096252811176231434938579365724486199779258189943506747840248216463263640397430800056568536271743591529390525275465433993608332831646694036205628686633703477959059418398548094467672941603002998626979011683445638199962485527454055227514932670667063068062894582300818422095370891258620448454194913211941825947317719891533529063108280343606971369079588725240864980442192662983723876977972917068030454713044636612623696293369062652657272451393899639348164828682053135261939859610754826819006349
5635401869543739922575932982899399218037867956032761640740226127514356748514445440033069685091663068812294714386576857782602193193382000113793571511548043632580568153285526560056425391542442875618066854376103398378569686466815105698807678409418976148269634014718192829321698780988981814099022732092969963301068417309271687265041770241985987982940100623764727089631329012400365807375404790325688073277484838478878951202257587488958406554650207888926176473839740060674806675132035832750552261459924424642658755798224817843497956764764191413827733727980151771413071368316427776659932602956315003209587327732143213746776546769690197780652150751670175283751561258481701679815247435996459713217005718541098950204948913395944676810222635674078374940007248650863452208219945648741977059356065971203031428413330818441504256444193771015695565487338242056853221804838557044322298987606302666968141919440039053166170150076138664094115558724731311944385357738013497310123566167159807698220121786612692978331450384
1889526573054285331953753942684615185992044300351359974202915699156366238928264998799846326127694489999339331910274685817390019932961866605991974742444812437027724130377194189180309748021693064060550414436175006092193300308683182578176153198720431205442933251498313353187400680284179170326053966414770814286221851057635881706987075358521075371044334995453173239710551998723583825041550327092873732252024266135804465286767218459729601091959948657895543201711821574025909554420513892666213197836325557901917493327360819017393286252940397426499945415718811319392874271731059162540002685271135455868987968210003864591624023599078850016911143441236483346890203130231701949631993750962581820562631331962419092030887461060054040195733543021425885793264942707954576873032775658306603299142313653430504332172071834013120669067169001651478499276819678028422863927345771889905669594272868628885811732097914853534075204085145904392876214580435704765198079694943750880638044070208183348620455959548626299711232250
0192314736725927282996443231797844714507138349368873941989103714456447544428215927982904383509405134424300306372165767939162207102267317742020389458031943290271424560533933264365159547452894606142027548125556780504437875996475811540684094929659958769336894096703542975841096671508624795243401027583568557935295720519760681028405175027873918036007030770857811272548166550348924035002952215944774333233305054364369029964655480935405161665750277804523959546535768502255980364289851852421381116761209939360674068617024816827249075389744125739781198051060994020188335373805841223040075823500958779251542081840601647767898700223797674712469906537329634820104339879409333768928878724277613966742729745506193225917946203723357017889613923898108193613214829949626648365813540558195638629340904333297567180529734730790689501627189899335478204174446354030492237670097958640773045585520582871604290349865310483034304452752887944186441972250041778678064610625997363320419142257924319652690007175947837369510703708
5620016299262863454915974516712255002081404460403474386043356402898577638280719306175230599656841190770618621200596580973222528544974534730873737731394175365239672425328417100277920494561801008782107814232225590230560412106246730217341206184252232198716964128927426558407439662262480316581504581858259403718057377474380435611369838158025392263444233926931963273978919498068450747156862052468813819611247254173905557890265464376203452430163590191143196004790569210687666187187467088054962268339590418128297025701272966051132610485947161909891220598992974946124919528023118286850772597455694023021755570923939528522090149375946914686143525235149526546011866209402053554483980374901684822364457491085648327107216409918951844224072069068332949310229770108387352474687703323446990281337874681983952641691999438693865323294129775374824901243142240542028709751404730567397984296171926813145750511000143720433553343382680329296236375418407469679156921263359467028996147696494684326256326213713916452800057455
2069930504506087627704287183671530062841350366786367366030928718621653585765540581634113165443713362646958669903272090809987259428150907746062685565534961555453378828020870255453853316581095980416732614331578307016862872406895021780054859471881086498241077878206003711383152868048241194384556577576050688491543321532132206961238271592216501054140649229823293586832509814654640754563642353960755098901051876564954619554472855638197891825574089209548385317604596638675819579908449524185541544866188997457205852101530987972054811631975943748695797276571701689806146811660670868470853995844042556875464027770130684655921542391633982674613647135347475965291721919558942968179105695515000513361818242873036324146706985422738612301803022301274538319690386739842333367692619795943277995196037577198327329134179306624921355302691590430535477268372790848453321214056826896031698420242186480343268153036417440918505950816845354945517180387984950009622418218742103566989562354980575094438127600797371237022597165
3288883897222038073931401509767686376219981967011105687022195508990074527984867651197381700928669386292067804730467663085376040213338571544052178003637349037106141706256082230200350389169388534057477404559558727742755012078972769551282209845972322979981393039231755738295547082763907677062777510903216510958161676976705262623140953734801670466390319600369213641551829466770276632779906347412676185994721012969494829489253408789587166883263166533469157201262425833971316552467774619238266496650710518617164362218068899225217061038368534066446018093127603541781584139962914723100030954985054530058828207626917601626836590146829640804411590440480550090054366657368431134759951689544521503066768965264877157799209468931943783672709762853285889991227073734966145102390052567244406457565470806863770083056834605877930866523753224326239024818950462148422469329658420773936018644062237789916738564016226655355093197683982600258742227204504390802662739089967501536720345734600312908691059847235053605923930330
4828836017754959520935406992288227651119993104959769648431064815730716119416530211379008649373752330373745554762945354016335207124869735166658557749407200948035163307139199929459840016015324332110593760303344808727107279175233329796993240648151843282725853054149767523016585748676176541291318515981492004452689609440504095156991791630451170615653315189208068875960154470015703026954787930185370678912632980149058857347978284403634369859687750584246994104416611686147374065365240054467217093416899723869052180913291131315133868571227976785434812483984954556287518080818720004482661950222076250178774957728651657284306153169000307837326286206401738508698505156656245247698837678504431378700313808644041708307647825443799419830544233663108369428362515594859260857417658224361495257708505857978476535794882125142930713459122868043293894401931356309872407436681935618807420316627500437961551584046584518291645699433451216280119896650639106258123192702158538231950170662783086381530314192204955063765173710
5601656590286373948298263321048061231572421426973504421101826449164972658194195791582553628031355092396709296252373269228990949151533083526187858936640367696975794367473326556881308969739892109228160904288259308779500269254327702907242297388578181115740167153380135725242109657151708230941826394676036709215994503719182872832515893542501444016239199340120288343318582651754339174660825227273126358562159322596631107605101195521561952046367028684131380481864292302962569240216521077184680573221053492817429023291977961434851068799438323485261636444963875184084357691494067870908915553341263370358878280509520924690133429801203458116998690325396231468781245513601595488077888970968685628812253189867511266201225338381319591955634162932907815218110795456630884904279315638296806943853072181224450191194883095116518666356736534250817013992028679115033708291496559590248819195519915158374771919504725820936857167150984283249207584160258418764235970473477838497512117128612544704849809483338377588318847110
2995143643674172836189332893180442480905322022259574963197866964348367267982443981059757549649920504818940081919291159613705124215602208415281759870137293168355806533795979805893867261523222887000229881468024482179194752000173481021094205634687627335594842986080423260460544705213188318546559246458702826172540754551118602324025391879823758506082560638500977649868762157899425173579653049092633827034144699075736549700764294473563333359570961468496498228918115894439254333916056239354660320445506089959241839493833673273239257011023603913812460164150215453736591329153904584704360216897572200064253563427335380407941989980164107046020281044468629874889946295015498335601231440933776717636483150953740926081654579550369089955733175668236218133679122357453772429357982545217407213620718537338802967898593126358996330299632037316865126099805081298311353240113006411007291053668801311457657669005058671431141862736355809503813885018794637507195635874254447980366120914976641012337181601211262552803016444
4651484759630592533409287877115390628588177259261531970048181325798801269412752923032600171284457708971199910143387822616930423056291681311918826648631629014972269073275521334333771652484740433552740646968765203854928926512698273789111107790483405427899833851578242691677862665264160887243808783135717936617670666664158014481484065182846099450002087566311395118796147441218272703741173848659554481147024393342922977156891290363066294571977800220182875292964811465037131385874063766690380721380519675800783584643923039909198351702262479888276674435347399223950052428215071616001928504399720193660138053072860402129918744117726604549394353406616258641825979919684152166523632493052950138812168759296744209216804805576878639316557068295478941532089195668781849345373432269765101659457833808196578043802784107649162787406440709520846227614936687370540574965940479001849492911032128498502728249525234275780328278537181228988664576928817481553123024089606238862666607751531954802198047999439529228652174589
4763744722508337392266167644116053287146056454794947054237034269223729798717943348533840694965191507813536777958559836062390590956286725518083622793902947619897784130609553609321089330671151446703565248733186321877798309427159290892811244248839720612097449555471513621916295079422420412368987378675147891868881258640737256811779775693081238250738935530125956711291039682724316711736057344211254915780660266097618059541858426977526696385199662558028860587371808983939471637440847115803537359759618490292430316099777877589004838146445639399307233632717923098094006526004436459895306295455297598731346094479623836298518070734456797193194159977116170156163310507982031677967367258573180092999605585242919928045790004902211022126582376494940012039029980697357379263025532674151350134578146017562481493010523842340934709686151707448886473343325224614864956110749980680160018371807275213065381156842278781126171260479273911767874964979745420427363320058282453071111751946975451466592541734460436565549535482
4289502050074850671069054641561555630910073581224966941061973648956568219113188381021104218202261122667025105068456980286565319815826803660283156359089920124091712095415359791850910721140160980669709542260754407058322906755517553268880143417768588297650222268381004940432382035528883630119750784010054608278489234968914726137489217671470547996493852346406172194381529069834565723663193571335730477265221280521248544397059299442865199171641661032337834422672576858324358332707401926644662423117919558850248909765009225047622238295356932043551529164256442012690475618514236899904021461066681988530927595623568291110010728187106399573700064485264184312924294088485474043319225676526229807927768912311181725159313789625541853151936927164635697762274027904545379308468233233328892550692447367873209112511941108815268089746871089414892145929179944721659614151815657702956434939734469379657720907016329417989836498002215221689579486864956664389780894775476311264079398784259633610885437381392221827967178829
3386881855893592521203429866568839277727734302267359407494086280015666858151327124798658630026099357291517300058026945432808278035455128642775736887981673260923846626098534021617090271926004363623809490365063626892016188073608081032323922444026317606986031166733848731176923733746346829202408246755677581700667757300322039395567727716569843302082035933867868761808528708753571656987435698575619678312811784207471936117860798225237677096512650292853823320767000234081356982540442228470141298946488943632952539219197384731898351502369654811123969311219685235236523890370988658463882174457567064858685319791140346603034363528192067959939746694957373260593459661549421500478271029866327117196631052309386705603369935662808663616505089836616065946985123381005866560938110595594940493630096674814430547547327924593954932019968037972097249533650388400923643407921459798525337918520974374687704363848625584096834621656967163843098431970773350021368076343099867516799784722915471729069900962198505665921651510
0206879483258986550014255016828694345791796510234509792515757623490694207590689730284536486004393399793217417339689345468203976892120496252377515230575646715159694181783996438070906841324552668102780646648793768567968801898628206229969653567826816252341848253617480977668288478150083899877107113245137844745876045367215687719801982829251506734175706060296604627148814581574463903360588086339775874635294970848282225369112903996420657764949219776102628182250172672295184254339396600745512508353451776588743738017476063241325963576749121604511747453931026131480073872582122072897339746532159668219426143940210609460104985996665041655006516610859537519114398071334569441043035783689088272753002528644610012381320142234015718135897344753630512542097913802012670841390951822023848631574840920485205398905276920475672311835953399159590657948412257828488588051210161381628381074035055017375627375848475882337978731636389911202915732306068452252211895971430484527662566968803750180619105482496655571663762519
5392707728677874442775583777290971052068496720547857440118966182989814646777341538191431059351839304644480025884150233319856802445257408961123749915348557332534637598250081767084405827764382537210570983840756592152838808599072008342276106173088146541405835455429500158140090758987956284932037082830713857552516036056801927611263069640216835597149070779760272381115727408991253727904471669518928439669416206508783010912175522404761229839145184272927689786000542414056525448502400560006359938929703193084837118202703942215212829185905976108252844969691361356332523100462051031765785383237734278869325667373709629012158991653325525493411384987387539317478699190045157997147830005569758986873098392570710103873431924468081148603583439381669270057789834184109675498325494940379988413114925793201150303403701674599027924326977007903742478687187907752507745720147753770281956905777852329154213602342593024545769662897639378583481966345764732231285154597253516776660548326980531846822575946652350548943021387
7994601213604091535506357560086416819647656576179418903075075530595715056398787286719219991816536516004661197241806224442645735762996209704203243100185673536169232291910113564625086317681200292613032114656076884381215946069549578081643746932036553909229515268077082354864187232783520239159807577446562819865106870107896799068334135553879675089398662160319681101348235752985593011431561866760867689229810204737528499844920029353274013696565463656656536486739777073552694325220827202766570141072114856689311642503414953422306677906709115351617008935541315452617433302222586764051971997416799912652888972406286252238070991140517116986219754450576640514222625402741005105854838417865823467182729835123349932138954394144554749706017893789777200132529503241861151944595402816118258744431012432931722275162222555548472899205883127993791033603082250405237635714361119868157941974785303914025642973638055008980441351035956397445338781561798943040228365430352768265574916709758372585368914483508779052895394300
3980047542003349872512463991251892350518827312166162553779436728386763803317828091322101183813934336798565930220780870350842421196317955645722460122217607178145537360315155835319608142051733257381268642369657368193337635338704535186359546282837230695971042125763235116190341453927190650275236206530868287250658798286732886355047398531122469465004317948217696639106744179130653877261349678270718218864426256919701327388253111814824501432188660424000647926123036667819921428618283370089022636466333952062250187645938915616869346377746266865650015516343980275145692301447310855193036165383054454866113566388384345745649534241321157127086726554314930398860868008455849071772721629978819748662050405219315674457279778443266283359638783871475260588507069182538013318287301752161341985549501543172052692671216718297984051479808261456771799405009451029187944015465267397984236775581758513276305176207142342402440690373087191624175493573628516635419803617900097151151894889956758671111248429041765939817889097
5869453289751708194313046032320057254214152728016291963134183140432689022267886592060190584693486956106311150629844767429062844010287059234632533917304293787967005081242984359620212038765612465638109411803449756272362013384684569121895712860181773512560668616620550084383465730171680075359009538804245624923250654450225527553078917118131636778858606333022276976632616824720085528339577810365563631668446738677420011825994029033557426079102999365115723811742395101746845337905158080101116392536623294959519044686221178311776164047182146035764626819735113080448346339495166684228010095209620840577337820525145135304120437320735844858943609120483593404767668227548602836685957020350884795739889826526995588603268853177328398611365120513718637520618650569156787450902185578937523345580923121058057112178751273281408978343280045049482305235438749723136500664020854374000407016995791771815927769847260036150523000552533772114219724483408015998169257986451606301478114056325865483358904940279578923657389396
4633378971597370479304082508397564882983449900810947220605150559199274572688177470372316549834987999115439585647162932337444653514806821205758205264648438513757423284658536946775520296923114689909362768599066869925582776692858896414461201730801839746255300665067057067862998223848899749376224945334325780980732856406795474096119471635066835971794467131951018073714889881292386550271288400446622137869816012915437598484030304252498736981698599034249179542013926290431200014674861824817706105958326052628941811126708046241869857007975940033211628273356680635169308588150261826773005983720525828169126001170042824428667438024065436364755427759046531553514411191627807647076281096624718047478371605360058500406099779808183793389202063492707315943067702360613347490787274560627904036331881955154971993942819367112223384889296891646579535302061250166702498714382815005295122358011473035024453210457760366664215197593410311402965100309148538527186585828672318970533855894133268897115598962290037173692880820
7121117261559605429331304747971440619292278485793842218350074427959159538183450852929002172421780421495485578420916410550213440818660501779127068990231848281302069914553131764398800503673609462963148224349232947429908739109763552248643748920516705076970839111915891391469351823121676976032701167008198090825898149507269357303302881372662205143873156805624310253763003933863375227496455052734436521375335163005997569974446997033349244528620256030208220092159937797327549757072471390027047851856495740990650769141778835738505067083988013087631083805825796904670109787023570866212317861330454791253050576999357042566896554838576120544479535580153243410276344855116773376495839864725770664696149885836090944330094087046535645676505053661522200603554646264191267368187980079553924573739460693079231668891787435629815222346829935113220903269165931149292710578942030290671528291563835282504800319906943258995015120768191148803099196566860992968300431764151103905138191785821676806262583585595201582794991888
3973085118795156308053149835853959688236712923370812639910314339200321380841259370249329057919089219317508002270773057149687419645038306276870381156979163171421647026237431285401804415737400724713289991796698626826389822943236721580987486366821836951514639178946347001791126319120194463102591260389893934960338922555044786337925909044302091966846905870662494476620908488740235758632157934999944112967378217939346661518879607721122617230068184334695742780307589418968151657793430065737647898849205068397365434011884887342060761887738993893302617676238960274497831489213003380982854505351376890081877946159393729950875857384511509705295321314658955258047691739115658144908080976415642294164710185101331991814012348444265102035604888469737523126548339027437537421029856887166213222612903296444868723748168994180231735377912314864642943988420145546646312505496498014529046880046803501056043229367906434656011242700451181381200822199362106927307811158796180022110630539957707938459960288120215327907315537
1755153898488591239491725514418110299777246294856970501528231056276136807214473394697741330511805899521284051890777972450798163502351065644259226924907240750970876370391436611487620197460144142681915344935624052102141568511003185545948606099979075693788929800100239410076447129167261324569399837056989908455057230887500086581175741348091685952867822747965146868062327952135208671991724305300100328646831284566991277333681032965062920567538998122340600238156883012755919608851606689377745269738098729203591685599755634165363467808514529017196071034498324951166194676052650304489554748288242383879488950242861468251350561100675372986100390256081212863149687409830100437653946391245294466634969640809364343951184086073710895221249460894979378558120711698275124813357469841331915720190113783641507745477205535609233646783430684274576897094376004333897727271004489118096249175535387739878589600448447236763272594560046172875694469188760200240556675994215325977214503618443650010873870033559622839048576649
6464551372778756473158498598522896817597810769062890111454789503379463895722732243520372183998618028939387915329164201154831331813946799559895268785585932243468818829924428577605591342631214475585118436033935713427790488185889903412487841603363063529680744327595935415848143837286379584217088989699294283923431162532894821164973290197031054418948194185510805495486241738432021470285531586529891518985286860354903870033428301656861976007711463225936145896616610719686309554830933712590689871720072482571962073908346331312891147768002697726862809318439138025124523142652923953530711524386975592527782213635531833611092943513352901472040634544120929302679226967521337030066213939551028977060885279730124410937124722999583865406370238479802229728744467746631668377212939006656589223056632047157326362916865467567259921655786693913907232075260423966326858888910048596714113106231796039044294902648674597612554583694794642984107389233427856050063880205452419511708504188883715457898819939625188573285036958
6734098357247702067506648686658940044517610177550959291576125141293899713548769862732844660161700845702734029250921039270937839051409242716196518940047999758598114391884318527687015098213425545186743900146700857849025323132000279213991354245094685645354631907478957131456888702874198985576959529509379174288967600381924545325978401108655379081540639753670731416951027324362339822213111105961837694989102902579404750566801963608424050219417560135623798380161967313464780547584167147872280376501655818932090579923956587265825122515500678013650294870540421090774213458023896413210467471911990133479607597367094080090201916304165935649277632816868923278149001672714498294851855044602738914497189318603681360561654352520360700756701928950215232297408939198712339153149225487664090597622266985831340256072407167184214817818195158418583585328632045925016227825493655811973566605509312390913671920136828744833414419967889955849695353809087970060382650889939270728841347669015371215932116695386038788539264639
3281836594684628230275649234945246747629654210521616577035744283512970843887911227866245916562156586034588145089610403330980591109196221562183716784011966336007801211580279656233909384646739558788221751052057003144336984866184676985570275437925354599600222566865209870805396695623704612737978916630583692689660763771552798349622824048022292027599061653647505671141547060253333652449592815066701653962846775550555681602482499241604644378620462190145298496321259154592513334518627704218974164548796579254806816413092678226582039968088567604848996611313413375727531352717055862586903964192145404163111344716935095597497971022718499974867366805525017128679369488134091175212074098492518343268791092043826205563125504408986645654263828319294746123988911749792871271287823740586306398314705723072075772444102428051319680887090048354227267692668900127246593163993357551538454930323499444793057394134013598090613955387492517956258357215921742850338362653910762113936528276156108639272617980588944309020109653
7822479045735068165920650340667716962249938142537463361465025748298848611633260742588649477830578351414877810507654050508069810103510767906525222815001898226447617652538887818681709473712481037979149736988822240697966641386327504512668538313300213465452969559754807521944653342417574050953053342571575591703660465276389359616791353910125022978286308364244584193098174989166103754470451238785057802187680176861161005514247824021879867541413148257820037504831230441408811466640362233510849190473668206473008166288494909052656286482691114002032238125510086267004076299203915202086328014012397678179992229198461760199122740715065859449353959448984645837344089528476222069958147510118026198428414247019436732155145781972894233480802881626283072246908332463193993880354231470299979859953491017961871071172465566549943956744050805965982764446551316019069477790399154131991417311228013506327126666533107274795975170127645945898765027175120758914048012049904890329951023316323046489679328626309131075246890017
4249257993085970531339504364404125112268267734177417511310941076797729830769692535480270853803613142766332605362311509994239344352341800265365515492203009903095816138324445915171289488752563188521033888823919608387579465498022164487141449770266849247520920178302830884607296006654561837042020907740705659242193805266448488494506431617700934428631960639894299895111252107583139571111808847730518785552699318064768748594570326503688679288259793003115099541600700415182700353389328307799893578513990052018808741496919285482778176650646947354192899480441749414448668303817761983642035819082461397408515207413914514391401273050591228470541094469622917839704207132045613576087229326302137955875828338557970400847753999727540355896610413193590698996510441360146581288461809842469999316869371849488306302003932792687544426596566693062439324451320772087335097713219170184976228517240900250430212833218116372605361748516741632207218190282113265701767186547546493682527232450949713782579948523482601059568292101
2080441641629389134191312215985792071246722555497043884898638492210674550908310641149816264126772247440366325917287196863587425723216434394682085959984716983747700742578390840895251202172170835336481217214132679613941000935698465680787252100559332120313842277964447395280344082449893005892000276825206236998092642024802603889155746226544057266340446547679976737587918206018351434869093491095149173243722628066294297522597584986136841425275893758353296223806541572233271629765675030534902342162813824311152798115776218588949220496374662665975797462058638846423241733779445092485547839526295119241191400415441121763642995313679709747505224298096228141856776148642722133661813076956416564876682966956563829006119477474331090231148870198564926514965034887450883138592260111041657642065804530282271684760853751810817265703478063017972776665275269546578921512776606033937888876828962703901468800396824710323634305883171604318250743081308144045980349954185454384157068880983527909975124572020635690562076158
0137638928699992115050757119083404803632350992107383527321143055028780698340897614040566716332696609309387117196236582951503025424929636077699176621510260061782115554056727922600632333416693763084245839498000794839258522647114138826902393158555053215815187823078717392601605124488680192484632068732256731052343476009252320937090523515321349286599766403439766366807832735106391753297108288127945764265784318660503500847732382526464872156754731435458118297481636286607132560656660432465337629496177885882226392025792323197215622161313928442946330189175177342530137659486503133502590192107566026178385586179571431303455298344580667035572456798378299327370491780010796754187395061838113420505088646437333798862249579663928806250901275232820524123894072478691129843508821178387940414838327239106441464162374304474340629554434268108567409458704669473208024703196898648404673831448084564069956409593116411666215534905462802191191306900253872991540430386065414737626897777279695349064988141912893754709803086
9585929365660665762102256965331762994237599051668162665929373659693733136157681653839093287612432611042828005537639931229629757225888634420584747590731907249721845168471925298761281595642489109509835908381413678316068520357879611612034480296397507860165030628095650516924094459403124406358747050068055982854385575612273543860721054570851726182633112687477013198626323565473232145494573912125433526934537517136766028981583223852077272822383013458339986805980881830708576336747159158472708354411049542723245144841598112408189664037296374587579187094050898054114923816604541700457920634762690276133161308129174052906641885968865593851230023514319986374759460322163003066083461271679937194038256733942087211113878917476614263294993807810350814147526623890386441852516161971084644425093330891450301541459913003220766670898521274656895673978102430657810109143959306956667592498725361371604539997060536032228101273905716492662699984824738288207716706696713914814819434044753254716568769746195565156774640180
5230815525899911244995970423033155811142590560417966007155978929401552619902619717559739214671259266443073440863629362683746564459443047524081078341933030965006568331279137774592288124112469684395320590912031069678062499327867495528778428379801660461792063782241163050811850764305941917683917362278400157948355711884530531419810337267434013755470667041952200448972992131339938416606791041629000614946756806426677664942916853931028759815714917177994040731834310865937599653430769341051719305865529034908467477884413963813762900959114615270178952434198337455915679092100181659998622318868919482026779456014179126960989815783786668550990157229194345761646827446986125409246648072254723644955204805355046150645300273828208815323999090678843264574058886576652472727592352461285228401347086272469657374520004034901760078616706429346412114432035601235113259056171182215606471758202645468661038363562696259039328513695707465086372319007394594311958431619256416268007126511421277075045945662012346276427644052
6753475662496800764916258989718779995709542003303296400368226037921452330238636903779468018748991202228656814841408687278956794093284873419373098418715888648274724116898648234185097840392747571832808108864620565010482019662586659186388099881622077040510645044749139742925487098118824286528284399119373971714417255657459863704668579848023900946217654458150726950182088635525095169175230152189486926069811894446725486503091652453280555299173092848500717484526613578263812663924186272045057547702772680188940130740602287722391392184210631183017900122143203246999310334365568907242018761623067638848536020989851630918007691281523472678655257684871692853196136017157098271627505692181548735310416477407595648701434019547765603508277145907544740100043095865884572395505243682806798450524610239720153819324454243864172256681481669057306480197349217607930888747381026570700504846656932169448706443216469338335223739670374828958922699171130077353971377815990277350556439903704371558097723949674095734936827851
9085063070305531406105578297006297885172955926369018422780759014950667019399959341101052376802233534674682599318877733228758543371257249934163953206965776418476387432189209737905558063081863169203446116198094536003716554272465353840488852364751051949856743529358003533293619730482940682889949726168012966825255366724636392586925054956617315997764798381934229803067281219221767142028704291673444290002092254154418278575567240956835151128784276563951310866452678679405745519595231518209765138675437298866611727459481684913537679642028614905695010919414208089796505176560883388195730237312923667453130287894066343109872501710545347652710708183069072639758739173124982780288868848072885446499064888686317569850132688814179788146542000011933685150806676906660217681674842857918656680367542541797882434230153919983344991452192859734949994229243123591389537840952267038347552146659526218213453158450940288612222667546918245650697933032600505422542669358457041893689801698449680408352807769960716462647569385
1739316577947967079084182190125025086232598839820994789643863140967880594984308027378256011245735918504829652347945993963179357744587721059494182848591484415031884991367051311961679354602823507419398801351024154100897754828031129807421319241365956466687251831152306074016430298375233907572284493510263409805130549479719887711477432324021525218127670551331646791239969676108655822496571292591996813481316183237486320466411215279457879286069642439834400255053575296297304135178186630857002549484059679837586089736744053279429600030862860499725638770607780547948029219845487496889901815191745744030559909137437581394035237454733450296445053811622682208589205574116914948080730500863941960832737976533567230438496826769678935640108816072657233297091189645603036244038212436563907965165061947587534720644556926747664127023430883024893278785418660605009072179594132147635696135060772568473016789693998092554430968943878463582567619663671904801169203314605296245164170851528917701347179094684695915821292125
7430929726706708636636555423885896935291389885957481771262715909540223610842245256709750831752372053985915265616655546308655644621328632410496521728445276612398808145254131262328274286798340530379981787225031078118147325343713490108525169991464996594288762654586266640138552427768927998029040212887484793473547458747062570483155760086238061227117732328090569496134172113584686336978475626943001118158291435685700383943427815013698503614174227558409611381846144590127681805905386899868154462673614314756020706050756857811977717609294909329357194688750587205214382404575091132252567157591948392894585890003464277813058038994766428464190729393242837317686430369540196663027809488768616130381540462390800264024520598328183589566043302844119142516260457368093121610973031657561592479611439313085938882557206062827133324891746783222644220700431730702715940320658840742960520165808979256248747237201674862466324890737205489243314640743586246082747611167777521876399874605356553078924849235555127866620682360
0044329233641528396216154032077509927730452690943764803214171258970852144244976153597420691778255355327050216914918138887262837149406592220928641111352113566725676239931831206134618632389390827667667900401074310711961297180744133643535994581222274807611673370470974619501104022341802507703489118413750720752284481141597157961321614818768441498718509393738035068246908198903882030788360931517730939092488906722303824135579495976451571844690313278256281131024806185018759933067396987728466553228951120533049221461240424468276229647854298239785533826967093808488083606371799317851536123836737253757683440709480251619537236618579786440644998482559242001772197386761953873826520103155555190603171822463809258370845594373191221476633066549468647149952676280446852838005164148512712370792742508965562803477485568494391674475696680349131987919566328035858694141901185111384640732732062951754150740720198189959384498737511094761945686067303774305761612242386596301344644159931906490880154085081959161533794714
1445606618182486122767041720126191759718568287000188698247405147167570379454899175347573520415664086019462852966650659693927071037666128451294215276971103970850303275495820241608896675008585236801552567421895268396080187072254177859265243277756847357784150140806180934042637154730631057144762451923782106644011027445358287276953248437267708712740160258716206407433946622215623684737481119574103711186188444095926716407702107304329089818573989497900687291208069334971166516226215152136221945301329342755514435300260934242854575059054729542291208469066212691007339769661661632178179302113510088635834073489776211357607345391824852799981007470990376464854163822892339539041914611048963899533477011988651431014645677113565617480489727979575012859129914418213319754563721907154430980984763780078353699940570465468439962602908066216922562262062024225618296997556094504442501537293780464790378440312207605207225409856734917113157612231150437353314131906629485577566232396386690092118989811810410032912457757
3471424266101916313761118822713709144193636797098111801926534657971937799752759353250847762547038802455757112601268802806049272673099094255373491017924132005717793005588744206715471694160514021419366162565703117067013919296205563158880265049986277423660715008824105090383432788272487363479570709522504050995115799542594611120706297628281129289883587759609963582934587436081732511816926446813018956294835132853770078820788965692208681880389524272501219001938544221885398991229163483263220540354105487900251469038735011415750482875099876644904939752986033002566663472515797319463476913631187887687436257016325701463893481792486778443015013892363254196717323946820034930362518819409568905249563738336913140955398214336133440390724799576249461763376381112706370911967633988102013708670554083679877313846748291613889415347066404501827525042243796220284085529098104664832906095300911592364289715795217994004566468491251617924417416451286728283517301664703778489682283021943593630490961379474507722323331512
7549258343480704934512466524435731974193762186410846797511025517614094401187638711332569538722950001282428159434568820938412013170779250845586487344866480067972942387896100194512522740484298120359582340555821032638489463178073687295750277438624157182994961926506599642584503150670445052003638933195822219936517159291008986764516612572129767614334222674486074583738488588111927660419455982331599193529422458183403793443581087564815867226871219097305544210041199534419438454249758190262583330963694919054857602112803782953318119357610360401494544951568603220787634918266915708079622993728300436093794535186874565030996715488781688598532027074628192876390280734370952833778070017820520998013422694471776308259497274636964521822874329511272283945355178910417378161395164088333289064726530172581397113800829950397544079915599648359825423643539837056855735984974699612938252913627240541204096855396005678039800464465958369256079343087481861909696433171748190388056493943296939726130852973698067789251646543
4371937172993345671572105422772981789743622088047356115695955639578008382352569598481085884058243660043453401244620079868671805543375596398670579177013061645170262841152931345336385418993284728397963293327711664078594884628793197192419540874970553583595363242509112241353347252467282318666098338950791383535892904541845433773871206415422299058701347650593414162949497680045486199767037161490571439650076329696382687722883840354903336128697527577039642865940555421982963971630990000344061006599203288578563661357149696292843961335304193939054283387278980802681784279311532521308976338120410969942056320257777375195809131854092146514555803145061835592871966926092210688721756269385788572823023842157371745047389577687944733697243537926474123389966938091787728038802842914341093005612948782174798444209618067174573809732879376085765593879331454348654421663098051323454515561829872445685525281553961502743622833263127999416280103571147485035331148577675302257062526295960284115189506777627602992157940024
8695528259980677941233296791209393896683442933053113351897484039918730543977430153251870102915446497053773864874194011533779351572632561478965990842998180294509732335471283287251279121701949908668518134660525024332432257172255092375132889563528916250730550663460388133272564126490257136520265474297253646216712614486006105325794333026857475155987721315066667957037548688929817219014475965099485430107825630021799924862756896819465264843462037693649949579320688832773641793584811293304467623770251769552789049931724695115357039294701689875607396960612156658423791483176657738282881707013529124813258558685805570923897927876465771116861038791531589637383023417526051802844547221046133464953299667378357060428350824826764484995757079776715155778537302969150056797831065933881967703107497834890794162953104492758956436702932277126230240417590919456968334529018461620152553956898296014999576451342043718178819661269687110245639049568765433843797112501107408838296781664447675525969512197649959235032886275
1076886989237286631896121892537264500042143927904950371497616695290776622838033603588130479724466993128681392309945222732320966043038520307825648496397760893057272945981858255109530576605026515976718486510432733933437992566943853628529961257745125811353759866347877970266597456129271723996753617618417130705061001910424523123007438753648115181006571938478373619323101421387325160278963385430833296504983347551300772722711393729085182126301360136905950878000156852379711045877747709022226491188978113626218984861578186913269313649588974826605951883679566411239260171333513573291497967627913383581019107281491748252509692553930005468542964411689163184634823641264197686627448411709752903203736593318146820748155857765058568197534155974864815154505346994251900247397229708566626919704458325125232917774204241531398541297774471365469143736992211690092432234982994363933673372950933603020740920549863141973033350776558774079467292729033755876316477996473308100237711282887304503874280944174633462781514003
3187576556043802511956379179256788882052607266702492161479501201395170229665029485629939874300318152480514992679857584669286501388032445811779120838960173061814219284536376913875155904085823067667985903622529742848289592439296055265605041723199684792501392723954913790351518376412409603483507743319915380889249674690923922350957683755649363474506600730795798977880149763508237605728934129129397438163395481967479205501258655331962131752322501554279528495749242781986933467073668324766482076101120011877846540559074957543884971406356926301578888597539724414760481393678691992018507201130925725692840274075217539788186510723167291790012638729309880890230217750869023550414550691416421459912828598170955781938956342870608592112851080759001751806216879532514307586826852756324877252509616122548064587041689269746270517854954976571762507794116616901694540084165318313329278818503893891014838654924979223082748425456770182889150100608788420225680139315118283039394618185172500950376010221114099027983449528
0509054896645908754756243511567035666268599539056705870637655622864449528864324145219081823237454303203071577057178437899534650212983177288785010510118533128908407267242267981231607215470670648745683242021406443040297585875162651988302003826254520258351120870600197823481960375980782880802109413937595133883456353118904032129379922323827374786313950275082907196092993660100173655123840973393269128898379973919571682659973016476959741549680592657827178244409125732506958164793924291949898251455187806394786108559343576030376528828336612595482819824529772726992304763442516021986231375384438356440013584647335030652339111078533777900336848366581825202781742922645387990962336131554964896972486535439217726065872172648255383089929879470553242161348755557183937328774621887495185131520259492482879687670117808003413451885905300039085751854408224185058057311723785019247643100095091843025872251323149027718741614778735183051920908787988355472171717530579494294357203960233599543623392695119105393420544351
7861920664258287510173725393990866851345671494621234323923792880440155592177402345216534233664646534387570421026478320101457489082148440204039853529998234111452932174527534280901982373670964894524286514619677872237129250446860208481686318095890765447162543483722214284676135618344886963238053931790145017193507626202542821122057172234497606810873547415102223259799468387780961110192927113145721933014367627863419584369214680049600367413856676749095186918526230750707468699358527269094406042483224701140241976466085580177259859067727604842753217524427490494482721340729529186655057875058832371403773339532466093121015538474420342397592710889274975033968107874381735256049475852322333670933479683854738548121460959593870151694711361836049181338790924999951101713446820222950261338687603389718572296933548071631014226121293572258590534661795335526448943481259608669146492252711389632009273524424934017173592930807402542883143322260674136624426226579155659088363946990964275661582090524791667251171887002
2976667989267341350693632553938555763997426876691200110310574327643498288393133782496507341993005102085725494790994437269993003609275148277332527797011640436892997236821419400659175023654868500367485095580180224464643686444721772792519280210779132935722295447889500285480890635625877110602713318962092544682980074329916760180112959357493855077765155670623778104471800090646654192697597881144292816751195655410378099074353369682446569505385275663046519166632542091078990816660230819129531220901633012346217033572614016289433758968070057579207872163083991097914892751386256903584725768255539736506652680933044295303153366506411916331389215479811302235716314486446142866410649355082621230916588937825386860483587713313457391949835647571506258883105323864467667117894600781988687315049994125775129118138454153871642959814450073468676005850215587089553028047768263795703157012061880842556972999873896379206389960350056251993766280452355115588230861100754644448501071930141532939569035247996431894472537994
9132442153159866569639593260099018424104042184582335736412413300548872267166718707929224993263353583580685216189492337492494980266415685861451711768435712821422787621574841837141563339227249392151609731931669602864790380238583157699013512418594877462967296657301521609786677138974259731675317307448075805727999488157672044658469186602322759564995139035686693844295564624114307935377128239776215019930871007674422491105408848020635497190039079974555751054958519711736075751226507714553778276846281660543616825939006083134900045788201091086883853046315660301540356371262886778670261246075047723249404166328514670927652402922819517332960408772747769120214956139456813626647049775870761977856506923570483813035318376902019873524404393556022616719967562441489189716172350378618194810003242746199045415042369748613761898263138370359396966053752775625530667391506231980930301533213780932491711444292297320830952836179665446807445467321669216435063611330486905192636798724267128555621058193378907592972870378
8357907884176317889883622434667710967269727901681238465581147340255358091289607605296835508966228879830567614359328131586643794069407143796290143748140802717334928599208101735451143429371838663769901448922409443753166303943770682490424132906377097795123774435597920230284234443987486772648935048494636469867440398186836543767892685059598927615120557254052111135054979068118444625901585032223104263340288578145578679089018590244957614568027537043579114174277124841696442600347105112362756194809731396113499678781453082281858662137816773666805806132294728345178456168560491819840524082537796967638640844504911612287970970074346892410641513733051747822148048567695134252894108731392381047322684859730102719897444940868838401874466503899411308492402660067078999598495641207568842112437130266946643654604429788169356024153671018375774654704149405558688019233238831587501678218460610533337176210313140944110190841909815561834803580638855789758081078836931055137048853776940999148138024672649170415290325680
2545980105775643849574112917125798713361884067518214915095757187642765855304531211373683142367595603449783042907145446099644442165152548745503763205061030679620662989974554858063949011010845225743180148097382112131619568795147474680085789699939422482383366768578467135416676697030690333710997968828308823809451963484456289798360105740437770221661838094342149808631954308171523677766434025679979855652529712587583710531642728711805394416165570929018170816931993308176699050275812861461289926455613945652410705123683075841184370584467981997031416842004003982532508608180880177722239009028546947432809692292820499577331455708803471563638072860312323180976649130454867609546689599454499383658497973849557365026360837272261518978332839170865308062866483602991018214412888606487007656470680809931414429479852638108886111049233439879468797832613731272582207863453847684091772920649700610765407818842808709044952677572370685036926359060618156408727224200513038226894884501102933240824695769478258409228949668
0614987555062130956486039224730279677223591955994621157621673404835900201380319339505186347626823057665876535056379474064449641200370795542640602995411420657922209997953441645047620681942776509922526161465856949514516013893250566227348392246007388140219563501519332474478242055289664563697630866505325520303442291869026300534820527940418444717773491577528399063911809196161065631280351584771503342681398820609485431837617775325739771654423956641309330027252395437857851337677325019985422383602546790377746511699933732310918405706702993021753907116629393245293046951483994798333594448312906351736936591707538981632147221324381358136505841178713378563594347206639343025504476518514154636043572355970224825728348590670912610231648463157955566033815272149275125925590582319609550569172549392592212805510552395248118168233442027684191140070172064563041966501551489688817366859281961231254968537428112558391018992366461396948582787714780974736430318842731749235633200366062765273951565278940483452484166856
8346958015925886727176855024446487873014442431255448213323010459564234148552401550191699276450240047145381856002782941483562018883408306810301918510136707435990393336336002401010551090780571069602834348464749706562382492627749372544115633106144673254264401958423536688215642504997475379897904206963612682597048364270408322082071451769611530761276383110345673070883763773482014520599821816388794528424929604653803583487874397260803222074558415773710111161900673921282333653098824563695252123709176983796358870241361998395822310694908442162558012290771432648733888476016401183897138628842804267512409104940664288493172576484037835811988446477398530106402422841362340358913737744589050169617908341449591693510455876070560686412021411988866323005101677874325256189869913764449548557566434614127986028594970943626912011092077744141814924992512273213193925187794879719435179677709921537416521748406607837134263405314449529306479676997036627268146610106545563772307986983087984720903410403485753986570448346
5045410598189474804010581191010757545016012391650447652750501371470566387292150454296756533943535712634534451262433441826174238690820087866987318321963307088889598129764596071602263894347791448298104340054414072092212440574788779110501619163569120013270221232057860080259655466624677623635434635120166325731941019853602685067276211473955520753232689624227746029128858859378190943613427018488027953693780527043495107273085833842065774829852736621598314851555666298238019322619234977082267297573076285732898264674806696140982642573120515046709904915403284856432736416184556346045423532687459789309473112198415015327306180379145393410708894109039258559612353917732934757756918497211927284745484497580775944548914140443257988394080137909367435272023096686541711793077220607301238918854253651226508123251903046512996507373893483898256104195858181071290542133492824552393135309638193382852831566642834812475556952046100704865473294024722637198271990873527493079150473134669763418296295235219628535427873770
5738751902988330249417343129581813118863513127976916070098083916368673610343425530259161224551237879122643586482255507551037146862870333264008587510908217314713020328232744145139726589740631130351826905278306299148032491317335517812488043738363232572204221497829636071864633681098669270745961899802650357112922757704040938535220601449286272170512597308492204635056898274549372080343881054088826486255934975310673325900224213443969147773127930584427398947515834769691953252129633097118412154433371234758586263604358830813880121502586157949739750385296243034741693957146346046625316540482939465745955631799681275675904955955523474077101216376612732929721514695815715971130022336389301016860693836766955418639459390871282880944298460223661853627283487220957687811272859821641488858779455555966648814820041378298233567379297663916646623184262855440682952723414970170876669868675656602569486287650947723194317450895138445925266783173015163679286630476654651394908026065322928548778960313773317575758569722
1422223343979155670520123552353601820534105403902670599167514587955336599142467585375874136059415410356528541065709233948644650238431866348814266663656584497361016493389187043877106865947095137976751566965894440289491243049518290896900646300668161373911798608601576546733803041967146570672688213675361468356192300164388239814424428832812580290128544467472085086438688125440814583788539714566866194321509929971528833283185077486208686516155252856754329540730900837980141921386361642629184370995540448309272676456037483554664415790271425393862456532024053759888239194392957367613815512362282316540256216522115786851082929185962118306572191597281983311670762154061991171848797153368757288665296099677957885900444025297141663128781975807899187961451597861920457106236145734720196542889602295188681196540197045666415323169694922872647232524203198520410448139203272370024386556144868516843116403043859208663110387265586277038032993917367825992413037272970949093017828703209607485692836561540631617305364383
9692201952733967742724708445349960085825445501989190496834006481067859643144217501488116462272363530905271742524941821350070519862932034593253559995484618025822760157472409192995897876575482101409281802335058142884970344783681861715002346135261100841341208602905836768790203055870635648765218241145551762524420053203969105118574939834900650634266789275576519933240260997739407407001849824391063481664620194971727528886110020903415842181134636001101826592171393949677435622266825724619521952680132746499975728000265885872507144557424359653385680236891911157140689941845252865319698779333294264242641924783278228791723160765120609400481599466344596374002495326038502749777446899708067753559303475550893549330136633002297580173631348373183112389019440768926416719964704213087482803872271117104285453785730159428309545611599887658610833137937797295696319935647754732244485844832541087857601064604782633807846304562185604720060519625516267913958080929223388565161737765342747408615329529914171325504021439
5881950110920156085722078181701810882879171954010112454003508994619520495378807379636798042619522040454425456213851105816702891511448008048732830321982943076058986477600317750653427863265567686558204859308370117088281748318798967261873621170506875430699347838696628996462344999296067243006694967612636637632394761339444549850503590298629363377065330560891957198158921172315628148437471844769837866905118388139676071989855244672564484137872303347193123015661402904965580697571703670827896379311746153650146475272220791079679051495262264419937063153031183601006503316197243395839619656373998843315980752724871613260765631269163433497465078415212406887200313365333791243974199539765169262027042082855235058336677129668363973643162063808354264464903572301193844728254458098275832099061100084921584604746538064255748171758682393112896706593359067504623031048309569802030622541130261006487224588232821349558279986887877044684815998160573369995537597452193197282219122918628952303195925724727005159788321223
9710095724337106315889531580444485947804789152466874619081808934425815721839962917618602808426605757364129545555450751570832013669768017260856253645553604564798736831739693342815055218985297974770372891689762034215559957864883320673923364368960827251694536137240796621736610230048789161195130805537963392226618066366900570484992503529625457715332717513881524566937159659625898022725436940453617289131417792074583409173679388695947807399300157302405295250446691608171335682365388919457313459501550192909094100564589618613229344331552127711859454278472008109100631050481962231204457917722971671252835942501055297178928878787536625423771944619327309236755727893887096838271156536072080528887129463003954184260129255961548507640359433442207310401970063671297862749986169922019472337543044628870475637850015886822139694413493162158443649101319106321844264382446884272658153514317222663826131211896979676483351560891305797322323436132362032312341851004543580228686002163779729469378247873328846477390273257
4866071241842655301426298754204831087012940786622617375118140368767788535271901220849877611698627127942179235494010421736119569156953440588788769417923981856217840283719657353906772107293263212885708718215853420285715428174039191742521393783402387320837341055621841397874954504130791172033541672364575153025868846750035990602645104703389198821675822069747376958744873256595041405257449967316729633992034722384871473652643899632169444279396087746446959280916546924661047693786258282297435588070869558561356061379845661263038555149371143637370502263833265141049608321933868794346134563302148758452237801377282155901057071362423769866658845398172527569804675866344082176633597135852469185770598304704021726358282628463602050450033683310115535900914418351590275055230508033955840859784615384485126676327681766809066840223983114440374998200504936941444024432854477433027312390659532840154583117792694583290098980879696574709174415469338858154016068448453074764901347074544317016845239715817450769421781792
9937690287941166903120522660822932104412475798291633030622974124327210715498204406182253483083253530439924994095409199816215243629732724257880982260355066451606319880319694811094510250930300157687798240576897001440384772725268783366909919186718437946960293483394633278382187251171187721818647190479611327003792958324651362321783562393087238269634950868235857932908664616427999679034372719316561505944419001063722902317161370009967651153141650275009496231863185759924452652494174814732065154435511480370389822890964940485117981388391726354096028593542586110738658360305637040540167301377426344358844235155909548734342367402554869616340964549180273904416981778973069803530285681862068525691309424112946903174094206650685808626329080958789042518097091718222912840937553524571336527742585679302180595722798191696719153107023644054502883975612818656970681283693074184688787476125184720625003086121381259050407383513386288452638657070482218564476557182969981135318385257279498147724959673103351232603604985
2152918348118566613571504706563746123085859023427710395711404600932377836941130400136933621212153305316926031696468559318996975117708378740343591389152293168021252017252567042353361921976091314783048720049544376626559865897425883927644985096476433296743706527237598295163535473356713287083912305302983911917053282129180240551382626068282686213517102512458919030639308722764500473919988658503921832412212317743778087508131565592792823455235756484464768905065645933554814521988821349154679384696076731018345550533919691872626350497207870290312677157712801014283949851837104883357309492094451086277893241446389634281269414763621972315426110124964663673325787251521640303009592967070901442966686679327006799723281810068712936466262079301646563728392250959684088828878252299530350617207372869001353466755161452005646978645576228360704865216852443068264140933662002173730197146025031751225953394421820237858671551664872745144428355086227508257025684425710349347261291272931279346706661897058258837694079233
4940810092337475650102097242411955620056221039200378851184229408812915595334590604839708576515194841313196722513999672067429633277458622425875631966686549547879547717624259064603540321808417109927438865382580216392227293716017357748769038518251815346992160632274751964152121059376213591492258888173554577936441893911248216630840788557658444523942711676031946763763781892038498328877599427171885423020196473969072352367038496869665582035984219048068965338494229410400410056853446327220307016030292645494307835984467415208206204207199496600013993778739884110999347924201208302491108953978426166106546125951997500683079045081707236794886871502675498653487907372635239214030674449972557969763618097844736216854074044816478271189531730252143039670840739995739328377979725879608659174240750553036678602624645236290829375748000725947618315631856396046184150432396628681644729931852214458369632263113557470227093379443546451842544449807255160375886074674404409262894455353203626366618482944609441294726566214
6573722126975843908700475680087923056839009503028663186267295443102325381892876505311419168544333643244293081797197196759962279550842505141959750104587618065686166044218838249467696104801902712931194469948351997243194950918243357550752608220598933017755931672279763310629829374292326786919500421307191042813272860248973855215416420437159898510644642712008898271218185099611608175651028313219243035436660299991997493578318372232040757857957833941398675677922071228302453902949765793343325333722915303372896962573006008124304115174757150261260516049726023217682500227664304691511445660633453224267252039626768387530674598768851351118195786680269090506421981492914310598026989675086213769554505095365170766468297797944772541992839594318372097867134135773578480672319727821778845865734918324477865403927903527420276583760638172874617476496919858338470884739255353488250662214663761082363096687945582882076916658668598711495508036885309834706240595908414116889805597842018253678292676434482271714157199549
3209357280183028377036535430463751278682398877489010322391091389647375272560053922728943764107224602787866905077424917529897855033408408785461726473571092728839936487030019437425887272820013656514128483087959996822881681302860034797293932848210500013102552666547501967850377636875873797843912698006408112698525151459398985153959966223304254535087779040671754234087169932587717914673189993866800607554060376087252965777585588403002132196777799444112318943404717691775505721938801819435741594533922355771096255177766005310750063359823296646691781385937856288288252673469363106915287147484381940307666015930579813088671887259341257234169394730865243778358943072065775199888190109303531791977284534667578139231230494773207220735413415349444462759629001396587938301699741540841237844565640820822901315245344164373782715840812625231927053563977268575963416409961483142105520408229576295983601088136550364572625574400171569516478876908773313896413285590887403426898122495396802612380690029876964617497566956
8756258271361271558057218635086310214329135277145964674861181605618568923821677886228110766577116164928796831586670358527020243038612548228618884198250498930553435397775048677069943947567147248635750621123588330257721685736066801804360128227452156495447656915999037648334911424469140061751742177380133577016736278428745899716381484327197010287129458597692909404839102547792405508664560586482060073197312768191935932455522256779467511972295649241509223543886296086268221308645081719821208644216768789857816552709632346558686457637129945213892190731705223425724345526045893178244521291334181986929530012687609312496503550316598069213802166618966038588937169828372609064706837136780013680644285974998151013605359626130064832037998932540414521357804102651485723639057786556744498375697517548503494737423724219941970061275073984536967678273013265894332474698692840014449257867070284806257891739351055169418553008826490675297481509105717470127160898979611608091071060395231123037551165379314452212280602965
7295953215945323397681494869808378588586081799122862602725388931735823651158452727166601250055420249663138777087283476246899421815423901889459813912922371063587186296580027641971531954396635559418790864016146832634181319374520188492037301103200568163565691400895195004173169963038777515284834069244379871097573571427180193925213161036406678154860768361834674131969107097758449335746882033957157956545957189594926589379707818729198652136228164506030695377718357831600686774410187130151888835788253768203599486052160292525864691943567811852857395673661470019662736835559215016939423612895952279046805757501539989460537590662078161913049790427935549761934654003999646651017201561948229172624219213592038337624742553555846328539299941248877141495179090201110591703749770009054856589028971071474480454162205086153964138197618496794502832798307528476987784967726163639286400588916142544409167455975284391818196080438709769475714095754393814515032361910255099718799518932959863217917797959858129312402460857
5617471098903056330301469157908048851898899369619535311539106209081087569403977671537788166290022088235657653923390791565758117194265866833137971907136948676899115672148579288313090769910879474385972382129628215578415247028253326258119488888909463215969005775129648265784262249449501522568887781244699122903126298469524043011244728320982250631593239157302352116202196874275446399277382125410266492543329711407918648123541648843439831665100544455945732090069752458840039934635758876803477434640227614376932420141332866162169226824200017682729467391742539298715243421319556901975376367459093524621165380385777407790178542183247987723678578751917918055328597780272369525380171011187015907506504885467734254779757353161263199398659974588361455985444025382237280882712860540363135226763853320946632778675746463010138415336164522542939013555642439906297773931637561608669772245175481207844369287965369884543601106406852605050021494697012170850963359819755166538324302938181630681496974810235847562186738922
5409258353345631590460132465221558612893750962120877648114109785270222422562507304404271281471786457072013597472948066605683256997259736577281908064371533581335253948033442146665378893943170144872465996205978824639440646999718006227236641207641279269427553288673418363471942584088393714427421256645855280076048484914264999746906310189453179910335014899792854628154840563822949982801805165695168196984248037679380921818566342940636225581629693051696114368088191950927115945212642414529925622705657945902269155313263432671536887540435808628731300811031506151935025355257327753815268923558571359721388878797387573825138429144135759191375115567119650834619640679363240840352716241322060763090081164987838248842870710935819315845777909134964694805111101066570555186166693193166090451357584262514298908567865992944246615693355958756297943287687362267647816648536926618824093661409230133737266160680764729584373853755068963455853214239074397000050055548138220847964471850634695499791051225503976362840268107
6776850506077403893199053512232617096063177531292924399360218422041677013611723749480083374397837783881301521831492656793127726086545408080117352095525955632179281235422895119577741442930228223696851405932238527777758258165028778759600533531732565058496589158976369687447156181716500152751690706419345553021321438424156332258656665822657230749820709985546250365311456863280445533115166977423351121862568250584325601409483122834814530039850460129664345188001954781535933399777268225620283980009642525719593343902597556407829833633543971324029625325004780840486318591450372711542944703132090132260649556740795820015546178316687027982474141122341761782720915252588152093913239829955000852798380649076727405540758276390449485334314756096559472547061786284634308656821543855147152036285665951486341336520390246672168852302578827634296567022101756321394505363092603760931592335438035340364639942024602211755819792586147879314459896967636153797550328281718041895810914968566970272773360014506139879132824396
9615092758605229229495922380321189039992105371031222413180218842455699563044360167831121873143044847219886373164885709473104349778361521733524468125128865498721502031901262577002731695402368866259024340538897683332769704871849310550021706538578950708048513603680759444868119792798840665961173055909765407636838933745453736462908357562636579365060539451971344926036175808600714486130297456798743111991938818860979350153991363468206902966420061870358578152682317736789771608229161592709262497302962385972304333393944577163342849075826212468216489236289472103190580879623067094009606661677134667081940774835790205023299591529597299043944451033625849032499269382752778939286357737553793432659857837825412434490661773850441777253507825178655966939407374908243794036844358107061063838847245168176631902969309521585080239145830109843625068317541441955257825910153004538801215799462669134012268946569247299120597038456015170046119563915109853127544644022882543626564263998085114603531111982135000957566487642
0198225962079640007718130834258654663602183153090442340948927414499721758857251941501471885746910723811444428899872160863020855563734364717842377798669862159971216317591442953121478782192032130392745508539897876996173198209354922381939176012958592259056661811132630539197718117406916361278898356461647441053035368203891184650416423141258502556971329099366624734433827619699817826554934298089334946276937955150927786200672084663332318239478202096372665089453822599701831111643853782250208113314295799022621876034134453438488340019035856976415406135382846352931088967471864109431422604832904603626987773824015414486512924862756291389484500144816660506456503998731083248079592343512473944909810840610661277778517794526488244444493369474803179969573453063414465023293384136488315676503585895455523775521114264146632141901748985218284537092266546370156612383594232138382412998975726901158946232167253797572668372399201475326317872427720510373815635386167229735171447127192525114518620824043254713472551035
4619800410141262768789611503388807069049429444722021235656230063531645251413550046032412497007350503924994061044742489585909053016050894091677775785388023358466416780004934117617758009365041542913730353679010745732765492272140493592588871222916922755664146853043371148829904177604365960069037726192760843287894027098411167185213458218344614372503149493812945112551370561752710226543032377682080232365751393916131556781690227296663067582463833210011844576720726032531476276773075290808070546845151312249415309988132662776365591012046166878405549522291072048291166677769274496367091895864353488724900161574493488457214440096678424552526234918766596447554134912112251387342889330645354754374635387605101373841816797149452549209520805288389130636025097400950102861962462982408438789143774812173671815091958751143195176089953388110534974250069259728683348864145137649687842580833213147003083179547704169170657375979841593993070465613783020760719668832488249070417510294137046872047473793826997429746527241
4359307702217196180180629053892165965257215209073187628677104484554059684808992368529596404856388634388973276883563443212052107006258666003627667131686735428794753962392127660255087230403130874783594881807583512961752261974069735117269554167469136251316071836901991049672734149569295309627504120292222466527344330928439055446237948909375467026805276288510062961863838059735748442036428274677217839778024589741855002594271580373896155852203460002826519344370720892520386604011059113226716099885209955288698115660667257442358697886441839053223777933428255776782159612129401842781995499470054865803890900508298690318382046035817695012422979031715780484742018973461308771319852150708145079185784010602122518358243464729741491109745484732712340331017694021458963631012243312101057357517291387097751972378868499208043444804022400847108643688037370561782622979866296358925777694649928775902822845552489821400662312782735836444814169660452652602921887393446005406415363851508418305321755609487790046552447719
5893606426696746667253850159814937438208116913937920579290645182814087602753040293040510933450669583892047692258138097763019200859165852435830620228930361212003239029713151690650947516771614368606405281773371447816679002761995866770558882962986032414764156696077566137652171886179396430304937876730517720903725114546106742974189134493919947311407382398302899667239436080181404568230115418499931757183983289830920214336218044850611670625454329526006562814365236914260007161995960415606866663968635937263952531430679306831131556262816042419745249083483994354292249190250142367048010437862036067740131402641515670288892474055551735984424414857102714193655047274867098450316975451215318012910210340616958249777122746152632333296043669331942136466445091001651467781826888578955903343469655971998192985616503088368028673467341003744698124076751212950627943065450814160713369779033442434992181311085028558168221527151848529181461907540815379826778971893580868509022261124482081417130653617664170605003197766
9974888864461965827357515557940278316685494230055945634797288429707805834569599316520774295978619169385732519798217496332525687147815223830702495759019714332388698752074693700081798830976505806862996454352328082899966623083375238576123242372724099550968351123852876140622555265794047133079487795387658126415075970581633790784715860727221030956853641677464753021592696802122946569363528309957590638889317040120497488728802112585685604165428348707072905536651861024658535525669974791699745911561895026949151302579801726407160476647594835616295050129749971047751384887633819052155201588357088729594012945550131998835413893929328927687837574970932829891650045066249835654660281019674680930696895883842131431992706072645783786097589067884449972951826451436117395830009589656889457794228794449351022512576677071926281349346084226773785246622141960479091047555122684247401327658464079990794968530427476669014636402211187696237431684427352404098749808607495009430108890511673707835451178530033584428707794254
8883786568524680828374687258583254558508082722308473043489453731442736128652069603946342669379138253736571453584831912785158197731340125363830541572802509440793557695798010050872358774976776102208952182998760898139794173950744591653390248144566841025622551876471405274053377876371756124414045277925489437985963337306856439198887174251318200585116154059118888617014760674042538396752263810841878464843385054748679817602146596339490012402221848095382458073585208880401403616950805333855875025703968840965513502047133169773805625216253094958387664600692223749848635597157651828108831244226069637236906191543544194650955942408355518437693010885720022945757488443990046306553672646560629632485757561235827361616695283123876204402518948687298579307198289235011964650329512156733939140209317018853360405737102519114003960744029372425604758499908138363194915394167822035848607531216074156144814925027300540094246912229566294855263241565644895077727654192647603084060194269759588061208098089184078182316535582
5542144301744895149200892793370374014502134077204187886246126712186368399883418285099340659945030988244638603039784997882617374652051313860815006218653593882494539821783588625420049310088156101275704436081254346048096483077803456615985248175259410291711607028694518161563938044954596141876755454183939910073720891731557981942598348297394837551170319321355598378835546327065016087634570608787957665787447831911348980234559380919412124608315146814994495205565945123046691024813910624185266047650571242780272218167660631876025629054601091261565477335961719760014443162091706445159852250152534297563733071522254493860954708138423753853632830830737427191616975204661691960023812883513728747568107935387910669271597645258546816141020136134745354682967082126460412874113899589005435566686935328229135554208443997603355760632674785359673756738672764171689045334279046484705678110133260332594897706315980610232639825765317859251173747403256468372288053014883760368346790543813969657979220192930726220427457524
3819373900150912743054226881742765644909997689873111905707955968087480268031904508863946746884642187960307066944221472884460213553091716753689928896640956398658398805886558971718378105470587036412703541668339020964646666353239393471451437156686595022726282884153901701624315858983691324325933333213346016027753115106522332746311092010773447304920937630516019036990816535943222206735868851255885454302808708317165475858370172601693940124387251437176770245031155340362431000767772452461345329352329655049635612970990614365954935774792574970162149910350941288056501209393260129098071731295215512135653182911348341253904280043807160952768077968667983073877527359301646156713572558480564768314687791531182721615117970038515251878608897590804131641657778767967559176936936862063137518607491512754800430275887185093371038437729885107084112055890604992950553451873087474897594478928266963561997300394828605741601990104803769750911225023404486362036141942007220423700977884968167644198866243520882021130107263
1821926462394733960052207459611712509267731098046515392607425652278736623294878802002259251940609542667608714825270621055546644174026367618574359018777847628913766591086415416438772434791633519500409670858002555383598042996331134878839522671762051927794443726366462519580408224174472333092632984890223273631669127748267187457517197824745765388902523104516722487513079950787425080994197873507836455909831384994559669368176687395372553911363926643594991244268386023639334633146212066568009025980032793302640531218174291447697052930255405633503424321253989024261113705401065425778549534855812073974786662532626873786023914267215906179458209447527774440592843066625710371354906573071956685635748286547921080033513108534158578713012447170265450033724351968312461817823198150466618772068421335062088161574825939136312157584117975547808914950009173870794555988991961405603221326606240731366989602470483846689096668623823753437979014523423336299007979358768911812513592483958937415864364912936147450143426328
4976659639280235453535987087056565115715055985870059225208419049942006777822176533966114829722605506012400858718920253293652958759169345436643732616674899823044819204837499088343286833974846320252307348745931295713628034279790213399544318620136701500236904085943025440347643308190864256939774545150202701557101984970278676252726550232815677963709955073634626331176211552276780469016546000909405987992418178212497494395879091057827716507208485877333300113272345751771654879292242083185539723519416731498234609288179310794011221784289532127132345800809825944609626657046364527990343672400444547556939241634514007587076325420244644868610554302724497559082267793644971557781848154530103524075334402753333671480899624135504930635937124911634669863183935225746174110508055740544981470171512772776482267339402857601403075586582665878386609160404459093884334210474454430862426417951333372979340856790289687727157173621686686374720804522245744278746471042829407864705157301779764038345805004852427061732100554
0590196166186851145070988988328736876248807839122494622728928900276551292944653664018017439296600543323351677639387728549071769779378499375808875007616642701791918300994482050712975321987129266745420161611112949104486674957563093697633154446662991829922749660970862631010848798204840399963877519062887461232013685224379984829111422942139274471818458916870893099231883137782821218973313776968978943277258511897136709581397234684782158739523469148067576620482677332874273936103626520512870323661306778491266792303913216598602309437723786961787560413495619784836180065349068528971509197496635945676235294143963137432772454537572488161329053508551208358864300219176673077549331335620278863270376526397726880176356587838416805933924798855786241577454274589810592496297782129394907179169051988918509853082627828486413260821867390367000194897107317939198994779737933039616623582091800325847438717539820472834290748187816490107008784690710145138699189168233305323471745745466018994052249104093226871876421538
8090063999887651228386173895653624725471302823835381968078731815833388400441020626094590780498148914419829626394381713546879276843984119412525788136163191513246296339358963999805663747487603702720820343253109310667058774673007857276815331736451241392587966463192004803043460830462843739770265369115461131392555019620322362121747420730488852152689779327658445518478968342076981564179607663492119794252707759375365092754367778327392970709076977257881348397792496429098329717536232821149328380072535106044189356154851916997391627895272936125733072846727021946365118019146180713037647853106945055153918474292959547507820264542068156406041681908870992371569182911950029044898655585505969957460600244212835119949753404452448786193815939312003162104718097181655585830227766033560479434315893150270265348351019062362373539427322675015413031239328644027531852694702426144969402391490230882246032243236800877692522085052689645411660919204573783549420447852095059904002117532073859296259001662406853942684434819
7280886427611490658157842040755701607538208792077896895036549030116370254828646126187348933272971983208467062391153844372595486301494459557261828914239253146161896466769248834972729989669179691790263582045811766712058300448742063863195264973943067540542191758553329044978159565114039714587413705721639665772890415216464597333297132160786067524061005948229924080096401566870125753139499713836771303235219841763168644401729398906832112257691398038774762646459821132530116448286203130488845124935462230155428873392013704191445315352898354429712755213586605734739339956769856350262674518468885639309280680953869284954598438657077727975907686447006304936419615858290186088338070592745030371017600552840856522587193122723473914085589953144869941016508050159287396409167730783237195292647057180064342696224472693522536692056845218898830685085739597530038326646600408797024292070740599860758812720323048765014182075856142421244316836888035799638093847565650185962223928422166204971796139477418293805859044874
9287780095185625217869618806770268589961559094646193260351093341681954842628245686542912730922645328919815811301092699690576010457163216720911537544978806287983400719752602605452398532106445448509349530799107297989992825855894369315034413547066894195850543003538810696703470194533711861614959873767789483870373340375092406835226979036890341907405768760291908635307164685558549615717300410644422522971700287690660059760813989898075665667276541880319299439858310952005479036464114604347699755262566276190164896262221173521016024997168371373799366683273653226817061174681481909107473841165057135938274425420035851735025560711039044586012098681879160431005288588615507810621675355626734307089554460303650388214421270617157414484591771201553894712294092103704902056265311533746174183118907262415104876516876967538354144953348506112086423434276460072495073611711244059260064054985659557233317232723920228948457403969609813997354930818942148016367333399819284600746919661385616461250382475572902108702762769
6593493890927865186047388727207545422446875169356332596827435642349827341717424610563304663278682927209970000903932196673300801091771332404660368771718503256282775151472660429085299173835595872305594071237350646039507136992190180847994685094603976823076760083741299213283435212288299915343797088877060752535747633978727179212394235215258361515275477395273297940206119736817016681824472823502032271223995183022745106865440171850124926624247203634510635225838512687380404079264269311531656708225960878578447264725732655549970348106541643496475044773467025456134646153720024711492495960171032842258364123866705323181598826246192775082808675813856107308683791160956595252298513038457060866402987545502387260923715148800865423938999025210074572836733861357736927660670311065506343947858022644926701440003195568967200200590027897871706262809231932902411625966156126276653357324229249605840056029173479113146525784877882100536358295394667773481287061191096393375085026286045218444629780640174755885739122229
8833916924274462920031843432426840657786327865749729330663293914555334139946185102883383097318531188159418986856475215777533018606828667243085107680781684122949528605887985207128175533657946259656306008257746971161471171159947398491675996968181119906423766879757533016310692750814827862494629613754963933636475964431553248392123052194533319902137720912802111397463972710421635351112285181518251678305882831215537054983197514349079318858405993619591870289502632028257646706892285637794652802108846298825279141763390199189715128589499121056626857989542870397192228420540785791246242324714736447712194616863286739827932123240540601206822338827544376043004183668454459465622253971352760197005012925711096726903116910718096145396716784720141309709913477046889875212518774451646955587009529731436020968179035466024000976213038002949426283451953963292907839864435403690390176036653227718359304079695244701053214258391971790225136480455553582043177516298762860773743535401916554966650708666889393052129427789
0601556462473764681486102372569384035038918336282197334601612575220519267001196409805438385146163700636895154021312222388847039665862603194507069606493354747910417232875908557017658430560065911438075672578715330535978408578451002516882183121882959407424970241289666618398568042475285937255806557981060921743713673631394602691951038629594928370201869956821527427535869196950159995451764159035072077641855927645737567167750769599892807188085750863283842145430011709715141413616967929756367658617124132652520713770581635205722298753546799531380591912910338211154115248390729815708082186910436012343387746373150911844511412032372707374862425731913886186980182395190617180281046932363216970973728796942736053184045297864053074777937447797148097913931845232893186614727825107184926220156243080138039053565473063955207151029049801942362371949515514604671414671644839718591230360270828196702054637715727248346114685681370705108467120598265771383897159577108842435628701049188043728137603001851758268640858183
6128357289503797645535251025640754840426111168359662208240576239131029655564175304212052026138587461586164595198847031546243282687284102729722719040448519453588310865710992594303216349744883701238695113846987436298083444671152305082370084658089168195527205613499353825586773915596115745434717799196191317064150932700535437548193203958515208581097041234547543281072878967156811000153548761236523635933319780695260488000123872330813835437583782377208090624211351132486086909758947275967234613461721540023154323586527245315334827977791320364828095149333798999373916674654553888514283743733434939733740423842727730951429680641094975426629167335675523459857518414475620689095406528336591281435777465518417935984194358204707324074059298266513061054763149850646777460163837092195958569329659075248336664264918022688799065267060763843616767956902088179710496099765076036606232909417046739246073477266799574822608579455549422679568808644790723796332699459437173203853891531808625095422029359537071463821394888
0943159088819618873578777452810019442792394084356491546874334240210613528310233367692591768911563923238588857700795724874270264956878810175085538528003892971802982025368707872723820071077336755142215606491778474808738568165826372186385447840714108494976267892769465411557555036643005203267589264654757569634396112975713721491707716030884318300225115855181491924813602855277879935506110839582762320584757060417924075768734739729686683340186234975703533748970927353233719141422931711959482274864574708236861582447545282925507938859980434157872772662879459804769200833007168445635565215804156876778545442561508250731940729259179475983765673778807894076297776957817294225749553584381849474630860345379841620802963970525168471739143073667179416820029284538646108811292320808167747967416710276241744283138746068738866386975996611515733140277547831462032065084426153723590057695385341210985118328421345864176720937088532232541673383992303729196625889089018916624200079381979411857834739510032874134506548339
7188307673975440407000394914928576301396816035392607739685415508401402662401853639024356056411693034883082504938028111897236623935827675616232007064197821701599892823329808462994625203094479354745853093655792812435105533398112997035095160152575301783267537381157958113091136409518418645632856993494425200587531952693821705600247823455957174292857404074781733297028318783771194574163244411502285524171390215340576630434246309940576322894803213664351755195927192405855973565832943338487959193022833122162306858517342132168519727240873795233408483465006867503376431529128699987835211594410718499191728392148035869793082236692079929830312210499565987170005832580717744237363003949311653842617572079685703673241387105185406748662658376866447727068393721355673498782915826986912669366615593766360579554954145491198042839442430149628239641857565765450024160633806148793641183959172323060989433112573164298346494789491355573415673907343616509406758591738664176883833169186988299570516714389578841967748762821
3876664398263451556029279195311146867718194173645657416490348356833930937752415530563155671213223571116699059483029547250634629031942039865552403087285909503075488138952766582920594413531296695063658313233678154227153137701813210973156479589478262152770099649275096418005928226476860894546044437667904769093100494712576052043007380610503339051954736093893738428662158628345996986890487669012354148573468851654561054908739514638346193044617386808989590856316116776592533045188318406919271543578247238252784239441744556821434851432003410687996116506507885688599010299512286023737390055465421164355554116387354592420276438722934292829457014609180033171305280277071279343567372777775540200231440560132867825735496781705874576862723614963382793957123491115039995689342436441122827112531149283854357020290079208028933784991547888586259534982263608421131277435766034812224823905064573884782283852502455474685761127860616590786807106295100029024385998478951121667691340268423633413947594073105419819423592470
1814251864928070687479842579746569453553413146764237681085195219962429163818102663378711875578938178655866940823605242640040170387696871012287508410936131337303018513428898101100448020565263699804131726436663397888561025848775182945090818046887627098854928903362539283319394939442387168062600757368370041646598166946883319666063256500039690547458322921171793071484715807297049160851377722901114585156695873576258487397609716442280459496064203697374292056299929445701023510482324062652182595315661620400656574188786666650466535223729763997060438971250449966586858552311859475042258051996932742039884974466859702951882613071764340475625716492642688039838402017886742403540080975123607518265472257554415995074501267873796456945543257978511545664464697274099531603777999848839616782097784802642938831423775011127966014987957002117963994366749727853318717897500121570612559356817501523560976417250324619515817308968976576149228027377465333351435370988939763433990151121110473171877738260592942926193475416
4776721958111875902308501815839363902409920202644270334718695367146316976891164301292268495228495779008292871295774547609127344374293268400715667677863578185430945967047509274642841069097140823172432526459000572430665527036175929419195197364376755319083431436952244220888017198689801822838503502989205389187303888317718809401958448674089272805206464716807998990104905698342646032309529347251192712223197658299045372140813350876333093164241325524487315848020919897665109538927684723834061605484521681488450136162128622258626690751677303231823814928656250325801850505248191656748618681078062616150360696708591351327329436938225490764755123957263995571437477889385503026333416504846252704083452673680287777326414117356062545116833679726517145919585238692744758165491151841067096099035047080780555792408966207992572030090556951623635299363338047928892463091760361946866943938781709215792892211394187473230401947042392674645306078550360568509280191498912291485823867417999245308051965903594966929649270439
6182083967988879027050451830925200420872268519356738942277367883416134893959324683703788374585543668142411483576785332819742150112434657852071597209795780218207211377060792210152385569346713512014117369178113153323430266661694637582064054283335855683023396155411149355644526096462054481872714887310230284941398470271936578939855840743395983119810456375567023592384602348317335470718134240170333594642084906667470341317846928895908990370277159097430180847176081608901829797743664772574147794126806191419356130565247286435437852224475008242064700101059025512429468323763194458503823452309099968308503261271802772323059138206915489810629404855096822142752725779857987748205818759835844431426707185752949025113481107381778640466996227314306340598669776179169264757118977249277072753582936341953514131155786986622667128960733193868703527293209493828374483216447620533506889892454527533244125783328938480286247352395176748755716653500806787238566348333480318360361217076320950997326073246552569851519985578
8347171893086737036608397727732268492152953310808442417104892837556270455671851432047811472538059592279015963194238841180976326252815210514262744950594689518252754353406923271788644601346285593931820637956008208001680014650162143814605243658594355232403477298427155799252484985409019056246484395118484823292963787319323437816517582666031855073260506850830875301914522456389120644197853120874126725648697119295778366647954592834978930315071336149646921334686551720589251835673886537258688632059831659158172812129782768206288950765422219048212193052882122629392825993124237297586098634689466947073991181987543998771300639670009749696524526070587342050639680770651460530684005306816059285567675116904150885458337444504690755001484632434579734175485450238761778879279575759801353274213980634173643536834120451254720976172632469681290214847401384998014381506056369794233299425350424892180242241939519776778683438711506013648094980326628759573266516490251555127494440110484968953243314243509159221524069359
3226922722616501322972362000672045608022177177378753057117624878678102164510527071199579660781793701276843481606873254030830751053384780851938305185010809146160161983460656666728083554294557526784371815788035469352511462336167052787204133954949734223752319059085571757860160545670022250282992888759006947854009088255821916733690298602384952378152201882665097052275042123643768712827436151926262394296599996648228341913435332759256234118185392116535206124932015022842876017626781590454310976032472959533607078174807436503723916587998755602203681416428938056336006256243207316529968908756391201824256765509839599743018612261089702809422229631115029600173709363758186233344256842279626911429613483092439312063751085817985723334528082207753962219593493933001380160152383563979641562981575540500168551087646831199539395710548421558517972140053594330910161365709824802325445949458795887070587680161983285550809901093227783243725325311170920921022308928488915188959294708495199657934208102646873539843928318
0212303775434451716712988706340347946256083569233705687210643689831792768902160170902219165200251162002899004750786413205065549516788503474061562459395945577107446917584873864732962920864369436894355517614059152480868106506164477235766601578804734199700316419886935027260116504079412672674911869701893125960544440521438293393268616629361505266580337656856688974210734741843443010356587533423227106777597246597441997424487074533650385031787032031785695258110566009887262181477197764244894108633833006147295027865664951126409837840668839393728170853842343130382941552456104423930415778406908326777623835433740861937343028195598322249830617160278371496313569079274499768113416259040923712843416848342487400686134708869113433467283359306870191136786847989852786310216752404374745534391737338237919070598735525015166558816274967418370690016218773986085226030405704673446958577175214318269259953480975987603320014075047012409266018253410260785395626818075666780729386533673042565461587776985409440115055944
0972190175752227229551956255889611475526416774481418550214557081516367744406803576846757855872252365447133458485805176999732312191464911131722440958514584206616131155189243746896920139502206589567491574447274660083036245687892847899192119773741709225708568815042454620752981780092402725986867708221776793758529128638745534000453852962213538931487164982185661841660666094209067316918631229057228660848803777269982670154567961693797871504641299998657396610483541238942145826961034672494587567804609436959448959605690698101573657406872460325899340468206266638913417792072708094531572638489091542887445219830816268879651143761409713478564155717474434439433045751944660581675730200751070574057571514693182902099677390043338464071983228370095376162943929907317253668183751562983622753003393275130912188159347413766756801775358841189783124845608943267508895749349718451342564168575486235672630618189686248093376084687476786266059838504049136725934005671623510215401790819412636730661056408841465460979115526
9961189773744401811798872457496926123931796526729266008715865062476993122173711993004271012230016028554578038576465076081878809603398969106168911137164192253374232210721869955263621510276873399253048749706174171466370644110301514883043809327672197688890635515379136633190058512983829962174023628632764095979748985596083372666715895417978757809316498639500321714701950631632489437041014994667216600725554847324065317669887933484990923982408298134911977815742251441962823260391982624350859423658805274673698745862861633762865247081363805596891114264097366041630661249222691446844775725757666151918143224326719307232640884725303263291915990692196924485407133232643324948877800622274910434003719632280670278535071968251472568679629569671436988634329102356922198998383013644760597231405665793590205357874021881506620530643195434274865781022977475014111500970197213667530087701005694901021373778122225190862959069126497494246232289118958622973730086739850102561626466734062349249483601236456464991687642801
0967331587687006069547257900373171621795411951080645407130619348337057600710687926037042081634587181409836908973361929197410835932108668732419563355625918798077886708631453397316910135466006318136490049172849492157856485936211571416076504317862451900793264623926918355961368374762705067123968935674789317796561781645155126742286703858511686687070289927593058629389652582009611495341244135610883913502516551717126990741447045704207362577876493234305757475329160648625158860948108140051407235831449106207339406023375696075128165949812356270765150885636688545592459552977519438845811957261556134877408322087868954975198555583642669304840524238091104522400635388523586290272083746368246443717439961101676629916913240791624367015466293605548005264852700832573049350169503549313276208178210923771294920462488438794159277078294473217197571257617795537145397154253607289282448708883747728413476516471134568998573952855780785795375785976028959009269879403082325596730950132677618550890660980801843761139411445
4047881535225373677597824897445840473667460750162149930270742210370949825410497758741697245712891341030721206493493605921120261223576667829463437852749866931332788771646226813886938816879009444629879378990524761922765609359947517393157744544161565608032407799324646556636007413458004759391953740586415609977623500504096817574843065781282157416902977739302719203613391767224021166862697163321849294769059431937350573813728283595864446918315846953093585981858570435241691741050097959239379999221424996043315687152544049474889992834522412784102533054151680253210283939135176072604186411461217548921991791907808899684052687283176168305483942514919778157055123714434666598442842586309893566237450134218367026857626576620409560052125581017014203429604627540668342690585815131470395169181867046867930263907750962048892250882990252661452942512428013064920992646235100362392942763728045779879154567802629000210217233089669105352190377551130534670271827951764330051135781329119918653410312942897324975224587890
5169258349768191723798915385916279803006941956162727140311309199817529908066794698265921226654916208109495340874001310663100052436909044928421314928037765039708964221867458847949858492476997749504325377724507453991829202290774281822126553326379257491608858643756556791809541634264156866050580502710949680319962561496935195990030487015396393378073467755209377205864599654302833286037443807403574293076361037148061934462575062303039906147650512141576218175231956867113818487566358496057712766793508537240985485163941670203256266712677480053820113258934970111713689984752073235988533142016286817136812418871162402075337137092579053962126827255077056864415161937716944412684343326683350648106367432559277024089194155070514752049717562564474720605830443974547584843094735608665693231194077998297454631793267402203912759638693274327542917183671743215112376552316574638590282783192392460004134111357165864879999577541557844669676375900712091717509032918599150788625440726760979092144193604115111399102199362
3659422920178185874452433253813247963011452778178544885247883167746145743547524133265035665719200041311523781266058299237912797562125103540417881023146608170937863042308055774662128093539217541865201047829987616680928528858754577792238906985478093370743094628864745525118437571581458239591279678295339533051945356226431378727491505440366938482191240803773911228746524806991617913497732594967700797080497068273456990638868082255587570597252772193778955589970239508219797126689813943249926174405961800325135556123699642413179500810361042011465480860379694433566221422392401507094248902971650326215263024328706886535355160010835144985204635286003379257458681615238414609797437679468643005250422536945562336232897515317736835285086543338803100026368685970205961784053549018922486652332878715659168731519408795609034241395444880840734104624801849743725595519915919294869157836606366915808348127397260473836226081128153664290797133827623846956106943374336440617228836038399139667921010428381224315406173066
3998113188078775701248722076530405594450454656362814548826703905339782871925924702692312361949552766748639134031965518441522919716610008210510036200666572017571373436283865531819467368901585469424593117780721896074742365551688878303954576655580228635974803602008605127485417766025552829646429883539932541846832075306979706874472444035672074469197282229260177103114512614494643148025060671142657504253291974225847233691052096805315304762525579314112731668730300132323263062825377534099863451234605894737059767009381099364345246379712991597082990470719848577031199569478098982694607479410387238558127054291804303933354965926393875765487338754076627088273190230488325762774990966191221481942843564594137678293802580356549586747845877247366915603286173334890347659400768991978134052646526787766240129730980990032876806273908145804273583945712360890426398589482850752020573403554308370290516450120279675876727671981536528847917729114547809857709537689611448638712943493039905135590534145474899596270424115
1492882909942348258701428440600973854091768164946426705485322117773044510442250994106659276827331493200423266445540964470844949529484606966661253749024875632576238647871054967503187209595140858486773679347993184399457403168325189092616936477095439091786610163471752577410402925521442573872384732443106756035919140854302985655800019542158884305548513797487811886051968715285690490733453334051185477951245470907902698231338751861187124457518882763654928113810275166287828065990582288060630759176022844168924883540278388581721870016103433731252192734757505213557037003399793743154545925396285946097226015923345210007566259328794975570861718707998678912304489832966529950277053130026583602141061025001285057351809876878554419987497866149930273803458267645174256943412404505424527712149804100185942844824988625022796160546615316779599211736913131291657616987762968715617711560731217878166681711809309666667579556623688619297562264850007280646408925754383157392654388518758283101111229674468636446228939770
6239468629755102668524539332704493161650544106624473468839537510197468373180267581336216662333910779345984696421657939828401681167543917919882706943010321426528250007317478326220700395095039441327735370030942111454727300203643720429603399755312676260724075690430808835540009684473138020143113859335316507556051876766655906087953695302380847161666331072463031285756221096642022409309277821010601502538266938522656263548919368576647941623518836634569159205911509076500659394248025287717383151012396766558815284139509684620506586375394928960868831634583740780553594263906892195586443376578283664774953535521728639942862093906589675107878008333412948450582418547478630271368351239374596635181814572734015740316522426439305394118032794731647824501511442181447930370561505925028240899644782691507896286564371335830104209129584038877568862277863499693311374280795172192005808732327457456663784726645971799566958133953199521500606732997771218352007398680165605912810005719823676838578031992942178969481415813
6298919697901893109871253343284381624158453003630828216553838384821379885761830559276102392240529410172123563346746525355917877731064993534386249455300408127161545438439497850369367680742097230015650965588409750698407487873540279698253749033483966314293698219011098897861117997936277418941558602938014330062694060212091966752100274301780635553690838080686062789394527313079387435595027729298430072109156312684007060603498396480101227279001446198333050120246700518406490889322689856729369218438848281602134154694674543147273038474686477900025348509839878988452731662820059685213837964068203776773339435299306983557035577904456785563968291864960669286075176034760742027298899429482554895652316635136768532396396271133702813489149669959436115133339488431356174304702938830247166088843980510494828282357889954146430240214466253162008102020583310878355822683889900420134854341911687492484545773613333883320848078760310036790428751310870460523214155149727336775397908407038667437983083321896064100953920090
6844676929918120722071140265772410115712053813844558633205335897735504594752306193363639730325381424607460634318131003672215880017824586761433934746706094251469614145631757727065714036561140307357852452056662614279097207288566205678590362982358818830231547507950921322528792965057187949016142899724231214080191365716836271883355937934718526576064975268903918674578220426536160539601767443602425522937411991250764492366082259733724299378469558368030512569785637717124355836863951318419488211911996290031164956793914703841082202253612662869931030643628334026394028732652067885079628319602320278745370312930854125109194873404507771298813988834636174318353330484906666114723348136608232502534510627850889459584184235604299602485704737440559831784499687530200427998182643717993312406348831758392106766505860732957473593146206247323785598219025519783266973898645023053622172255638738110432233071620025817424116279329057354197055983753985633266257011506223268523858135947515839461342073026536689900320473104
5361116926921958980250639803155416996501904329282441659156897747132514593616149063502474803764944800986567379542702129361350428904574511116120981906923658049036627316067118706396279735002324435054054728391021405259331308771579001065510431341204803458583973036040545863755868425713510856347462139275569127820129582697672338544838111194219030881122956503222963244788530189782613780745366548329786802365296337465315910049519864912278926767083545076438548041226414581647516948467434709422163564851886316376310844820029477242572335388038082436635265161670764494209074013725885716142620369580764454594632911565488401749051617878860813447835967896147764182613906043955614286102859796366288345114354751087496329005056361181234013475764268314295842341513604023906240397763488369165958712995069583731794975186932189658864191050781675132349354997841956016104106193080690004951128904078667333154668685698559458258252126516409862162102484242663112677821035218103279449903674302152533077533460765629609469832054634
9507286575729394381673598731433793123535470651831251049778570793564880283579226920666210809396214710293000861888860744420911192183287885814063337083308803806700995283777092452821551081372759857997640394976608211326571322947344575701452164313911337912819370868245221982348015666817129268932091501010636447431582097451223086850963310265395584462807385634047577133724594733729136398363050569609233993015841293473328596618899251403848900598786705055795266638566141846882632390824875336149078555997224985307132994695235932853449752463395224848845437697177540185114910874987325997485624058350402745079775777319055594301024933639110165666878860298482198901771005593352495866752231411508484548747944805930385527278022894064529162543918381380434053925397330865099557859366499288539742164005168847965356942966207305904000640789625458038245794417541890814523699149340616969202840488696165866728063010332425840155932869608608112754740600968862396410625148581128788317020685959015688208468287466985019249389826793
1160221148543130954499159046004174710328520896475997996707976372451867346662523294543406312782476149236592971017126947670190332646360825029619572856489037369186380754377465027089495892633088621139673259949563875762820289818182509601548293901609763428275630644361833231789870042881128711297780670328740837462681236477564793444496092622052970074242718377329147870471201516366994141637030105431286350347022204181448930840430806825283272819419355203221028748607815899566596969110075136957877906220071721024737841450524568048162102537891787943396125867838617722503538936075654031210601684384074665468930624135517443668350609876449041944358052929410964577691142041472608868563904442509549954772384290315844704625052342880241598692821464304469525793244619358954126615454166014336754611137890426324620954198724693702365201204886613051953632695110919998702296634152697876646826120890467499120239094186859254893728589958635007557984019074149549018366679686392155455128078677879760892660351702544587305621603228
2982156271869047619696295155643098975018026537018460654182771440003306596061294811526653850046170807076210416791895313172124744177552428327189677285776830266959017391987732992845365605122913772458599673292019789661720964746590168173394221409789242608601360695779800512123181220734343390666628487846010420974229142931467292914671957054071679660176644564065969466226377517544778726006661637181855416846298929206186861799771083244037653670416971928698275621307172857423839866958531962187100620915517342968655702932602324359437417752346361988567557879182547014351749455024612510310129857755612596196153330311096419825538388666229813247561662836036551864549579550379695068467623113771316483447721075129508086712972519100124443956851054863637227611465089407645489349926804062739606435375762945516409137575241703598365199000659940401098692616222597596624858225850576238510521107047064240418940165705288037268695186335066855354962389116708241985328414270300749346887996143618256277558751666298691621973182556
2146224170249563920150435355772164903955001702692376164655016843803748397627128696238929256455260825692419650651833035894388922009379941373016836987521856401833724522704387896531581125840729073895809167263356080161067816273765754053991780150994699974777414918146713077458930341909047440448991079560634023100626421420431752193803659437656964279770536936195422490513492141582629066451165144801960721299409766271045399377490836944339421237250276266123617867742884007411456621241255788990187030732773123250379464336296467651057303216805669417994188374435935874336982719892681626753570605952609025266526057447497978170400743635966185920386972912881030803517896544356864119942862208842720772540799715103650982953858420040571785636204765056565925752875628089567124577670851007749792088835585060419520471966410396642686695973687666726881944658596589878167363497837347706639519154751043368653713572368766303513852229331296634986774572084272462970260336960866215937463502823700474749539764447500725384561992950
4221120036265377026089887575217956546590449567827287217278344088186225656613899218390255798028588430011662267767014555392577026589810269164784870800621841323061291249268446568832205987946663160199719931694840133979912370451587863540976433191403381540869831860754437755220460908163768664632721188481214114904248334386935692244093588788680709688646140053568122858215567023902217422559780565158261952830280065828437706477074510751950309809877705849259251713121350626305172540590750240361722315082325786361199390856133093510896220614670102365403024507981522087910380447677444996385479293496992943224275476541365293997567831014363845818000639082508643075429157510220921818421233079417228294539890579543278875187601931245303565056015530113912404091355655924972764044186269669825771958931020333317427826690575740809319907036171684541804056509925965253418189376913059772391996765487646043132512690402531339991564072070836887569243260257555225290827498709786517768959674562334073013378986919807138679480707654
4399967461807974542773557135322440432915570519229155677943892554391066422068552073326417203369046954428471455906089240543649480481719440685977394980535014663016780349589884021699091884506944445648932235597055581668497396126275607594514840283301852733172523367992477036130500120293028903104865220565427533581927150526283092970090361123394189963611220540072602155336303599166721458258011481838637393354827074077428161736120237618275970250013153032279706686466560496437462232069834894503683646600834257417608833914177691796741872526492036012793565176656441910630855001733265080183233989776069809953893641673748822728556499462662603613990822383927236449152115860121320767902569108234890931842158612654281997126612887456644729528089824314142683033236420445945847016864586381260447461160697826442794452616793611054254863364662680047966642652256651160383133429515437793138044616055238894250591116659835548915080618223663277642958945200828840738365612532628658097431413213386011696846303467761527314235971832
4155732935892994425991368814206644021599833011759597893759048460381234666870681556135170844493797631810507849188912773342631585357045897701819292337283994568683642574799044812573154003564671735119240420703266913338101427643153984676622008896349162188018039262846449928041561800046614812935725467604956400486744997399641557786469689104609283746641474098889231991419070228746291377034681066443649850862982839189205556336892825124308116232526943514583406402699172812812475971374075629832273159519559842521929027425817394427081082933704262466569948514990937773335182236243095057948616725712457348723212465273177870057216218346521749261375932228574558790201799263642321145965037555971669510178001211543151719365746490707499565479889610633882436752338839128500062369472774164334557913374677189922805086900526392438512485313455475102649157994207364014903955015711393295016885025742517127303114319843256260827683014568794729104504196270775080822422426776080506869322805540658241272597047995450641803029929920
2748797828361311428589813883511312860834392802927786939412434944037845112625050397265727550786784289231711584635782216426722777237343226027187465387719667090051717255172926435650277022715972861577117023826868256888837273405097128112800627900382503534582315334132797077751834336432797530281943851562704987777028312927843043210151815694103817811743147764638972999086472385279594247510707799797934321447211991577318665235500845386504581274987614069869526535653095257868633542801019647551376513627754331587145940190753390342847117853387410063800231447083956713387740397689363197003162543264061909169506619260666063373252928441840303023119157904131361245650400470455716069790520218685134197964732126835274401122889395892257776660183809683717022837780043246154395292290289084637791330530327484647316522827806501161476342692175230598271986709188093780966152558509912937718665180277213941948791280461922467420113485101179128749809081335433490434675672736496642252543505877831161466359021106956297213685590821
2662393157415347178428668990127947370792133874409411860234285446052780214193753411727154092989651521506401333257976206430636086531675008831911538803620178199512689783899429127889898672449202098953650295121893198096046733480907922343883155017093730464057621782407395337101377855062226014295806592773842498363591490834668732568542425928131510750479936461193232131386785713710718556384897579598354376196022223954813675735203000459541705437363921788846392031255560316623451963738443178053201962170737507199449169467235068639040822403645811914986213739227093555589755681302771459640630951790276669711007813464353281528360248757757150072855876632446190231792376315559263851841624238356340493328848872567120062906579128972977401751909325571114979428411208122361687690867979564412421634440469851603453859702023875826966463117831422218560038387199036625282368135129974610473095654572676225721668686623238554886503586451349788239700999226053140696375252894723603527673379418473610786535889297804477953007855244
3002556441395830686819063756165736283055388086911487705124285672392666693687684638635585158955214730287626668188085377313275119472461963653874567174554230402833719822121301737080838594697065338685654743837020967829991008818912921232971748653665979781821411686162358182606134085455758233904959033078884427068431663671773811468709099285105985764005341364671887906662888775403290600576490826786946962331798721230006042615877497562230711843961212165743984843686709324799416153475648974585646598613340940287038277868304119082603782268644339413341407060472849529379751034179734055860984965370564125533613198092637776576535058230559461439937590069306461180492949875317554466500518616650031453086060676477586295169042322962736634290980719597708589491232405013950654816185696574479568698238294805162333881905074831182869164719902429581025492413437954264599482391563233778780808587521685499796915376124432599504398397885209461483131670446214518951264463245930887113115154835258417320124168944309329110156826761
6749485895437971756300032761169766401638653336794473478592539787843986976788668269614462301289632762816031805263708250703396242240364051253501286562161729194737478981656451856117705729881551294433523659788570747850829039960150137722888874624103732466205696261192969858358882672392101705068854778287610695679347048913297868067244470985000707980805256795906786729865879966901690375082626351197651341181257548711404345596469415330340731250927811485663516424337051143201367415913916950937530069895142784877268773198324784400680016364037426959341530446938784861801662587967030504476401855350464466524319668132740485950607944900196317894513777778554607567586005334322513457965207632098417406035536959334354771486764439663688974811691937110762077196437631326558248424418636904548771208122862141764283088758658307129367653612304707604192762962442577829399513536111159246892505261186676428384418717411836593214294286521902626958425331770713717169003667602618628340758723212837563769784834528865271966700300829
6880152172187030434370857479608884079688646785072832199253349856201963576242546625091080716257869346210482331335145129656940065875540527791817216827786708144084609403098708853128818108365712006001797889128914390917986304213712431589459874206984332070017697392119547236904374050301380516105011622522166956128460930125535018405388103637831971277737853907538431402062568019563016168573741727528334422314997984104247200346152726554952159876290762541217141156546621066449110191005232846719836766841203569593241744338119247848185802264431019093286308856929249213867285870375638064867195972325787938319660042256670944150942988924828837772341686850269460547236330471319848884683807210532868216701507942711089627587022952097831998806077853883778364955392317629202086481655383930784361862977453574878138603881451754682745452891377691456432673930077044591689965108300067678186451221928732812661891150613393645480714123257807086384971170817692656149934437874152391780004376367849496409067974729446688198024954999
5969927699709923744858277234928192843746333006214627451070948983498481509793797353959981366685863124851269583911489648740702238466891966357988131156251956885444597604900604350807703005400673301819059128540446122789211139078515664877059321955300638639606846434256071869098661217166613068528430790354469616626630573177998270444843158626628943913902192601895939584108347768008220101913238742617836623989841945784708484377329260989911382034733859591019810564810352988100928447485164283668970499443562312800648644971275893880815010477602562291649321681022645999068265090518043571860334060036761120597428049992429001748293152841576204154855845761756860260701090346726212117141532412544731090728048258383283774554936593714413675280230327218825660616014554560484574148076892126715470898727055659941679894544916598021337655019366434345709801732775123085120589271425122549933954608760157772461831716064830608326121371470874934651078476395698182081447255976801453822366546857680150770330959242679365049206693866
9732260777884357132164988051249207944017099899727066504025056555947214679377632898398903247013422926259094453721660568535878750916071679897618094575871209361914834118801551352710023630525005986463208559936467192618964070524519094967626799192810621076861867464158809018505959810171712602357242900146903704523273899111541205403174862946094673801662794251383933703071975986200848225508495862761908593557588479631984553232944726584268642913500002919287295160448368098469600753232975813872835460076917774908629813511824798948439194814137035708281278558333510131638022964724989829854422946953299781186291095335369915821332510141554327335016127891113403304652000227296582598491204225424541190415532553317245856631024358269209322966747746095693165341510269318268428348571788996807633302344052286949372601434906229216361180056052495357507179434069318528772164877235131062418180780342449134448420373384391920231414233093758318897392619624095300412489272626708341903253119142304303222463005036586798514009640873
0883492860055340634858177262904661918113370233184407598756017326110311610709621186545233255285828462106169011290840527251707393088041861576539061989092117518470322313041710467628710843138543752140168411563775942855473668283413825258098860927651748335194573531167522076525839351139263769095679568119886880428856509477013021221301359695260478845021220711894454681321575811684414902499734264283022035304891040644888450775383078415389400317986977120152328474591203126661804513119877927543626694590708406811090820409496067197056828323296407832289838719493509162376635200628234764007735036346646070001535870855829372710336523428599156885841801872833037789710093326144475388064514557679034712662740974646334609397144121634240255123633696902302963585554054333889792178153035661015220823593289883864745724700761461089338182567049868517376534775831845409657728464218285350460138877831126277863501322339164415085227057192797182360255221330784635053105983068871041484281697903086179345208511570242749294430314551
7161058272985687668525503358429693143308576171208066322844641193565575440281781232824114625927407769342986222485968387682353754383439763974875184851044259895686884107360264900906760292937241801775791940794335836924134873518053867435807803304262253556946232668211869718936728291671865508693085873649094126257026510167710260748822817613222486716298379765959713429663678860439481267843401248782396573279306782515010936340472006895902350026821659584678805615701274341239140180213907845523805321226485221957866832513454344367867879083833354661948828901299904008878416202384504758667224987347262919523596364795458931926261231529763925790937653893998629368497013978674417204544256299726848398563795740857409864363758865948447681765162460128022115835868579793236526124982625547340211045474577725764740102133447927958157263279657906283566357328939261064368647525393863860368384115959416316203714627578338485631899237167287501371964876736208804976599444627099405716375803533814901408638447225194043382371321375
4141439602840527947498090676383302395703064449421378459319470657936933526153156426375528323969679636599168826134113395780351436833165306314791901627291783789984783461350445585620167109880708160343728108827141800100983931903419743648657626437246822706431593334222840802085463021031553750305968266127438359867114939011111808772931899803286051592112784085193690639794459131459966663591103797709969023544182476262477729552849646736685512761127428546146685615912050731521908902842744979121894987786359995956195225531959462731045361331306809651302659908516447772285742181852202979769577183554693360740468818161667472841720597733782721626707899958795708019996659552619646177151233091723881500585527510622770172365699544476622319453358591077286089964322908072097612909332581380733235939796556472115927375082703522768797022188141175221293058577058595832336738305787187726776319929538905722268057981842184309429464549436918558142044860458602964993153861070582778622952168502755650108503432074241482927043820817
8610654720140366076669881799537663185346424740694895534007627844268121203040051005074982886517943239334887381555704133118539769583863844844363945637721422048968033758767761830910640947116762781825239611426377965478807574983021252042574768453738210928445190344891746327071571580890081903279682681733399059489128704826293371479150800900413751549465720733345398693120736020465454194039157125507599916704786879006055485750386700980842791759311936100864691193815065926586490917127266213042081936780835894169850817250631133194855971967051950112825800570111028784185211672682913393149421756864336314506482867797794374805107370043034324126794605095839231605703054974224263679090265764539648334138522429611537328171650319181435430507324951453653495567668253062746533297861362775445097435893851567947522836601761049509519597140458020867680834337976955633540202858976525375226378552662837336107364933962741194612405524677540475198018364357954038249882397777262111379500126125817451061959011418163512007138118376
4789269596770816663702471179078510084406350361446364250928079276676926045096961568992492991886873643311197154511825245773710196872616954056673174277092141458766683346482773991850121208648768296088294736178468707911045573216251672386185036534198143532074867101867026686972356412963165088369667576668542605972707147244880245469984941270557754346110719694511088804992235025956761737765810473459271241802687910109153346757491019595266911290301423285352861822804523950164910511193646696782091955692043753592968189204785863786311510700680879080065611849918454644814402701415368612819511199621203539257407692379552131908839778060712038552216423663957994240963668074623053927850947557560450128343120202477981733594321309357383119464137407096736606382534700917051187091907822411348326565412709751858514768179309844812973617412432217540942160253133647102712223498812765451676966833700316625281490699175846035907476762969830731861118648809990725407992424851179845337097500677444932821264335411226818772397485420
7710146435055238460080662718627365635007181789357486444300336810074956234080521864646926092714321631864401334671837574669923011801288143137541576631176318206931426363819767195288640558508085468224851901809610928469237990890191771370817451601396314032771507054555095494416092873203133639735411657563122413693646607896298064692593408850522255695135409612803505198853397657508557575075923262475229488428136178631659254082204351361451981444170101361514568003209800883220668159434530273568550860414763412479686682260171537911552006962491822171737432174001854560638020530878204261276655934206427010743239059537002012926056714745103479469173396924328467160487555500781926613526470134601848840850238120900139084779891688156944044564052823117332757234352710496263474944176061613673698914597103716769796473707062055701321587127025142475745584010766841460736686240637787758424286988930596581986772226846551786376119534178229326266918394110514795981726210703242927818927420415504799603208290396199539719415661042
4000602568417136856231278983841694707909331464465525609225123527243266648132371991857934821253701882244239574130566102461312924411219081011620076002874872929001870396615068845499022657810305406473738488374433695480838117050393906780017052210349182428023166692336150993900629414058092146665397589528138329361974779336042363247469461021103044180105199444421826456286565610773364645072505112504791602474561337531087648934821655859819486313272283472300254044960117401371115019545853816404617323446344923673572817690234491737396748467081807756686785812368655433380511727642692496596089309048076744902086407663982494046246930502917124335248818780200982264494077550575576345051296815255606982946122205669465836559351405778913815618021544205984089111121162770426782438138756857489878704697052371239641838842196800915552401706436574387836047724447688756859636876752574420408377457901023723204892752514969530439185089136925974845168912019309322591424699904918495791406854534132568414633935261696167870399770222
2202233226779106462352403627265464952620054165379383588844908643282789478292926472091918577801709890958695230521877015801798936171990947360271928673938680488570389892695458719002207235108936166094076164388306406565778247234856373341109653090845158911277066736842171068068757779908062001434871104486131754387264706606670557525148587150430535920166278268829805040057839666678235068843592233533980771121953835079422901437229705217875143323834344992813321889027807403743290493305785725365262190729361366818598328237834460366187552803951066106180812610480156591100380475017308775623053948245470843431011149957152891580214219987620431564349895474643186598916425795195856112097411166959232909665525068258074251654058786753102571828889180945203507238912711901910600224107429821773552087122202828721824046677667200313256858637479855974337097647401910561950016150917613349317511080688068745577191254489555426151607006838975742205611058836121494305072402480362331063069206903037581623875165436191606700964479609
2535311997494009379693877479705079841164430323830423431813246136131490979346261529363417523259706775299748087700362006528059503130345736721216848799325063858222173467858239426106407349547495785541492468193970205861407370483684261415412286847660305739794699586531026006994991242198518158601941089727255984079663678662658503667790966217811681463899018118203819125534788330096719225565014453679593892779466469172201730084494206554956175126304773323481292270935233492077387138198064483065908600706395064364687707208614485456359002871221289533667132331182174877688144349359935368740315172382642943739309235479429787104108907634196337192517799588745221811309455189797052845744416492882708125121003883872027213972680531968109090156022669273342313332833169237360646650354152455041480052115380967828334431450525904862631814493059804086494225030256101169870172357773021064591297798807448669845499142062177008921207999292982823417417282313297215323813213954894156624114610486825949729759930311683151573591835046
1463107777982019545213425760742535502686584594372275995465942620001153492015521237918047666737290690855613706633845155306575413205986653341820195209360880978114729113058249915736789429497835655606347411858272408370029115534427274223916374645166185197767893927071307542205013084970786186294171325382844723539814108178439365728515095149206455982955245930854615670540908451371413908349064811588279181869004697840108002638863846741532414032031435022367288145627269691217137474135408971782352742791208822925736429804187276951182911505270318979860811601674068447271622143289941884591819903346378155750802807647201201107929260619498257106247450227659198658860216076755949183056598180436109584614580876043817856572202017617828918600967880399551164278725410865818000787532188628420661284594879925609342940213335991986021181565741976674521047052893381500493643688318692501020261790438751608056837953891448456824062504385063006578547639755956013439153874958053414550481852109337654844381683795309773958995037385
2675190282505262923418761209553248888501647362540700368714701550248872066318537193526192960640254284419603398982943521633470104766977811994181034016112896944539536507123234376635659980652151129002564666927042080508956436690541163095223984882121430228646046692690360959499702446609566358017379260533208328553349646461658353905669629607771701059774976712852010177490848721208958371293833726544215574760713560226700840402636275081293658317055409027192267493895494159623634277350196784781947700094454580174108087803953855239682271343701715594850556905692992541782404534872443501367162657819799468048252553281846481488483563779021639246938780057400765511342117570323173983042638855909761780366956412215015705453645494423665322184616973411132702983311098493144081269380291294075398555829348277476031951024404507069629140796207973476640223602566307677262550486474278072006611592891937309080557530976604677065802166881544251442488247457715495502758323285091357496877974643008638541766178086903623709876384140
1560833654639904393731480315984828882744534227975814112598281626025113558426751514742365692216803250661829663341653414762149389720805159183240951689702235135722295599546013334932504188756217319847668313039675293868820003282278263534594062826038035434320355085299156243563614911434543823451226598770235553915631224098480868720819158920113136600959603710323446419202551751154526569034180292110713061334310960144697941523352730170906431866695368122317185197644465480234705789548401751790581126875351881055599152710088544620226586518016648150823164528438130636653015497682340482683815108160972421242861310941629797073353859054742216943251954330729878806886902372301869881787957523229753681802962662437096158564067965179145750741978460978146204132657099277629286505284087800863165979766552130686238263806414470928132704263806192308919820044128817397987120428573699742205605632280311438559684806249227720175163119481839228620454967589272709292435417707066509601340131166892800148015869681069251703307108869
2351137099367816502281839655830938732517722522384413628498242062346236271508988030370547952877818978325962340744812546569629997697304210696906667791127107931501719586954508816240334324791903861346234018347278523709906714360487786079160666772185448066653095887390329280509598957891445068828005721181692039020927826354214008923306330290564780894057054992612822531297144752181024875656541452483411521144326377265536794859850727101447380427077908780026903621442620032350472369147061670150665841147507454638473856238942139532148162437873698767974098721744144536786358755899400421484698411554732174845415688331237682676082873798692715281312825047870527812181317035447348384238742443857040539896304615661876917364145075223752953179248917976561548751265857643972198186178415311797220054507874404422226020864027327923633466628322762526819016319012775060955237609524316553326082368339447014533229916593662553004535345158899801242592959135561516886556054988870588480068745060908995741813373820297728350237680738
6879490681384169576163553758751662761991213409011500166865250767048875625620018138676958645219683404074576790750744734724811235482376188919750509627834904389218973302000636366836908585247945593243595645347273065944515212070342175175732368293885885022119891407117968784616565473891359060843228093244899150669601855337983609745235315580785773984170056773428441097883373526533641094676090933603153501747598478170007074245126094185181892766970676542065066712598388624697050553996214491809527919732416844686173715760626546939926645732465950603395533330240835409565963947272889300863817252166882797174488450418033386720327131582361221565458833419309757477067092911968229914079138518721303373563809998538680552751440282551517594901929660417629385082771886716299565185970659111377492559731595260294934927494396499284684926245007981396322109573092594353945967813410471441757889657773950052961567265681074005553237160177001723696041133187749022895446632525270300028287337627194345286319887010073035180667311463
5998214088869059553775388209594379349393051929515069062296259739396288351974136023451700101651786287861337546328892135607754112447353597036145678556181750997114803996267542995484035348402861970975523961216834596494519076820662751124370927724867057258093075152557204968178301628940539703275779430032415977931974336417409047845679069564401765494673783275340459804156275993495955403528454957195455278449732822152282467087373325915109572555577858493546814097644080240044734700651122000489082795551649035555362654610752759244723703937659689083971368180695374508969601790217644893792367875059944051411417129033625529974984597782334799757958353075487972674834756950200118300421433445151088110513995053207370310926578094713267951086186380722078696981982309811640001746750760207406263636416610171471488720326905302746354563615869231114552884259460614070055470689807497818729920241257207629828781746188345639141800081995608765547871110543866877728784290593002431858279961886425679130505679304820353742779678661
3618522687297015950900679912127875105031498300562892751348345001001185941491964668705577975494784044888416931911038530837704412674441541378925943415942129660477409428439911159967979223847767310343300876241675222596017083110559175057458379614762115440993384996622682632139486095318546666916348196537818961277144899375409240659016617596435631897606885939768040484792653797877509100763335988213032135364264812774398433850175455466513113729117173423487705211241182453379367678398340271194773281926482986366885379214766375160628866828772043088445064715611412999585509882679365502760671722415117035962820443585083346680654381202053999644772586804840188117705179796361788524054382291156838614026357967463973504911258193742484284402469738477346904518568283678741424264016610246190876754287048903655667432583004115542299238817858279041409805104880352351315846197036965478034462920218105117995413028440310612310595356587720329009034150965629453224313673785976334405441083953205003156756233809412720816180330637
4796305455248769882026372674637916630638985604848956489708460958414792937458101129437940045778145863185611454268886663465776080496146525649550078291888341369989854141980981123790107019708145305779003907266805415582351229780603165304483190807317214373049204794626162640821978549810986778507648603646532152326780062577028413732080124578903459031418667009330395014206547319138183700087589798792741613234312242297228844209726295909333842429695630195257475160864202161284628137970271465840578714185387261722848867427087942565547148571327029446196490145676860729757459351480469705824789533007744262111666485237037526605889088983620201392899300415681056232620910936443920253135260031129953465584899453185389719644853099996292098073118394761309610718542197070231673607658735837384981009560269791386577146165520360395245203341207932801091286509382038340744876830523534820199435632263939090258845581683235297072078226569978777565128136876851557338803859545362048367333270514448897436774197651975784832534699937
6216887994893224788075625431456946180394479686182950075180497160958967656245734153472257128863177931414055930211009402837693650258364342247639710610023340623111219446276533934065569265912152738209781846439570896653543415625626499070955721036114938003767095832908968897275933390629808387250071869729205768770109875736799128132607476103050479352741164863212471199904248480687731540137145974735290873576162139109632602775808632585122218229210618296777118682778214954699067050227752956717026763222404406496457812394141481249468961035351245087434115775711723618816755933484620856255591127492297016574393269221840176617501320497079254238197517593863715787271683926492211156905151658449350084235089216086006018474705368169340956180720675997667728919637209207309068869704958701057873275626985516136214178203980756985574776553333885024508265008608227202297736892007967880107670041221293005635985626277322659412584323919127326831322770204647483287516788333976345150476779883953900325970288147958258112828836122
4752061960260999320722613550098250985278079222995807791179741813077109294936626295502793688432424932225367027635272203454258657210179882159231241681618738821843710030624876540545797925547665638223288011407549528310850326054976465898200505801052216655837253388168005068428186046791314401919195056772918561677938155822327659934998102023952553228083511796995620339778500514402868297178052683903062582766285608617708482172379614363221102932361828622151851517683846887854758028667533215159794836050265337289718252279120988297701730519483883705655199669900057614938688781530544049122366814339920703686848487154718858332363299238143906721822071463675786309739834200418785264171961663946654670371805208153061336512648520286567241686515495837606570202424842760061423384054465690713083533071435221548724159854227080683455248273358800106058370437594284953970079178520603839077984259520311254353298958551966949231073597689431643846623341761823670338160383047879562598887271355235952416047191203014266470024265637
0605278125923116781546360831705781159807230500669303798750407342757188263596832882807075794622214747299947712200913293204759853368993100477189606588390019587067197547370501612582109920605468948561927508355159268863420471306373065877456763399646140312509562040705061202526025262975824888559548205111706493355162489556859566535076931793859241427701282794045276391458073881453758349458329157930675231348078046331241315536616523976343308812843993124813669527495364682566491764621906914341039630222940704127892124319763959559435160367957162718084632863015997371148856035426511056183177359790501035444397215797516645968862698190216388028345603651162381520523058405709478219746435234686121333997844535288269993109200024168479577450974808083189303575455915284449901974727554109046934337916577642473619034172907021808431915023232275442681760539581183259005417210021468455913031941339972794912504295569375426038653416696872179667153184789566558051888555081907131579305445853681308506597871512720413355584238781
7562005482563303995037009582067997067211086046012186981087751899350196179266849570178179589569827036595500893410786701709125929798638199356949456663516433496871304238375371646157302832342059849225849443393732643348040799378059267100527777038496660761971659445198325041308795194926790071944163261417900648710489280786353772265481073691200560381905388391085401059765900419923905061088857372096325395411722191526936446313452460781544826150898279355670087924464179714136085986819315171136409142695692468674872352896972750166810966810197402474714313672266388016684358993317948623794512676424026658745411556764663009458812991560343676112629626883009512556334719339514775369132452440001500959206595585199839149353274970996342786101110996190283597648136220060329593284355689335720427281059323824729572348962666193890947646054388682056710599257785147802751655819334361181697064031355814516685142830195007365615789711203750020835293198978425533204997140131083581419132666601315599663008546803055627868653090501
9309489946642101253021332451829520771740626586411283287240262420621273269554709741528838873336964802007138787297503221074198115139200476618133117897785835537504104863661164622623871501517038936690902446580210733643043560476146607670181251201888525843837022960660544948438192730554632171540996246974365177785504239762944332754165059606624647236449465964653226718688886893969833615899298922297540519101612494325027480136792177234061595042883250874286802498732887584383318938492854142412089563546492340129675890410482137950347698002659665818830377550493102363894789356569092453459314491690036800234958758231061902133647418301683139368299778423796571330585239974022238090503294290650478903916549746379698119534124469086631077216616974018669781643447675829993152143500551974788430612051909174005733514012670620374334868938828497884258086005466760536508208103865950285569373348730774449823679914033291771599497542797584285638448711226889731816042964551650488374708966107771024271401500382074032795182524032
6625463979979125510917552371658214391029164051536575994810761557427810883870279651977910071904000147465299616555933511971255676822682691189687154959621885656708979823373882271324678585032884550574881264357269676221158524388263131822919692704443453707760796240423198904964042993969070985832991295999411367288003667354075574618936437642304633809275910558785473913220351444595773625669884347560059561614961657250839350727777214348136015136401726212692512408767588310584338455556637366971267823928347926533052985346746785996834116284573194603516951800567629554892880734911740834047889232936382805878471118284549979940175031073765656609895018569801849232216708249208676867163218037343983608497760291258535210265339291784331631776403451963947942134965121552065319662898286452064807993461720688447949513424873136872061734362239940905302748145640715025384113274111966059773319038981571981182531348737785036579471893563987987819330356530267419982838859811132930982668322975663899135294115746734557305201893367
7105722460751876715858247967826782102708102295933289769695468441341201971627767653262021884121058546428793833920369994376317554778538013342688631751041047502109503412745924572873581406368264549216017109485270671978763059856629396084814841269990215157882657889776607578222756523131520653694632046439473521420534176939723114806629915616614644752786981379219396101271561685050820400697257974670773538346451602018569701888538525770422978909765870776229784459745847218465233033140538944293052865289317791559152996249534372235428641108801064474250539670473207617395205011707078547901696725996323971816369597701648729645611233633530854724230352300887137526198891950760922564846741710345934427179992133451551000396078196867878764398052661764960539348869878555377514440778786049022959641137845614423354742375147829996679508643391676417391294858339626001307350160054799697867369124557759445682210487619150502934591827292835804885427504646003256067641928825999264743736871959173802217064373573590377951432327147
7302054178294527879541041396058948352610971008005922941261184567830250898008089416170241055015086619952249088397603779482539449961507114387473264891484107723781159243280229319871243996977780938649626962898271489870550906744150206709811554111857310080304866207932485934642804341076114311747048800028926622894923370146814262933457956803628056800740026372912996704098276875961234595080199346715126431469953603503527495134909541460956603164768382166538849772044124055266823498152935045864840305714081860388358379944684258513533858442338671183943382506487126840602519239880762505411380090534558445047569486063818197248880848144146029812502965896708045452073765402326849506765638012513699495226175128724093337755062305209799509939303403562212316093201404274972835783951890557155341615487269983663475199654562598812329555991373102614943923863812578819254790492495156642924378475360698273567485721967624875252951637998430374638377084316426360096250325658081085030890207954310235637137556618893003558740051725
7052268628597656797940365804588994846673860612898554272237285811140000957553015715332294398498561600392887354557241317337716342135949570479573521197245514370953440389427702109537489786135060446539477693140900565546827170074261715587996985658865757805300295194847879035634489235273778399754451254345845380759449978992489824480329574869746229783076122928592930766799377209942814268492116468559329647946634979806664328146009451992537305089888029456061982729713305260493031507516538650677455628519887256631374577747198924019615442978237672328806787337654826537457209027145464234425718159443462575606947247571698999286170506167855088958494778031166663348443465658969936925806589844351733869282647331024556283412100384738211737569917437463832889775162880873909339388284732441172595464898996482325149628407425664989592794636701767180259269815685165399155101485675822741485144157025499850707771470403800922957591910128189231989964307532367052182940508980280753345440545241976337517651343708315880167479609850
9224033737078746965274490365427245922013158571238554861061422231237040875930356599370659688912401029113767717708219184123758382846737921579562652736706123017280013919966267284854298612684073920933084679797338605312384041245424369389860832637972180780291954906549581315552290482515949550040605733732806725887153531459852638259094076236193613891787108120414392731228837645554343482888360964738196993519033853855112035509255831482501793006483751250788900045349198792097444156443354673466381013863950021331111966946094021972301892736484053260351936148265959029223788021455911757921797898814747890162210674009199703081243790304866074835362672342173345905266659706630666527559228215908005189777096393604690104694798834234879615258225664305200321539672741319697561255089896109660005276927308353671876676012225809658496211453167002313466536862000483249543768217164555904778509961526005368068179957006913593858241938086937053723441611885542465883496561636284781929816614707949939616884151576976347865597745418
8407875912352825161763122604976205282587026083322596419980173328654978216591371253058238288253608090757153525835062230244888127092619148068954202963417042267803104283015210131200787528575981205953369144849400102946314655244192319662818880082603730726355114789701187384300507810827552906934458375395540405522009132935182315989443284979288032624933832882663211551399705092127025610287268474816094985655132087814692565302374185672452773354548270055859776701811209476907425073030381358680759190277147542784576091858128078346340720227433812249797215768133241108780453173756647651583452001741901749468160859718681678393780939637663409907320901977493507465276871896159412093203031219176722177320998655799075675893597602379617120978569790652427503042424292653393273406549697556477539919254191705753422167137590527632414739065791734783593243356928996451234036571489867232022207379859224713163070134608255889673123583129088916025779388541246837120844702609249602455944136974956366127746330858599441411174995861
0502097552479634788838153832635782596526440987018842767488795943298006547242558018064807220217722167739273832994382989174896800933362112124159875911333356644751122100967547690279312825662119555483746541158094568508617131829404064805842764954563476821567983520014513619173331289507581707931061641038399978723071637158143543529497365014618642061627357024873745197969375720443945858367463244135984420737313712381589125852033575793558258007742549465924056919086451005315486965165756448501725008959258044903069118912400687238794212487592699896308551006401666030833559795750229480352972916315938168965707599354225916440119875941025105386276800693795335056310380927146079333041026206667161958940374679876655251218855716224132960430995913453643885823297394607370347495266460736185572475387834744471358224691018718776979785508973740820844244471213295685329983475929814969459032638201195499278710658412319122824601179965560775138917162746360389745533421665057876084999046078949675822877481249505815268163571930
5778887740763555123498384015495128805900123842560699308249380487288255087854294010957211563072059740062043206926979771823115351153326620800984158923484942730822501443978811205904603451024912458809495333843784576232631288891141092291272497097762412070841186398866303801754186547686955879724750677615216976642595377460910462293286872340872763925474646344525602628915547393853761396196131685900163674557243884542896591247230234978391478383880485015203167620426968584147313216730128418664631444631176344166465156359795363651228381232531345866404071900759096655409048807293568836967706468992861437607214069161215882984226741808990993051350232510425092606959145329805575151440115171186390511708563422613957397593106399855939588918385484328630694229266598239545534617792344338143415658547849629575930261629580902717639158242602088455530742264163264287706122792566631343637818862978229101065142086717341614614606908485695413610777708480566263595066999267910701383539094463988567661893322669412046314019840435
2750173524374380660731718500830142387865138700807057971231744233457110715757030356776079523990908249072216332989950954117526404581642802215043862097384160795978558904232109725152021663178337210757662552182148249565049175670935598826842567738298565230017918910282020237989243823186438325114576884027433501388187923616446009249340369347415383094365348809204753174094350436083390610301636275153034367362919517170048027246933378107193027693414688086772225259685321798038923464250267359996841721861675369807646602983599285103444449009322388523983208188234106269655887568704404122100527128199064218327879535697412499723975310152482644065581618826116555472833420784501801337419689651797925622200110518632063408426958082497618128239055592711364041137790334084232012469623895547095932834721499238167619009428902510426805434115851903944196780649509230070698036550704911477271369773705534092115770516926745853573705746555955033092647126009972018793371266554808355524739779663708745194671903778096834465605089248
2878703529684019498989046572651956093496551531410097647005143774163025040065546811158254602670824409892008477004575923030559766905585339979823127308593060495110783325444837553616299605001181466208796009746758393738911798587141392522855117100898021023613133504577704018910625618985769702128694880694025616401344478000207086583140770273594604782153148374213336335842493493497236534132306443521831672429377650022986462420995588899635409453127976076971963522448785031889982756177795027150151979815721093392238770546434999661227031635497863002616250851826571220210707682571268237012842794985475968165894407407658720622826279562475371151111500902101546661098623125277605004414749054867416279301088657481793133716924709032891895475483004787592003399523218995201902015293599776483943234746555445960678659829913115087145835975630793023270303970190998877893391873314769055057565622653855887675303518851262939321653089599902905535049351176749019489633317705671449571418199997863465722099117281319205361257562492
2956948774770120986137815748545858888391751294276619644955244924921807801775443846786682075761844894667210733579566803480356769323065124411377856338448564566754332201166813187943192421769966852881151818969999979476165703491459094364111471451723731702091581459887047333533779631689954617153346189625295712252173989876033405495975545624131328668888951795135039933311209905901737378605786021646754701576203898609277342065892626397229326693010989469745076808951529178153777359156607930834457169123634641060023499378888651772434576720575121146561671984466666027910095016725610356256853749676468531505436506578354831915628949197889254345023152736203612706634514156137758739734178458110699940937876853584812127236578648695146401122878395596076647409881488237939187901261437015738635933216670454377761103005877144944919210348626991151759226708877533533658024874731526599156607490183342880118556159095357904078972957728767931479775037446039772615985598241434063032297815381191468812708991290617136553231398727
7808158053897315893346410300580161736776407804918981853735463139385791766039371412785919061915944498196561992772982865560502560976579563247670127110995821536801638947626061627000313274256004071295585691605978353755503432319159834941130425521212850688671656435697309274835846959054228633597463918073889748846613404496286940926903220551137651282536388863823698624281671011059612543523270035048968762026741018239042629166647952886780666223712225481786767931003761514275318714178776325260008586630633942392013573023541682433135395640556119053512561368102558096762465360705336740905362799440185582445453080634941207581978020064054822173195686729103250117786294328473219621551690157772252494095535007563851528817338448394397785431025782282409714130499354833389998600231353196547015183179065516043289001995791060736216478808970890766633710736676500975379232513867680772393348686122940476151740711578022217533535674273339923781264295774231574463134843249297507955714229069029025036725079258868881403175462883
1022236548802386194390026146526519837917364675183705889045847785017295315131338112110513207618904078433826240215590814322500607524297069865847047535376946483024841820274106557108272827171853390443108362256800215876251241667165420091585433233733824216308637807481937736331791026974595217709020617477386722300795896882944904252008399272867515648552334930504599250870641243849917335420465682803678765996439544398660862309699696095359360277315027223835756892205655282920209012025952012832390990864242914844918940761133362727435521384531290549378104208952248348917533490110029272697860736180260478025619805268723593035896626187919237334179063258303571581104250521906424868527008870249921625673549357908031082778956608560890434592411246990303902981975319353270791080871849427672986183580622058673685639412758852262632384152650579418418592458970780223796528359350422117881939874470952439788657981069567942354577596268104846641545599017006763497859455056943982223750262389487976186789199642349861057320338843
4993881712082326437485544297774101757932319409462837082259566698299825168656854472421565880646379051923716943829550251376089589324531617803487051667628213422033888157110509311517939458785100259226393397914732540789232889733132830378762323667444363523097292191018611900359068013786775074743901518850133904111849493096739863870983367425425209435567215783373537957857824387286581537040501291251661138256903076095960032135967115848696370854633172174303875027038570133954305427882438197802322368742006042144877747990290885087051294590041687015484995865074535596525363292557740589960501641553807563375767933961060582605361301602007808721270516824492946493479247632861046455589848604405985147063135142212648091710356053307442400981305063895642078506930732106545855596562291016494566111282670068757624819336386926186669265791878284487197723191301617087221071410195799589894376562474532885533996346293951958444369172055156090074964358124099583887127196292882458853464492164985496985763825590049649850443871012
4053879525470673514687434612970761030396350908420441728720543660097614801512822667872211608082229912799259539806836951356728442325901342086114449694634388515294853230520642942124008686594230112147146299922340969978265544237042887403871018118523928350765813467414813035153735946959037938356238171984523355274165273273581867157459278592076575388746390965947928203382544876487524636894777415146550808327078070001473883883904936679408538407938452170550255806585261444964966444213576151676243327861433581951249485696871359477827769551939328581916049893836229794173175087376784035770597375907338481923978202519271111812553474565283189137824625704294002511663317243494807390990758276645431352148930628690525421550122290741307447475173317052017694365260823282536251358059429478955625823342814325942455164435348698754425372419102984578653441571658842361561931851212961895965293150783205869733200868790441372006700372223306258751178360723677843077196663276230618732379167210309144517453773470702314722374747374
7490974758509715157330235594035913866894479288628035598333638776829263275691490877802653440886231702977575685474477078067882094862836687935208181053415952274902486664705952327362524039172855810606447311854819470300424094383129666671713826608322429145122618525059353524125056326903131027114863823064887547329953402948825477039645221784313510483880084093366107905123364646085009596275632125953634953692017425680101045332297264705359099734100053427902643236008154010413724395946152168721070034096882404975415763024198522523097223145243884410165265754953854479908364777403170423753721508707200210883569198080907213196159074445060764105530631466967367302417653893072275805512848812236794454256931446376157069489394111891176826344576864823806534174138493081808741449118417026372394450847565365802954947055932799141105995055814612249822078503501830096590387526041840074521947905985871070609349253462466728312868369170256753659548517623831344496160824706755232877644223819889066103266214104115377884219437308
9099195801349770505980686945708703768551551922306130815201225925728159251561971585127904575240705247231184746354315732648977735913645091424734885635039808893652010838517588419045148259659575741876914177468430773938414113357942505657436750239719114121562657924400739739950873646961096875147399818483582491570315068892491355526715909015785785295867780548365857038515128780150709952371801465000458881322723021374160845932120672103499590782599442771148631801227580871401266996920013998611912855664195764437252610220195580677344794276945290862263660686943715768487992592689379221132480343380245462472214798713303980992352167190822448812535944620756113757723563402478381896023638801362772431545671983066755552606164119413061239453854271771659859472653475581024338824932396178262865788139398898375377933558823810399005874348744407585954508485107311797467054607644485183147694592271603430745668841008493356625768319034260323166435248347819498842246975868670792952100147829851908241963687081343275770167823163
0481943919747617394212467809916944141753220897038495333664028696083211127615392057002595683276279552181140843667859470349138071693214131733746597202002246245572381060119162106625498340936548298147143450066906961131009985293783398827281590754708096109308521540386669608537676769237956522205552147765509668680352970296072278743584719295559773595698741540951805536144185128778720675558196927980760387466550656071300696299961938664297133235662632685137290619738019550170573781745431013253444696588422457311604416004270713399262573265076959594470993332352095286607209258734879852828412045029903142912369607643039289492890989077525246977558786151507297551150054314723643381105338621549250716075677306589129832059477411488970596484891248231440653147750469644615317596556283704073781582733906080808464340044656261694134092303627043655421741744526430647085159931772242106203960844426402608150231487538816083189757649147176598606942988174347157682896641011125303912753747328000181390445066864777607486339647697
3967039031742973935994162311835506510923329530702185609392639216045948717453275715538396812289770827030305170512559155594096617932410146685165167447858469962509102050267020495217952516525457919787800336662240295108389756419274597176983596183419527372247878894001350356616087147941927480749553023890979606012330598004775999302288224321380911784258164469827427107616456734004326525679340289318753377231849014026954825636181297067709713893416954202073526367142517217665101477563736456472284799206532722045374968194779563786801083183431944281559845489327692883471133398265464499481339220127101711484911715049398827366301002737829814654743421033946428131469178631367522938004089246780811001550700775077435224959178650756406765291631281329885066584685031999027773074276553411507125277975984657465021876716309635710193535046855077909362683086384546348388188287298751945278179174131137635088241977794236787326443783248379065998104501075177267730669293680121811969056091998193301241751588440577675632042456729
7613668626612128297220012445653058985961076009413375530834667759926617197571582457489084463852089540865921893533898684348669974272790003847926112759337744449083402063878405793970990733520300564194633930019700110270608358290263067866650625002008056913981830106736854395216324845906991475116031463577709657253815634224441878084188772520249547877309536812401374042664586429299295098390205386017536059378255058993553190642416128551412269021943741029206580083826802036875249541025218822156502467632505857165522119634863290474884964557700179621901398105221338366507722547024540122559665536383572354823949845791916219826042251949178291073403382623537294451384094318931628710483346290977204703885884377759814328921958462852231891508812147904631947034577709542601056438624567250199558390778107099315555187718568352700004473006415065016632865271451467056865399371197184307399732489914926858913882616359685596527871045309269016134729437865093904018148241220828868209931376057093012894893414422888780951824486156
9552624080218369114175990605633617997035667933545973373080408973721717368925468130459816240775972302567378555503167324538832582634322075000280121207027640112326727736643089293159861238585865079995970381739132347828706804980780633608835521491236090528267413754364758639201362059900462698448957360680685269156824265348795994504053413212607312081816832750145894226141161886015207804954015642399624969632574353177204719866680657665148505896731865962889752116650543262893976026563770726376094682453749248295667737104962401335413633153446518542488948956524411186866368547838787538016274934110023698431883476820044728722717787547703036820036299185451303172360969633269277834423655838821543182353057055276482278867588880907925341700560287161492659847739753923511197825268900404292843775659607242571571225538846669379588699085954654502270867821539189426824109007382652148307111847834071940833656072136096429524525933617889735958754433756988892383026157514216710690402109388800337729084031340651713160969489924
7628047967374815364294724808374885869774324901906559897889959735140431694303701079468248896506828893716854923710437145124797717649226767029447373758699569271156269126255725357747525927658670299856764160037449637083237997041155265150753003688907121902439024887537003163504430973390002927390351535704891739219172170080999277848133066538838931889128021287679586068718661981659123813511649548790077623682085890186363410015479318960312299397782804155079588358147540473338400738645224117918460245891986471956596865651249292910127152865667735766820156456027590250521728410852896548211026500906465812076002541970141354334985165499515846181961696764954896126551833765324920116828729076275436065883463092432798580824058329476764433748627983369397640294933724350122342592642777394843305735431228984963088905554873532687485561101930174337300570639020020501766395971347211809216881634175802085332688708026064792959801777870652886434769430701916816800341531594596103683915461652174544472178560957345085922576624448
5002087246262542324847033215596918348520196007743499634873714247694094012479934020351953976317556748833852549388331859909529140930396065050916147846973649394651579470256722907878954124280750346866579183662992784305249725513641843634406978364102014984316533297623257740088741590003870684895133804275693123067882052471470995303444288953096917476295511599459131265507252163790593060256925282828149585494398385765765866097725039155617055850695138655959291907075192229709989775254912549716178382159030898668442911556345809135549785298636671727369482749177267021989211486402563139418508727190834117388392615895027048923118752668732445136026802850968198604748485035340579650945936701779759471575213059521364588874182065502823752301451347622150566392702675579229640046989837551028351161845169223002806641537548181184266138383465372470453235113302571493533978304776109321045682304234000769861611091341587913211854285376182416057032698294823777035633342092925108234082242325557361282032913426357290834708566340
6905943242489300245664263619231863321252213303709620951275824675256122411257302997732442359025389731713704873618617002144028948303824780836365667783932471094055264795898704277441655943598618320731434141404515701041546428710842269373726865785014612113774994603910778249602575045646384549704128666404390192875310382944011706349973004811714016116637629680878899386594677421610487954553191853273579504056297960376914916354788678026449749003140714176951937942719537056382399996918754635037787710173398220027803760341787243207964119499167050306787920323261018277864427089785779985698545581451763790930911005068778429138491442006441791564387559810910721808989947309329099559578397595195650915146442481007813617468289735693804944557443633934645939849621704588410689175066294896008757367649315161006498545836149086538654877511486683294708260683464807841324514361811434132235815598374666049154032387020103879609921839287280681330271086503517516067560016337684800749871273344111019409847981655587979644284424397
2586009603844685095849424292099253240714392864972975808378721675243418498323845930122024362885265397917048200000504565508663343873330831059966621831782779819785107082127790485137911052730902076946133791277627143133193459442761360928266634976739714576726047909313626075902149583362385496727899491116487246260762752009208410597218789157372605223145246058859857659245796936583134536506715455643203469545662803873265331530379664499763680808254011192558000661994090236810030190091425405240283740335675543381732794448595727023146485529150762280756517360551342075386911106336859360461903820692582975466503586541667415531319870800479432726965962771348965838061732722183394381544514093520889194290026871532284280397392091959561468045036332732432539114948724767240748623186290336085902405038307644500757865331504525856307573987963715810337252216193650057230451942951087281061519410108402330167842050613946995105719220392436620421845703372763894327165577127190019577667797804101532322345799917835934372611573715
7934871811281132179058681953871385323864754818268139725843904867042780282991758272722199161421633004160392891749181072240693119095793761869869816581832539017638953123019039450143630517627889368263365032719044757585180095205311903538661969409997609615311350096854895029032510669261833945159787880029365077215134572819712593465286377457237728657475351419862306475805293383097111742342044142677227058833346539410363240866266083835636724334506185292911826868880310697058994966364961739988956119458753172674926910222216405974743010395135934935427788678769771757752738106513354740816120677160694059998996661129165008390066673748960181387105500685901816896400577859590701117990032824988897803558192035568306885507673473895192411797172756683008749324945464210863479265603106394833502970775942117973061147710019083002334275664546266238670694899226427573751058621487331897798911652134772919984371092340886218887377094855189367880835113345239388997690336530915895483733144039807967911324229166961805986218186001
2065672838077789561334095041023063301059588045557178415110916714030440744989003055922315045313046190710022875443660786497621315924837297156777670542391913741569123075359680045581965525328618096322552620705001968301487398548994900554713156769352657290447317667800713316462660934493391549035508380628384668743162465972025984982244918674311272892458922964075008681687793084200184653277391071420949453703826738360405233634749248488014623775972909266816866247788322434028427797733283666665342792794097741389263438787711600222153375600416572857921422593410738453942078483985560005176547999911099568284443004297989474614398665580571815685403923807586755618360332260097758083639491158369858652794072495856954121625359881430934340471146054960421127819660637316213881209504022288889622476195596903312896696229456140011761959451384245130941964933414549046507722448959752696804197811205117675574663061611873179131846395188361191762647062113242049130072456295109007304902123684283407424183515455960822276854490986
2743630552711286579533645279535211350356498304330799304150098368319635812186101430315441782936948000527474044640323200684854952446973482460639716885751850405161411759730343160502580778729878625221017433627477657442524125477818636948473578440501294800172564847101559788143384167914467235203504136435619459221512445361520860096854694855311890093777434048458808810147878387927701611522053983633819457247398742227423192221515997804735033011678942598951303018564600099236487686288055051307205503773171863381971590031727050402137448430796870618822389373134168936462624314726349800796957543566752170509870577816887227753679154203505837698830763906643488825289088369876502059782313302727266809611403876315288817670759841574104980452564587021408061388391110913915848375733286137620221682131763314622761572772613213612393846710108694437771796891128715177843195761049904685277790532307160870153872181112413100220712968830902039717202362631819227555178029181010838326777625001580779800297424861069920542761946441
1018142691772855708679615027484114993411493530233211204237131834147284795277987565469238454698406261400405587454592906012675661447055549306783440267714087841341783117306356512159726572193594658706325369065026906903950299385184662409537846169239256520173263533578630481607208701407518184093671305790774072622515929710421660930179088331953486967526859011900114495499687568070258255479251106516102445535269059336833323733728895877837985396489048193383211204318797159663261874522198916441100000074087808257770306322359942221338664992322974356829023971463117297295611963326283715247693161754000189195246714984442962566435453527231252257524405190603542300684962199284243951538769256110280082436671918340352355149989770400727291177550383258165705046060701852450486174681664210100346904157597865731871187688851124493604507431457168794259850131497301546867887957490180291799205220006310573588666293684380662830845779904859461329575848885107312067195091840463205192416601809242362197124864742112006423652752228
2528221644423079377588181634660990429216996238429739994813551797203282541479250317526241130276090982661335169355044503351930717390049630594348831694861028632701409575357935220815768494312148139676839980304177127929646019954139265470241165711819239638883320130520613198605287898421165909576499507253279355151249381184975957318693054097879619159812911144137456415554826975014507928573137013699955949941444860680674886661133978287668317492943560839716594358029056979089387586152925200149808670747299971929319126435100407728576637044420738344971984076631273359094704746928241742866252827823774744573708328162471953453391891309777032815995350108378996716061395351313516494246897801084172843514174841247906520808773440187421645470172381222741216045202580061576672462847617456093006366696692513780638803459983792571242862084162513089141276759450571111234849155372453825524783835692588898623066351445360012197840228469526981295494128019253229131621971970876976263447192244949024157629692703450150108623741253
7826053975879238504950841371051538426201448783583799563366787050984188405799756448672796402204208717786231895120880333898904587775117755462405349933127605295374936607448761592953744741937992299983878083706923259443382556563548780313440672100854142657843677121705129187454802491810439246117799199764317632467257630206582126381880859332684322217833755783392244171644727819962229094797913348246267412128924532075013773123098701486402135701211734057410592644822552984530817825596232065925576711871955178668691104217468025968818366627994659487254717595953709573012499190877479776436965041736593871691886685731028536312118970720148774070772868462068645019010335191195893260005215507130544517191932367179008137062594818965220546794252787715364666778196887352485045155034289349177868431532659183690847032100105763574601606238534147518505585070665039309699144228396014913360043369319351183112304008953963117294613847410947176976559392364710518074947426504825167008352199804363605108890005270809847186418280383
5131129850391252150588447141959839753445908559683107346442956645871494917906765670808966219719992804494053083218216626602796849023322815168572202692441312091184798022372576466476235117332973350806616141356825539253880434497160544859559412264474923029758819809673493096493042729334032998348382968098826530900318005315816727243214813546345869294148681308262277598087637147691315918854922924740482304286279639298505208296674847876074636936123462626473714240764664508512329459378711005723191680863053335148714462147609350752885235111221118934690355543595123581474372735544841867390372861492081543912863607071094326643342107194278762189032106510874367768486436838817655600247554995340048591132534758118163836815621530575361080327885992372725124999057034810224038024252951686516140327803181038639755454677967765150946165219613588246079737317668521912899503909660419191616696484056867009791922695638021274125643246065300963425301192446777019395576221066268717968858803697289388905682650575919149507850114493
0895646791809254458015371865682494590511513997574260825335556918608857960890960694364912334445680360643780621864871740036005654897480450800205056265997391595855608250927396946475998910032095229201028103608590206994935103395608840769945796979038470509833738306562987986821334941409150163124173971889234938317661095205599172567102601231680412037589027745549127962620011520844067729607653031601505460183788067777679303529662900067744572036867189437210450045183067011437314085098457687982855546706301162874889089417834079764061186529768926291921463202310621329242737251246597315880735196231711945975619695845120752321135612599815221010707034159338806045521749361560674005501812781307035055050698511890453814223988055865636139403331343097001279545307109315095152564010514715724162708924534011846301588529661383185917637762226937082042480450053385790282937824347197731990768488238883791317410716210894354441753042861917507553805832481700497062478707714599995403868756089715475584654777255397375581862358294
4288584189729852616057704676869693237606517638821118671152977859238238890162109512223109114918243044730541742841077032855912156608299001335354656406462804293185384923454123505396750942418117546066524946433135288049293067772137220729116672125863441415173889010969874502044526270543470046384074038395522639853378791777761031927466800920036220059136517319044589443699234543997043273268619978522072525009338602146885218153570678493374907411652092979030573554764516717225277973102459602311287425290090109914029180338023452810935035564329231325351278278942793238701378659575805613734079378476589020021963469233054767061154011283127771705083496663096374753802012906954626720139394509034540889183405814637003840616410768560849588301132196432347151907364206435298404929194299217047062502651569035595743124923629691880576809112056483259522812257477111470795118256094643079188499023576162471130672425854904826420142923156857636949426526525077860079721382379298469736785080026717797508759309883825421390825211369
6510108696435521097956379469020100721915487987187186374887401000420335696010766143517505968735841294393506772986537879832157268154177450803588020605436920820981221819711822922434732714787818143442135356227612338944305879308456914837061933132737901646994501544227090053181705221947746341669159135958237055557496314374416603622214260687464095500123023867821682467423782392689451945745302848794196565512430645302880760086427187558646096428734352307511349782780026689846260225715024887191466720663808325932908975263991255117520724990191415823534691230295074819439319628752398341156263247209034472054390700835083723902104815091393417298437935624217510787603144426097514244363641585156954151192663178069885873338087841012633475420896921502879202157289870968796658223449153522524180041215232695899813813920751396074186191232989856773824508964245879422214766007908265517231441793165889917180011187126096459300977621141676525694751940505465957575706295942390934345034071862850714890484402800878577984071824015
1337811244658715923551486461918997063197086534016827520488666265490907662375700213285524901215674200287828167578123624279841107350443731362312041925161406411014849929914462300956256039067230074326871285589659365309656899946952131166232384318348701346874368872035051296303401973941116136077748297514081909707332689851289397628711698666199148322307789970034167172562337891416343183620068376353965396441413353229997729513613881279358608148393922554344746091549892588031592922409758446012679502383171950097220494438967256430068366998450398395842173438407246093677546675575819716117733722069120518663719090394518178483048090454579311559624069498875168761239293292209641475228961868309150903668776235071278222322567996237452175066201753449408319905156416772495069559988573393607873359932693174959994764582158275672643430627204013129797966150097605324966512877838773458332018816458606410270699720096705690750542183538340786801951347788898555807059546773546350831969383861764385627698371478469091150479318410
1570177772887885788878997489433939847569996483447580213500121246954181284871150440523085190015847016159847073952040862257368520404341662337565316601525094380553353641762130687435709551941706781693509961030591821335301506090627682127681109473378416622843373529909771303816103704036307812582104756387318929501956627468022046614683275112460818660117061691643339220990935596657434438211365036347629115248643747344723459863276401561133146445606942285467592806940742609316557784708457973401372942727330067760883421618993536916749024800555863150548571210679781904233764608564701519962087868254824196149428831154376559762302806527705790800699275088459968954903199343619722373963872071868542844738833004739518777334731955168516168162802345775294633810362697740664406743210182660304872589108647958355565970155375169901523731281511500290367330034150097579726311811719242821627355437818153520581024445349901563778039211929096137884161336917231946459401058525370240929517910996040025821681531253322512866998700818
8436638582140932549152509360567218338999350818489800057370635025060885048065361631775210419109626339026132067858912876754179099608130291425418228542878105973884552693012910213554510428045568880671130925889825518902799350164239752074381318099389036773850545480073003082271813110191676128060606761544288915795669059342663771249884395883696623598824690734174073039811857792669188687406382171946288986236791113014137044115721302477108729495918743498838922879593812127201892864065573382206131843533920223160914508311630150828893169422155117843291517624244701313030021101978339966980839231454882889951184809247717075297652194735661925103258624475829632472939664131851812336855054391732296777944043769717338136196299577059469268045259856069783544306430195531720179782004673899907716585879571495546790143081383673503746750365008666016268227067835950752916452101014441649081516746723843981523016867698403894273186190723335514476318525939802240034570824882214115402587448040789443468877798766532020723320568131
9417824693984353876672950534652648102039036395155415411284204128127112827112758590691918784190659805133830501181193030055587654547733173309676805634604440580329709989247692567544091108298262984085890090759805621285519513982195639245390001933985868646417248714194717291745790731183367582449163584523976036093295711326057719789537406347579375217709123948363088956770409266456680505700706800112914067075747634612788032266249958187844150692055933042358477234813276010974677793957510960757105788479419811853491331589982641405307409306260077826742437407141399073728342857834368840393364459269259073861437163795154900657161124162538138430058123452930821682892088311695249514154959616770648527991861623738230840153474625770179297852946729218289400171267622784649328976627234714577062968413905228135447490310252497810229474161000702853779390506147571050399875757454211539846034546232226167889803319195572983230912384913969965713477383969851273270573157761674854598839271874838059436425704473333207563234429479
2655159458931567521295816239001116269499614573744848977763677001499716934095131276793514483476002286367873212472783353946757700807278254633814298185282658534832507756077914034328545450612079070454119117022841556987405621988591081682005454452205974275352792757506822335006165552804808618642346192851605774351353158888292677430347045337107908977087098402597877979736845741471498567704426801067596338206650898423647996630901771855676461406123393244195151157462546435592258486504843010183840952533263261987981431579770114404919168407542404957983817507799391510057050414949879440889642121376668225410253543298792089094637309600389902372059989401822051067156337209801021265812803548830153273029532809799144010916261895789046648922809460885325610270381668150934648191153227748548198364740098199211356583618543599841677335462490786323958891816213639771145249394892601334442552325211088080322758718313160404771706132265319867810529239899607384933650061387488744174743565089859369504702194074466633956243470007
7977720782195806887075146823616498657300585674793305395403659427572424324438059186306324205460889371307725050536463289178911886861462894441901222574476751142496222029314043876339533040094456074876176507458993564804752048231178829514608549467054317272020016683429587635272924963607812205919826623343451804135570006388549855977622781280941620260884981233024399686889280237966906240615219616733651648503270191287871070820164762904417690529356994607905950225417732952418300096252671330243716065551922249630599537243258374779876016759588783567795777422590367195711488854818133003074050939343237320130197952066689067818382166120364461080366283978614952818884790409769547915956931833898651742241660443904891538944658223710680618950374745625188134335530129347115138048254109352705301414221172752264948877424184987868110745558553776569074679876130849752725300136634842679892465850941658903224938348440809183273922041900580574285130221170896291770929935824712138525709557460255703346749601613191346647161221511
3890879117679644591077095234783009876046517822418569716641859314013236315458988266031617494596708538099533497537977726512999722031447917115095674148023448553046889550638568820493701553507810686241935228013370937537365973940449326345199537081751395021391572703666771699638439213102930427055375682952316521614470253245460440991474438682342912949032435759192740792360511566320000488696919180539802570549976203888140405870243839577345029197406634507774326489376317541932091562442944662742864155847438537072683960858468540075722373199270088795518254053908797299296937787845509596301238663228794140150611030751616778415002000326720010833676141696163545120916193842332915956842676908733004135831825515415466657618387531228340117982111404176478954846601304533687022188158244339229818910456470693484930719409924381205470792885699608263038971605185733569419326015454355563605633299275366074194957503469594494640018866617919143285425256548050514870991367372618150994423599166964871894027272813428728207469153145
9788218340224461263264741417479272558807659471282742061150592499539019162134229392200483112984098443991454650911756710916104606875394514774122857598584857491837287978155649506822252456827197084661818316876193823935635839617076900801247836789794290318941705798826196788939966454484894370679002604911581318021623937408759765533336580208143100247760560427591417177660743429686563869505193093482690458388224552230778698918927108288881192754314019377275102977203282604499978751360189707369645524145477207479049177636604893329933446957853773543975789530081091682077518723833516919244266859055846411802625933068802123001783923042464831626721904417268780463494853521959337026516777720060349843868384569427240252794295916650510693122702017017303606507011985879526697029487629860243847826393942398365045367610953759608860655622228244948424065999951970955314128836079248644399490033925991126361539290225857189275774270683152957434179713031184649131559239823925860078757298352239735678856793634733061164427425908
9720739304940217654287680629620023439884593913637395457504965524149768933899822880122581960331148448033368042823674602666355376364157533015190671563707195245111713148625673422402091339106846519494036496259515757667085101743808011620286855872551453466297483029993621152780772011961047899983665777681499920563245428451381007409258974561849553171802010854245723958652232039094095255432517165701466408455179997653192443983061004648541873706895619293651341375661024230532695072691251660161114346327710280184308352331540442044829944701290966757992474811692945057939725275951118320270443586881387636459863363048202092045636464453638337195394594780428833810522101219213991308161955571997012654145590480189058142496222449109046087383953803319391990897408478912728420504479583863957331747065492338153799353521353578512329602225594544748671345211337357889438722609460408973861482038345577895582667063345873420931512377187488289870056891943567900925881952085152697355157681294155953831962903328044281979737775009
0872745260044103069644714699381276912942637080078355248184524499772135430306156101037013794871844914185548258498667275657931781149424289384182344557384074646777352060256101917201832719504572350260260434804542369473959738393395415904443253367755604309223297115648924554858350646008991796752183087644285426041593946182982612574038870524352745848439078673762651765764559364101425649886652850313656996356552110554896763432464477516675167268401125336386617156638795893807734633778179515631412731849639602488548336684648188154777681643328110245824492437113207316590815001853784007222795456264737655600647625480401003736125036235039249815540821813282754230144082886459896056214417209529908842139305037359866291221606002338388027638521824216594308396355651124868296966119330394121101320935435681472199130085551593963191357108879103971002169769773285282273082160542473282639487236291848298765094667130505494128345358599132943690080721870804001998579481981345092814978723974406322322036658357235313620772678620
0995362049789193495120283750884499283389222764670173447756094070817847925118578385265389918666065969262539192617944614804164680487729744363591729021101800759613840658612052634054619246836335207420134764014457461218530198149306310500593872005755710349092157181572070373317282115149418275940476033912288599083246865954123313959791924645939452091588326850197149286612281483266593899803136681172570567288190555753746620242614248516869177166279722612518534908210146981696370886985358850948692418456249676668326743373538629008565520878994083217733105118645294868453926876618057232791191003058661477286326933202318004367244443396688701421400253572080593925090025490453527048592241621906440704341685202925863787615589950200376916141906248762193668892689688354353360588592570780912594221749662674756880528713951794108839402812676364225166020964270911523840611066436463013668085638326624243726828029151580471191298486740167339793704869508159119420321285685102453841627510056242842161576107263633390583008369318
5000649528608946772514006479902836829903258419368214877158905269565425775314538950976429771216035754981647520388100327425301898817096209322894715827310850909682897465090075121791977476782394902424810508591532195121260610995465264560507645974168340378755894097414154272792252241321066102105593592362817423932935908357950010752828427595575107173855755157067034411270710575656387053676579581851845515686102712223557307994600194021172157486595448765784452093828284771454977843484400312564660283301642780123835256017231800517046257407902917156136489383848096688487695889726422957702371724796675993985755247185379238044564742518518712329167087854170495525520131286722668896824037195540700012568570328446963781716539172329913051280602549569803295333721955521089298225919001846743264470324978235923373381813603965279205420970753812723785515760683920797220329939977749305097847084064188237521353755761673041943359289463903349076546904783725917486185257088350954729911941530790047918715158153955548905074181857
9409330441127611216747538508037673792991426302212889082162782898361035953887582936254029738917578700210471085970183337060039994639505930434788964378267581490068452694352763578685707443214049209417583449837546826068934418467970082174257064356995828895191708840888244506837553884652721545767016531456936218288289248123557395018077870797911014086974603479753073117413472166608517980470904825268494067236267260836763374207805533910750333145403964204787533293168103312300706686774415486433469411030253406480652203254486734212751599418035126577971052248131180441795208228740053696401684900009811373415022799194741552574652128046225824559293881636184619320445128165155577968332789974704361899179964779718937399230139515562489044110967675485565583365498716237888254652425629380483062033765718086434742439465484527318944893596455879853317529072264931867978990039492335098807774839656973530814075807318013035675473963297298407320915625918563794907172715451170064185859093930200992113323831708774813418740668666
6426512827633558029704762185293273036923202601394915893918437426548481712010035063837849304238926093775310152046246555882180566981432837307494290983374591604508014846407341343583732181858438642582785317065220327656245293034143797572574167970237769766888362872663189669560943743691476489235277711506023640959068036509968142691532563467476501848420046108086338113127261712618009503983239994683409942967556165258281045224524325099133944342236398422200701285952735385793269439188893104349187467014117621730572955564798988648051781293740732994928058048306166046103448465750617581923104796972930217637362053674536049743224324103056295034596343187721341505360904816659423831326304664307986054826109071090311003251704690157771158506075596440323323208659311253363461135829999778607500684746871972893196158454120779086013781436647131310603596931430684010868878924782937330427939044797926988615869145394024321802875352206616251187753182044150313126268168024084629398275180236190086832592918592572652013203798966
5917084479272973772071006660697251755294220295953670837221987749066929630710077198948769705557796819260614559261146126593957223365646510724228626194177022535925107300346708825347319119552634596873016788700483280789586223735382602194927579929305243398646761142953257603736619370925364933474657292398414496956912716309074683532783687251114578167772878071745062416699571541716124523433690087055447115931667021006303161254411640318369776823994067548044186717882038398464013768231065103603041168942757269403121877672184353344824271763161858509219598587615441220134846781187467842721024262013268855946729340346214813503136587710004561494461392137866673027577193913275013644766066763736020548354253884573421392998954616710521383091218891692206646187224601442298812091178834466172937525353406907701129795277771046447062298043666698635380979381472017966400998491553674409384984235350310544684607473923448720431300325205919943083746762343357761921263336961818684306122879746205865590093851023632841543842628625
5353437027820875048370732523731667920419839731363211743381911275426012327114971432114722716632123210683673869681177983115755970261967363536309879152472811567975134571189571197281686871588423370932594582744141995561947445703432445256903499042673283712446889845584964158696061116721492069962130033540327984345284509968236464141417107211821452662156451318495539991615188088693935636901418461699872916164427616119120776667565171478162159911158582195827130730613968509439190238210024569716384312328313205270311573176912217152322819276980714861705762156433870382725648149844675104928893168068852705608792992520393153851784677146242060723067289922774547858188065802867092567158823573242412845139056888128338548136660770284158215372269293036459896714632251259059112671074334028244266794331502764299035325491768620498880981948762911707666043238148462599250475331243335006980798659555275427830861093442873967917054031016675936171804171396557596908709843158469110852650691460599801052195262370830935453885425318
9329532561374965462216077555809977887039172827734955817136091853131543798194120110328168487188015503918221443116975361628255616384565436509812785025608421061575926196703333323950610993407247710796953816566765347945274890147896248180454486529586531899780644860728194212533555440441353426147020328365420720025424746017803248110429359585199419423332625002302893032092167945889882195105301014511578663713295638591792702770417787356926181024730771611911251877280427264175305775040271363959401017951927692479589276695180502764694705421984319399413069780858036316143828327753939253875189470667434594960657160748756630152698663780387879807225162154143812183833926467557815222534163964307520683470097070869211260392084766267570416548859554297790622440313264928166010957096445159614643131731458631311530930248217836497624048022266262600752433530004698153369298959075193193539342439251484264075643461087119330698572066463830405042022060674831886046982170590267966035864920449834689765665596993140869762840421369
8893272554935617902698804655718097874122464025880473674414805838813123060303997812519461482574722432884001915501716906616977051438633572766381088260967924271753570149505376521228768446645027546229062432297955901590565357352069372742578775959427264595377674763048000701903162642790745375212725270952754282814055429649362109236766052688287635031892551961071427384327736346455698082553005855337994256660577411288721706232085926538915922822573368352880511308951058519149408508272655547934382762889133709735977710805414103071947900713043808555677223425092595078682348815199859327170254751061913322680906148047682426301827194004799485261095070593575180710530088488894415392135687189141542974171808054548508029068729254569404414505366857502600907301325889142684041856013125130633169032450417544124611716196751271901394930129781444620476591613397933623513999820691313099521521303483680754932953306746792895116123386910966685093576430050951624556784245582763997750015985824630420734435873956362470400375139105
2700543860078645506331940926760195731083118240415541060267245590514563486490666390716722769906844221663664138232553411960407882727314583360531514747933502284581785752445776850282106044107235434748508228596074980394337660904634995824029064964488260264458490669687204080516279306992167508409251232940004532282212866291590540252443111895373580965917745976178498147096205777442349035407327529628237103603635093538601167875425154690036231732465763265735807861064041244025852624724811990090026397719483556064769698061294698611233156566567600140681713082794292654042783167667211515838635101096969304321523957985105717664472343544757357603807742631529742596547836092788261255088214286811606589693004708695424375900999207194640503404140064227810907745520894288040124115741167610773935333452274930079659788912566376602685535392357396450381798895781473886236981431691442753087307220670700991195217613308100291136024197824634441846789673350784801463861055563186517270288986880016650713517085461595791413718521378
9716198091803746536024622177735012143380817983004341365533129523007930752019964700877860980828310146813837093920227885134806074527179061315358670894715196155916437372563120217366230045918689757476304724314023241152670708473233983591842301480616539485421061314566042621558585241063184369192057428799428848547623624320797557775575833951073624562341473468419624504985957330937010101057182802059628059484214320506069702685852387764604257853438554626765682369481984305769230761065656550259896872646895571455126394075990794311812138606986082359223411105733110526894990829277174922161235668319512792936072184819900588140154806145961405202372441103490497158957419181476498735583289920908827685497646894086462873207451490238886233879019865385921672398553970034870886413105109127376499153320878047033226804774419321500452077321024196220884807790591466720045727085870576550632747604169965943907255826686007182220584935464968245789250796979985288917673954652824906678002799415871671071736101628480199678164615202
8790152009626594639951680425765442026237469347119509989401063721283522427578873159389547471635406043502380610802183392278696677745886273444590382933717338748600086949527927678174431095558655173713556548687789064561815618388907780906945137050897391124749008874480326740304835309323397384485065340239988660725327540939686281933498416293499110293312896942380675221867749511228925090261672773031262748009103696402843956944770111836866723083709305884508303481456963649921744168105984780538484857963671626173416212330144163852979553135551384505722171903679751816401236745660263316814041677231077206073235368567073988258208261169523802823515540092369647073443161660728503105907990286349098414488838238609592237615445174108000198803931119167571383678062563072101941436613139102136197649976245377252397904107181747052000864377450059796905268395985197228131937365222805035134848244084315910259302819899971965724304030129862331513348878605673270099497325990008666805397475936869215880125069541162944654279104791
5982827135931137410218487539723242356055096376516992056651800785201018883103212789931129529238015633327836285279807467883825381779110876120175071942159523103813161712365874972511502015619494109764650926623872008271830761080586406956001943277662252290434370422140781608393299403195437462327809751030423675998030242846886642710989451691597740686334534439164934439665706535470392366263371407558329225570392275878628414515863180824523511002081641463353028058911068129299413420537800090146892482075045743241880749772765193458599765684424217683349847248646151113438439803787177127812359483716614654588617135444124759767792948722627911279604505758095574030261608947974626619294638630670453754969654437327307200377876522310590010452340176253233379910416506597606299074788675355330817931199129797740138729133185162333235054278950148166776282237065292675993174619239581790132798064482764319938399499633241959322054905829148153901196773463704603417980841812279431518370764950117039158680838915536871504389357892
7051971480964791470846992262424646111232542360126664887469046122169231128913543627090289864302464904831720379041060818096032205097474155538082464502139496070614671270536458679358523274237425752605219625589474767213310488622020201976744733424014947627643737500855970361776286886880774934844649761619571082260931344322747540067098757050384191378311938558438645652334625744434467211530458047592089879386384389978138072877935918878101744032298696109773169128947946037192891984902517720363094682236362599784293314957904395556956360629700940832502572997658689057836242905997412456848396022834196847148768846357528874779241110752228258368218774403061484417200258403870633716994260905726151316736553735728358734021128382735708294844529735787241999674450231550462417725888621929471388741368823218038037434132021132449332416151340988173507716364842685029345708118937706122128695148139576113151698978381608951313009829537304451631863667391125232653648795036240562280881573069436457281411662087935183110000041240
3037447799268179517342053196073414711327300297548448581678583066815354564469633348126503202323681755891067414707581158840877347731687913796231192053069294588743050229339692561120013809207444120969693071523200768644560313199005735814922611771598755118002754759765984296929356281711980965573619891345702690621863962624748473833932090840376880436689328293767298194948719895859503140462529942269046607013713647299687399937393205244752563391533798543184467092821691746592329768337096539007106951686584953470091888546136333943514004518021316611880019861149023471646283294123965031592384252352839514672554938799278593248962626457064913704056340771346382191165333394048940208064895892125903555706468286816048316080969086877472728193421670546381061337038434114056227877039869424349443894249028969635521792015322806612240600858591177911408226674668349506454574335512974291908582076543568468726690266657283351469598350841179418412982909999209578666805713191115864887598405346280725293628139074697543689895481544
4266747258133712950012488166763328508161238287445906926245082030770536316384784361350655382957115119079055863662769199375001835004918154368336374225901046090972784498561276376387843971878824250496329123839530508680368237829889782702722402842113184594386020776855279173143246342443245734345750534769709624841661681370072468682394689890807588983451113588009733885185748182147752842469551060604630980554594516356865293877248154055593351988984076334129731168874176268372229091721240952258145930779958602897621500725904625950381572370010365319434306579676635602782727451619906493420491210465138052601561716342000610838491568585804851538543891174025212293766181816551942442013580716874142295192916122035948966947696834226058917768858286704825511307808927455920071609636373033713806143441232310791180736959070910984069769907639517818376217177837693156512437653479951634076036232142600203170932657716128220586804150415277684110663715816415019985977839541351388369655398322916037080447872086784419675551895079
6795613183489913512881759220539364799550188596413565014896370743627590393349189575668559548293247753161446724678312447300073864422560873841254513214927471848374904223044921014793446243110372414944032318262913541410214533313260982065453055356765305547306148396488294001153005864236026287749281514046033105961806431099275350282467131696861483723993724042911266954704214135234691911506919529398409204226543612485531846313103675830362130142228436568862920436901057065351787058416245286875057099858886221006013793955044038145866490785466785273860969361258520057437884606711766947041823410323421578071484665751199840822730011091055001781246152042881794320254878973567018381028565122078616174072201445481370851916895408451293898643274735768655471393990682990121220519014089575998770518706746869872034781806066371366886779027544643820979608089458334979217680682150927796837463100165171289611050747323377960911456006072346200995953598144121020578119620198167273392955978058775109870277975740383088391938827157
9766583076785296658262240436807071255642308617788595387850694697659885322948207518977595567940763173610152641065715571380165022384140302496925217383142546738959023111555754538141865416721315344265422267376023115021400681118616400894186374270394861788038984308271364244683771727772968675441764380433256322955650183825031155479065233704863465066479324835226019885965162794317191248939977865923956295712754258294454000544644095964699222429990518467222310724158671126934221807822728850270328235000148943085908345768047463651215655333456803344897821463817206582196237430121569070411980472872469921249422635120757043635381358720779528471025207901217937257318680086544384378300238915231880379067096677369546289910523671419095831970360813646641639429001870204009535267609061887492785828746127307815203901767369100748214815522431609532538601224815954672412190596638722878687583550537764599719831172634799975464585727463378823289332617928277425834548713852030699127089297211491604074865967755298333396971021688
4748660671541184202846818173698721153330988181261840691771549905236666631119169865550938611213763617848364196793718494482631288839098211847697851375586467971407014305232308101480778639856519527237339581582568369434874313005363038817748762504475192087075430595507514613372767484394343478941750065979373743456515954965470704155764223367369354292652107306295937137433309870326573046347413351636622892753303116255014202099172284789884419687788626233713166865512394985015070430869046816021811265677732877118353912293331646488612778502640367537918338702765200784592489211728034283048629491175047097590722488488637398040169838307054357074506774282131482100186476667321329211946137262982090522277161228324646060527610197815588610269361875770279436767036220788590166933015267100298532794006832555867631932393420515834926379274371538623642046639356506048651748304395741648439525576843580986428809843662501083123862872233679066033898354062674389652055137857207384366402312050031491169240045706397310039322681224
0519922138143554699638816317286898453461999550615789310339280937892193225975498415848593516564604849245362589107094006239487610973466813616341476691945771564754660464870684206158016988257394736969020532166085500603874970446967915293376827774718962922391012052066596595866185588811997239155076205829372376260757713815172405281816833929255350316482134985968082209354880439361697277950159443228469935341944489199653871600904769860104495223466674547068374463608873608073477636349236123312328897520875201345015150827947079639237630741184391094183077203629315548362761782770073823421780967141924945151149151342630848639570077122828857208574296692485428942093691440289452131514080400706998224793612209033180655366951761405251836183169337971560819537325444418007891684820270406012914089732272445802450146045609171316515834682476896629047168208657476144999596401647735516449540114474407644293803453974040755580627958382507546730108827728520023193371138649250766908649554472228540984199871005789622590109874601
3476797186443866016955146389280793452393430896512491650786177841023456915270745695634299753087064245546556848303878743227283750732337725302080209219607344733601076520137194131522121323121420654587177242313969246417527450697252928649256722482076823874394750674179910213236950307567476815966970011919724868543602121410494063576545324967802179259103396646822023747035739151709262743336388246382039437981986582534764001333795676998108106791829113623265671564280724943751411590513198886708105620151012703190747061628257020279433528082822351069187687854572638894870535302563614230632444265427266983343669341022635329403598141807057975710829611359485622201972535606695359555704123367758012686774546069275852794317992798834389945736458306311501203627154233592551447527620826175266860416900420994028517542979470562586978056986403419797004870931334501106837178841258953090497293505366106846876743222998315648597159736947392282486743869086266840382093756229849177287808438101740930052659264936297216635964085942
8347201766592211413478378560925971263902377668545094447637584821640078796720198928335572668310481710902910546774350652075349808935370549852900879519502661685817638186018611372506099686519137364824138861307053049778602290850816255744761978167044795993615069473502245343622569914602066475538648252698916995225470233120850833666997264598137380473476879329759117996019933668976669301661675363779670814756323697553614858065879823056240616756503103267063516110761170680489837049276056057887010654352617869683335357450035999431353273718600113983090640889331862173534382233821756633883234794953209242280641978889673467255965180191931301473653469760087774180423739906923231007501641430330138596439539099117794105677668653882663966456677055843535729028732291815352482932517637558272161520704408718772487987269613825267231082822184941940032612358876830621273471589273109046228883365269796772036222700576731733339962612047740048538357403605864585420012696521433525096430757294969028474029662142373308161505336316
6553150005543659142266678770700591082046488544062156510604441984628618869141544572019364251559783268482492294192984583495936337164174291753582496857775163650223096739256635487170688666824169619505741291621961705391155201477272809355329039939695725904762205337458924463801188232233998612971538866747499268106937093071085425850424516803848467527608406634645579288226774722983503656031694530876628634300313276686802369660169280474311704334019238425687428159439952953415247058355685856376255985615912069516717233786004724657948638246922373498092572226382196954120115558387134991739222020844219339379846744674728247718306850651029993966094329822120596608158927994634520932490743513192654234530805527324292775401826147943802366052219714244297812236386266556424018809663384340229520622581298641647608335195293032937043713995089094038139170922896222782771982136266294327977548267149766180048925749773877240211651596728427238545272335488093225718324257405927786170033784997199269376685095026680866536251463025
1529327175116391804280955289365391804212892771402020760354814794270392972482117802893120603807371732574562249858183937880057418791568991890576879843993781057741204863550118636439915549533719245388142138508410131247669037565205788469134433842721571264721607001303034746591779002395750907930726212620478872903394468212576017828653640928353670488315273617996602667406899068060106502319530400544306314511632788298720350303259539438533815113917014155097528448404568570610227331056337739749776543925304826432358279422666629967614868881129364445012270438256475640760945861228222833113036946943134338941646226406586954070596381774064182831860826414822935543987571341119003431707088372492181867932628258476413469975281508254307624324883515628913294958071920633718968964033809619096837029790398817105510400534396645554548331048611350907327244980667378750579442438960673659956987756478164566228475810939863141644966487778297770064397058868118825644911965320406765427264294785381550828494599556415329549120727718
1950119494461759745933900718032855561063864807398945362869284759036003350603455860134705543034867971824222690640275989952375716007883617607237459165808946417016455533118683694609829221854780283466699843089673524068382262656365456304227837087769996134889255637963031810842183421688883813911085963562136657547761753987877271522344083610257238818225246793514492321888196583267925992728286508102249804831056861344024750782883108690604909329107340530999692726359949862528160854247432222586330988501593695608132249101252369983998231841613005297838688973537093579124858381567208396119753846948140973573152911040552369700960751752577631164299717022188854921382709193819613331450987282594049741991854067954770320442106884993905567244574759211140032740505821793793415788505089566133922267612454815823521583641812717772285375843912299698640431983712777611214607285789108164393461948512213374222079502430065937901746092303200491831964609359905889025297728247987253493717117126347738781307633637472967302693767776
0249585226640633664216023914379552897542101997375316540184724748092797986397594365119638744168028233450210731405070197193922531058846973249512907410289024676163128034998163438452142636416931695912264767823847093243512013837578872839998166834864676069305115333340063877250575990533006086163242602228739276783943087740922998847322774575899955357945772993589450246123135812048071296478382141847284076498231053666064936490249436408582894225268306723752137237812732942391614361308877403226957485455136228634926125369562948478369139326468835466525944261398111939236017380073741449526406567512008410890518899983561643194173323659383957867202546096634936476637383581494130908730710116787568300035434365264551170368259412670534505149458552264990152051455357211294904758927314001722556852690142552682505203973609380633643949077245526078543526733779547012503462203259054054919028211021667740163553627449901379815825004305541917833894471355034611546237191826970958282771780180702793045562588089593559993461893459
7267295008951401729760984443832078010883738973528697860557591277719683065355144041993912676747089155555376370636352976090384780940301206370898643005569198859461237071433521347418392521315816721140562616073102794059843388123389845611669182495244907607985645891427076915100067191587592429451372944545139000533409725781542751913741701056025047187311242997396192906634173144487964980734975128334956478506957723541847089600069212881168689939875452502520454884209223286913568472747310608649550376214412231798092925371800333899884460609714762035967967937187897268389146809540460705544358525901770045806549512542129222575488532168282095372504409162239279999584617893046903360551295063097286787230292282827846478644783636918007557631102835819048256107022690289702687890456172614004937799260865419925174480502707272128258331414768869540042658564225158653423446692803071621939910662133337426511385902285371041822011555394583879157681126062076498012628862357108498251943659802728147277735789554954905246465166970
6173379466842929703774224839222046376713275069882463259828865026669634136023610542053965916260888413245739046078113720351613480602250970446074625193343409008969875902647356142783739700473744778730797531038815993282814057811948434230917269251469377202615748452476099978600298115497110454528607489056324295722711854622457146077912667138853783622946054108047872826565401537590190771304277867375613896848602162091519878843674922775012395381565979989962943857678694039291258239264400850793018789800223740783681965061987165481581735573019311543101703944773056485353626710947656343704568890236083285784977988302878577150650896402772809093568252410388057415361673775181770563599095998234757038637322980950103934641446851047923556139438930209099547142214502557406118325083335803126951447804355960912347151979850472524593265232569886127572932479679656081885736591386930093510672118301613623467593960651261478582990579806821841830521992815051438886081904973490139357956851301439799906166977329978976686913496207
2401325623222220690608581070288687836349514437589875466248818822718131516214057518466319238296822571860105745446050579652885500824548340783099142120898086809099822484574184887709623089406383389491656181287652405623522581422338507271582196427653703097997583273664842024379048020485825965920726487376037997555841926893401792450633876190464466120305179673673976133949998102759020999153634020995696470543232324455980448928003992175800416791003655159679688105901303707690091856042958678026678699955783357882506101296129184968443112668598304759171630220787773424229304590526624882302049456206325609626762674845873227667972058414606673506350922740674541570635916578270272272836927894819113488631844256691586808589882212622356230103712349906306154549630686954677224476464833004499847307442509847728456424531575046541821123655795687120055892645257116388713391080798278308448212527029435972018926658187927824898765630986243077561954811445324320100028712757165231136408367326643012007734394468028021037514775764
0990717622033816065647973784376080323381557345852323208779657509759285996792210277490192842569136629553068500524247181404558660311878411988994712492885235985553945820882161670889091369320174285860858512297019170219517789354699930941747530324573830524431232430463188026481551591077929511634024952263619829929132992665607943361476088565301183680140888637497860763557804345530921721231110103848439333103436229872619937513383973412313787188406893293434217540301686253508010240908500815389856739883258535975757697252113161058408854172886871282356409768176274297989523879008426524224312227387155711536975180015572155486558273262430537086832128101776139714581260103753373340330662877258058359210122382474426997703600198168396519946628968780723803412353851716426851706699604991094310483122281204254134607826648666705724298324055219382700649239835307892247422074726592853103014803883594281839513361278100620558031281651409443990379559976208303735792402941041619703576669820833726011953641690588572341788657356
1998754362185150146853769577947746387060350241841245133840350884928867484816028122385987570891577917197789840509463132011971400019787199360251939454511666694105852057403106650976819635334723352983749304437658220212662038724870795026040960670101699040187105317328984069910216384701332831990726260016257402664966849191077336634737040466945205477145270669631475279762540624701661698883774480657765664801699753593614106360166873820023251063684552973203593913412180227579048794478763097150190032687602812116005905534161889078007062838223158841559132040549939584162674680882063133906896112659949955679799630517266964592654834213863103822935491977749217629260469541978575572122244735268544404084654104435453473592084764945508727251312948162187163364087822189078955997290068343721262205260726743707223968018478081919744626048504065874739441062282069964093140418756604659662350521631551130161934669666714326829179323690494356896187486005838263889178124158331445178528398810923222257074921877082804688749030275
7877793308429111618855606426332138593141441380090547073194822090829717966528367122340956494368099541200380083942962406262132400343025320958067998344588277449311423094487036905507669089668020024251755649597115886662613775299315419272423360886024549550357611347378636951203043277085418894248891346323886503287952029557685621459807546250634615978745649633596369055546561099846573260906902310224773936890611649334935751319754998460117176430736076375705102572444461398738897752995038452570176353026454967657356664970707170521803687199740734093757905625700250502727243375978021450005493484465266226587145098180309498570231142274302602594169080300268126833009410804128702594029529192654218737788735992392787853397905346792761082149753846596385493685955753322476464796408608752710686249837426640654189664615784367586291984749039527210102889953870213815033783033495797258024535504624812885259311378443334372069882602360534142344624173531508635621550047974717993785911332442248203027274766278324027165757895459
6840260002487786041855366468855188984991782783324569250818502617541659688061266971633843653897324999651304145846442507928833271455458305459546356993954887797503296790164325184681115476809343092607100114488317146794385048345543943777840809862440221944551501365702839730451237773745524112177071939932040501499606053656463114010651788335854530120634381261352965961435488282127444129454195894746639916917605126513535882596711472107784105039041110793618730830317733656718081185939604347556268184685283372742928548399743279709543009613935641643904716994296554717442759581584344577727042239965599553995759719339687639251101228116244671098685964574657570580861484623362123616235282362455064680888296299423396559541836951886876216378451921869137529205153013512202249156644691272407198347259931252748767669688544002339927171120836953208199748461790079779533052149962197200244262144035699634642219199628384135125789201304196871084374309110705819885014253181895922535577688698264215625315015534556633342493355279
8629160292732028940399586134264703726660921265229991445373233807449074329712142468179131836119820148306280427385781177110343578118241969191611516580359184220762909097180411912515727404705384668721291084963374053094745212364087457329009796117278104264457714791432630646751880279963902361434915489344624052857840993573298796562381928781722495388070507719196916154575811090259001401141577608247930655293770162324668204781875174093694971759473103898249632780445362790549908803244631453148297691006147004329130087060154471391615885025102859991908993592071174233527003121052641401655761720055057196994373903128527492653814285218998687214399632477742071836577979770996997990378696550468407413124400086152306653007081808693713642064336980493961970566568132456178784068127718490541258552624883974291423068613143322383471547065223902449458745912796941121160529902113651759261166445128157279799430381378514129597225288627407907859978079820338999917822535364407961062956260177607942815358231454509036223213725194
2993305391840656025606551846364336672689201719520042157546149894634208749731788128020455873799312866547904954267967916055247935957300282434013389919066412927942637183091958846616710261866374829904346761721819828938470641950571820424046030712128306029333627808099562809764565847872908779488292411524601188993986179128603437812429161405107524764388117089130899536107697331028220111749499101951129497618779926301614126564409224192083547510008066202402637461954088197585068269744096227049250904534326339748972403634895595717860747325876063981343108559197135260555694753200558599312938548612505760090476023900596835297963483097222001378845818381401452371304924180950388058421350162489588160700786356962267744600033415957075382461682858135777690407205465654669165755148161350327945683237706598837129509470810502179338832877011845917605010091022756263471149985182175957812340328737441687878181391158974867805289281908930839466654817565433653854585119862388934254652737003208914180465166709395558711261190427
6157161342838400062091053728340975366192936955177040405824852046872933707812941621056990090258822008789704740869944494592865032856697987708633381527677648477708286343404104883247503861482164126603694119525223397928566076892728292034031347368522275610765592580859547927314218414801191763353992394018276232562828718800192014077285371089028395406323183061711529887039985391690726234516078503556153229467972543426921957900483289373320805656519384623118287447058160042217983125833346985195072254486351378269839627090876932388063335697528969665711020459005717874386827889729792652429619640192355188527418017881664869751099229689915132938639584667342986726094649591137157796101843496720471218744304220480784372092415646095043770673803654042794995734182003223348486911806365454199790332469562510071671890677407606697251045220173645241095345208435024826811482391708891460029434478716620020753826699665645400122763009067853058268041146352146311139773357152883033375781046289649386411875911451897156985452483340
8474538417660379936502179303912928219280570443811685032158958135639300116197888221228015586781470295090754155798911605918894238639304376944034221300090494032642340773380426376067612954147059539159457889425818012424299336423026012833924371680478460160354850794269827037886838208657561304766359736604894206991536925674355681910645253801294883227083413234803512995610501294277135060662107059275876572427301555450322851080836602505875438172612746900009195168462345046669580861647210089978243112728194882891114906422607579531392224672904491910773675491402871576355902862857515843061951093576909477998682073077378504316045616917631645245740738716745691428041358970815734353161347977161257303823629816172126021365635481505000843521399902772763843825422992983070996617523330734617488873016895915652582272411821550534746478526503048520756961213236825509794235720489606571556288387279367149337162628576716285465805854590844856866280462579209526150093325485049693759856666237726863940319268998615004742367436916
4032019166164043758670986673210826318640801713088278520416309724149599735962226191102105281673376218126151543568258562797308140056054906292861345686770568936236691749997834395670472760271782453326610252695958449478165346647346789613657829527264371038525210091313055269702957628330488471103214089631924835521653464318110364140012171479993375973740647052319529812446447827986702221117214277945894271376016883563795694433147631675640088788904926447472689370055419805453832358701764024822519261268474954344783601384679743437478218081885036398461972013450602366562949518826902659319522084829133425447179478412768276012589889386750414636306479730234838275401101085046686271518477652962186669376091481607687567730459611228057960800984381854046886124863531181439792417078456813340057778941027859017798448992538510229319870569252227436724861847853434429659472513111988872927052141044403165115727870336522175603838419658235509281950276127240342732722670681072870672450352826814098373322230358767623213813262677
8801596789484721907543459235904402908885654590399404039365593033170452385564408675044628986440403341479303062979749989680507828166440455644085481472879426029621458194382455038277526048609049546590636025700237551825633875667374428867170622016629773067642909808911444657157369394827947375243510810369480879863557526139179198606570816530443054910766177709523121641669708679202380764239998270538173015173392195968899831282525880954011448752048938632196773507204463180900696775247203863143326627437694822765691250010827891989515268832028143588940315789099749226192089079688275080465476037820764647736070466947664937591177505749179522385615154124049978417020817763811631220078251748361257259809694258869202960699598770783197901092900181741335490439259951089423867207998070498288837316164538925255236293653646288629749030012426709224927096314678407282606605880592766551146459086495815477604745777932565002704492078948479837035461023142326416348254754102647575168219917232890984446453770332770708768343214975
9422975454618008262064398248657822044297245347070413316508914647412588171419427688845371499458482680083331075069064367612093384789424611004491001561530829703173442126528986157861902695038294839023055290257356265815632601929663741892426793717674342157156566613194213543811378523695023837647098620232476854958975909550052181221953116032060220472162240708169133449725966535575692638231101586152490512469520475946617748342255019271488068836351197706145798153805466558211421348886716314486366027295053824779886296058616769185828631988122112471688359131884632904788551279793143540693889224815569685812071701806859896160026544250588041135196834089066610819307360235657547486725854507484307445170264903429454069542307871176689623585761807282683448086807362550467968503536136587793703879485068804563934018691535939776682546123965231737719720818746279499139515518161273133244679622331878536733069608115443354691518527260909812133920916394578472901011190403412149843081321373094718551974457533056065618325511949
5177598721229182662844627187314632560050651320647856899395569616211489725195817265335579305205684855123570657297815356416668160937905565503845077422849324009700663409893800683848002763168909183458312655341193042730172844747048571050082043256615977291334483924061884972233803176167783577610668346222528919616808484025672407652640143939819148568391535052874830002750007484692784023462287409195941821056546229219280877036018106121620947731441969553067639473149500922921674295772260973516706743157560592267272269647167475532014591284988549695935002345007872318356551297207609691068953153502141742752665140870237602376869411148410176212410967688879818335996926681349955433234040801959193624213673996285514120954289862115710450326595040194531302466448642213971949345579710879929847771362692075946748142985152414206497161367981956120370380173060234576771313928533476783621540532025252088450434004973210068221942799097130870697195448562556824132306055702397014611005960647504145154505787332901599804117139492
4031625658055477499368568717890635822148690641694293550716267169673335198192139669041572875302540622250485821600769594446241365887860867684864972257512513493633230138263876176082560926642791641775864580978050646081279193770171954635841108736483428478662879842253888395702061521132072183460208208241471270699374735552517602296665303374187658715916995714547930933870233632234083873878497195079480349259461214271897669820567133400559558668315257703012585018511517297259945764001255294725386700747085490040793088253311133239087656080836205214565676783886762552253064523231043494537410829639871818538946951019248773682095026756852389708914431472157404498640481915662877031077976022609752571904135729453548011778560441644763086973429776951021126823793417243385100990186229425761342231599302718002102534748080878244240906514673976891875262349552836937649600390698536226027867193171104057494805629226601925212172589004039475954427761654666473107577051349075071498021596279652611539061228441292268937761375258
6849478202665290715078706310228734273472621490650606454174470659155813774568882856570327146996671481728862580172745536967588448386245820593991256307223147372119158962236039058124661949816622549307253315618304143943124351632429837054263906973084075090404497360362283470145788598759104581903176859500937222163965152006140733773529322152400566555464731792600855080038705191559205006793517594105898288355930798355571526056712554515239397545066612840397303687115353782291893002830939963073433581574821657831032332439771637482113298257147392334585063589321800080889259940981776253549821776318029379148190518563604645303039532246897823905151291799541833883820739868690304736419683771049652110991424020221906907816532782611684213091740014255318489964365154610951724376797485084401530649051779191844151746871084124357418275454999328394749852898678374660415492770985457982142215489729740588984969203577213619040933743069761448761192375508789394724462707896490989730644396544674117853316179510210420058474575120
8267272685396747587346363868063525145382874876891388644423650961117661531844737668424491206346632179464273512255744075266011971452216651083015492497782931567001145048273287598288779282926819711234886233070562790732768188303684648779849535962093140192352825542813350477468890024087960146692425626840971223138515096984374121158528771407484665468258564010125313853793626312209289534159234964740530970287118229283207404722957805725788197426567228893979263923448715378005034484331828965933247842141560159624558621206368039108374047414898701375671468388876658875337353659885583268873275132043117563480292043756858174313173074487061861325076814826928312937701940561952378214502050076490687413501761440142916086408646872120735542539819238698251198881816954347979624478885668159202343008684422518362098799817329163269863885250007783913893007659223612129954195805940239621026329329298362734438093421119810345539193020250956672723866243306506056069491332812097736797699785280040444556010041548076989915116043491
4991870683171414311458979236243083816808978337936750024596170773136098745800386172470585942535041046161475911199483199944551365872483157705968071680647992070915922847024845205911960133346369392402698330981568159093077130989009792576525995267892985401557856344116389449474707953821744122622218187421527556827975141962808857009807946546455013525317357054482685776190768427909535525969319356558921195000104948392593316738268309787284988131158729296911677789876908918968156764986220966003847880641799405009598159269161020805595893062487216129518393560494686130818274504614052522371734834678054459946736659414919891307302981132161984624086140380409052175146000954132767037498202025570188037814139793216357341557865534166560961295195501908311325069118732341749035764767291886967653407993923197340251284079241367307048557772175147023044295949327262272032226014648922802784469783631594681073567330308179119294796377318066909701246547341574685757825638531913663171152939394660836640665894245421610475034931575
7310697848951322519729014619626928941642488291437545678919191546583125611583118302194008597883333844740803156933884479242740764009797758921930617567983728395971388025329098507824732663469689821932563461336985738835525120106426634402117511906307192302012512225683845016709117124149612190294720665417085062524581288612314438521955091267054812184192888155822486544251488837391702427003923894847342987504864428444189179929906665724481010025466417415565900920706400341186191891551302057046571537432216808297906743786886007255211808714027607835161715549131233336582568717140968046155087665778021855228823129802518619820895858347237621053297897006111844973162701569442284176328643971880661991307101896526248593021086743576965249849818015892454090479614161667494977149189026994668090986982914960877407584184344101320482568946951085953181196907471377134879888571415933130063434765719664873865419663756647691184728944334182514476111163943705636011008777608698892792838829149645890806399362657944732299033334713
1738304995259260311833900624215633848027402102505487433818348158436036365941664199882026881864591722659073859224608086596302081107533197435647079503481830482718515317745097800037746093437068394206402374788268364502560939083624063161921666448891277906259365096904568278543930495939652431991181381737085049322764846078499218468459794583085981794504360803679482078603787449835336389818789357534168216529914375668143591774286428273389472500655035474994260709608003699394641601632296573281090858286402092068826104595025486214918497793747783718438472161993055893126344148052547960956093775919678790895709267650550552394751812972916254827431921344080473866934367217658328575656773313075140253686644902723264338280511244085160105198494518388556777499983583215390082181826871890150113509371601742089500503719503924000248821347201697606629942777268844350085245470518708663258038506899379759002190146390864079378445746644693183325322274770183682385304098107190963102400725837274004677595698155017050116263520723
0725934785270317858099458534918200285642416937909374926545200140480543381583881334707089816717259108330657839101164466497495607847305396515274113543836456906902811561341417019455394602364876415971465643304966805954168757525687659981400051009119964445822247684060275704215094536209806692545043179293976696714012713894133904410903604473628983180775486332102338463955589427232289353348280793539029911356520828611745339030215301282387321246555251580337667226444822790851246064248347670463959841434967095529229156925563824984741980461572714572558475874775300472641226645402025567150500211228167857282849622416178501687835567739909680378364026783468223144168064750740771122350767925663352643631506426329280507464451833761647219851421956900363027534308804472310821276206578997228728045612299293926971505859075497851002194733225467530956350763691667420443796529718626722788448223868631394325166519528687415526083315828967047355706924214525754189587997543907278006454409115992584465231451288498748796573157717
6296771521044352273047452027433070677424463364016329286081104144050203004612969405437329709982602398633032058656198462559415161739428154674196104703438166271400503339592042285815172325250596274756917608417642521437102955649659761452909468408566243030897734303766624688463706816512565147804051732913139293586524505887384113072114253631810554559273578249817482045419937967797925837153847572845861213385396151816714718787441599090993367657988966066618341058763472340394367496652452333438046466526090218501754094988070954412554012244565849531246705480481358071991835792445748051833160450388393835375180987616337352581667566336120092390626765530008547595707192883803868483481972400559416284922509112902571956776139688352288427921154928539782003550330254420902625165636437659435959053449576607156053535619919486266382751789799610528228244654245321408098392051759988067262775159375080328784615771530395143873506177029182173419552472423589694056016687820629954564237765863349173938060507834503981816858483297
1145735916656397907731467998277148521392359252323594328615022991422723766433732386918529658547052837303345426179674044152898397848503618294753429888525021037100220707448958372881069345581193203665028479725764219955847381947352115061928194548242595515123093802222395730077702141880355095039249487598459645000580478448847956541378445401211469458405844989095330192960778676091757107542518654453239222767308323135449801227317390273969538006915668661771790838277693728424158007057695281035711358299950547292105569890964931749027070239322090862567810847860102492175564560614748888227756646859194561425710745926551388772796839715279373672228048092361654112196325607894289778304180770301092639931806005120004163151883702216785815663406125145297569615555497023569637585443605994524430341020607981206274439692085658541542814083442227707221253398816085672126466348395219355542385304221306055028561468805338780779252563873217191863936151076350787704525764343971915959293198365144450688202389892573410335796971533
7024302895600563092804197910021701690732042470845188674764190735292053220971254729733825026999717334720022653588756732676120256365795673283140173948555445677701002419852298630313302055406046308323960326525757905977811495720254751673771566978688028106323309185767836305550399063120791731106079707269910736000820109117001933160529003212146701400628741962177444291058593384101719777080461363032759886941996060684287325074343161848454997052091242559762416283759416399354544161665061825868025181187260601681876124942145449068272428766236296013937903388275802564715774096506940959861185973271156298326856315734756209386295952196013335037414636926063737594554959256307994285056949158413680060813743469514650163929696395939898522003864413673276312696755184769068789431561685348357510614767768884022026422513359553636547468193025522084827403008104902112406954881802254756828078848578592799454889329563983120202074688605987383080929676543107565441873260461878892827767223970381968002437544244238287323981647969
9961762173907612281719498011622970269118911971708722602515504558356226392694104516831678966675800499895255098026020388419913511471646387597275734871353875041166772565600607042123312678420934216057548798460854390179283415246993870299757237217903140313036660072705967617594970109292900285581370645100696687200072827283900883108501890668783398884984514885318044109096671213215629662523500837884508098368371917687064431390640075389870363030438840212136331683880908830803493421711980864211196483302157501890713368622515112332269905236961792001500039719194790378895712200593638630616345138735994279949778406758318554451519844715878447770581591794246869503151862295562239689228730026131891838154868797852032056601080221639410303613648084673201010520402922713310969040781006523035783883705882625346837785650850045757887739321501018805088202234882548038712464204542292356544379663985497585500638622726796286207746710911163274783995059046414203245625725306166180694021226354897450438512895733592009555592041937
9584361507236662213083985945501014860710256657357149701899848342722746164037145280377446540450685726082597594575000446651558545121598874475926637421640840030763879968820744250008347892137519589841166080323917169224983499010973019989709368523426144368600105096536340929041135721699063294835147320549919513662203244580190323325626797341811390083145566701006531916120313369458956975935562003859935542548127228610722779838879344367649605443223426468826059791100785852412260400652837267641437031584578965113919509648791200451000552228944040748231414119832177593267973791474017679344851049320025576783823114993269317861370511228973466300150209987405490735230068092213416272300349491388037496469204244609736544975966150608525454489836154948841495104201050673805351840592824270487233556547042522776387663546921234054840841468058086818411629718626318945858954327970551834362963795164138006560176522423899059394847210251299905912553280876348463076349645478687959058276557301103823161572143869136838069855471953
0544427743889458504168910230723580147527637519089640412833271401759403080770620692917382556509861661670737264098718890473943873525344149227268583897726534995227502416312907794578743900913271292438691270010013165569063246340946736608486152616034441566638573496178414358339636647858002655903840544310220553414373865262340007751618856663690373303708887310857697517063842777505627896727350360438124290857070846658376234458245735103789444644572053481365623014838822630739501264765525698142879217307445461374722084205144834992232731584281300378769044589887766177316250739264492177041568292478511367954068176711145138450220166970524605897336444911511039378761711778829873870652969766413225848515400880045088013380999830917234316605883160514895366155261357359749074998170163147951956144044228709114178476801671516146245523656518943472478490762779545217086005232460449480451640817199285518431115271232344399805427576483996470451065182778714715664930202640045564011149763523413528427273925218804770721707026084
8538070170608024014980203774117748780711118729259480364509478029890191065732368149653946148895672532312110913016888817682711780563331455256720727332581002274265391657325385345242375962442870221936776612177834225397553820704136763404428796560097349251534886073554924690803834809099646614630247770769661113814460436205095566097328582947529574715677161375376044992447268289019603263241150479699996565694143219807349886414684267869027027828423054558616539922956661383930140520378064821933464137878482988105776308046770075281543830504100694392007083160582582676697583771787093858734951790966690233171877261441782212861380923281723268451776858019562856265826752897740311483240308574400168462421529092826422237720506127586444374747053609577538477359334306325241263375544260494436183128546610955085349505753519657040598336238400427280974602317196609749674448851970062131868002001191380847677736228969574489807654478546815790335930641249350755349320718585433309772045582486505694816697562224390963238486560245
2507500903900942582017947405467563616022452681880732653835788005141597586744165017818915894405046272614342540977896897780479873649401868252972594475590593431819714889218439516081517709127123211818248964824373982308866653063208545758075626017196076309891111136410538641146667150114824254087827524429375771778236521295641167083177341479838988455537571399141706328597465375803428011086105683358840820210262417917116579498992197855148095694922813107884114883729496281105363292265291809268897711263694461760076165499831792514526124633075915462463380870805483354385545095084599046621752615319410000518395961312008705669557739032180355847603614123906280603050305004967284416235386759550313617533845592965913142782867655698174246158751214079006185408794651526561647243540433929788621286455886076241005182851723680889168882814102341700518114785757406963114145136931277283267665507110719081719900384586326061678704016264492558487846997096646393590561833911782701428245118120455209265945964258608069938641443881
6428284033756210943670872246652569267602567491162332182461295901582907006207854144545928943364117822652501447005391181384725295533161675605033958458542863557451705721739736072296029637350817576198443883236639276996545905634452231899596821213404958608878153633601336451087193570518583100853308699124215743414469357220301109604716228356775949063730163974601340811193991030040961862064919821449848659645856621047675704110359727124138222914869309690960377751854607677790394591955076878276784218514088995022996539270767077435691158074927828058378691593588297800794034564566262038863638034008694703611469707652436170116916264114931628431213448673663012167905075946143034893623888190216812200583176881615146373821625249978549873714119207509395697855405947498604411191342725169156935047734318449168358383806463932843355294605241864486432175787830106719861654245846928808464813888112393018438416635201280797253926744652351460931243327243775940519339412376143071815211961530785876223690152092549430766472976065
1745211050001110628458900145504898043010810538277454221407269175698677870419526024815550163161705914027256128441572871410007384745836487647246207649049152164981535474529586779483287834531204955286036083909764062065384528798034625269916478069394898414096163481463796644239671824626913284254962144662158269250586124170554200072925495420697823814230018690847538122965225084380097414328800238702675916311209240210159668518340832366378535454942619312452183633008764915354914653151881298987684359587234720994316196836317547430144385379380425711312694079240136931260461162858003066185050495932075288089202229361247277336815904539492957373788420257108232270830359940571286301421509458822985361081803365242589402219253317554829693536509747503932825033402578982072699999355528736998197603505360332922154529723769193368189048135776674157637255769153035853830990481400191172732574571151062676138244543809451166197090704054578004913640863646859132957570345445931883439496821877659593792080292141618153622044140121
0434147882399685889019662843346435280200365408678344691963592582354285514768912126673617852516321440759358734387926741708983070933238046183134948105151092172825048994684681147668844344775435842834674546239452174763579743668008005967491719446080893435995180999060314875525199121499464161954977540025597521636234368405495891216914490723440334667447731956022268226423478257061091682173154770959899364754790646303972335521121806278974236122994313024585575775933112292552352366868738702516648397611870460453257545565073733835437838450924937342847587998119319170774086882315913138671614925201215926928888815974209245136196717661063264061621938839597817944046578093437826178106903900137447520585250806509848600369625994764837605466532965399572162748181581959976070564117175935440611100810497377368053973478822168004764724816224431751463034025801938894525563178852519179890909120672928150049724175109452849692939905601301118991831165664950922368793818976705664454691267594073255261091833875171988709948433444
9140041911007283491096916200405906957611573024503616930441478734522466923027088620065366688134580320289754288073231038609721903557327209843266095986165820873816560884251399721501765093640470882621613027174413639548317375602594972676207049307373250300819668442695275603655867044925868007787513365670204867549487461900763522579903386604987650457395881869376886790236447416507568345099344619408822083685454895590679955539439653787240219888948068100414123552719595048037992759225931542244170068455546082718361329165442472059113493245081420357757772050975040488839395781719169204939867248560561091494066240561699829664139646627006591874357439492699270634280622518060888406435055000261467473753015087887756836073158293934288934963475682749695702757036481675036229152108516594643755886880557969362637140268467509045652542616040551022009882989824019679551985310869373499216940571637343998243638695088131930389906177508968901470262639380018030759215563397839450805110339334370808391126444235679047694135147496
2579160900372963752610785587357258897110293553333150076679316851509402621024030941776092622995818192338100162422559614903045032389112497824415848396703120261858288335121456461289695850689416932614882939129480201943799152301686903996346819515647334474170846499698617347510799551218567419929260392613418047920808774256167696480807909410388103655290004186918386635433318148645633801081881959778082217131109874088964193310293861941121128946924136444224455488476469665054918129122076732031441971405601779052656926412816890046807277765120355528510388079038110575401028086802509237258736027819810721291725334505218071216771356378495492966619163275947337041935140554979289144966359967726063426004542920590061332623852646096825667390101668848485742188305283961732476799164199589183070432950000088478750522138965868369602323010583084526142367196964258446862334329257582992363619579320463573866194617426140121388303732279213277957556408250016357106537204358302905566255327392900319182684171490036437819703980279
3157954386337115559198067869147922099744873497770220604713685429743141551182212808508670226695920636392303366403478133068110572840503037050686415890339720406653609807400981269104058532395922717823836284841712967372265549991277390426463202528004067207940082729595804380895114765429903079142233567008114271955345008715659127753141573671614821775363385039528879348199521410690255419040054599024948772792414152871054694497941274857017118011165454272130937748417538136618903503782156368276497582996247205962993950543931920603288517874746054536416567899094295327841231773037470996771876912287519372675348274583812864576508045158492940315426934180681366582757672974525385336641241547402326282383865419791066919382574052270579248950742403347799894392892223134457123430774838913347295221883857120439696134209639349583026207144573672072811603211810023835704264675224754089170805209449048113047211828636713207456055463694912881826022738482486342776992090338774947933008984744845166371422279093363986379526047927
5690194115492407597606493271371158384055188121437945284024026617660666116438921153111474734970389959325382224707945962539789508505434021476581081561481050327623501244809002883971844168132269560280817379191097516288855425278724700064333983989901871347794596235889283592366257785719797758957380482139507137013160913427835142662831304708405673933393879203201669497902465342389707062342796397593705456726708651985911060066420976695684522830134707849784818634336561679560734753564766310968691096298584094245957040599764117128659483443071630797823292124475163349609000398620895610421379570042382108545632350857174679376277325807304497004813340792312912496600683900767287351063158449711196976253939399638346427615714825833377371690045238861744688144844271859987276639715891158940852800617836024479904664879476512660410026041947692435456147680849286039895868856319366504208452105152351751759627377299721806278145685707646450373057183819172277308274583527927726239424681393808902683496926264341923111872151448
243987006378840929778838289148491120074284619665096081768675656483103680695615499116489636336843692852226344554470525662375807987127320836112444892104038479762500487443912916699043555125657467444801130424322021277458685765169132475302228491613649761527195705735735702231233291785696385715099803411742450053576299614540388802136763496388169565508778863413530721055765513105342138666964675479334666832396532057338958011978292371699497484219976140721583142655127527476799784339223575159379410488660899828196515540026917560905600704724969980408312100383898677990398045104690209109608401044672057593448603847787278845706434609580860315772193094969020689890185995507994669064093871349015799360543556805950682310230666440224390354227239223488024295486927525874037884709473549976704067366342891976855855324542684631805593180488294409463998
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment