Skip to content

Instantly share code, notes, and snippets.

@shimizu
Last active March 6, 2018 05:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shimizu/7a738422fdb80818cc32acf39b0a4592 to your computer and use it in GitHub Desktop.
Save shimizu/7a738422fdb80818cc32acf39b0a4592 to your computer and use it in GitHub Desktop.
D3 v4 - Voronoi Maps
license: mit

高崎市 燃料給油所(GS) ボロノイ図

D3 ver.4を使ったボロノイ図描画サンプル。

燃料給油所のデータは国土数値情報より。

Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
<!DOCTYPE html>
<meta charset="utf-8">
<html>
<head>
<style>
html, body {
margin: 0px;
padding: 0px;
width: 100%;
height: 100%;
}
svg {
width:980px;
height: 500px;
background-color:#ede4cd;
}
h1 {
color:#666;
}
</style>
</head>
<body>
<svg></svg>
<script src="//unpkg.com/d3@4.12.2/build/d3.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/topojson/3.0.0/topojson.min.js"></script>
<script>
const width = 980;
const height = 500;
const svg = d3.select("svg");
const mapLayer = svg.append("g");
const voronoiLayer = svg.append("g");
const projection = d3.geoMercator();
const path = d3.geoPath(); 
const q = d3.queue();
q
.defer(d3.json, "takasaki.topojson")
.defer(d3.json, "gasStation.geojson")
.await((error, maps2topo, point2geo) => {
const maps2geo = topojson.feature(maps2topo, maps2topo.objects.takasaki);
//読み込んだ地図データが描画領域に収まるように自動的にプロジェクションを調整する。
projection.fitExtent([[0,0],[width, height]], maps2geo);
path.projection(projection);
drawMaps(maps2geo);
drawVoronoi(point2geo);
});
function drawMaps(geojson){
//地図表示
const map = mapLayer.attr("id", "map")
.selectAll("path")
.data(geojson.features)
.enter()
.append("svg:path")
.attr("d", path)
.attr("fill", "#99ff99")
.attr("fill-opacity", 1)
.attr("stroke", "black");
}
function drawVoronoi(geojson){
const pointdata = geojson.features;
const positions = [];
pointdata.forEach(d => {
positions.push(projection(d.geometry.coordinates)); //位置情報をピクセル座標に変換する
});
//母点表示
voronoiLayer.selectAll(".point")
.data(positions)
.enter()
.append("circle")
.attr("class", "point")
.attr("transform", d => `translate(${d[0]}, ${d[1]})` )
.attr("r", 2);
//ボロノイ変換関数
const voronoi = d3.voronoi()
.extent([[-1, -1],[width+1, height+1]]);
//ボロノイ境界ポリゴンデータを生成する
const polygons = voronoi(positions).polygons();
//境界表示
voronoiLayer.selectAll(".cell")
.data(polygons)
.enter()
.append("path")
.attr("class", "cell")
.attr("fill", "none")
.attr("stroke", "black")
.attr("d", d => `M${d.join("L")}Z` );
}
</script>
</body>
</html>
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","transform":{"scale":[0.00004582758275828581,0.000028460746074607542],"translate":[138.642506,36.198594]},"objects":{"takasaki":{"type":"GeometryCollection","geometries":[{"type":"Polygon","id":16,"arcs":[[0]]}]}},"arcs":[[[5126,9993],[3,-13],[4,-8],[7,-7],[10,-9],[10,-7],[15,-10],[6,-7],[9,-8],[13,-9],[11,-8],[13,-10],[8,-8],[7,-3],[5,-3],[6,0],[7,2],[7,5],[7,7],[4,6],[5,5],[5,3],[4,0],[8,-2],[10,-2],[9,1],[10,4],[2,1],[5,5],[12,8],[8,2],[9,1],[16,5],[25,6],[26,6],[21,4],[14,4],[19,5],[11,4],[15,3],[6,0],[8,1],[8,-1],[4,-2],[6,-2],[8,-6],[11,-10],[0,-1],[17,-15],[14,-14],[5,-8],[2,-6],[-1,-7],[-2,-11],[-4,-11],[-1,-11],[-1,-12],[0,-9],[0,-8],[2,-8],[6,-12],[3,-5],[2,-3],[1,-3],[0,-2],[-2,-7],[-2,-10],[-1,-9],[0,-10],[2,-9],[1,-13],[0,-9],[0,-21],[0,-8],[7,-3],[12,-5],[1,-1],[3,0],[9,-1],[8,2],[9,4],[8,3],[8,0],[6,2],[8,4],[10,6],[10,6],[4,2],[2,0],[3,0],[5,-3],[5,0],[7,0],[6,0],[4,-1],[4,-1],[8,-2],[9,-2],[6,-2],[7,-4],[5,-2],[5,-6],[3,-4],[4,-1],[2,-1],[1,-6],[2,-11],[2,-11],[5,-11],[5,-9],[2,-4],[2,-3],[5,-6],[2,-4],[2,-13],[1,-13],[2,-6],[-2,-10],[-208,-318],[0,-4],[5,-12],[2,-6],[2,-10],[3,-9],[2,-5],[1,-5],[5,-6],[3,-2],[3,-4],[3,-2],[2,-5],[5,-13],[-3,-4],[-2,-5],[-3,-7],[0,-6],[2,-7],[1,-8],[3,-7],[5,-6],[4,-4],[1,-2],[1,-3],[0,-6],[0,-8],[3,-6],[4,-3],[5,-2],[4,0],[6,0],[14,5],[6,2],[11,3],[7,2],[5,-2],[5,-2],[10,-3],[6,-3],[6,-2],[2,-1],[12,-4],[9,-4],[6,-3],[4,-3],[4,-5],[5,-7],[7,-6],[1,-1],[5,-5],[2,-5],[3,-9],[3,-8],[3,-7],[8,-6],[7,-5],[4,-3],[3,-6],[1,-5],[3,-6],[3,-6],[0,-1],[3,-6],[1,0],[2,-2],[7,-5],[6,-7],[3,-3],[1,-5],[2,-5],[4,-4],[5,-3],[2,-4],[2,-4],[2,-4],[2,-2],[3,-2],[4,1],[5,2],[5,1],[4,-1],[1,-1],[1,-2],[2,-4],[2,-7],[1,-7],[1,0],[3,-7],[3,-5],[2,-2],[4,0],[0,-1],[3,-1],[1,-5],[1,-6],[3,-5],[1,-2],[3,-3],[4,-1],[1,0],[4,-3],[7,-5],[5,-4],[4,-2],[4,-2],[4,-1],[3,-4],[3,-5],[2,-3],[4,-6],[4,-6],[6,-1],[3,-3],[7,-4],[6,-5],[4,-5],[7,-10],[1,-1],[4,-5],[8,-11],[5,-8],[6,-5],[7,-4],[7,-2],[6,1],[8,3],[12,5],[10,3],[6,-2],[3,-2],[3,-2],[6,-1],[4,-1],[2,-3],[1,-4],[2,-6],[9,-3],[5,-2],[7,0],[6,-1],[5,1],[4,0],[3,-2],[1,-3],[0,-2],[2,-4],[1,0],[3,-1],[3,-4],[1,-6],[0,-10],[1,-5],[2,-3],[3,-4],[1,-3],[1,-6],[1,-6],[3,-3],[4,-2],[1,-2],[2,-4],[1,-2],[2,-2],[5,-2],[2,-3],[3,-5],[1,-3],[6,-12],[5,-12],[2,-3],[5,-4],[2,-4],[1,-4],[1,-5],[3,-3],[2,-8],[4,-9],[3,-3],[4,-2],[3,-6],[5,-10],[7,-16],[3,-3],[7,-1],[6,-1],[4,0],[4,-5],[4,-4],[6,-10],[7,-9],[5,-8],[7,-5],[8,-7],[6,-5],[7,-4],[5,-5],[4,-4],[3,-6],[5,-9],[5,-8],[6,-12],[5,-9],[4,-8],[9,-17],[6,-14],[4,-11],[5,-12],[1,-7],[2,-9],[3,-5],[8,-14],[9,-15],[5,-9],[2,-3],[11,-14],[8,-8],[13,-9],[8,-5],[4,-1],[4,-2],[2,-2],[9,-6],[8,-5],[8,-7],[9,-8],[11,-10],[11,-12],[2,-2],[6,-6],[11,-11],[10,-9],[9,-7],[9,-6],[10,-5],[11,-3],[10,-1],[8,0],[8,0],[4,-1],[6,-3],[6,-4],[6,-5],[6,-8],[8,-10],[15,-21],[6,-5],[4,-4],[2,-2],[4,-4],[15,-14],[0,-7],[0,-13],[3,-4],[7,-5],[3,-6],[-2,-3],[-6,-19],[2,-2],[5,-5],[5,-5],[-1,-8],[-2,-5],[-1,-6],[-1,-7],[2,-2],[1,0],[1,-4],[9,-7],[19,-17],[6,-3],[4,-1],[1,0],[9,-7],[18,-13],[17,-12],[13,31],[6,18],[5,12],[3,4],[2,1],[2,4],[6,3],[5,2],[7,4],[3,0],[1,0],[0,-3],[1,-7],[1,-5],[2,-4],[2,-3],[6,-4],[2,-3],[6,4],[4,4],[5,5],[0,1],[3,3],[1,-1],[1,-2],[1,0],[1,-5],[1,-8],[1,-8],[2,-4],[2,-6],[2,-5],[4,-7],[4,-7],[7,-8],[5,-6],[2,-5],[1,-8],[1,-3],[0,-8],[4,-11],[1,-3],[-3,-4],[-5,-8],[-2,-4],[-3,-4],[-7,-12],[-7,-12],[-6,-10],[-7,-13],[-1,-4],[-13,-13],[-11,-13],[2,-3],[19,-25],[8,-10],[3,-3],[-5,-9],[-3,-4],[-8,-7],[-5,-1],[-3,-2],[-2,-2],[-1,-1],[1,-4],[3,-4],[-3,-2],[-9,-7],[0,-2],[0,-2],[2,-3],[1,-2],[3,1],[2,-1],[4,-5],[5,-3],[3,-7],[3,-5],[1,-3],[3,-8],[4,-22],[1,-4],[0,-3],[0,-1],[0,-4],[-4,-1],[0,-2],[-1,-1],[1,-1],[0,-2],[2,-4],[12,-22],[5,-10],[5,-9],[3,-4],[3,-9],[4,-9],[4,-11],[8,-15],[0,-1],[2,-2],[9,10],[9,10],[1,1],[2,2],[1,-1],[2,-4],[8,-14],[3,-7],[-1,-3],[-1,-3],[-8,-8],[4,-8],[6,-10],[11,-18],[1,-1],[4,-4],[3,4],[6,11],[3,7],[6,19],[-4,4],[-10,12],[1,5],[5,4],[-2,6],[5,6],[8,-13],[4,-7],[3,15],[6,17],[3,-2],[3,-3],[3,4],[3,5],[4,2],[5,-3],[9,11],[1,1],[3,4],[14,17],[-1,3],[-1,3],[-4,4],[-1,2],[-9,13],[-3,3],[2,5],[2,3],[-7,11],[-2,3],[-2,4],[4,6],[6,7],[7,7],[-5,6],[3,3],[4,5],[3,2],[3,2],[-7,12],[0,5],[2,-1],[4,-4],[7,-7],[4,-3],[2,-3],[4,-5],[4,4],[5,8],[1,0],[2,-10],[2,-7],[4,-5],[3,-2],[3,0],[1,1],[1,1],[4,3],[4,4],[3,5],[1,2],[1,0],[1,0],[1,-2],[2,-5],[3,-7],[2,-4],[0,-2],[3,-3],[2,0],[3,-1],[1,-3],[2,-4],[2,-5],[1,-8],[0,-3],[-1,-3],[0,-2],[1,-3],[1,-4],[1,-5],[4,-10],[4,-9],[3,-3],[5,-6],[5,-3],[3,0],[3,0],[3,-1],[1,-1],[2,-2],[1,-2],[1,-4],[1,-7],[1,-3],[2,-3],[2,-1],[4,-1],[6,-3],[5,-4],[3,-3],[2,-3],[1,-2],[2,-5],[2,-5],[1,-8],[0,-2],[0,-3],[-1,-1],[0,-2],[1,-3],[2,-4],[0,-3],[1,-5],[3,-1],[9,-3],[5,-2],[7,-2],[5,-3],[5,-3],[1,-2],[1,-1],[2,-3],[2,-4],[5,0],[4,0],[3,0],[6,-2],[3,0],[3,2],[1,2],[2,2],[1,0],[1,-1],[2,-4],[1,-1],[1,0],[4,0],[3,0],[1,2],[0,2],[-1,4],[-3,11],[-3,8],[-5,9],[-4,3],[-1,2],[-1,1],[1,3],[0,2],[1,5],[1,3],[2,6],[2,2],[3,2],[1,1],[5,2],[7,6],[4,5],[7,7],[-2,8],[0,4],[4,8],[7,14],[3,3],[1,0],[3,1],[1,-1],[3,-2],[1,-2],[2,-3],[0,-2],[1,-1],[-1,-3],[0,-2],[0,-4],[0,-3],[1,-3],[5,-7],[3,-6],[3,-6],[4,-7],[8,-10],[2,-3],[3,1],[2,0],[1,2],[2,2],[4,-9],[2,-3],[1,-2],[1,-5],[2,-5],[1,-4],[3,-4],[0,-2],[2,-1],[2,-1],[2,1],[2,0],[3,1],[1,1],[2,4],[0,3],[0,6],[0,10],[-1,1],[-1,4],[-2,0],[-2,-1],[-2,-1],[-4,0],[-1,3],[-1,4],[0,1],[0,1],[2,1],[3,0],[3,2],[-4,6],[-2,4],[0,1],[0,1],[4,4],[4,5],[1,2],[-1,2],[-5,6],[-6,9],[0,2],[0,1],[1,2],[1,2],[1,0],[2,2],[4,-1],[5,-7],[2,-3],[1,0],[0,1],[2,4],[1,2],[5,-1],[4,-4],[1,0],[1,2],[6,12],[2,5],[2,5],[3,5],[4,8],[2,3],[0,5],[-4,2],[-8,6],[-10,9],[-3,2],[-6,6],[-2,3],[0,1],[0,1],[2,6],[1,4],[1,0],[2,2],[3,-2],[8,-7],[3,-2],[1,-1],[7,-6],[6,-5],[2,-1],[4,-2],[4,-2],[4,-1],[3,2],[1,1],[1,0],[2,-1],[3,-2],[3,-2],[6,-4],[5,-3],[2,-1],[5,-3],[7,-7],[2,-2],[1,0],[1,0],[0,1],[2,3],[3,5],[1,3],[4,9],[2,5],[1,1],[1,0],[1,0],[3,0],[2,1],[2,2],[2,7],[1,7],[2,6],[0,1],[0,1],[-2,0],[-3,1],[-3,2],[-1,1],[1,1],[3,3],[4,6],[0,1],[-1,2],[-6,8],[0,2],[2,4],[7,11],[3,1],[5,-1],[-1,2],[-1,3],[-9,11],[1,3],[2,0],[3,0],[3,0],[4,2],[2,4],[3,4],[4,6],[3,5],[1,4],[0,4],[-2,3],[-6,2],[-6,1],[-1,0],[-1,1],[1,11],[0,7],[1,6],[0,6],[0,5],[-3,5],[-5,5],[-5,5],[-1,5],[5,5],[3,5],[2,3],[-2,3],[-1,2],[-2,3],[-1,4],[0,7],[4,4],[5,5],[4,7],[3,7],[2,7],[-1,7],[-5,7],[-4,4],[-12,7],[-4,3],[-6,4],[-4,3],[-5,3],[-13,4],[-3,-3],[1,-7],[-2,-2],[-1,-2],[-4,1],[-2,3],[-3,3],[-3,2],[-2,-2],[-2,-5],[-3,-4],[-3,-1],[-2,1],[-2,4],[-2,8],[-3,1],[-5,3],[-6,-1],[-4,-4],[-2,-4],[-2,-5],[-2,-2],[-2,3],[0,5],[-1,8],[1,7],[2,8],[2,10],[0,2],[1,7],[0,1],[1,1],[1,0],[4,-3],[3,-4],[5,-1],[3,-2],[3,-6],[4,-2],[6,2],[4,3],[4,4],[1,0],[2,2],[2,0],[5,-1],[2,-1],[1,0],[6,0],[4,-1],[6,-3],[3,-2],[3,-6],[3,-8],[3,-1],[6,3],[6,1],[3,-1],[4,-1],[4,3],[4,0],[3,-1],[3,-6],[1,0],[3,-5],[3,-3],[1,-6],[3,-4],[4,-4],[4,-2],[6,0],[4,-2],[4,-8],[5,-5],[5,-11],[2,0],[6,0],[5,-2],[6,-3],[3,-3],[5,-5],[5,-1],[2,-2],[2,-3],[2,-8],[2,-8],[4,-7],[7,-6],[3,-1],[3,5],[6,8],[4,6],[3,5],[4,4],[2,1],[4,-5],[5,-6],[5,-8],[7,-8],[8,-4],[8,-5],[6,-7],[5,-1],[7,2],[6,-1],[5,-5],[2,-2],[3,-1],[2,-1],[2,-1],[6,-1],[1,-1],[2,0],[5,-3],[5,-3],[1,-1],[1,-1],[1,-2],[3,-12],[3,-5],[4,-4],[2,-2],[0,-1],[0,-2],[0,-1],[-1,-2],[-1,-2],[0,-2],[1,-7],[2,-7],[2,-5],[1,-3],[1,-3],[1,-5],[1,-4],[0,-2],[1,-1],[1,-1],[7,0],[9,0],[3,0],[4,-2],[3,-2],[2,-2],[3,-3],[3,-1],[4,-2],[4,0],[3,4],[2,3],[2,2],[2,1],[2,0],[6,-2],[4,-2],[3,-3],[2,-1],[5,-2],[11,-3],[5,-2],[3,-1],[1,-2],[2,-3],[1,-3],[4,-5],[2,-4],[0,-2],[0,-1],[-2,-8],[0,-4],[-1,-5],[0,-14],[-1,-11],[-1,-39],[0,-16],[-1,-4],[-1,-22],[0,-6],[0,-6],[0,-2],[0,-4],[0,-3],[1,-5],[1,-12],[1,-3],[1,-3],[1,-1],[3,0],[4,-1],[2,-1],[4,-2],[5,-1],[16,-6],[3,-1],[0,-3],[0,-1],[1,-5],[1,-3],[2,-2],[5,-3],[2,-2],[2,-2],[1,-3],[4,-8],[2,-4],[1,-2],[3,-6],[9,-19],[2,-4],[2,-4],[2,-7],[1,-6],[2,-7],[1,-4],[0,-3],[-1,-7],[-1,-7],[-2,-21],[-1,-11],[0,-7],[-1,-34],[0,-18],[-1,-4],[3,-6],[0,-1],[1,-3],[0,-5],[0,-4],[0,-5],[0,-4],[2,-1],[4,-1],[4,-2],[3,-1],[4,-4],[4,-4],[6,-6],[7,-7],[9,-7],[8,-10],[4,-4],[3,-1],[2,-1],[5,0],[5,2],[6,2],[12,3],[6,2],[8,1],[4,1],[3,0],[4,-1],[4,-1],[3,0],[5,-1],[5,-1],[5,-2],[3,-2],[6,-3],[2,-2],[6,-4],[2,-1],[2,0],[0,2],[0,4],[0,1],[0,1],[1,0],[0,-1],[1,0],[1,-2],[2,-2],[1,0],[1,0],[2,2],[3,2],[1,2],[1,1],[1,2],[-2,4],[-5,9],[1,3],[3,0],[4,1],[5,1],[5,5],[5,5],[1,1],[7,1],[4,1],[-2,14],[0,3],[0,8],[1,2],[1,1],[3,0],[2,1],[1,0],[2,0],[1,0],[0,2],[0,4],[-1,5],[-10,25],[4,4],[8,10],[4,5],[-2,7],[-1,8],[0,3],[-1,4],[-2,9],[-4,10],[-4,7],[-3,4],[-5,5],[-7,5],[-7,6],[-1,2],[-6,4],[2,6],[3,5],[4,7],[2,4],[2,1],[3,3],[4,3],[2,2],[3,1],[2,0],[2,1],[1,0],[6,0],[7,-1],[5,0],[-1,8],[0,5],[0,2],[1,2],[6,0],[3,0],[6,-1],[17,-2],[7,1],[3,-1],[14,0],[15,-2],[1,-1],[0,-3],[-1,-4],[-1,-8],[5,-1],[1,0],[9,1],[9,0],[1,-2],[1,-6],[1,-4],[1,-7],[0,-6],[4,-15],[0,-1],[-18,-2],[-3,0],[-4,-2],[-2,-1],[-1,-5],[0,-2],[0,-3],[0,-1],[0,-5],[0,-2],[1,-1],[5,2],[5,2],[2,1],[3,0],[5,0],[7,0],[6,-1],[12,-2],[2,0],[8,-3],[2,-1],[4,-3],[5,-5],[10,-7],[5,-4],[8,-7],[10,-7],[1,-10],[2,-23],[-6,0],[0,-13],[0,-1],[3,-2],[0,-14],[1,-6],[14,-2],[3,0],[2,-1],[4,0],[4,-1],[2,0],[7,-1],[9,-1],[3,0],[6,-1],[11,-1],[1,-1],[0,-3],[-2,-4],[-3,-4],[-6,-11],[-4,-6],[0,-1],[0,-2],[0,-1],[0,-5],[1,-5],[3,-20],[3,-18],[-7,-2],[-12,-4],[7,-42],[-15,-4],[-6,-3],[1,-5],[2,-12],[4,-28],[1,-6],[2,-16],[1,-2],[2,-2],[1,0],[1,0],[2,2],[3,3],[2,3],[2,2],[2,-1],[3,-1],[5,-3],[3,-2],[5,0],[2,0],[3,-1],[0,-2],[1,-2],[1,-3],[-11,-16],[-2,-4],[-1,-5],[5,-3],[3,-3],[8,-8],[7,-6],[9,-11],[5,-6],[2,-2],[5,-6],[6,-10],[4,-8],[2,-6],[1,-5],[1,-7],[-1,-16],[-1,-4],[-6,-15],[-3,-8],[-3,-8],[0,-2],[-2,-4],[0,-14],[2,-3],[3,-2],[3,-2],[4,-5],[1,-4],[0,-6],[1,-3],[0,-18],[-7,-2],[-10,-1],[-6,0],[-16,-2],[-14,-1],[-13,-1],[-3,0],[-2,0],[-3,2],[-7,14],[-4,5],[-5,6],[-3,0],[-8,0],[-3,0],[-8,-2],[-3,-1],[-3,0],[0,-4],[0,-9],[-3,0],[-11,-1],[-19,0],[-1,5],[-1,6],[0,4],[-3,1],[-3,-1],[-1,0],[-2,0],[-1,-1],[0,-2],[0,-3],[-6,0],[-4,-1],[2,-7],[-13,-2],[0,-2],[3,-20],[1,-10],[0,-10],[1,-11],[3,-7],[3,-4],[3,-3],[-1,-5],[0,-2],[-1,-3],[-2,-3],[-1,-3],[-7,5],[0,-18],[-21,2],[-6,-1],[-1,0],[0,-1],[0,-3],[-6,-1],[-2,-1],[-1,-3],[1,-15],[0,-5],[1,-9],[8,-5],[14,-6],[0,-3],[1,-3],[1,-1],[2,-1],[1,-1],[2,2],[4,3],[8,6],[2,1],[4,3],[6,4],[6,4],[9,6],[2,1],[0,-2],[0,-20],[23,0],[-1,11],[6,0],[0,-13],[1,-6],[0,-4],[1,-4],[2,-4],[2,-2],[3,-2],[3,-4],[9,-11],[10,-12],[2,-3],[2,-4],[0,-8],[1,-7],[1,-6],[0,-3],[1,-6],[1,-8],[0,-4],[1,-3],[1,-5],[2,-3],[6,-4],[2,-2],[3,-19],[0,-7],[0,-2],[-1,-3],[-1,-1],[-1,-2],[-1,-4],[0,-6],[-1,-3],[0,-5],[-1,0],[-3,0],[-5,-2],[-9,-5],[-6,-3],[-2,-7],[-5,-9],[-6,-10],[0,-1],[-2,-1],[0,-1],[-1,-2],[0,-3],[0,-2],[0,-3],[0,-4],[2,-12],[0,-5],[2,-10],[0,-5],[2,-13],[0,-2],[1,-8],[1,-4],[1,-10],[3,-10],[4,-12],[1,-4],[1,-1],[6,-13],[11,-22],[1,-2],[3,-4],[2,-4],[1,-2],[1,-17],[-2,-3],[-4,-2],[-10,-9],[-1,0],[-2,-5],[-2,0],[-3,0],[-5,0],[-2,-2],[-4,-2],[-5,-2],[-1,0],[-4,-4],[-5,9],[-10,-6],[2,-12],[-14,-8],[-8,-5],[-17,-10],[-2,-2],[-2,-1],[-6,-3],[-2,0],[1,-2],[2,-4],[1,-3],[1,-4],[0,-2],[0,-6],[1,-4],[1,-3],[1,-7],[1,-2],[4,0],[20,5],[7,0],[4,1],[2,1],[1,0],[2,-1],[1,-3],[3,-17],[1,-1],[1,-1],[1,1],[1,-6],[4,-16],[4,-24],[1,-4],[9,0],[5,0],[2,1],[4,30],[0,1],[0,13],[0,1],[2,1],[3,1],[2,0],[2,0],[1,1],[0,8],[5,1],[1,0],[8,0],[4,0],[4,0],[2,0],[6,-1],[3,0],[9,3],[6,1],[2,1],[1,0],[2,0],[2,-7],[1,-3],[2,-5],[3,-8],[2,-5],[1,-1],[1,-4],[5,-5],[2,-5],[2,-2],[2,-4],[1,-1],[3,-4],[3,-4],[1,-1],[3,-4],[17,15],[7,6],[3,3],[1,2],[0,5],[1,2],[3,10],[1,3],[1,3],[0,2],[-1,2],[0,5],[0,5],[11,9],[3,2],[6,6],[8,4],[6,8],[3,8],[2,4],[3,8],[1,6],[1,5],[5,17],[0,4],[1,7],[0,8],[1,5],[2,1],[1,-1],[4,-1],[4,-2],[1,-2],[1,-2],[1,-4],[3,-2],[5,-1],[0,-22],[1,-15],[0,-1],[0,-4],[0,-5],[0,-1],[0,-19],[0,-5],[-1,-4],[0,-5],[-1,-7],[-1,-4],[0,-3],[-8,0],[-13,1],[-3,-20],[-1,-4],[-1,-15],[0,-14],[1,-21],[-3,-1],[-7,-3],[8,-21],[1,-2],[2,-7],[0,-1],[1,-12],[1,-5],[0,-12],[0,-7],[0,-6],[0,-3],[0,-2],[0,-3],[0,-1],[-1,-3],[0,-2],[0,-1],[0,-2],[0,-6],[2,-6],[3,-1],[4,-2],[16,1],[2,0],[7,-1],[4,0],[6,0],[17,-1],[17,0],[0,-17],[-3,-18],[0,-7],[0,-8],[-3,-22],[0,-17],[1,-6],[3,-9],[-1,-24],[0,-7],[0,-3],[2,-1],[1,-1],[10,1],[8,1],[8,0],[1,-4],[0,-1],[1,-8],[0,-2],[0,-4],[4,-1],[1,0],[8,-1],[5,-2],[3,-7],[1,-3],[0,-2],[0,-1],[0,-11],[1,-12],[1,-4],[1,-3],[2,-7],[2,0],[10,-1],[14,2],[4,0],[4,0],[5,1],[1,0],[1,-2],[1,-12],[3,-10],[0,-1],[3,-1],[3,-2],[6,-2],[4,-5],[6,-2],[9,-1],[3,-1],[5,-10],[1,-12],[1,-9],[0,-30],[1,-34],[0,-3],[1,-11],[1,-11],[0,-6],[-1,-11],[-2,-16],[0,-9],[1,-1],[2,-3],[17,3],[5,1],[2,0],[4,1],[11,-1],[11,0],[9,0],[9,-1],[3,1],[3,0],[4,0],[1,-1],[2,0],[3,0],[4,0],[3,0],[12,0],[0,-9],[0,-12],[0,-5],[-1,-10],[0,-4],[-2,-1],[-7,1],[-7,3],[-4,0],[-1,0],[-1,-2],[-1,-2],[-1,-8],[0,-13],[0,-4],[1,-1],[6,0],[0,-4],[0,-4],[-1,-13],[0,-11],[0,-4],[-17,0],[-2,0],[-10,1],[-3,0],[-34,2],[-6,1],[-1,0],[-4,-1],[-5,-2],[-2,-1],[-2,-3],[-1,-4],[0,-7],[0,-37],[1,-10],[0,-9],[0,-10],[1,-30],[0,-9],[-1,-18],[0,-20],[0,-7],[0,-5],[1,-4],[2,-2],[3,0],[8,-1],[16,0],[1,-1],[14,0],[6,-1],[3,0],[3,0],[12,0],[6,-2],[6,-1],[1,1],[1,2],[2,1],[13,-1],[9,-1],[12,1],[4,0],[6,1],[8,0],[2,0],[11,0],[5,0],[3,0],[6,0],[14,-1],[22,1],[10,0],[14,1],[7,2],[1,2],[1,6],[3,5],[2,4],[3,8],[0,1],[4,4],[2,2],[2,3],[1,1],[1,2],[1,2],[1,0],[0,1],[0,1],[3,4],[0,6],[0,12],[-1,16],[0,4],[4,1],[9,1],[8,-14],[8,3],[-4,13],[-2,7],[-3,8],[-5,-1],[-11,-1],[-1,-1],[-4,-1],[-1,3],[-1,7],[-3,10],[2,8],[2,3],[0,2],[1,3],[0,1],[0,2],[-1,0],[-3,1],[-11,0],[-1,4],[0,5],[-1,5],[5,0],[9,0],[3,0],[5,-1],[4,-2],[5,-1],[2,-1],[6,-2],[3,0],[6,0],[9,1],[7,0],[4,1],[2,1],[0,1],[1,0],[2,-1],[2,0],[6,0],[4,1],[5,2],[3,0],[5,1],[5,0],[0,-1],[0,-2],[2,0],[6,1],[2,1],[0,5],[-1,8],[1,1],[4,1],[17,0],[11,0],[9,1],[4,0],[2,0],[2,0],[2,-1],[0,-23],[1,-49],[0,-19],[0,-19],[0,-6],[1,-1],[3,-2],[2,-2],[5,-2],[10,0],[4,-1],[6,0],[22,0],[4,-1],[25,-1],[3,0],[2,-1],[23,-1],[21,-1],[2,0],[3,-1],[1,-1],[2,-2],[0,-3],[1,-2],[1,-3],[1,0],[3,-1],[3,0],[1,-1],[1,-3],[0,-3],[1,-1],[1,-2],[3,-1],[9,0],[6,0],[5,-1],[4,0],[0,-1],[-5,-13],[-4,-10],[-2,-4],[-2,-6],[-3,-6],[-2,-6],[-1,-6],[-1,-2],[-1,-3],[-1,-7],[-1,-5],[0,-6],[0,-6],[0,-3],[0,-4],[2,-6],[1,-6],[3,-9],[6,-12],[3,-4],[5,-8],[6,-8],[8,-11],[3,-5],[5,-6],[4,-5],[4,-5],[4,-5],[15,-20],[6,-8],[7,-14],[4,-5],[5,-11],[3,-6],[1,-4],[2,-6],[1,-5],[1,-8],[1,-4],[1,-8],[1,-8],[0,-10],[0,-14],[1,-20],[0,-21],[1,-10],[0,-9],[0,-4],[1,-34],[0,-6],[0,-6],[1,-5],[0,-7],[1,-10],[2,-10],[0,-1],[2,-10],[3,-10],[4,-16],[5,-17],[2,-9],[1,-6],[1,-4],[1,-5],[2,-7],[4,-29],[6,-38],[3,-16],[4,-15],[3,-17],[1,-4],[4,-13],[6,-12],[9,-17],[2,-3],[3,-6],[5,-8],[10,-16],[2,-2],[6,-7],[12,-13],[1,-1],[8,-7],[12,-10],[18,-15],[3,-2],[3,-2],[10,-10],[13,-7],[3,-2],[0,-1],[7,-5],[10,-7],[12,-9],[5,-3],[3,-1],[5,-3],[10,-4],[7,0],[5,-1],[13,-5],[8,-1],[7,-1],[6,-1],[16,-4],[13,-4],[12,-3],[9,-3],[10,-5],[5,-2],[7,-4],[12,-10],[3,-5],[3,-2],[2,-2],[1,-2],[3,-6],[5,-13],[3,-7],[7,-19],[3,-13],[2,-4],[2,-6],[-5,-3],[-1,-1],[-15,-13],[-8,-7],[-4,-7],[-3,-5],[-1,0],[-3,1],[-2,-3],[-8,-17],[-6,-11],[0,-2],[-3,-4],[-2,-2],[0,-5],[3,-13],[0,-14],[0,-4],[1,-11],[1,-8],[0,-5],[-1,-1],[-7,6],[-4,2],[-3,2],[-4,1],[-1,-1],[-4,0],[-4,-4],[-2,-2],[0,-2],[0,-8],[-2,-22],[0,-3],[0,-2],[-1,-5],[0,-3],[0,-4],[0,-3],[-2,-14],[-2,-23],[0,-5],[-1,-3],[0,-3],[0,-5],[-1,-2],[-3,-41],[-3,-22],[-2,-16],[-4,-35],[-2,-13],[-3,-36],[0,-1],[-1,-2],[0,-2],[-2,-5],[-1,-4],[0,-2],[-1,-3],[0,-3],[6,-9],[8,-14],[4,-8],[14,-25],[7,-13],[9,-19],[6,-12],[2,-4],[10,-19],[12,-24],[2,-6],[2,-3],[4,0],[2,2],[-1,4],[-1,3],[8,1],[0,-10],[0,-5],[7,1],[-1,7],[1,0],[2,2],[3,1],[0,1],[3,2],[2,1],[3,0],[3,0],[0,6],[14,0],[7,0],[0,-7],[-9,1],[0,-3],[0,-13],[5,0],[5,0],[0,-26],[1,-12],[0,-3],[1,-5],[4,0],[4,1],[7,0],[6,0],[0,-9],[-12,1],[-7,0],[0,-4],[4,-15],[6,-15],[8,-24],[-3,2],[-3,1],[-3,2],[-3,2],[0,-2],[0,-1],[0,-2],[2,-6],[2,-2],[1,-4],[3,0],[3,0],[3,-1],[2,0],[4,-1],[4,-13],[4,-14],[3,-9],[9,-19],[5,-11],[1,-4],[20,1],[0,-26],[2,-1],[6,-1],[2,-1],[3,-2],[0,-6],[0,-2],[7,0],[4,-2],[0,-1],[1,-3],[6,0],[3,0],[3,-18],[2,-3],[0,-6],[1,-3],[0,-5],[0,-2],[1,-5],[1,-12],[2,0],[3,0],[3,-1],[7,-1],[11,0],[3,-2],[-1,-22],[0,-5],[-1,-23],[0,-3],[-1,-27],[-4,0],[-15,0],[-1,1],[-3,1],[-5,2],[0,5],[-12,0],[-1,-13],[0,-3],[0,-5],[10,-2],[4,-1],[0,-22],[-1,-8],[0,-18],[-18,0],[-14,-1],[1,-10],[-3,0],[-1,0],[-8,12],[-2,3],[-2,2],[-7,0],[2,-2],[1,-6],[2,-18],[-5,6],[-4,4],[3,-20],[2,-12],[1,-12],[-1,-3],[-1,-1],[1,-7],[-5,-1],[-6,-3],[3,-16],[3,-1],[2,-11],[1,-2],[0,-1],[9,-1],[0,1],[-2,14],[3,2],[3,1],[1,-5],[1,-13],[-1,-4],[-1,-5],[-4,-1],[-13,2],[1,-12],[10,1],[0,-8],[0,-4],[-5,-1],[-4,-1],[1,-13],[12,1],[1,-3],[1,-9],[0,-6],[0,-2],[-6,0],[-7,-2],[1,-17],[-2,-6],[0,-2],[-2,-5],[0,-6],[0,-3],[-14,-1],[-8,-2],[0,-9],[0,-6],[1,-1],[4,-2],[8,-4],[2,0],[4,-4],[3,-2],[-1,-2],[-2,-3],[-2,-4],[-4,1],[-2,0],[-12,2],[-2,0],[-11,2],[-1,0],[-7,0],[-2,1],[-2,1],[-8,18],[0,1],[-1,4],[-3,5],[-2,4],[-8,17],[-1,2],[0,2],[-3,2],[-1,2],[-7,1],[-3,1],[-14,4],[-4,0],[-16,4],[-9,2],[-23,6],[-4,2],[-10,2],[-35,8],[-9,2],[-26,6],[-18,4],[-12,0],[-3,0],[-15,0],[-16,0],[-8,0],[-13,0],[-18,0],[-9,1],[-6,-1],[-4,0],[-11,0],[-9,0],[-16,0],[-8,-1],[-15,0],[-12,0],[-12,0],[-3,-1],[-5,-2],[-4,-2],[-1,-4],[-1,-3],[-4,-9],[-5,-10],[-5,-9],[-9,-20],[-1,-3],[-6,-12],[-2,-2],[-6,-8],[-6,-7],[-8,-6],[-8,-4],[-4,-3],[-5,-1],[-16,-5],[-11,-2],[-5,-2],[-6,-2],[-7,-2],[-8,-3],[-4,-1],[-11,-4],[-19,-7],[-3,0],[-4,-3],[-19,-12],[-6,-4],[-8,-4],[-4,-1],[-9,-3],[-6,-2],[-10,-3],[-16,-5],[-12,-4],[-3,-1],[-4,-1],[-9,-3],[-1,-1],[-1,0],[-5,-9],[-3,-8],[-5,-10],[-1,-1],[-3,1],[-1,1],[-5,1],[-4,1],[-1,0],[-1,0],[-12,3],[-4,1],[-2,1],[-10,2],[-12,2],[-4,1],[-8,3],[-10,2],[-3,1],[-4,1],[-1,0],[-2,0],[0,-7],[-1,0],[-7,-2],[-5,-1],[-9,-4],[-11,-4],[-4,-2],[-1,-1],[-12,-10],[-9,-10],[-3,-4],[3,-4],[-3,-5],[-2,-7],[0,-5],[0,-4],[-3,-11],[-2,-11],[-1,-3],[-1,-6],[-1,-16],[0,-5],[1,-12],[0,-3],[0,-8],[0,-7],[0,-7],[3,-11],[3,-16],[6,-26],[6,-14],[-1,-5],[-1,-15],[0,-5],[-1,-21],[0,-7],[0,-6],[-1,-45],[0,-7],[0,-11],[-1,-17],[0,-4],[0,-9],[0,-15],[0,-7],[-2,-56],[0,-6],[1,-7],[0,-3],[-4,-5],[-18,-20],[-14,-14],[-14,-13],[-24,-18],[-13,-8],[-2,-1],[-4,-4],[-9,-4],[-12,-5],[-5,-2],[-2,-1],[-4,-3],[-15,-6],[-4,-2],[-2,-3],[-3,-2],[-2,0],[-5,0],[-1,0],[-13,1],[-12,-2],[-1,0],[-1,0],[-4,0],[-10,0],[-5,0],[-17,3],[-7,2],[-15,6],[-6,3],[-13,6],[-19,6],[-5,1],[-12,4],[-20,5],[-8,4],[-1,0],[-6,1],[-4,2],[-4,-4],[0,-1],[-8,-9],[-2,-2],[-3,-4],[-7,-8],[-18,-21],[-8,-9],[-3,-4],[-5,-5],[-4,-6],[-5,-6],[-4,-4],[-6,-7],[-4,-8],[-5,-11],[-8,-14],[-6,-13],[-3,-6],[-8,-14],[-2,-5],[-2,-3],[-4,-6],[-9,-18],[-5,-11],[-7,-15],[-4,-9],[-7,-20],[-2,-7],[-4,-17],[-3,-16],[0,-4],[-3,-19],[-2,-9],[-1,-7],[-1,-5],[-2,-5],[0,-1],[-4,-9],[-3,-6],[-1,-2],[-4,-4],[-16,-9],[-7,-3],[-9,-2],[-5,-1],[-8,-2],[-8,2],[-7,1],[-2,1],[-10,2],[-16,3],[-4,1],[-4,-1],[-5,-1],[-19,0],[-5,-1],[-3,-1],[-11,0],[-18,-2],[-18,0],[-3,0],[-22,-3],[-2,0],[0,-6],[3,-21],[2,-10],[1,-5],[-1,-1],[-7,-5],[-4,-3],[-6,-7],[-5,-4],[-9,-8],[-4,-3],[-8,-5],[-9,-3],[-3,-2],[-7,-3],[-5,-2],[-5,-1],[0,-3],[-1,-16],[-2,-22],[0,-4],[-1,-5],[-1,-33],[-1,-4],[1,-3],[1,-5],[0,-3],[0,-10],[0,-2],[1,-9],[3,-7],[3,-2],[5,-2],[4,0],[2,-1],[1,-1],[5,2],[3,2],[13,14],[9,11],[12,12],[6,5],[14,12],[5,3],[5,-1],[5,-4],[6,-8],[2,-5],[4,-8],[4,-15],[2,-8],[0,-9],[0,-5],[0,-13],[0,-5],[1,-7],[0,-5],[1,-8],[1,-7],[6,-17],[1,-6],[2,-6],[1,-5],[1,-6],[2,-6],[3,-14],[2,-6],[2,-9],[3,-14],[1,-6],[1,-7],[3,-7],[1,-1],[1,-3],[5,0],[2,-2],[2,-2],[3,-3],[5,-1],[0,-2],[0,-7],[-1,-3],[0,-3],[0,-3],[-1,-4],[0,-6],[0,-15],[-1,-22],[0,-4],[-2,-7],[-6,-4],[-3,-3],[-2,-2],[-6,-13],[-2,-2],[-1,-3],[-1,-2],[-2,-3],[-4,-9],[-2,-5],[-5,-12],[-5,-10],[0,-1],[0,-1],[-3,-3],[-4,-6],[-3,-3],[-1,-2],[-3,-2],[-6,-3],[-4,-3],[-5,-2],[-5,-4],[-5,-4],[-4,-4],[-3,-4],[-3,-4],[-2,-5],[-3,-7],[-2,-6],[-4,-9],[-4,-10],[-3,-7],[-2,-7],[-3,-10],[-3,-9],[-1,-4],[-1,-9],[-1,-4],[-1,-4],[-4,-18],[-5,-25],[-2,-10],[-1,-5],[-1,-4],[0,-4],[-3,-18],[-2,-9],[0,-5],[0,-4],[1,-10],[1,-5],[0,-8],[0,-5],[0,-5],[1,-3],[2,-5],[3,-9],[0,-10],[0,-4],[-1,-5],[-1,-4],[-1,-3],[-4,-8],[-3,-2],[-3,-1],[-3,-1],[-2,-2],[-1,-2],[0,-4],[-2,-2],[-3,-3],[-3,-2],[-1,0],[-2,-2],[-2,-1],[-3,-3],[-5,-2],[-5,-4],[-4,-4],[-4,-6],[-1,-1],[-1,-2],[-1,-3],[-1,-3],[-2,-1],[-3,0],[-2,-1],[-3,-1],[-5,-4],[-3,-1],[-3,-1],[-6,-2],[-3,-3],[-1,-4],[-3,-9],[0,-5],[-2,-8],[-6,-21],[-1,-7],[-2,-9],[0,-12],[1,-10],[0,-5],[1,-7],[1,-4],[3,-17],[2,-6],[4,-7],[1,-4],[3,-6],[4,-7],[1,-2],[3,-4],[5,-6],[-1,-20],[0,-7],[1,-9],[0,-4],[1,-4],[2,-6],[0,-1],[-1,-5],[-1,-4],[-1,-3],[1,-3],[2,-4],[1,-5],[2,-3],[4,-8],[0,-2],[1,-1],[1,-6],[1,-3],[3,-6],[-1,-3],[-1,-2],[-2,1],[-3,4],[-3,4],[-6,3],[-4,3],[-3,-3],[-1,-3],[0,-3],[0,-6],[0,-5],[1,-5],[1,-6],[1,-6],[0,-4],[-2,-5],[0,-5],[1,-6],[2,-7],[3,-5],[6,-11],[8,-12],[3,-7],[0,-7],[-1,-5],[-3,-6],[-2,-4],[2,-8],[1,-6],[0,-4],[-11,-3],[-4,-3],[-7,0],[-9,10],[-2,2],[-3,0],[-6,-2],[-2,0],[-4,2],[-5,3],[-2,4],[-8,13],[-3,4],[-4,5],[-1,1],[-5,3],[-6,1],[-5,-1],[-6,-3],[-6,-1],[-1,-1],[-2,-1],[-13,-3],[-6,-4],[-5,-4],[-3,-6],[-9,-11],[-4,-4],[-9,-7],[-8,-9],[-2,-3],[-2,-3],[-4,-6],[-3,-3],[-12,-12],[-6,-7],[-6,3],[-4,4],[-4,6],[-3,2],[-2,2],[-5,2],[-6,2],[-6,-1],[-5,-2],[-5,-3],[-2,-3],[-3,-2],[-2,-1],[-4,-3],[-5,-1],[-4,0],[-5,1],[-4,0],[-4,1],[-4,2],[-6,4],[-2,2],[-2,3],[-2,3],[-2,5],[-2,3],[-3,4],[-3,2],[-5,3],[-6,3],[-3,3],[-3,4],[-1,3],[-1,3],[-1,1],[-3,2],[-6,1],[-7,1],[-4,0],[-4,0],[-5,-1],[-2,0],[-5,-1],[-6,1],[-6,2],[-4,1],[-3,3],[-4,1],[-6,4],[-8,2],[-5,2],[-8,-3],[-3,-3],[-5,-4],[-9,-2],[-3,0],[-3,-2],[-3,-2],[-4,-4],[-6,-1],[-2,3],[-6,10],[-3,8],[-2,6],[-1,5],[-3,6],[-2,3],[-2,2],[-2,1],[-3,2],[-1,0],[-3,-1],[-3,-5],[-3,-4],[-1,-5],[-3,-4],[-5,-7],[-2,-7],[-2,-5],[-3,-5],[-1,0],[-2,-3],[-4,-9],[-1,-2],[-2,-5],[0,-1],[0,-1],[-2,-7],[-8,-16],[-11,-24],[-1,-4],[-4,-7],[0,-2],[-1,0],[-2,-5],[-2,-5],[-2,-8],[0,-1],[-3,-7],[-4,-12],[-1,-5],[0,-1],[-11,-21],[-10,-17],[-4,-1],[-3,-3],[-3,-4],[-2,-4],[-2,-6],[-1,-8],[-1,-4],[-1,-2],[-2,-3],[-4,-5],[-4,-4],[-4,-2],[-6,0],[-2,-3],[-5,-5],[-3,-2],[-8,-2],[-4,-1],[-4,2],[-5,1],[-6,2],[-22,7],[-9,2],[-25,6],[-17,1],[-5,-2],[-7,-3],[-12,-8],[-11,-8],[-18,-23],[-4,-6],[-3,-3],[-3,-6],[-8,-18],[-1,0],[-8,-18],[-2,-7],[-5,-14],[-1,-3],[1,-12],[4,-21],[2,-8],[3,-6],[0,-3],[-1,-5],[-1,-6],[-5,-12],[-1,-5],[-1,-7],[-1,-5],[0,-6],[0,-6],[1,-6],[2,-4],[6,-11],[2,-5],[2,-7],[0,-6],[-2,-4],[-6,-9],[-5,-16],[-4,-10],[-4,-24],[-2,-16],[-2,-19],[-1,-7],[-1,-6],[-4,-8],[-5,-5],[-2,-3],[-3,-1],[-4,-3],[-3,-3],[-4,-3],[-11,-7],[-6,-4],[-4,-4],[-5,-7],[-2,-4],[-2,-3],[-4,-3],[-4,-4],[-4,-4],[-5,-1],[-5,-1],[-5,0],[-4,-2],[-3,-4],[-2,-7],[-6,-22],[-2,-13],[-6,-22],[-2,-6],[-1,-6],[-5,-7],[-4,-3],[-3,-5],[-5,-4],[-2,0],[-14,13],[-22,21],[-9,10],[-8,0],[-13,1],[-7,0],[-9,5],[-6,5],[-2,1],[-2,-1],[-2,-2],[-6,-2],[-6,1],[-14,5],[-6,2],[-5,1],[-6,-2],[-3,0],[-3,-2],[-7,-2],[-19,-3],[-9,2],[-2,3],[-13,13],[-5,2],[-10,-8],[-17,-11],[-9,-6],[-5,-4],[-4,-2],[-7,-2],[-7,-5],[-3,-6],[-2,-2],[-7,-10],[-4,-3],[-1,-1],[-3,-4],[-7,-6],[-4,-1],[-3,-1],[-4,-3],[-8,-5],[-5,-2],[-8,-3],[-5,-4],[-6,0],[-8,0],[-17,2],[-11,0],[-4,0],[-9,-2],[-8,-5],[-4,-1],[-3,1],[-10,3],[-4,-1],[-3,-3],[-4,-3],[-2,-1],[-4,-1],[-3,-3],[-3,-4],[-3,-5],[-12,-11],[-6,-5],[-4,-8],[-8,-14],[-13,-12],[-4,-3],[-4,-1],[-4,-1],[-3,-1],[-7,-2],[-12,-6],[-5,2],[-9,6],[-7,6],[-3,0],[-8,1],[-22,0],[-10,-2],[-6,0],[-8,1],[-11,2],[-8,3],[-5,3],[-3,3],[-7,6],[-7,6],[-5,1],[-6,-1],[-5,-2],[-6,0],[-7,3],[-4,0],[-6,-4],[-13,-7],[-6,-2],[-7,1],[-8,0],[-10,-2],[-10,-1],[2,27],[2,7],[5,11],[7,7],[7,9],[6,17],[5,16],[11,31],[11,33],[2,5],[1,3],[0,3],[0,3],[-2,18],[-3,11],[-4,19],[0,7],[3,6],[7,13],[3,9],[1,6],[1,8],[2,8],[3,7],[2,3],[7,9],[1,7],[-2,18],[-2,13],[1,4],[3,15],[1,4],[1,8],[1,6],[2,6],[4,4],[3,2],[4,2],[5,2],[4,3],[4,4],[1,4],[2,4],[1,9],[2,19],[1,9],[2,5],[3,9],[4,7],[13,19],[3,6],[3,7],[3,16],[3,9],[2,4],[2,4],[9,15],[3,6],[2,4],[4,5],[8,8],[3,1],[2,-1],[3,1],[5,5],[5,4],[4,3],[5,2],[3,2],[2,4],[3,6],[1,4],[2,5],[2,5],[-1,18],[0,6],[0,5],[2,7],[1,7],[0,4],[-1,6],[-2,5],[2,7],[5,4],[14,7],[8,2],[7,2],[3,2],[4,3],[4,6],[2,5],[4,3],[16,4],[7,3],[10,6],[12,5],[16,6],[3,1],[25,11],[28,9],[15,3],[9,1],[13,8],[5,4],[3,1],[4,4],[1,3],[2,12],[1,8],[1,4],[5,27],[1,12],[0,8],[0,9],[-2,6],[-1,5],[-3,5],[-6,8],[-13,17],[-3,6],[-1,5],[0,9],[0,11],[1,5],[0,3],[-1,6],[0,9],[-2,10],[-1,4],[-4,2],[-6,4],[-9,5],[-11,7],[-6,4],[-11,7],[-8,4],[-11,5],[-3,4],[-5,17],[-6,21],[-2,8],[0,4],[1,5],[4,9],[2,3],[3,8],[2,28],[5,17],[1,4],[0,3],[-1,3],[-5,8],[-1,3],[-3,4],[3,20],[1,6],[1,8],[6,-1],[3,0],[6,-1],[8,-2],[6,1],[4,3],[4,3],[2,3],[1,6],[0,9],[0,5],[-1,6],[-1,9],[-5,15],[-3,8],[-6,11],[-2,4],[-5,12],[-3,5],[-4,7],[-2,3],[-12,10],[-8,9],[-3,3],[-8,5],[-3,4],[-4,3],[-5,4],[-6,3],[-2,2],[-2,2],[-3,10],[-2,8],[-7,16],[-3,6],[-1,4],[0,6],[0,5],[0,8],[0,17],[1,4],[4,16],[3,9],[1,3],[0,6],[0,7],[0,3],[0,16],[-2,7],[-3,11],[-2,10],[-4,18],[-3,20],[0,5],[-3,16],[-4,25],[-4,12],[-8,21],[-5,11],[-8,15],[-4,4],[-5,5],[-4,4],[-4,4],[-3,9],[0,5],[0,1],[-1,5],[-2,25],[0,5],[-2,13],[-1,12],[-1,10],[-1,2],[3,21],[2,12],[3,24],[2,21],[3,1],[3,1],[5,2],[9,4],[13,2],[12,2],[4,3],[3,2],[1,1],[1,0],[2,1],[5,6],[2,4],[2,5],[1,4],[4,3],[9,-1],[3,5],[2,3],[3,7],[3,6],[0,3],[-1,6],[0,6],[5,9],[2,3],[3,5],[4,16],[2,12],[1,13],[-10,1],[-8,0],[-4,1],[-3,1],[2,3],[5,8],[6,8],[-3,1],[-7,-1],[-1,5],[0,2],[0,7],[6,1],[8,4],[0,18],[-3,5],[-4,0],[-6,-3],[-5,-1],[0,5],[2,16],[0,9],[0,3],[-1,8],[-3,8],[-5,6],[-7,6],[-7,6],[-4,3],[-3,1],[-4,3],[-6,7],[-5,8],[-2,9],[-1,2],[-2,3],[0,1],[-1,0],[-2,0],[-1,-1],[-4,-7],[-6,-9],[-7,-2],[-9,-1],[-6,-7],[-5,-4],[-8,-3],[-9,-5],[-1,-1],[0,-2],[-1,-2],[-2,-11],[-3,-13],[-1,-7],[-2,-9],[5,-10],[3,-12],[1,-6],[-1,-1],[-16,0],[-4,0],[1,9],[-1,10],[0,14],[-2,10],[0,1],[-1,1],[0,1],[-1,4],[0,5],[2,3],[2,6],[4,15],[0,2],[-5,0],[-1,19],[0,36],[1,20],[0,4],[4,3],[2,3],[-2,8],[-1,4],[1,4],[6,6],[8,11],[7,14],[3,8],[0,3],[-1,3],[-4,2],[-9,3],[-13,3],[-3,1],[-18,2],[-13,2],[-15,1],[-5,2],[-1,0],[-12,4],[-5,4],[-1,2],[-4,6],[-9,18],[-5,11],[-5,11],[0,6],[1,14],[2,14],[1,9],[1,9],[1,3],[0,6],[0,2],[-2,8],[-6,15],[-6,11],[-1,1],[-6,7],[-4,1],[-10,3],[-10,0],[-10,-3],[-11,-6],[-4,4],[-6,4],[-4,0],[-12,1],[-13,2],[-6,2],[-22,3],[-15,2],[-6,1],[-7,1],[-13,2],[-6,3],[0,4],[-1,3],[4,4],[4,4],[4,6],[-1,6],[-1,3],[-1,1],[-8,8],[-14,12],[-3,4],[-2,4],[1,5],[4,17],[2,11],[0,13],[0,10],[1,15],[3,17],[2,12],[6,14],[3,3],[6,6],[4,9],[5,5],[4,3],[1,5],[-3,5],[-7,8],[-4,5],[-6,5],[-8,0],[-7,0],[-3,-1],[-4,-5],[-3,-4],[-3,-5],[-3,-12],[-2,-8],[-2,-3],[-5,-1],[-2,3],[0,5],[2,8],[4,10],[2,13],[2,3],[3,6],[7,2],[6,1],[8,4],[7,5],[3,7],[-1,8],[-2,12],[2,7],[3,6],[6,9],[8,6],[9,5],[4,2],[2,1],[9,6],[3,2],[5,2],[5,3],[3,0],[4,0],[6,1],[9,10],[12,18],[3,6],[1,4],[0,22],[4,11],[5,8],[2,8],[4,5],[7,5],[6,4],[4,4],[4,10],[4,6],[6,5],[3,0],[9,1],[8,2],[5,4],[2,8],[0,1],[2,7],[1,10],[2,5],[12,7],[3,2],[4,10],[0,1],[6,12],[8,16],[4,10],[1,9],[1,8],[3,12],[-1,6],[-2,7],[-1,7],[1,11],[4,5],[3,6],[0,9],[2,1],[6,2],[5,5],[2,6],[0,4],[1,8],[0,4],[0,8],[1,6],[2,7],[1,9],[0,9],[0,6],[0,2],[-3,6],[-3,6],[-1,11],[-4,8],[1,6],[4,12],[3,13],[3,9],[1,7],[-1,11],[-1,3],[-2,11],[-2,10],[0,6],[-2,5],[-2,4],[0,4],[1,6],[4,8],[3,5],[1,5],[-1,4],[-5,2],[-9,7],[-4,4],[-3,5],[-7,12],[-3,5],[-2,4],[-2,18],[-1,16],[-5,29],[-2,8],[-2,7],[-1,3],[-2,4],[0,8],[2,11],[4,12],[5,9],[3,9],[5,7],[4,6],[2,5],[-3,6],[-4,3],[-2,3],[-1,0],[-4,5],[2,8],[4,9],[4,5],[6,3],[7,2],[7,2],[6,5],[1,6],[-2,16],[0,1],[-2,14],[-1,10],[3,1],[5,5],[6,3],[8,7],[4,4],[3,1],[5,-1],[8,-2],[3,1],[3,4],[2,4],[1,6],[0,5],[-2,14],[0,8],[2,5],[1,4],[1,4],[-2,5],[0,5],[2,6],[4,4],[3,2],[5,4],[1,3],[0,3],[1,4],[2,6],[5,8],[4,8],[2,7],[3,4],[5,2],[3,5],[-4,2],[-12,1],[-6,2],[-4,3],[-2,7],[-1,8],[0,12],[-3,3],[-6,-1],[-7,0],[-7,5],[-3,2],[-2,8],[-2,12],[0,13],[1,13],[0,16],[-1,23],[-1,8],[2,8],[3,11],[3,11],[0,5],[-3,9],[-3,14],[-4,15],[-6,12],[-3,10],[0,2],[-2,10],[-1,10],[0,1],[0,7],[1,6],[0,4],[-5,11],[-1,2],[-9,19],[-10,18],[-4,10],[-3,8],[-3,7],[0,5],[1,4],[0,6],[-3,19],[-3,12],[-3,6],[-6,13],[-6,13],[-4,9],[-5,13],[-7,9],[-4,6],[-5,6],[-7,10],[-5,5],[-4,5],[-3,12],[0,11],[2,15],[1,13],[0,11],[-1,14],[-1,11],[1,13],[0,8],[-1,8],[-3,23],[-6,21],[-3,10],[-3,5],[-3,5],[-1,5],[-2,11],[0,1],[-3,9],[-2,4],[-5,16],[-4,7],[-6,7],[-2,5],[-2,9],[-2,6],[-4,6],[-3,4],[-11,11],[0,1],[-3,6],[-6,7],[-7,2],[-7,1],[-9,-1],[-6,2],[-6,4],[-10,8],[-5,4],[-2,2],[-6,7],[-6,5],[-6,3],[-9,2],[-8,1],[-3,4],[-2,8],[-1,8],[-2,9],[0,13],[-2,6],[-3,4],[-6,9],[-1,2],[-5,11],[-6,22],[-5,18],[-4,19],[-2,8],[-1,6],[-1,4],[0,5],[9,1],[14,0],[17,2],[20,3],[1,0],[1,0],[15,1],[3,0],[9,0],[16,0],[6,-1],[6,-1],[10,-1],[9,-1],[4,0],[19,-4],[14,-2],[18,-6],[15,-5],[7,-3],[9,-3],[4,-2],[11,-4],[13,-2],[19,-1],[13,0],[16,0],[1,0],[7,2],[0,4],[1,7],[1,8],[1,6],[1,8],[2,9],[4,22],[1,6],[-4,12],[-2,2],[-7,1],[-12,2],[-19,2],[-29,8],[-21,5],[-6,1],[-13,4],[-6,1],[-6,-1],[-3,-3],[-2,-1],[-7,5],[-2,5],[0,5],[-2,0],[-16,1],[-12,1],[0,3],[1,6],[-1,2],[-2,5],[-2,-1],[-2,2],[0,2],[1,5],[1,5],[1,10],[0,9],[2,9],[1,4],[1,8],[1,2],[0,1],[-1,1],[-6,1],[-8,0],[-7,1],[-8,2],[-2,1],[-5,0],[-1,0],[-1,-1],[-5,-2],[-4,0],[-6,0],[-16,1],[-8,2],[-3,0],[-8,3],[-6,2],[-7,5],[-6,4],[-8,5],[-5,3],[-7,7],[-5,5],[0,1],[0,1],[3,3],[7,6],[7,6],[2,3],[4,6],[1,2],[1,1],[1,2],[1,3],[1,3],[1,4],[2,6],[0,2],[1,2],[1,2],[1,4],[1,6],[1,2],[3,4],[1,5],[0,1],[-5,3],[-4,2],[-14,8],[-5,4],[-3,4],[-2,4],[0,2],[0,2],[1,3],[1,4],[5,15],[9,20],[2,5],[0,2],[-3,3],[-7,8],[-6,6],[-7,6],[-7,2],[-5,5],[-3,2],[-3,3],[-8,8],[-10,8],[-8,7],[-2,2],[-1,2],[-1,2],[-6,8],[-4,5],[-3,4],[-3,5],[-1,1],[0,9],[0,4],[0,13],[0,2],[0,21],[0,2],[-1,13],[1,10],[1,18],[1,4],[0,5],[0,3],[-2,2],[-1,0],[-13,-1],[-5,0],[-5,0],[-7,-1],[-6,1],[-4,0],[-7,-1],[-6,-1],[-7,-2],[-9,-1],[-9,0],[-1,1],[-1,3],[-4,8],[-1,5],[-3,4],[-3,5],[-4,5],[-13,17],[-6,9],[-6,10],[-13,17],[-7,11],[-5,6],[-11,15],[-2,2],[-3,3],[-3,4],[-6,6],[-4,3],[-2,1],[-6,3],[-5,4],[-10,4],[-3,1],[-7,3],[-6,3],[-15,5],[-8,4],[-8,3],[-9,5],[-5,2],[-1,-1],[-3,-3],[-3,-4],[-2,-4],[-4,-8],[-2,-3],[-4,-3],[-3,-2],[-7,-4],[-7,-4],[-12,-6],[-3,-3],[-2,-1],[-10,-6],[-10,-7],[-20,-15],[-7,-6],[-7,-4],[-7,-6],[-1,-1],[-4,-4],[-8,-7],[-12,-11],[-10,-10],[-8,-6],[-2,-2],[-1,1],[-2,3],[-5,5],[-4,5],[-3,1],[-3,1],[-3,2],[-4,0],[-5,1],[-4,3],[-4,4],[-5,8],[-2,4],[-3,6],[-4,9],[-2,5],[-5,9],[-3,4],[-3,4],[-3,2],[-2,1],[-2,1],[-3,0],[-3,-1],[-3,-1],[-5,1],[-3,2],[-5,5],[-3,5],[-3,5],[-4,5],[-3,1],[-1,0],[-4,0],[-3,0],[-1,1],[-3,1],[-2,4],[-4,7],[-3,5],[-4,3],[-3,2],[-3,0],[-2,0],[-5,-1],[-2,0],[-1,0],[-4,2],[-4,2],[-6,0],[-3,1],[-5,3],[-3,3],[-5,6],[-2,5],[-1,3],[-1,3],[-2,2],[-3,3],[-2,2],[-4,4],[-4,3],[-2,3],[-2,2],[-4,8],[-2,3],[-10,12],[-9,11],[-8,11],[-6,7],[-4,5],[-6,9],[-6,10],[-4,3],[-2,2],[-1,0],[-6,1],[-6,0],[-4,-1],[-8,0],[-3,0],[-4,-1],[-4,1],[-9,4],[-4,2],[-8,5],[-7,4],[0,1],[-2,2],[-4,5],[-4,5],[-5,6],[-1,1],[-6,9],[-7,8],[-3,4],[-6,7],[-4,6],[-3,2],[-3,2],[-7,2],[-5,1],[-5,3],[-5,3],[-6,6],[-6,5],[-4,4],[-5,4],[-5,4],[-4,3],[-6,2],[-10,1],[-6,-1],[-4,10],[-2,3],[-1,5],[0,10],[-2,3],[-3,5],[-5,6],[-5,7],[-9,13],[-5,5],[-1,2],[-6,4],[-3,2],[-5,2],[-8,2],[-3,2],[-12,7],[-6,2],[-4,2],[-6,2],[-7,4],[-6,2],[-3,1],[-2,3],[-4,5],[-4,5],[-4,6],[-8,11],[-6,6],[-4,4],[-5,3],[-6,3],[-3,2],[-14,5],[-2,5],[-4,5],[-4,9],[-2,4],[-2,2],[-2,2],[-3,1],[-4,2],[-2,0],[-7,2],[-6,2],[-3,1],[-4,1],[-7,2],[-5,1],[-3,1],[-4,2],[-3,3],[-3,3],[-1,1],[-6,6],[-5,4],[-4,3],[-6,5],[-3,1],[-2,0],[-9,2],[-3,2],[-5,0],[-5,3],[-6,4],[-4,3],[-1,1],[-6,4],[-8,5],[-3,3],[-7,4],[-5,5],[-6,3],[-7,3],[-7,3],[-6,3],[-5,3],[-6,3],[-7,5],[-2,2],[-3,2],[-6,1],[-6,-1],[-3,1],[-6,2],[-6,3],[-2,1],[-2,2],[-5,5],[-3,2],[-3,1],[-7,1],[-3,1],[-3,2],[-2,2],[-2,2],[-2,5],[-3,9],[-2,8],[-1,3],[-1,1],[-1,1],[-1,1],[-6,3],[-6,4],[-2,1],[-4,3],[-3,3],[-5,5],[-4,2],[-2,0],[-3,-1],[-3,-1],[-9,-3],[-3,0],[-4,-1],[-3,2],[-1,0],[-2,1],[-2,1],[-1,-1],[-3,-2],[-2,-1],[-2,0],[-2,-1],[-3,0],[-11,0],[-6,0],[-8,0],[-10,-1],[-6,1],[-6,1],[-2,2],[-3,2],[-3,3],[-3,5],[-4,6],[-4,4],[-4,3],[-1,2],[-1,4],[-1,1],[-4,2],[-5,1],[-3,1],[-2,1],[-2,2],[-1,2],[-1,2],[-2,4],[-3,6],[-2,6],[-2,2],[-2,0],[-1,0],[-4,-1],[-3,0],[-1,0],[-1,1],[-4,4],[-5,7],[-4,3],[-3,2],[-2,1],[-2,2],[-8,7],[-7,4],[-5,3],[-5,2],[-3,0],[-3,0],[-4,2],[-4,5],[-8,8],[-6,7],[-4,4],[-3,4],[-4,3],[-3,0],[-2,0],[-1,0],[-3,-2],[-3,-1],[-2,-1],[-2,0],[-2,1],[-4,0],[-4,2],[-6,3],[-8,4],[-4,1],[-3,0],[-1,-1],[-3,-5],[-2,-5],[-2,-3],[-1,-2],[-2,-2],[-2,-1],[-1,-1],[-2,-1],[-3,0],[-6,3],[-3,3],[-3,3],[-2,1],[-3,0],[-7,2],[-4,0],[-5,1],[-3,1],[-3,1],[-2,0],[-2,0],[-2,-2],[-1,-1],[-1,-1],[-3,-2],[-3,-1],[-5,2],[-6,2],[-5,1],[-6,1],[-2,0],[-5,0],[-4,0],[-1,0],[-6,-1],[-4,-1],[-4,-1],[-4,-2],[-5,-2],[-3,-1],[-2,0],[-4,-2],[-3,-2],[-9,-6],[-5,-3],[-3,-3],[-4,-2],[-5,-3],[-3,-2],[-5,-1],[-3,-2],[-2,-2],[-1,-2],[-1,-4],[2,-10],[2,-8],[3,-9],[2,-6],[2,-5],[2,-5],[1,-4],[3,-6],[1,-4],[1,-4],[0,-4],[-1,-2],[-2,-3],[-1,0],[-2,3],[-3,3],[-5,5],[-3,1],[-6,3],[-4,1],[-5,1],[-3,1],[-8,0],[-8,0],[-4,-1],[-5,1],[-4,1],[-3,2],[-2,1],[-2,2],[-1,2],[-3,1],[-5,1],[-4,-1],[-4,0],[-6,-1],[-7,-2],[-5,-2],[-7,-1],[-4,0],[-6,-1],[-6,-1],[-7,-1],[-5,-1],[-4,0],[-7,0],[-8,0],[-5,-1],[-5,-2],[-3,0],[-3,-2],[-1,0],[-5,-4],[-4,-3],[-6,-3],[-4,-5],[-2,-3],[-3,-1],[-1,0],[-3,0],[-6,8],[-4,4],[-5,4],[-4,1],[-4,1],[-7,0],[-8,1],[-3,2],[-4,3],[-3,1],[-3,4],[-5,5],[-4,3],[-5,3],[-5,3],[-5,1],[-5,1],[-3,1],[-5,0],[-7,0],[-4,0],[-7,-1],[-8,-1],[-4,0],[-8,1],[-5,1],[-4,2],[-3,1],[-4,2],[-2,2],[-2,1],[-2,2],[-4,4],[-3,5],[-3,5],[-3,4],[-1,2],[-2,5],[-3,3],[-3,4],[-5,4],[-2,3],[-3,4],[-3,2],[-2,2],[-5,3],[-5,3],[-4,3],[-4,4],[-7,4],[-4,2],[-8,3],[-8,1],[-4,1],[-6,0],[-5,0],[-5,1],[-5,2],[-8,1],[-1,0],[-3,0],[-4,-1],[-6,0],[-12,-1],[-4,-1],[-2,0],[-1,1],[-2,1],[-3,3],[-2,4],[-3,4],[-1,2],[-3,2],[-1,0],[-5,-2],[-3,-2],[-1,-2],[-2,-3],[-2,-4],[-3,-8],[-4,-5],[-3,-4],[-2,-1],[-4,-4],[-4,-4],[-6,-6],[-4,-3],[-2,-2],[-5,-1],[-3,1],[-4,1],[-1,0],[-3,2],[-4,-1],[-3,-2],[-5,4],[-3,1],[-6,1],[-2,-1],[-3,-1],[-7,-4],[-5,-1],[-5,-1],[-7,0],[-1,3],[-1,3],[-2,5],[-3,7],[-3,5],[-4,6],[-2,4],[-3,4],[-4,7],[-3,6],[-3,5],[-2,3],[-2,4],[-2,2],[-2,1],[-2,1],[-2,0],[-3,2],[-4,2],[-4,4],[-2,2],[-2,2],[-2,2],[-2,3],[-2,5],[-2,5],[-3,5],[-4,7],[-1,4],[-1,3],[-2,6],[-2,7],[-3,7],[-4,7],[-3,2],[-3,1],[-6,3],[-16,7],[-4,1],[-2,1],[-1,2],[-3,4],[-4,4],[-5,4],[-3,1],[-3,0],[-3,1],[-7,-1],[-7,0],[-2,1],[-2,2],[-4,5],[-3,5],[-2,2],[-2,1],[-1,0],[-1,0],[-4,-2],[-4,0],[-5,-1],[-4,5],[-5,7],[-3,5],[-4,4],[-3,2],[-5,5],[-5,3],[-5,3],[-5,4],[-2,1],[-4,2],[-3,2],[-5,1],[-4,0],[-5,-2],[-6,-3],[-6,-1],[-8,-1],[-1,1],[-2,1],[-2,1],[-4,3],[-7,4],[-4,2],[-8,2],[-6,0],[-6,-1],[-4,1],[-4,3],[-5,3],[-5,1],[-3,3],[-2,2],[-1,1],[-3,8],[-1,7],[-3,9],[-3,6],[-1,3],[-2,1],[-4,3],[-5,4],[-6,4],[-7,5],[-8,5],[-10,3],[-5,0],[-3,1],[-2,1],[-3,1],[-2,1],[-3,0],[-4,-1],[-5,-1],[-4,-1],[-2,-2],[-6,-4],[-2,0],[-2,0],[-1,2],[-3,4],[-4,4],[-2,2],[-2,3],[-4,3],[-4,2],[-5,3],[-5,2],[-5,1],[-4,6],[-2,4],[-2,3],[-3,2],[-2,1],[-1,1],[-4,0],[-5,2],[-5,4],[-1,3],[-1,3],[-1,2],[0,3],[0,4],[0,5],[-1,2],[-2,5],[-9,6],[-2,2],[-1,3],[-2,2],[-4,4],[-3,-1],[-4,-1],[-6,-2],[-3,1],[-9,3],[-2,1],[-2,0],[-4,0],[-9,0],[-3,0],[-3,1],[-1,2],[-2,2],[-2,3],[-4,6],[-3,4],[-6,6],[-5,5],[-3,3],[-2,1],[-4,0],[-6,-1],[-3,-2],[-8,-1],[-8,-1],[-5,0],[-5,2],[-4,3],[-3,2],[-2,1],[-2,2],[-2,0],[-6,4],[-3,3],[-3,3],[-3,5],[-4,7],[-2,4],[-3,4],[-5,3],[-6,3],[-3,0],[-2,0],[-1,0],[-3,-1],[-1,-1],[-4,-2],[-3,0],[-3,1],[-3,1],[-5,5],[-4,3],[-4,1],[-2,1],[-3,0],[-6,-1],[-4,2],[-3,4],[-2,6],[-2,2],[-2,2],[-2,1],[-2,1],[-6,0],[-4,3],[-4,6],[-4,5],[-3,4],[-3,3],[-3,2],[-6,4],[-5,1],[-4,0],[-4,-2],[-4,0],[-6,1],[-2,1],[-2,2],[-3,6],[-3,5],[-10,0],[-2,-1],[-4,2],[-4,4],[-4,4],[-4,4],[-3,3],[-2,2],[-3,1],[-1,0],[-4,0],[-6,0],[-4,3],[-3,5],[-2,1],[-1,1],[-2,1],[-3,1],[-4,0],[-4,-1],[-6,-1],[-3,0],[-1,0],[-2,1],[-2,1],[-2,2],[-3,3],[-7,10],[-5,7],[-2,1],[-2,1],[-4,1],[-4,0],[-6,-1],[-4,1],[-4,2],[-3,2],[-4,4],[-3,2],[-3,0],[-4,1],[-5,1],[-5,2],[-3,1],[-5,2],[-5,1],[-5,2],[-5,1],[-3,3],[-2,3],[-1,2],[-3,5],[-2,3],[-1,3],[-2,2],[-1,0],[-3,0],[-5,0],[-4,2],[-4,3],[-2,1],[-3,3],[-2,3],[-4,4],[-6,9],[-1,7],[-3,7],[-4,4],[-3,5],[-3,3],[-3,5],[-2,5],[-3,4],[-3,4],[-2,3],[-2,4],[-1,2],[-2,4],[-2,6],[-1,1],[-2,6],[-5,6],[-2,3],[-2,2],[-2,2],[-1,2],[-1,3],[-2,3],[-2,2],[-3,0],[-5,0],[-3,-1],[-3,0],[-3,0],[-3,0],[-4,2],[-5,2],[-3,2],[-2,1],[-3,0],[-3,0],[-2,1],[-2,1],[-3,1],[-1,2],[-1,2],[-2,5],[-4,8],[-3,4],[-1,1],[-4,-1],[-3,-1],[-4,-3],[-4,-3],[-4,-1],[-3,-1],[-2,1],[-1,1],[-4,4],[-3,3],[-5,3],[-6,2],[-4,4],[-1,3],[-1,3],[-2,2],[-3,0],[-4,0],[-7,2],[-3,4],[-2,5],[-3,1],[-1,10],[0,5],[-1,3],[-1,2],[-2,4],[-4,6],[-3,5],[-2,2],[-1,2],[-3,1],[-1,0],[-2,0],[-3,-1],[-6,-1],[-2,0],[-3,3],[-4,4],[-5,1],[-5,1],[-3,1],[-4,2],[-5,3],[-5,4],[-7,3],[-6,3],[-1,1],[-1,2],[0,1],[-1,2],[-1,3],[-1,2],[-2,7],[-2,6],[-2,7],[-3,9],[0,1],[-1,4],[-3,7],[-2,5],[-3,9],[-3,9],[-1,2],[-2,2],[-1,2],[-2,2],[-1,3],[-4,3],[-4,4],[-4,2],[-3,2],[-2,1],[-2,0],[-4,0],[-3,1],[-2,2],[-1,2],[-1,3],[-2,8],[-2,3],[-2,2],[-3,2],[-3,2],[-5,1],[-5,2],[-6,3],[-3,2],[0,1],[-1,4],[-1,2],[-1,1],[-1,0],[-1,1],[-5,0],[-6,-1],[-4,1],[-5,3],[-2,3],[-1,2],[-1,4],[-1,7],[0,5],[0,5],[-4,5],[-5,3],[-2,3],[-4,4],[-2,3],[-4,5],[-3,4],[-6,6],[-3,3],[-1,3],[-1,1],[-1,3],[-3,1],[-4,4],[-4,1],[-5,0],[-4,0],[-3,-1],[-3,1],[0,1],[-1,1],[0,1],[-2,5],[-4,3],[-6,4],[-3,3],[-3,2],[-4,4],[-4,2],[-6,-1],[-3,-1],[-4,-2],[-3,-2],[-2,-2],[-4,0],[-4,2],[-3,3],[-4,3],[-3,2],[-2,2],[-4,6],[-3,4],[-3,4],[-3,4],[-2,2],[-1,3],[1,3],[1,5],[0,5],[0,3],[0,2],[-1,2],[-3,2],[-2,1],[-1,0],[-2,0],[-5,-2],[-4,-1],[-6,-1],[-6,1],[-6,1],[-3,1],[-2,0],[-2,-1],[-5,-3],[-5,-2],[-7,-2],[-3,-2],[-4,-1],[-2,0],[-2,1],[-2,2],[-4,5],[-3,6],[-4,8],[-3,3],[-2,2],[-4,2],[-2,0],[-5,0],[-4,2],[-5,1],[-3,1],[-2,1],[-1,1],[-2,2],[-2,3],[-3,1],[-5,0],[-3,2],[-4,3],[-4,1],[-6,-3],[-11,-9],[-3,-2],[-4,-1],[-6,0],[-5,1],[-2,1],[-6,-1],[-4,-1],[-4,2],[-6,0],[-3,-2],[-3,-1],[-6,7],[-9,14],[-4,3],[-2,2],[-3,1],[0,1],[0,3],[0,5],[-3,3],[-2,3],[-1,3],[-1,6],[-2,2],[-4,2],[-7,1],[-8,2],[-6,1],[-9,2],[-8,1],[-6,1],[-7,3],[-5,3],[-3,3],[-2,4],[-3,3],[-4,2],[-5,2],[-4,2],[-3,3],[-4,3],[-5,2],[-6,1],[-3,0],[-4,-1],[-6,-1],[-5,-1],[-7,-1],[-5,1],[-8,3],[-16,7],[-24,10],[-4,2],[-2,1],[-2,1],[-1,4],[-1,4],[-3,5],[-4,7],[-3,4],[-2,1],[-1,1],[-4,3],[-6,7],[-5,5],[-12,0],[-10,0],[-5,1],[-7,0],[-4,-1],[-4,-1],[-4,0],[-2,3],[-3,4],[-5,6],[-4,2],[-4,-1],[-4,-2],[-4,-3],[-5,-2],[-6,2],[-11,1],[-6,2],[-4,3],[-2,4],[-1,3],[-3,7],[-4,6],[-5,5],[-7,3],[-8,1],[-12,1],[-9,0],[-10,2],[-10,6],[-6,4],[-5,5],[-5,5],[-7,6],[-1,0],[-1,1],[-6,1],[-5,1],[-7,0],[-4,0],[-2,2],[-5,5],[-3,4],[-3,5],[-5,8],[-7,7],[-3,4],[-1,0],[-3,1],[-6,-1],[-5,-2],[-7,-2],[-4,1],[-5,3],[-11,8],[-4,2],[-4,5],[-7,6],[-3,2],[-9,1],[-8,-1],[-7,-5],[-3,-3],[-3,-5],[-4,-9],[-4,-8],[-2,-3],[-4,-1],[-7,-1],[-8,-2],[-3,-2],[-5,-3],[-3,-5],[-2,-5],[-1,-8],[-1,-17],[-1,-7],[0,-3],[-2,-6],[-1,-2],[-5,-4],[-3,-3],[-4,-6],[-6,-12],[-1,-3],[0,-7],[0,-7],[-2,-6],[-3,-7],[-4,-5],[-2,-2],[-3,-2],[-5,-1],[-6,0],[-6,-4],[-7,-8],[-13,-13],[-5,-7],[-2,-3],[-2,-19],[-1,-5],[-2,-5],[-2,-5],[-3,-7],[-3,-2],[-13,-1],[-12,1],[-3,2],[-4,2],[-6,1],[-7,1],[-10,1],[-15,1],[-9,-1],[-1,0],[-1,0],[-8,-2],[-6,-2],[-15,-11],[-9,-7],[-4,-2],[-4,1],[-4,3],[-6,4],[-6,4],[-5,2],[-4,2],[-8,3],[-9,0],[-5,0],[-5,2],[-5,4],[-4,4],[-3,5],[-7,13],[-3,7],[-3,5],[-5,7],[-6,10],[-3,4],[-3,1],[-7,2],[-11,3],[-10,3],[-6,4],[-7,4],[-4,3],[-2,2],[-5,2],[-5,1],[-7,2],[-4,1],[-6,2],[-7,4],[-13,10],[-9,2],[-12,1],[-29,0],[-12,1],[-5,1],[-6,3],[-11,8],[-4,2],[-4,1],[-13,1],[-7,0],[-3,1],[-5,1],[-8,3],[-8,4],[-6,3],[-5,2],[-8,0],[-12,1],[-5,1],[-6,2],[-5,4],[-5,7],[-7,8],[-6,5],[-1,1],[-3,3],[-9,5],[-11,12],[-7,6],[-4,6],[-4,6],[-2,7],[-3,10],[-3,5],[-8,10],[-6,12],[-2,3],[-3,2],[-5,1],[-7,0],[-4,-1],[-3,-3],[-4,-3],[-4,-2],[-3,-1],[-23,-8],[-3,-4],[-1,-6],[-1,-5],[-3,-5],[-9,-10],[-4,-4],[-2,-5],[-1,-4],[-3,-2],[-3,-1],[-6,0],[-6,-2],[-5,-2],[-5,-3],[-4,-8],[-2,0],[-5,-1],[-5,1],[-8,1],[-12,1],[-7,-2],[-4,-4],[-9,-13],[-2,-3],[-7,-11],[-2,-2],[-4,-2],[-3,-3],[-8,-9],[-6,-3],[-2,0],[-7,1],[-4,1],[-7,-2],[-8,-1],[-8,-1],[-10,2],[-7,2],[-6,1],[-10,0],[-6,-1],[-4,-3],[-3,-5],[-3,-7],[-3,-9],[-3,-4],[-4,-6],[-2,-5],[-3,-11],[-2,-2],[-2,0],[-4,0],[-4,2],[-6,5],[-5,3],[-6,2],[-6,2],[-13,1],[-7,0],[-6,1],[-8,3],[-7,3],[-9,7],[-7,4],[-6,0],[-4,-2],[-5,-5],[-8,-7],[-8,-5],[-7,-4],[-8,-3],[-5,-3],[-5,-5],[-4,-5],[-5,-3],[-11,-5],[-5,-4],[-6,-6],[-6,-16],[-3,-5],[-3,-4],[-6,-4],[-4,0],[-5,2],[-4,1],[-4,-1],[-5,-4],[-6,-3],[-4,-1],[-3,0],[-5,1],[-6,-2],[-1,-1],[-12,-5],[-8,-2],[-10,-1],[-6,1],[-5,1],[-2,2],[-2,1],[-3,-4],[-5,-6],[-2,-6],[-4,-7],[-4,-5],[-7,-4],[-5,-2],[-4,-2],[-9,-8],[-4,-5],[-5,-6],[-4,-6],[-5,-1],[-5,0],[-4,2],[-7,3],[-7,4],[-6,3],[-5,0],[-5,-2],[-8,-1],[-11,0],[-14,-2],[-6,-2],[-4,1],[-4,1],[-3,2],[-8,0],[-3,0],[-5,-2],[-7,-2],[-2,12],[-2,10],[-4,10],[-4,11],[-1,4],[0,6],[2,5],[-1,6],[-6,14],[-3,6],[-4,4],[-7,8],[-3,7],[-2,8],[-1,5],[-4,3],[-3,1],[-8,-2],[-5,-1],[-9,3],[-10,9],[-9,11],[-1,4],[0,9],[0,1],[-3,8],[-3,10],[-6,27],[0,11],[1,12],[1,6],[4,11],[1,9],[0,2],[-3,8],[-2,6],[0,3],[1,2],[6,5],[4,4],[1,3],[0,3],[1,10],[0,4],[3,4],[4,2],[3,2],[6,5],[6,10],[2,5],[1,5],[0,6],[2,9],[0,10],[-1,2],[-3,4],[-2,3],[-3,6],[-5,8],[-3,8],[-1,2],[0,4],[1,4],[1,7],[2,11],[1,5],[-1,5],[-1,8],[-1,3],[0,7],[1,4],[1,3],[1,4],[8,16],[6,13],[2,8],[0,3],[-2,5],[-2,1],[-2,3],[-2,3],[-2,4],[0,6],[0,8],[0,1],[0,10],[0,7],[-2,8],[0,6],[0,5],[1,5],[3,5],[4,5],[6,7],[15,12],[7,7],[3,3],[1,4],[-2,3],[-6,5],[-2,2],[-2,3],[-1,3],[-1,4],[-1,6],[0,11],[-1,5],[-1,5],[-2,4],[-6,14],[-3,7],[-3,6],[-3,7],[-3,8],[-2,4],[0,6],[1,4],[0,5],[-2,5],[-2,5],[-2,5],[-1,4],[0,10],[0,21],[0,11],[-1,7],[-1,5],[-1,3],[0,1],[1,18],[0,4],[-1,4],[-2,4],[-2,5],[-2,1],[-5,4],[-7,6],[-5,6],[-4,3],[-10,10],[-2,2],[0,3],[-1,4],[3,13],[0,5],[0,4],[-1,4],[-1,3],[0,6],[1,12],[-1,3],[-1,6],[0,6],[0,6],[2,9],[3,13],[3,5],[0,4],[0,6],[0,12],[0,4],[-1,4],[0,3],[0,15],[-1,17],[-1,6],[-1,5],[-1,4],[-2,3],[-3,5],[-5,6],[-3,3],[-4,2],[1,5],[0,3],[1,1],[2,5],[2,3],[4,6],[6,8],[4,7],[3,7],[1,6],[1,3],[2,3],[7,9],[3,4],[4,8],[4,6],[3,5],[3,5],[7,8],[4,4],[2,5],[2,4],[1,4],[2,15],[2,9],[1,5],[2,9],[3,13],[3,7],[3,9],[2,7],[3,6],[3,4],[3,3],[3,2],[3,2],[3,1],[4,2],[4,1],[2,2],[2,3],[2,6],[1,3],[1,2],[1,3],[1,3],[1,2],[2,3],[2,3],[2,1],[4,2],[4,2],[3,2],[1,1],[3,3],[3,4],[3,4],[3,4],[4,7],[3,6],[2,5],[0,5],[1,4],[0,6],[1,10],[-1,20],[0,2],[2,3],[3,3],[4,3],[6,2],[4,3],[3,2],[2,4],[2,6],[2,5],[3,15],[3,8],[2,4],[5,4],[3,2],[4,4],[2,3],[2,2],[3,4],[2,6],[5,6],[4,5],[3,3],[16,21],[2,3],[4,3],[8,10],[2,4],[2,1],[3,1],[3,2],[2,2],[2,6],[1,4],[1,2],[4,7],[3,6],[3,5],[2,1],[4,2],[3,2],[3,1],[6,2],[3,2],[2,2],[4,7],[4,8],[3,6],[2,5],[1,4],[1,6],[2,5],[2,4],[2,3],[3,2],[5,5],[8,6],[4,2],[6,1],[9,0],[4,0],[3,-2],[2,-3],[2,-4],[2,-9],[2,-5],[2,-4],[3,-2],[4,0],[14,-1],[12,0],[3,1],[5,2],[3,2],[0,5],[1,5],[1,5],[3,8],[1,5],[4,6],[3,5],[3,4],[6,8],[5,6],[4,4],[3,2],[2,5],[4,5],[2,5],[0,5],[0,5],[0,10],[0,4],[1,6],[1,2],[1,1],[4,3],[7,4],[5,5],[3,5],[2,8],[2,5],[1,2],[7,6],[3,3],[1,4],[1,3],[0,5],[0,5],[-1,5],[-2,10],[0,3],[0,2],[2,4],[4,6],[1,3],[3,4],[3,2],[3,1],[5,1],[6,0],[7,1],[4,1],[2,2],[1,5],[1,13],[4,9],[4,6],[8,15],[8,11],[5,4],[3,2],[0,1],[6,3],[5,1],[4,3],[2,1],[4,8],[1,4],[2,6],[3,8],[3,1],[3,1],[6,1],[8,0],[7,0],[4,-1],[5,-1],[9,-3],[3,0],[5,1],[3,4],[2,4],[6,15],[3,7],[3,3],[2,2],[4,0],[4,-1],[6,-4],[7,-3],[4,-1],[3,0],[7,6],[8,7],[5,2],[4,1],[7,1],[4,0],[10,-1],[14,-2],[8,1],[5,2],[5,5],[3,2],[2,3],[12,15],[5,7],[3,4],[2,3],[2,2],[3,1],[4,1],[3,1],[3,1],[5,0],[4,0],[9,5],[4,1],[2,1],[4,2],[4,2],[2,2],[1,7],[-1,9],[1,10],[1,6],[2,5],[2,3],[4,5],[5,4],[3,3],[4,2],[3,4],[2,3],[1,3],[1,5],[2,4],[2,2],[3,2],[2,1],[5,3],[3,3],[2,2],[2,4],[1,5],[-1,12],[0,21],[-1,4],[-1,4],[-3,6],[-2,8],[0,3],[0,19],[1,11],[1,5],[1,2],[3,2],[4,3],[3,4],[3,5],[4,8],[7,12],[3,5],[3,4],[5,5],[5,4],[7,4],[4,2],[6,4],[5,3],[2,2],[1,3],[0,2],[1,10],[2,8],[1,3],[2,2],[3,2],[4,2],[3,3],[10,6],[4,2],[5,2],[11,2],[10,1],[6,0],[6,-2],[6,-2],[4,-1],[2,0],[10,4],[4,0],[5,0],[8,-2],[6,-1],[9,-5],[2,-1],[5,0],[4,1],[3,1],[1,0],[4,-1],[4,-3],[2,-3],[3,-1],[4,1],[19,-5],[4,-3],[5,-2],[4,-3],[8,-4],[10,-6],[4,-1],[5,-2],[4,0],[5,-1],[5,2],[7,2],[4,3],[8,7],[5,7],[4,4],[3,1],[3,1],[2,0],[4,0],[4,0],[4,0],[3,1],[6,2],[3,3],[9,9],[11,10],[4,5],[4,3],[4,3],[4,2],[8,4],[10,6],[3,1],[7,5],[10,8],[5,7],[3,3],[2,4],[4,12],[5,19],[1,8],[2,9],[1,4],[2,2],[2,2],[3,3],[5,1],[3,2],[2,2],[4,6],[8,12],[3,3],[4,3],[5,2],[5,2],[4,1],[14,3],[7,1],[8,2],[8,2],[17,6],[8,4],[2,0],[3,1],[4,-4],[3,-3],[2,-2],[2,-1],[2,1],[4,-2],[2,1],[2,2],[3,3],[4,3],[1,1],[2,1],[4,1],[5,1],[3,1],[3,0],[6,0],[5,0],[2,1],[1,2],[0,4],[-1,8],[0,6],[1,3],[2,2],[5,5],[8,7],[5,4],[6,4],[3,4],[4,4],[4,6],[4,1],[4,0],[8,0],[5,-2],[3,-3],[3,-4],[2,-1],[4,-2],[2,2],[2,1],[3,-1],[3,-1],[3,-1],[3,1],[9,5],[4,3],[10,7],[7,5],[5,4],[5,1],[5,2],[3,-1],[2,1],[4,3],[3,1],[7,-2],[7,-1],[12,0],[5,0],[2,0],[5,-1],[6,-1],[2,0],[2,4],[6,8],[2,4],[5,3],[2,2],[5,5],[2,4],[1,2],[3,1],[3,1],[5,0],[5,-1],[5,-4],[6,-5],[11,-9],[4,-4],[3,-3],[8,-5],[6,-4],[7,-4],[4,-3],[3,-3],[7,-9],[5,-8],[5,-7],[4,-7],[6,-6],[3,-6],[4,-4],[2,-2],[5,-5],[4,-1],[4,-2],[3,-2],[3,-3],[4,-4],[5,-6],[4,-4],[3,-2],[4,-3],[5,-4],[4,-3],[1,-1],[6,-5],[5,-4],[4,-4],[3,-4],[2,-5],[1,-6],[1,-2],[4,1],[4,2],[3,-1],[4,0],[4,1],[6,-2],[4,-3],[4,-2],[4,0],[10,-2],[7,-4],[5,-4],[5,-3],[7,-3],[6,-3],[5,-3],[4,0],[6,0],[5,2],[3,4],[3,3],[3,3],[11,5],[6,2],[12,4],[8,4],[7,3],[5,2],[5,1],[3,-1],[2,0],[4,-3],[3,-5],[2,-5],[8,-18],[2,-3],[2,-2],[1,-2],[6,-2],[10,-3],[10,0],[4,0],[3,3],[4,6],[8,9],[5,4],[3,2],[2,1],[4,-2],[2,-2],[3,-3],[4,-2],[2,0],[7,1],[9,4],[4,0],[3,-1],[3,-2],[1,-3],[1,-5],[2,-3],[3,-5],[2,-1],[7,-6],[6,-1],[5,0],[9,0],[6,-2],[4,-1],[5,-1],[4,-1],[8,0],[4,-1],[2,-1],[6,2],[11,5],[1,0],[4,1],[1,-1],[2,-1],[1,-2],[1,-3],[1,-4],[2,-3],[1,-3],[4,-3],[3,-1],[7,0],[9,0],[6,1],[10,3],[4,2],[4,2],[4,4],[4,8],[3,3],[5,2],[7,1],[8,0],[8,0],[5,0],[9,1],[7,-1],[3,-4],[3,-5],[2,-4],[2,-4],[3,0],[6,0],[10,0],[5,3],[4,2],[6,3],[6,3],[2,3],[6,7],[3,4],[6,3],[6,2],[6,0],[6,1],[3,1],[4,1],[4,2],[2,3],[5,3],[5,5],[3,4],[1,5],[2,8],[4,9],[5,10],[4,4],[5,5],[8,4],[8,4],[5,1],[9,1],[8,-1],[3,-2],[5,0],[7,2],[9,2],[8,3],[3,0],[5,-1],[8,-3],[9,-1],[7,0],[8,-3],[6,-3],[5,-3],[5,-1],[7,-2],[4,-1],[6,-2],[4,-3],[1,-2],[4,-5],[4,-4],[5,-3],[5,-3],[7,-1],[4,0],[4,1],[4,1],[7,1],[1,0],[7,1],[6,0],[7,-1],[7,-1],[6,-1],[5,1],[4,3],[5,4],[5,3],[5,3],[5,1],[9,1],[7,-1],[6,-1],[6,-2],[8,-2],[12,-1],[8,-1],[8,0],[13,0],[6,-1],[5,-2],[5,-2],[6,0],[4,-1],[5,-3],[1,-2],[1,-2],[0,-8],[-1,-19],[0,-7],[0,-2],[-1,-8],[-1,-7],[-2,-7],[0,-7],[2,-7],[0,-5],[0,-5],[1,-10],[2,-12],[0,-4],[-2,-9],[-2,-12],[-3,-21],[-2,-17],[-2,-12],[0,-7],[0,-8],[0,-8],[1,-12],[1,-11],[0,-5],[0,-4],[-2,-13],[-2,-8],[-1,-10],[-3,-14],[-3,-8],[-3,-5],[-1,-4],[1,-5],[1,-10],[0,-5],[0,-2],[-1,-3],[-1,-9],[-2,-9],[-1,-4],[-4,-14],[-5,-14],[-4,-13],[-4,-9],[-2,-7],[-1,-6],[1,-4],[1,-5],[-1,-5],[-2,-5],[-1,-5],[-1,-4],[0,-7],[1,-6],[2,-3],[1,2],[2,4],[2,7],[2,8],[3,6],[1,5],[4,3],[3,1],[4,0],[6,-1],[4,-1],[9,1],[3,1],[4,3],[4,5],[12,11],[4,4],[8,7],[6,4],[5,3],[6,3],[5,0],[7,1],[5,-1],[3,0],[2,2],[2,7],[3,9],[3,6],[3,8],[2,4],[3,4],[2,2],[4,2],[5,1],[1,1],[2,1],[4,3],[3,2],[0,2],[0,5],[1,8],[-1,19],[-1,6],[-2,5],[-1,5],[1,4],[1,21],[-1,11],[-2,9],[-2,15],[-2,10],[-2,9],[-3,9],[-2,8],[-2,7],[-1,7],[1,1],[0,6],[2,2],[3,2],[6,0],[8,-2],[2,-1],[4,-2],[1,-1],[2,0],[3,1],[5,1],[6,1],[6,-2],[5,-1],[6,-1],[1,-1],[4,0],[2,0],[1,1],[3,1],[2,2],[4,5],[3,3],[5,2],[6,3],[6,1],[1,0],[6,3],[14,6],[5,2],[8,2],[7,2],[5,2],[4,2],[5,4],[6,5],[7,5],[3,2],[2,0],[3,1],[3,1],[2,0],[5,0],[5,0],[2,1],[2,0],[3,2],[2,2],[0,3],[0,4],[1,4],[1,0],[1,2],[4,0],[4,-3],[3,-1],[3,-2],[3,0],[2,2],[1,2],[2,6],[1,3],[2,3],[2,3],[5,1],[7,1],[5,1],[5,1],[5,3],[2,3],[1,6],[0,6],[-2,3],[-1,3],[0,3],[0,2],[1,5],[1,0],[1,0],[2,0],[3,-1],[6,-2],[4,-1],[5,-1],[3,-2],[2,-1],[1,0],[1,1],[2,3],[2,1],[1,0],[4,-2],[6,-1],[2,1],[4,1],[5,2],[2,0],[2,-1],[2,-3],[2,-4],[2,-4],[3,-1],[3,0],[5,4],[2,2],[4,2],[6,1],[6,-1],[4,0],[1,1],[2,3],[1,3],[2,2],[2,1],[4,-1],[6,0],[5,1],[4,3],[6,4],[2,2],[5,3],[8,2],[4,0],[4,-2],[2,-1],[2,-4],[0,-7],[0,-9],[1,-3],[2,-3],[2,-2],[2,-4],[2,-4],[4,-4],[4,-1],[3,-1],[7,2],[1,0],[3,0],[4,-1],[5,0],[2,2],[3,3],[1,3],[0,1],[3,6],[2,3],[3,2],[3,2],[3,3],[5,3],[4,2],[5,1],[4,1],[3,-1],[3,-3],[7,-3],[5,-2],[2,-1],[2,-3],[2,-2],[2,-5],[2,-4],[2,-3],[3,-3],[4,-8],[2,-2],[2,-1],[3,-1],[3,-2],[3,-3],[2,-3],[0,-4],[2,-3],[2,-3],[4,-3],[4,0],[7,0],[2,0],[3,2],[3,1],[5,-1],[2,-2],[2,-3],[2,-1],[3,-2],[3,-1],[3,-2],[6,-5],[7,-4],[4,-3],[4,-4],[5,-1],[5,2],[3,0],[4,0],[5,-1],[3,1],[5,2],[5,5],[3,4],[3,2],[5,2],[6,1],[1,0],[6,0],[5,-1],[7,0],[6,0],[3,1],[5,2],[4,1],[8,0],[5,0],[10,0],[6,1],[4,0],[2,-1],[5,-2],[2,-1],[3,1],[4,1],[6,1],[4,-2],[2,-2],[4,-2],[7,1],[5,0],[6,2],[8,3],[3,2],[3,2],[8,2],[5,1],[7,-1],[5,0],[3,0],[3,0],[5,1],[6,2],[7,4],[5,2],[6,-1],[6,-2],[6,-4],[3,-1],[3,-2],[4,-1],[5,0],[5,0],[8,-1],[3,0],[5,1],[9,-2],[8,-2],[6,-3],[6,-2],[5,-3],[12,-6],[6,-4],[9,-5],[9,-6],[6,-4],[7,-6],[6,-6],[6,-6],[2,-3],[7,-8],[4,-4],[5,-2],[5,-1],[3,1],[2,0],[6,3],[9,2],[6,1],[12,-2],[11,0],[9,0],[16,-1],[7,1],[4,-1],[5,0],[5,2],[7,3],[4,1],[5,0],[5,-1],[5,-2],[6,0],[8,1],[4,1],[3,3],[5,4],[5,1],[4,1],[10,0],[5,1],[16,0],[10,0],[7,-1],[3,-2],[6,-1],[7,-1],[6,-1],[3,1],[3,2],[4,5],[4,4],[3,4],[2,2],[1,0],[3,0],[4,-2],[4,-2],[7,-1],[5,1],[4,1],[2,1],[2,1],[2,1],[5,5],[6,5],[3,0],[1,0],[3,-1],[4,0],[4,1],[4,3],[6,5],[8,4],[6,5],[4,4],[3,4],[3,5],[4,5],[2,2],[4,2],[6,1],[5,0],[6,-2],[4,-2],[3,-1],[4,-3],[4,-2],[4,0],[6,1],[5,0],[7,2],[8,1],[7,2],[6,0],[7,0],[8,-1],[6,-1],[7,-1],[5,-1],[6,1],[4,2],[9,3],[3,2],[5,3],[3,2],[1,2],[2,5],[1,1],[3,10],[1,4],[5,14],[4,6],[4,7],[2,-1],[2,2],[1,0],[2,3],[4,5],[1,0],[3,2],[5,0],[7,-2],[4,-2],[11,-5],[6,0],[5,1],[4,1],[7,1],[5,1],[5,0],[4,-2],[3,-3],[2,-3],[3,-2],[4,-2],[18,-4],[6,-2],[3,-2],[4,-2],[2,-3],[3,-4],[0,-5],[0,-8],[4,-25],[2,-9],[2,-5],[2,-1],[2,-1],[5,0],[7,-2],[4,-1],[10,-3],[6,-1],[5,0],[7,-1],[4,-1],[4,-2],[5,-3],[4,-4],[3,-3],[5,-7],[3,-4],[3,-7],[5,-3],[2,0],[7,0],[2,0],[1,1],[2,15],[2,9],[1,5],[2,6],[3,3],[4,6],[1,4],[8,19],[6,19],[2,15],[1,8],[-1,9],[-1,8],[-1,9],[-1,6],[1,10],[1,9],[2,9],[1,8],[2,3],[3,4],[5,5],[3,3],[4,3],[4,5],[5,6],[3,6],[7,8],[4,5],[7,7],[4,7],[7,10],[6,9],[4,5],[2,2],[4,5],[6,5],[5,3],[6,2],[8,2],[5,0],[9,1],[12,-2],[3,0],[4,0],[10,-2],[8,0],[5,1],[6,2],[6,3],[7,7],[8,7],[4,3],[2,2],[3,1],[3,1],[6,-2],[4,-1],[4,-2],[3,-2],[1,-2],[2,-1],[1,-1],[2,-4],[3,-5],[2,0],[2,1],[2,1],[4,3],[1,1],[3,2],[1,1],[3,3],[2,0],[2,0],[1,0],[4,0],[3,1],[6,2],[5,2],[7,3],[7,6],[2,2],[4,1],[4,-2],[4,-2],[4,0],[3,1],[5,4],[3,4],[3,4],[3,4],[3,4],[3,2],[4,5],[4,1],[4,-2],[4,-5],[2,1]]]}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment