{
const c = DOM.context2d(width, height);
c.beginPath()
c.arc(width/2, height/2, 200, 0, Math.PI * 2)
c.arc(width/3, height/4, 100, 0, Math.PI * 2)
c.arc(width/1.1, height/4, 100, 0, Math.PI * 2)
c.closePath()
c.fillStyle='white';
c.fill()
c.stroke()
c.closePath()
c.shadowColor = "rgb(230,230,230)"
c.shadowBlur = 100
c.fill()
return c.canvas
}