<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Your Canvas</title>

<style type="text/css"><!--
#container { position: relative; }
#imageTemp { position: absolute; top: 1px; left: 1px; }
--></style>

</head>
<body>
<canvas id="imageView" width="600" height="500"></canvas>

<script type="text/javascript">
var canvas, context, canvaso, contexto;
canvaso = document.getElementById('imageView');
context = canvaso.getContext('2d');
context.lineWidth = 5;

context.strokeStyle = '#000000';
context.save();
context.translate(224.5, 225.5);
context.scale(0.9452054794520548, 1);
context.beginPath();
context.arc(0, 0, 100, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.save();
context.translate(174.5, 180.5);
context.scale(0.7647058823529411, 1);
context.beginPath();
context.arc(0, 0, 21, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(260, 175);

context.strokeStyle = '#000000';
context.save();
context.translate(256.5, 172);
context.scale(0.8333333333333334, 1);
context.beginPath();
context.arc(0, 0, 23, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.save();
context.translate(219, 236);
context.scale(1, 0.5);
context.beginPath();
context.arc(0, 0, 9, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.save();
context.translate(234, 235.5);
context.scale(1, 0.625);
context.beginPath();
context.arc(0, 0, 9, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.save();
context.translate(226.5, 241);
context.scale(0.8333333333333334, 1);
context.beginPath();
context.arc(0, 0, 8, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(170, 251);
context.lineTo(52, 240);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(170, 263);
context.lineTo(74, 304);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(174, 281);
context.lineTo(102, 335);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(294, 245);
context.lineTo(425, 271);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(298, 230);
context.lineTo(433, 228);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(297, 213);
context.lineTo(417, 160);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(147, 158);
context.lineTo(108, 49);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(109, 49);
context.lineTo(199, 123);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(238, 124);
context.lineTo(327, 34);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(327, 34);
context.lineTo(293, 144);
context.stroke();
context.closePath();
</script>
</body>
</html>