Skip to content

Instantly share code, notes, and snippets.

@mbostock
Last active February 9, 2016 02:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save mbostock/6905926 to your computer and use it in GitHub Desktop.
Save mbostock/6905926 to your computer and use it in GitHub Desktop.
Snowflake Simplification
license: gpl-3.0
#!/usr/bin/env node
var width = 960,
height = 500;
console.log(JSON.stringify({
type: "GeometryCollection",
geometries: [
lSystem("FRFRFRFR", "FLFRFRFFLFLFRF", -Math.PI / 2, Math.PI / 2)(-128 + width * .35, height / 4),
lSystem("FRFRFRFR", "FLFRFRFFLFLFRF", -Math.PI / 2, Math.PI / 2)(128 + width * .35, height / 4)
]
}));
function lSystem(initial, replacement, left, right) {
var segments = initial.match(/F/g).length;
return function(x, y) {
var flake = initial,
iterations = 3,
d = 64 / Math.pow(segments, iterations - 1),
line = [];
for (var i = 0; i < iterations; ++i) flake = flake.replace(/F/g, replacement);
for (var angle = 0, move, i = 0, n = flake.length; i < n; ++i) {
move = flake.charAt(i);
if (move === "F") {
line.push([
x += d * Math.cos(angle) | 0,
y += d * Math.sin(angle) | 0
]);
} else {
angle += move === "L" ? left : right;
}
}
line.push(line[0]);
return {type: "Polygon", coordinates: [line]};
};
}
<!DOCTYPE html>
<meta charset="utf-8">
<style>
.koch {
fill: #eee;
stroke: #000;
}
.overlay {
fill: none;
pointer-events: all;
}
</style>
<body>
<script src="//d3js.org/d3.v3.min.js"></script>
<script src="//d3js.org/topojson.v1.min.js"></script>
<script>
var width = 960,
height = 500;
var area = 1, simplify = d3.geo.transform({
point: function(x, y, z) {
if (z >= area) this.stream.point(x, y);
}
});
var x = d3.scale.sqrt()
.domain([0, 1e4])
.range([0, width]);
var path = d3.geo.path()
.projection(simplify);
var svg = d3.select("body").append("svg")
.attr("width", width)
.attr("height", height);
svg.append("rect")
.attr("class", "overlay")
.attr("width", width)
.attr("height", height)
.on("mousemove", mousemoved);
d3.json("snowflake.json", function(error, topo) {
if (error) throw error;
svg.insert("path", ".overlay")
.datum(topojson.feature(topojson.presimplify(topo), topo.objects.snowflake))
.attr("class", "koch")
.attr("d", path);
});
function mousemoved() {
area = x.invert(d3.mouse(this)[0]);
svg.select(".koch").attr("d", path);
}
</script>
all: snowflake.json
clean:
rm -f -- snowflake.json
snowflake.json: create-snowflake
./create-snowflake | \
node_modules/.bin/topojson \
-o $@ \
-q 0 \
--cartesian \
-- \
snowflake=/dev/stdin
{
"name": "anonymous",
"version": "0.0.1",
"private": true,
"devDependencies": {
"topojson": "1"
}
}
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","objects":{"snowflake":{"type":"GeometryCollection","geometries":[{"type":"Polygon","arcs":[[0,1]]},{"type":"Polygon","arcs":[[-1,2]]}]}},"arcs":[[[464,125],[464,129],[468,129],[468,133],[464,133],[460,133],[460,137],[464,137],[464,141],[468,141],[468,137],[472,137],[472,141],[472,145],[476,145],[476,141],[480,141],[480,145],[484,145],[484,149],[480,149],[476,149],[476,153],[480,153],[480,157],[476,157],[476,161],[472,161],[472,157],[472,153],[468,153],[468,157],[464,157],[460,157],[460,161],[456,161],[456,157],[456,153],[452,153],[452,157],[448,157],[448,161],[452,161],[452,165],[448,165],[444,165],[444,169],[448,169],[448,173],[452,173],[452,169],[456,169],[456,173],[456,177],[460,177],[460,173],[464,173],[464,177],[468,177],[468,181],[464,181],[460,181],[460,185],[464,185],[464,189],[468,189],[468,185],[472,185],[472,189],[472,193],[476,193],[476,189],[480,189],[480,185],[476,185],[476,181],[480,181],[484,181],[484,177],[480,177],[480,173],[484,173],[484,169],[488,169],[488,173],[488,177],[492,177],[492,173],[496,173],[496,177],[500,177],[500,181],[496,181],[492,181],[492,185],[496,185],[496,189],[496,193],[500,193],[500,197],[496,197],[492,197],[492,201],[496,201],[496,205],[500,205],[500,201],[504,201],[504,205],[504,209],[508,209],[508,205],[512,205],[512,201],[508,201],[508,197],[512,197],[516,197],[516,193],[512,193],[512,189],[516,189],[516,185],[520,185],[520,189],[520,193],[524,193],[524,189],[528,189],[528,193],[532,193],[532,197],[528,197],[524,197],[524,201],[528,201],[528,205],[532,205],[532,201],[536,201],[536,205],[536,209],[540,209],[540,205],[544,205],[544,209],[548,209],[548,213],[544,213],[540,213],[540,217],[544,217],[544,221],[540,221],[540,225],[536,225],[536,221],[536,217],[532,217],[532,221],[528,221],[524,221],[524,225],[520,225],[520,221],[520,217],[516,217],[516,221],[512,221],[512,225],[516,225],[516,229],[512,229],[508,229],[508,233],[512,233],[512,237],[516,237],[516,233],[520,233],[520,237],[520,241],[524,241],[524,237],[528,237],[528,241],[532,241],[532,245],[528,245],[524,245],[524,249],[528,249],[528,253],[524,253],[524,257],[520,257],[520,253],[520,249],[516,249],[516,253],[512,253],[512,257],[516,257],[516,261],[512,261],[508,261],[508,265],[512,265],[512,269],[508,269],[508,273],[504,273],[504,269],[504,265],[500,265],[500,269],[496,269],[496,265],[492,265],[492,261],[496,261],[500,261],[500,257],[496,257],[496,253],[496,249],[492,249],[492,245],[496,245],[500,245],[500,241],[496,241],[496,237],[492,237],[492,241],[488,241],[488,237],[488,233],[484,233],[484,237],[480,237],[480,241],[484,241],[484,245],[480,245],[476,245],[476,249],[480,249],[480,253],[476,253],[476,257],[472,257],[472,253],[472,249],[468,249],[468,253],[464,253],[460,253],[460,257],[456,257],[456,253],[456,249],[452,249],[452,253],[448,253],[448,257],[452,257],[452,261],[448,261],[444,261],[444,265],[448,265],[448,269],[444,269],[444,273],[440,273],[440,269],[440,265],[436,265],[436,269],[432,269],[432,265],[428,265],[428,261],[432,261],[436,261],[436,257],[432,257],[432,253],[432,249],[428,249],[428,245],[432,245],[436,245],[436,241],[432,241],[432,237],[428,237],[428,241],[424,241],[424,237],[424,233],[420,233],[420,237],[416,237],[416,241],[420,241],[420,245],[416,245],[412,245],[412,249],[416,249],[416,253],[412,253],[412,257],[408,257],[408,253],[408,249],[404,249],[404,253],[400,253],[400,257],[404,257],[404,261],[400,261],[396,261],[396,265],[400,265],[400,269],[404,269],[404,265],[408,265],[408,269],[408,273],[412,273],[412,269],[416,269],[416,273],[420,273],[420,277],[416,277],[412,277],[412,281],[416,281],[416,285],[412,285],[412,289],[408,289],[408,285],[408,281],[404,281],[404,285],[400,285],[396,285],[396,289],[392,289],[392,285],[392,281],[388,281],[388,285],[384,285],[384,289],[388,289],[388,293],[384,293],[380,293],[380,297],[384,297],[384,301],[388,301],[388,297],[392,297],[392,301],[392,305],[396,305],[396,301],[400,301],[400,305],[404,305],[404,309],[400,309],[396,309],[396,313],[400,313],[400,317],[404,317],[404,313],[408,313],[408,317],[408,321],[412,321],[412,317],[416,317],[416,313],[412,313],[412,309],[416,309],[420,309],[420,305],[416,305],[416,301],[420,301],[420,297],[424,297],[424,301],[424,305],[428,305],[428,301],[432,301],[432,305],[436,305],[436,309],[432,309],[428,309],[428,313],[432,313],[432,317],[432,321],[436,321],[436,325],[432,325],[428,325],[428,329],[432,329],[432,333],[436,333],[436,329],[440,329],[440,333],[440,337],[444,337],[444,333],[448,333],[448,329],[444,329],[444,325],[448,325],[452,325],[452,321],[448,321],[448,317],[452,317],[452,313],[456,313],[456,317],[456,321],[460,321],[460,317],[464,317],[464,321],[468,321],[468,325],[464,325],[460,325],[460,329],[464,329],[464,333],[468,333],[468,329],[472,329],[472,333],[472,337],[476,337],[476,333],[480,333],[480,337],[484,337],[484,341],[480,341],[476,341],[476,345],[480,345],[480,349],[476,349],[476,353],[472,353],[472,349],[472,345],[468,345],[468,349],[464,349],[460,349],[460,353],[456,353],[456,349],[456,345],[452,345],[452,349],[448,349],[448,353],[452,353],[452,357],[448,357],[444,357],[444,361],[448,361],[448,365],[452,365],[452,361],[456,361],[456,365],[456,369],[460,369],[460,365],[464,365],[464,369],[468,369],[468,373],[464,373],[460,373],[460,377],[464,377],[464,381]],[[464,381],[460,381],[460,385],[456,385],[456,381],[456,377],[452,377],[452,381],[448,381],[448,385],[452,385],[452,389],[448,389],[444,389],[444,393],[448,393],[448,397],[444,397],[444,401],[440,401],[440,397],[440,393],[436,393],[436,397],[432,397],[432,393],[428,393],[428,389],[432,389],[436,389],[436,385],[432,385],[432,381],[432,377],[428,377],[428,373],[432,373],[436,373],[436,369],[432,369],[432,365],[428,365],[428,369],[424,369],[424,365],[424,361],[420,361],[420,365],[416,365],[416,369],[420,369],[420,373],[416,373],[412,373],[412,377],[416,377],[416,381],[412,381],[412,385],[408,385],[408,381],[408,377],[404,377],[404,381],[400,381],[400,385],[404,385],[404,389],[400,389],[396,389],[396,393],[400,393],[400,397],[404,397],[404,393],[408,393],[408,397],[408,401],[412,401],[412,397],[416,397],[416,401],[420,401],[420,405],[416,405],[412,405],[412,409],[416,409],[416,413],[412,413],[412,417],[408,417],[408,413],[408,409],[404,409],[404,413],[400,413],[396,413],[396,417],[392,417],[392,413],[392,409],[388,409],[388,413],[384,413],[384,417],[388,417],[388,421],[384,421],[380,421],[380,425],[384,425],[384,429],[388,429],[388,425],[392,425],[392,429],[392,433],[396,433],[396,429],[400,429],[400,433],[404,433],[404,437],[400,437],[396,437],[396,441],[400,441],[400,445],[396,445],[396,449],[392,449],[392,445],[392,441],[388,441],[388,445],[384,445],[384,449],[388,449],[388,453],[384,453],[380,453],[380,457],[384,457],[384,461],[380,461],[380,465],[376,465],[376,461],[376,457],[372,457],[372,461],[368,461],[368,457],[364,457],[364,453],[368,453],[372,453],[372,449],[368,449],[368,445],[368,441],[364,441],[364,437],[368,437],[372,437],[372,433],[368,433],[368,429],[364,429],[364,433],[360,433],[360,429],[360,425],[356,425],[356,429],[352,429],[352,433],[356,433],[356,437],[352,437],[348,437],[348,441],[352,441],[352,445],[348,445],[348,449],[344,449],[344,445],[344,441],[340,441],[340,445],[336,445],[336,441],[332,441],[332,437],[336,437],[340,437],[340,433],[336,433],[336,429],[332,429],[332,433],[328,433],[328,429],[328,425],[324,425],[324,429],[320,429],[320,425],[316,425],[316,421],[320,421],[324,421],[324,417],[320,417],[320,413],[324,413],[324,409],[328,409],[328,413],[328,417],[332,417],[332,413],[336,413],[340,413],[340,409],[344,409],[344,413],[344,417],[348,417],[348,413],[352,413],[352,409],[348,409],[348,405],[352,405],[356,405],[356,401],[352,401],[352,397],[348,397],[348,401],[344,401],[344,397],[344,393],[340,393],[340,397],[336,397],[336,393],[332,393],[332,389],[336,389],[340,389],[340,385],[336,385],[336,381],[336,377],[332,377],[332,373],[336,373],[340,373],[340,369],[336,369],[336,365],[332,365],[332,369],[328,369],[328,365],[328,361],[324,361],[324,365],[320,365],[320,361],[316,361],[316,357],[320,357],[324,357],[324,353],[320,353],[320,349],[324,349],[324,345],[328,345],[328,349],[328,353],[332,353],[332,349],[336,349],[340,349],[340,345],[344,345],[344,349],[344,353],[348,353],[348,349],[352,349],[352,345],[348,345],[348,341],[352,341],[356,341],[356,337],[352,337],[352,333],[348,333],[348,337],[344,337],[344,333],[344,329],[340,329],[340,333],[336,333],[336,329],[332,329],[332,325],[336,325],[340,325],[340,321],[336,321],[336,317],[332,317],[332,321],[328,321],[328,317],[328,313],[324,313],[324,317],[320,317],[320,321],[324,321],[324,325],[320,325],[316,325],[316,329],[320,329],[320,333],[316,333],[316,337],[312,337],[312,333],[312,329],[308,329],[308,333],[304,333],[304,329],[300,329],[300,325],[304,325],[308,325],[308,321],[304,321],[304,317],[304,313],[300,313],[300,309],[304,309],[308,309],[308,305],[304,305],[304,301],[300,301],[300,305],[296,305],[296,301],[296,297],[292,297],[292,301],[288,301],[288,305],[292,305],[292,309],[288,309],[284,309],[284,313],[288,313],[288,317],[284,317],[284,321],[280,321],[280,317],[280,313],[276,313],[276,317],[272,317],[272,321],[276,321],[276,325],[272,325],[268,325],[268,329],[272,329],[272,333],[276,333],[276,329],[280,329],[280,333],[280,337],[284,337],[284,333],[288,333],[288,337],[292,337],[292,341],[288,341],[284,341],[284,345],[288,345],[288,349],[284,349],[284,353],[280,353],[280,349],[280,345],[276,345],[276,349],[272,349],[268,349],[268,353],[264,353],[264,349],[264,345],[260,345],[260,349],[256,349],[256,353],[260,353],[260,357],[256,357],[252,357],[252,361],[256,361],[256,365],[260,365],[260,361],[264,361],[264,365],[264,369],[268,369],[268,365],[272,365],[272,369],[276,369],[276,373],[272,373],[268,373],[268,377],[272,377],[272,381],[268,381],[268,385],[264,385],[264,381],[264,377],[260,377],[260,381],[256,381],[256,385],[260,385],[260,389],[256,389],[252,389],[252,393],[256,393],[256,397],[252,397],[252,401],[248,401],[248,397],[248,393],[244,393],[244,397],[240,397],[240,393],[236,393],[236,389],[240,389],[244,389],[244,385],[240,385],[240,381],[240,377],[236,377],[236,373],[240,373],[244,373],[244,369],[240,369],[240,365],[236,365],[236,369],[232,369],[232,365],[232,361],[228,361],[228,365],[224,365],[224,369],[228,369],[228,373],[224,373],[220,373],[220,377],[224,377],[224,381],[220,381],[220,385],[216,385],[216,381],[216,377],[212,377],[212,381],[208,381],[208,377],[204,377],[204,373],[208,373],[212,373],[212,369],[208,369],[208,365],[204,365],[204,369],[200,369],[200,365],[200,361],[196,361],[196,365],[192,365],[192,361],[188,361],[188,357],[192,357],[196,357],[196,353],[192,353],[192,349],[196,349],[196,345],[200,345],[200,349],[200,353],[204,353],[204,349],[208,349],[212,349],[212,345],[216,345],[216,349],[216,353],[220,353],[220,349],[224,349],[224,345],[220,345],[220,341],[224,341],[228,341],[228,337],[224,337],[224,333],[220,333],[220,337],[216,337],[216,333],[216,329],[212,329],[212,333],[208,333],[208,329],[204,329],[204,325],[208,325],[212,325],[212,321],[208,321],[208,317],[204,317],[204,321],[200,321],[200,317],[200,313],[196,313],[196,317],[192,317],[192,321],[196,321],[196,325],[192,325],[188,325],[188,329],[192,329],[192,333],[188,333],[188,337],[184,337],[184,333],[184,329],[180,329],[180,333],[176,333],[176,329],[172,329],[172,325],[176,325],[180,325],[180,321],[176,321],[176,317],[176,313],[172,313],[172,309],[176,309],[180,309],[180,305],[176,305],[176,301],[172,301],[172,305],[168,305],[168,301],[168,297],[164,297],[164,301],[160,301],[160,305],[164,305],[164,309],[160,309],[156,309],[156,313],[160,313],[160,317],[156,317],[156,321],[152,321],[152,317],[152,313],[148,313],[148,317],[144,317],[144,313],[140,313],[140,309],[144,309],[148,309],[148,305],[144,305],[144,301],[140,301],[140,305],[136,305],[136,301],[136,297],[132,297],[132,301],[128,301],[128,297],[124,297],[124,293],[128,293],[132,293],[132,289],[128,289],[128,285],[132,285],[132,281],[136,281],[136,285],[136,289],[140,289],[140,285],[144,285],[148,285],[148,281],[152,281],[152,285],[152,289],[156,289],[156,285],[160,285],[160,281],[156,281],[156,277],[160,277],[164,277],[164,273],[160,273],[160,269],[156,269],[156,273],[152,273],[152,269],[152,265],[148,265],[148,269],[144,269],[144,265],[140,265],[140,261],[144,261],[148,261],[148,257],[144,257],[144,253],[148,253],[148,249],[152,249],[152,253],[152,257],[156,257],[156,253],[160,253],[160,249],[156,249],[156,245],[160,245],[164,245],[164,241],[160,241],[160,237],[164,237],[164,233],[168,233],[168,237],[168,241],[172,241],[172,237],[176,237],[176,241],[180,241],[180,245],[176,245],[172,245],[172,249],[176,249],[176,253],[176,257],[180,257],[180,261],[176,261],[172,261],[172,265],[176,265],[176,269],[180,269],[180,265],[184,265],[184,269],[184,273],[188,273],[188,269],[192,269],[192,265],[188,265],[188,261],[192,261],[196,261],[196,257],[192,257],[192,253],[196,253],[196,249],[200,249],[200,253],[200,257],[204,257],[204,253],[208,253],[212,253],[212,249],[216,249],[216,253],[216,257],[220,257],[220,253],[224,253],[224,249],[220,249],[220,245],[224,245],[228,245],[228,241],[224,241],[224,237],[228,237],[228,233],[232,233],[232,237],[232,241],[236,241],[236,237],[240,237],[240,241],[244,241],[244,245],[240,245],[236,245],[236,249],[240,249],[240,253],[240,257],[244,257],[244,261],[240,261],[236,261],[236,265],[240,265],[240,269],[244,269],[244,265],[248,265],[248,269],[248,273],[252,273],[252,269],[256,269],[256,265],[252,265],[252,261],[256,261],[260,261],[260,257],[256,257],[256,253],[260,253],[260,249],[264,249],[264,253],[264,257],[268,257],[268,253],[272,253],[272,249],[268,249],[268,245],[272,245],[276,245],[276,241],[272,241],[272,237],[268,237],[268,241],[264,241],[264,237],[264,233],[260,233],[260,237],[256,237],[256,233],[252,233],[252,229],[256,229],[260,229],[260,225],[256,225],[256,221],[260,221],[260,217],[264,217],[264,221],[264,225],[268,225],[268,221],[272,221],[276,221],[276,217],[280,217],[280,221],[280,225],[284,225],[284,221],[288,221],[288,217],[284,217],[284,213],[288,213],[292,213],[292,209],[288,209],[288,205],[284,205],[284,209],[280,209],[280,205],[280,201],[276,201],[276,205],[272,205],[272,201],[268,201],[268,197],[272,197],[276,197],[276,193],[272,193],[272,189],[268,189],[268,193],[264,193],[264,189],[264,185],[260,185],[260,189],[256,189],[256,193],[260,193],[260,197],[256,197],[252,197],[252,201],[256,201],[256,205],[252,205],[252,209],[248,209],[248,205],[248,201],[244,201],[244,205],[240,205],[240,201],[236,201],[236,197],[240,197],[244,197],[244,193],[240,193],[240,189],[240,185],[236,185],[236,181],[240,181],[244,181],[244,177],[240,177],[240,173],[236,173],[236,177],[232,177],[232,173],[232,169],[228,169],[228,173],[224,173],[224,177],[228,177],[228,181],[224,181],[220,181],[220,185],[224,185],[224,189],[220,189],[220,193],[216,193],[216,189],[216,185],[212,185],[212,189],[208,189],[208,185],[204,185],[204,181],[208,181],[212,181],[212,177],[208,177],[208,173],[204,173],[204,177],[200,177],[200,173],[200,169],[196,169],[196,173],[192,173],[192,169],[188,169],[188,165],[192,165],[196,165],[196,161],[192,161],[192,157],[196,157],[196,153],[200,153],[200,157],[200,161],[204,161],[204,157],[208,157],[212,157],[212,153],[216,153],[216,157],[216,161],[220,161],[220,157],[224,157],[224,153],[220,153],[220,149],[224,149],[228,149],[228,145],[224,145],[224,141],[220,141],[220,145],[216,145],[216,141],[216,137],[212,137],[212,141],[208,141],[208,137],[204,137],[204,133],[208,133],[212,133],[212,129],[208,129],[208,125],[212,125],[212,121],[216,121],[216,125],[216,129],[220,129],[220,125],[224,125],[224,121],[220,121],[220,117],[224,117],[228,117],[228,113],[224,113],[224,109],[228,109],[228,105],[232,105],[232,109],[232,113],[236,113],[236,109],[240,109],[240,113],[244,113],[244,117],[240,117],[236,117],[236,121],[240,121],[240,125],[240,129],[244,129],[244,133],[240,133],[236,133],[236,137],[240,137],[240,141],[244,141],[244,137],[248,137],[248,141],[248,145],[252,145],[252,141],[256,141],[256,137],[252,137],[252,133],[256,133],[260,133],[260,129],[256,129],[256,125],[260,125],[260,121],[264,121],[264,125],[264,129],[268,129],[268,125],[272,125],[272,121],[268,121],[268,117],[272,117],[276,117],[276,113],[272,113],[272,109],[268,109],[268,113],[264,113],[264,109],[264,105],[260,105],[260,109],[256,109],[256,105],[252,105],[252,101],[256,101],[260,101],[260,97],[256,97],[256,93],[260,93],[260,89],[264,89],[264,93],[264,97],[268,97],[268,93],[272,93],[276,93],[276,89],[280,89],[280,93],[280,97],[284,97],[284,93],[288,93],[288,89],[284,89],[284,85],[288,85],[292,85],[292,81],[288,81],[288,77],[284,77],[284,81],[280,81],[280,77],[280,73],[276,73],[276,77],[272,77],[272,73],[268,73],[268,69],[272,69],[276,69],[276,65],[272,65],[272,61],[276,61],[276,57],[280,57],[280,61],[280,65],[284,65],[284,61],[288,61],[288,57],[284,57],[284,53],[288,53],[292,53],[292,49],[288,49],[288,45],[292,45],[292,41],[296,41],[296,45],[296,49],[300,49],[300,45],[304,45],[304,49],[308,49],[308,53],[304,53],[300,53],[300,57],[304,57],[304,61],[304,65],[308,65],[308,69],[304,69],[300,69],[300,73],[304,73],[304,77],[308,77],[308,73],[312,73],[312,77],[312,81],[316,81],[316,77],[320,77],[320,73],[316,73],[316,69],[320,69],[324,69],[324,65],[320,65],[320,61],[324,61],[324,57],[328,57],[328,61],[328,65],[332,65],[332,61],[336,61],[336,65],[340,65],[340,69],[336,69],[332,69],[332,73],[336,73],[336,77],[340,77],[340,73],[344,73],[344,77],[344,81],[348,81],[348,77],[352,77],[352,81],[356,81],[356,85],[352,85],[348,85],[348,89],[352,89],[352,93],[348,93],[348,97],[344,97],[344,93],[344,89],[340,89],[340,93],[336,93],[332,93],[332,97],[328,97],[328,93],[328,89],[324,89],[324,93],[320,93],[320,97],[324,97],[324,101],[320,101],[316,101],[316,105],[320,105],[320,109],[324,109],[324,105],[328,105],[328,109],[328,113],[332,113],[332,109],[336,109],[336,113],[340,113],[340,117],[336,117],[332,117],[332,121],[336,121],[336,125],[336,129],[340,129],[340,133],[336,133],[332,133],[332,137],[336,137],[336,141],[340,141],[340,137],[344,137],[344,141],[344,145],[348,145],[348,141],[352,141],[352,145],[356,145],[356,149],[352,149],[348,149],[348,153],[352,153],[352,157],[348,157],[348,161],[344,161],[344,157],[344,153],[340,153],[340,157],[336,157],[332,157],[332,161],[328,161],[328,157],[328,153],[324,153],[324,157],[320,157],[320,161],[324,161],[324,165],[320,165],[316,165],[316,169],[320,169],[320,173],[324,173],[324,169],[328,169],[328,173],[328,177],[332,177],[332,173],[336,173],[336,177],[340,177],[340,181],[336,181],[332,181],[332,185],[336,185],[336,189],[340,189],[340,185],[344,185],[344,189],[344,193],[348,193],[348,189],[352,189],[352,185],[348,185],[348,181],[352,181],[356,181],[356,177],[352,177],[352,173],[356,173],[356,169],[360,169],[360,173],[360,177],[364,177],[364,173],[368,173],[368,177],[372,177],[372,181],[368,181],[364,181],[364,185],[368,185],[368,189],[368,193],[372,193],[372,197],[368,197],[364,197],[364,201],[368,201],[368,205],[372,205],[372,201],[376,201],[376,205],[376,209],[380,209],[380,205],[384,205],[384,201],[380,201],[380,197],[384,197],[388,197],[388,193],[384,193],[384,189],[388,189],[388,185],[392,185],[392,189],[392,193],[396,193],[396,189],[400,189],[400,185],[396,185],[396,181],[400,181],[404,181],[404,177],[400,177],[400,173],[396,173],[396,177],[392,177],[392,173],[392,169],[388,169],[388,173],[384,173],[384,169],[380,169],[380,165],[384,165],[388,165],[388,161],[384,161],[384,157],[388,157],[388,153],[392,153],[392,157],[392,161],[396,161],[396,157],[400,157],[404,157],[404,153],[408,153],[408,157],[408,161],[412,161],[412,157],[416,157],[416,153],[412,153],[412,149],[416,149],[420,149],[420,145],[416,145],[416,141],[412,141],[412,145],[408,145],[408,141],[408,137],[404,137],[404,141],[400,141],[400,137],[396,137],[396,133],[400,133],[404,133],[404,129],[400,129],[400,125],[404,125],[404,121],[408,121],[408,125],[408,129],[412,129],[412,125],[416,125],[416,121],[412,121],[412,117],[416,117],[420,117],[420,113],[416,113],[416,109],[420,109],[420,105],[424,105],[424,109],[424,113],[428,113],[428,109],[432,109],[432,113],[436,113],[436,117],[432,117],[428,117],[428,121],[432,121],[432,125],[432,129],[436,129],[436,133],[432,133],[428,133],[428,137],[432,137],[432,141],[436,141],[436,137],[440,137],[440,141],[440,145],[444,145],[444,141],[448,141],[448,137],[444,137],[444,133],[448,133],[452,133],[452,129],[448,129],[448,125],[452,125],[452,121],[456,121],[456,125],[456,129],[460,129],[460,125],[464,125]],[[464,125],[468,125],[468,121],[472,121],[472,125],[472,129],[476,129],[476,125],[480,125],[480,121],[476,121],[476,117],[480,117],[484,117],[484,113],[480,113],[480,109],[484,109],[484,105],[488,105],[488,109],[488,113],[492,113],[492,109],[496,109],[496,113],[500,113],[500,117],[496,117],[492,117],[492,121],[496,121],[496,125],[496,129],[500,129],[500,133],[496,133],[492,133],[492,137],[496,137],[496,141],[500,141],[500,137],[504,137],[504,141],[504,145],[508,145],[508,141],[512,141],[512,137],[508,137],[508,133],[512,133],[516,133],[516,129],[512,129],[512,125],[516,125],[516,121],[520,121],[520,125],[520,129],[524,129],[524,125],[528,125],[528,121],[524,121],[524,117],[528,117],[532,117],[532,113],[528,113],[528,109],[524,109],[524,113],[520,113],[520,109],[520,105],[516,105],[516,109],[512,109],[512,105],[508,105],[508,101],[512,101],[516,101],[516,97],[512,97],[512,93],[516,93],[516,89],[520,89],[520,93],[520,97],[524,97],[524,93],[528,93],[532,93],[532,89],[536,89],[536,93],[536,97],[540,97],[540,93],[544,93],[544,89],[540,89],[540,85],[544,85],[548,85],[548,81],[544,81],[544,77],[540,77],[540,81],[536,81],[536,77],[536,73],[532,73],[532,77],[528,77],[528,73],[524,73],[524,69],[528,69],[532,69],[532,65],[528,65],[528,61],[532,61],[532,57],[536,57],[536,61],[536,65],[540,65],[540,61],[544,61],[544,57],[540,57],[540,53],[544,53],[548,53],[548,49],[544,49],[544,45],[548,45],[548,41],[552,41],[552,45],[552,49],[556,49],[556,45],[560,45],[560,49],[564,49],[564,53],[560,53],[556,53],[556,57],[560,57],[560,61],[560,65],[564,65],[564,69],[560,69],[556,69],[556,73],[560,73],[560,77],[564,77],[564,73],[568,73],[568,77],[568,81],[572,81],[572,77],[576,77],[576,73],[572,73],[572,69],[576,69],[580,69],[580,65],[576,65],[576,61],[580,61],[580,57],[584,57],[584,61],[584,65],[588,65],[588,61],[592,61],[592,65],[596,65],[596,69],[592,69],[588,69],[588,73],[592,73],[592,77],[596,77],[596,73],[600,73],[600,77],[600,81],[604,81],[604,77],[608,77],[608,81],[612,81],[612,85],[608,85],[604,85],[604,89],[608,89],[608,93],[604,93],[604,97],[600,97],[600,93],[600,89],[596,89],[596,93],[592,93],[588,93],[588,97],[584,97],[584,93],[584,89],[580,89],[580,93],[576,93],[576,97],[580,97],[580,101],[576,101],[572,101],[572,105],[576,105],[576,109],[580,109],[580,105],[584,105],[584,109],[584,113],[588,113],[588,109],[592,109],[592,113],[596,113],[596,117],[592,117],[588,117],[588,121],[592,121],[592,125],[592,129],[596,129],[596,133],[592,133],[588,133],[588,137],[592,137],[592,141],[596,141],[596,137],[600,137],[600,141],[600,145],[604,145],[604,141],[608,141],[608,145],[612,145],[612,149],[608,149],[604,149],[604,153],[608,153],[608,157],[604,157],[604,161],[600,161],[600,157],[600,153],[596,153],[596,157],[592,157],[588,157],[588,161],[584,161],[584,157],[584,153],[580,153],[580,157],[576,157],[576,161],[580,161],[580,165],[576,165],[572,165],[572,169],[576,169],[576,173],[580,173],[580,169],[584,169],[584,173],[584,177],[588,177],[588,173],[592,173],[592,177],[596,177],[596,181],[592,181],[588,181],[588,185],[592,185],[592,189],[596,189],[596,185],[600,185],[600,189],[600,193],[604,193],[604,189],[608,189],[608,185],[604,185],[604,181],[608,181],[612,181],[612,177],[608,177],[608,173],[612,173],[612,169],[616,169],[616,173],[616,177],[620,177],[620,173],[624,173],[624,177],[628,177],[628,181],[624,181],[620,181],[620,185],[624,185],[624,189],[624,193],[628,193],[628,197],[624,197],[620,197],[620,201],[624,201],[624,205],[628,205],[628,201],[632,201],[632,205],[632,209],[636,209],[636,205],[640,205],[640,201],[636,201],[636,197],[640,197],[644,197],[644,193],[640,193],[640,189],[644,189],[644,185],[648,185],[648,189],[648,193],[652,193],[652,189],[656,189],[656,185],[652,185],[652,181],[656,181],[660,181],[660,177],[656,177],[656,173],[652,173],[652,177],[648,177],[648,173],[648,169],[644,169],[644,173],[640,173],[640,169],[636,169],[636,165],[640,165],[644,165],[644,161],[640,161],[640,157],[644,157],[644,153],[648,153],[648,157],[648,161],[652,161],[652,157],[656,157],[660,157],[660,153],[664,153],[664,157],[664,161],[668,161],[668,157],[672,157],[672,153],[668,153],[668,149],[672,149],[676,149],[676,145],[672,145],[672,141],[668,141],[668,145],[664,145],[664,141],[664,137],[660,137],[660,141],[656,141],[656,137],[652,137],[652,133],[656,133],[660,133],[660,129],[656,129],[656,125],[660,125],[660,121],[664,121],[664,125],[664,129],[668,129],[668,125],[672,125],[672,121],[668,121],[668,117],[672,117],[676,117],[676,113],[672,113],[672,109],[676,109],[676,105],[680,105],[680,109],[680,113],[684,113],[684,109],[688,109],[688,113],[692,113],[692,117],[688,117],[684,117],[684,121],[688,121],[688,125],[688,129],[692,129],[692,133],[688,133],[684,133],[684,137],[688,137],[688,141],[692,141],[692,137],[696,137],[696,141],[696,145],[700,145],[700,141],[704,141],[704,137],[700,137],[700,133],[704,133],[708,133],[708,129],[704,129],[704,125],[708,125],[708,121],[712,121],[712,125],[712,129],[716,129],[716,125],[720,125],[720,129],[724,129],[724,133],[720,133],[716,133],[716,137],[720,137],[720,141],[724,141],[724,137],[728,137],[728,141],[728,145],[732,145],[732,141],[736,141],[736,145],[740,145],[740,149],[736,149],[732,149],[732,153],[736,153],[736,157],[732,157],[732,161],[728,161],[728,157],[728,153],[724,153],[724,157],[720,157],[716,157],[716,161],[712,161],[712,157],[712,153],[708,153],[708,157],[704,157],[704,161],[708,161],[708,165],[704,165],[700,165],[700,169],[704,169],[704,173],[708,173],[708,169],[712,169],[712,173],[712,177],[716,177],[716,173],[720,173],[720,177],[724,177],[724,181],[720,181],[716,181],[716,185],[720,185],[720,189],[724,189],[724,185],[728,185],[728,189],[728,193],[732,193],[732,189],[736,189],[736,185],[732,185],[732,181],[736,181],[740,181],[740,177],[736,177],[736,173],[740,173],[740,169],[744,169],[744,173],[744,177],[748,177],[748,173],[752,173],[752,177],[756,177],[756,181],[752,181],[748,181],[748,185],[752,185],[752,189],[752,193],[756,193],[756,197],[752,197],[748,197],[748,201],[752,201],[752,205],[756,205],[756,201],[760,201],[760,205],[760,209],[764,209],[764,205],[768,205],[768,201],[764,201],[764,197],[768,197],[772,197],[772,193],[768,193],[768,189],[772,189],[772,185],[776,185],[776,189],[776,193],[780,193],[780,189],[784,189],[784,193],[788,193],[788,197],[784,197],[780,197],[780,201],[784,201],[784,205],[788,205],[788,201],[792,201],[792,205],[792,209],[796,209],[796,205],[800,205],[800,209],[804,209],[804,213],[800,213],[796,213],[796,217],[800,217],[800,221],[796,221],[796,225],[792,225],[792,221],[792,217],[788,217],[788,221],[784,221],[780,221],[780,225],[776,225],[776,221],[776,217],[772,217],[772,221],[768,221],[768,225],[772,225],[772,229],[768,229],[764,229],[764,233],[768,233],[768,237],[772,237],[772,233],[776,233],[776,237],[776,241],[780,241],[780,237],[784,237],[784,241],[788,241],[788,245],[784,245],[780,245],[780,249],[784,249],[784,253],[780,253],[780,257],[776,257],[776,253],[776,249],[772,249],[772,253],[768,253],[768,257],[772,257],[772,261],[768,261],[764,261],[764,265],[768,265],[768,269],[764,269],[764,273],[760,273],[760,269],[760,265],[756,265],[756,269],[752,269],[752,265],[748,265],[748,261],[752,261],[756,261],[756,257],[752,257],[752,253],[752,249],[748,249],[748,245],[752,245],[756,245],[756,241],[752,241],[752,237],[748,237],[748,241],[744,241],[744,237],[744,233],[740,233],[740,237],[736,237],[736,241],[740,241],[740,245],[736,245],[732,245],[732,249],[736,249],[736,253],[732,253],[732,257],[728,257],[728,253],[728,249],[724,249],[724,253],[720,253],[716,253],[716,257],[712,257],[712,253],[712,249],[708,249],[708,253],[704,253],[704,257],[708,257],[708,261],[704,261],[700,261],[700,265],[704,265],[704,269],[700,269],[700,273],[696,273],[696,269],[696,265],[692,265],[692,269],[688,269],[688,265],[684,265],[684,261],[688,261],[692,261],[692,257],[688,257],[688,253],[688,249],[684,249],[684,245],[688,245],[692,245],[692,241],[688,241],[688,237],[684,237],[684,241],[680,241],[680,237],[680,233],[676,233],[676,237],[672,237],[672,241],[676,241],[676,245],[672,245],[668,245],[668,249],[672,249],[672,253],[668,253],[668,257],[664,257],[664,253],[664,249],[660,249],[660,253],[656,253],[656,257],[660,257],[660,261],[656,261],[652,261],[652,265],[656,265],[656,269],[660,269],[660,265],[664,265],[664,269],[664,273],[668,273],[668,269],[672,269],[672,273],[676,273],[676,277],[672,277],[668,277],[668,281],[672,281],[672,285],[668,285],[668,289],[664,289],[664,285],[664,281],[660,281],[660,285],[656,285],[652,285],[652,289],[648,289],[648,285],[648,281],[644,281],[644,285],[640,285],[640,289],[644,289],[644,293],[640,293],[636,293],[636,297],[640,297],[640,301],[644,301],[644,297],[648,297],[648,301],[648,305],[652,305],[652,301],[656,301],[656,305],[660,305],[660,309],[656,309],[652,309],[652,313],[656,313],[656,317],[660,317],[660,313],[664,313],[664,317],[664,321],[668,321],[668,317],[672,317],[672,313],[668,313],[668,309],[672,309],[676,309],[676,305],[672,305],[672,301],[676,301],[676,297],[680,297],[680,301],[680,305],[684,305],[684,301],[688,301],[688,305],[692,305],[692,309],[688,309],[684,309],[684,313],[688,313],[688,317],[688,321],[692,321],[692,325],[688,325],[684,325],[684,329],[688,329],[688,333],[692,333],[692,329],[696,329],[696,333],[696,337],[700,337],[700,333],[704,333],[704,329],[700,329],[700,325],[704,325],[708,325],[708,321],[704,321],[704,317],[708,317],[708,313],[712,313],[712,317],[712,321],[716,321],[716,317],[720,317],[720,321],[724,321],[724,325],[720,325],[716,325],[716,329],[720,329],[720,333],[724,333],[724,329],[728,329],[728,333],[728,337],[732,337],[732,333],[736,333],[736,337],[740,337],[740,341],[736,341],[732,341],[732,345],[736,345],[736,349],[732,349],[732,353],[728,353],[728,349],[728,345],[724,345],[724,349],[720,349],[716,349],[716,353],[712,353],[712,349],[712,345],[708,345],[708,349],[704,349],[704,353],[708,353],[708,357],[704,357],[700,357],[700,361],[704,361],[704,365],[708,365],[708,361],[712,361],[712,365],[712,369],[716,369],[716,365],[720,365],[720,369],[724,369],[724,373],[720,373],[716,373],[716,377],[720,377],[720,381],[716,381],[716,385],[712,385],[712,381],[712,377],[708,377],[708,381],[704,381],[704,385],[708,385],[708,389],[704,389],[700,389],[700,393],[704,393],[704,397],[700,397],[700,401],[696,401],[696,397],[696,393],[692,393],[692,397],[688,397],[688,393],[684,393],[684,389],[688,389],[692,389],[692,385],[688,385],[688,381],[688,377],[684,377],[684,373],[688,373],[692,373],[692,369],[688,369],[688,365],[684,365],[684,369],[680,369],[680,365],[680,361],[676,361],[676,365],[672,365],[672,369],[676,369],[676,373],[672,373],[668,373],[668,377],[672,377],[672,381],[668,381],[668,385],[664,385],[664,381],[664,377],[660,377],[660,381],[656,381],[656,385],[660,385],[660,389],[656,389],[652,389],[652,393],[656,393],[656,397],[660,397],[660,393],[664,393],[664,397],[664,401],[668,401],[668,397],[672,397],[672,401],[676,401],[676,405],[672,405],[668,405],[668,409],[672,409],[672,413],[668,413],[668,417],[664,417],[664,413],[664,409],[660,409],[660,413],[656,413],[652,413],[652,417],[648,417],[648,413],[648,409],[644,409],[644,413],[640,413],[640,417],[644,417],[644,421],[640,421],[636,421],[636,425],[640,425],[640,429],[644,429],[644,425],[648,425],[648,429],[648,433],[652,433],[652,429],[656,429],[656,433],[660,433],[660,437],[656,437],[652,437],[652,441],[656,441],[656,445],[652,445],[652,449],[648,449],[648,445],[648,441],[644,441],[644,445],[640,445],[640,449],[644,449],[644,453],[640,453],[636,453],[636,457],[640,457],[640,461],[636,461],[636,465],[632,465],[632,461],[632,457],[628,457],[628,461],[624,461],[624,457],[620,457],[620,453],[624,453],[628,453],[628,449],[624,449],[624,445],[624,441],[620,441],[620,437],[624,437],[628,437],[628,433],[624,433],[624,429],[620,429],[620,433],[616,433],[616,429],[616,425],[612,425],[612,429],[608,429],[608,433],[612,433],[612,437],[608,437],[604,437],[604,441],[608,441],[608,445],[604,445],[604,449],[600,449],[600,445],[600,441],[596,441],[596,445],[592,445],[592,441],[588,441],[588,437],[592,437],[596,437],[596,433],[592,433],[592,429],[588,429],[588,433],[584,433],[584,429],[584,425],[580,425],[580,429],[576,429],[576,425],[572,425],[572,421],[576,421],[580,421],[580,417],[576,417],[576,413],[580,413],[580,409],[584,409],[584,413],[584,417],[588,417],[588,413],[592,413],[596,413],[596,409],[600,409],[600,413],[600,417],[604,417],[604,413],[608,413],[608,409],[604,409],[604,405],[608,405],[612,405],[612,401],[608,401],[608,397],[604,397],[604,401],[600,401],[600,397],[600,393],[596,393],[596,397],[592,397],[592,393],[588,393],[588,389],[592,389],[596,389],[596,385],[592,385],[592,381],[592,377],[588,377],[588,373],[592,373],[596,373],[596,369],[592,369],[592,365],[588,365],[588,369],[584,369],[584,365],[584,361],[580,361],[580,365],[576,365],[576,361],[572,361],[572,357],[576,357],[580,357],[580,353],[576,353],[576,349],[580,349],[580,345],[584,345],[584,349],[584,353],[588,353],[588,349],[592,349],[596,349],[596,345],[600,345],[600,349],[600,353],[604,353],[604,349],[608,349],[608,345],[604,345],[604,341],[608,341],[612,341],[612,337],[608,337],[608,333],[604,333],[604,337],[600,337],[600,333],[600,329],[596,329],[596,333],[592,333],[592,329],[588,329],[588,325],[592,325],[596,325],[596,321],[592,321],[592,317],[588,317],[588,321],[584,321],[584,317],[584,313],[580,313],[580,317],[576,317],[576,321],[580,321],[580,325],[576,325],[572,325],[572,329],[576,329],[576,333],[572,333],[572,337],[568,337],[568,333],[568,329],[564,329],[564,333],[560,333],[560,329],[556,329],[556,325],[560,325],[564,325],[564,321],[560,321],[560,317],[560,313],[556,313],[556,309],[560,309],[564,309],[564,305],[560,305],[560,301],[556,301],[556,305],[552,305],[552,301],[552,297],[548,297],[548,301],[544,301],[544,305],[548,305],[548,309],[544,309],[540,309],[540,313],[544,313],[544,317],[540,317],[540,321],[536,321],[536,317],[536,313],[532,313],[532,317],[528,317],[528,321],[532,321],[532,325],[528,325],[524,325],[524,329],[528,329],[528,333],[532,333],[532,329],[536,329],[536,333],[536,337],[540,337],[540,333],[544,333],[544,337],[548,337],[548,341],[544,341],[540,341],[540,345],[544,345],[544,349],[540,349],[540,353],[536,353],[536,349],[536,345],[532,345],[532,349],[528,349],[524,349],[524,353],[520,353],[520,349],[520,345],[516,345],[516,349],[512,349],[512,353],[516,353],[516,357],[512,357],[508,357],[508,361],[512,361],[512,365],[516,365],[516,361],[520,361],[520,365],[520,369],[524,369],[524,365],[528,365],[528,369],[532,369],[532,373],[528,373],[524,373],[524,377],[528,377],[528,381],[524,381],[524,385],[520,385],[520,381],[520,377],[516,377],[516,381],[512,381],[512,385],[516,385],[516,389],[512,389],[508,389],[508,393],[512,393],[512,397],[508,397],[508,401],[504,401],[504,397],[504,393],[500,393],[500,397],[496,397],[496,393],[492,393],[492,389],[496,389],[500,389],[500,385],[496,385],[496,381],[496,377],[492,377],[492,373],[496,373],[500,373],[500,369],[496,369],[496,365],[492,365],[492,369],[488,369],[488,365],[488,361],[484,361],[484,365],[480,365],[480,369],[484,369],[484,373],[480,373],[476,373],[476,377],[480,377],[480,381],[476,381],[476,385],[472,385],[472,381],[472,377],[468,377],[468,381],[464,381]]]}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment