{
const height = 200;
const width = 1000;
const svg = DOM.svg(width, height);
const dots = d3.range(100, 0, -10);
const color = d3.scaleSequential(d3.interpolateMagma).domain([0, 100]);
d3.select(svg)
.selectAll("circle")
.data(dots)
.enter()
.append("circle")
.attr("cx", d => d * d/dots.length)
.attr("cy", 100)
.attr("r", d => d)
.attr("fill", d => color(d));
return svg;
}