<!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.beginPath();
context.moveTo(58, 62);
context.lineTo(58, 114);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(85, 66);
context.lineTo(109, 65);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(109, 65);
context.lineTo(87, 108);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(132, 66);
context.lineTo(157, 64);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(157, 65);
context.lineTo(156, 85);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(153, 85);
context.lineTo(131, 86);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(131, 86);
context.lineTo(131, 109);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(133, 108);
context.lineTo(155, 106);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(185, 63);
context.lineTo(185, 105);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(229, 62);
context.lineTo(206, 62);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(206, 64);
context.lineTo(207, 78);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(207, 78);
context.lineTo(229, 78);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(229, 78);
context.lineTo(228, 94);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(227, 94);
context.lineTo(209, 95);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(248, 62);
context.lineTo(275, 62);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(276, 60);
context.lineTo(256, 95);
context.stroke();
context.closePath();

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

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(331, 67);
context.lineTo(329, 102);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.save();
context.translate(77, 116.5);
context.scale(1, 0.5625);
context.beginPath();
context.arc(0, 0, 18, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.save();
context.translate(117.5, 122);
context.scale(1, 0.5714285714285714);
context.beginPath();
context.arc(0, 0, 24, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

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

context.strokeStyle = '#000000';
context.save();
context.translate(201.5, 105.5);
context.scale(1, 1);
context.beginPath();
context.arc(0, 0, 13, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.save();
context.translate(242, 104);
context.scale(1, 0.75);
context.beginPath();
context.arc(0, 0, 20, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.save();
context.translate(295.5, 106.5);
context.scale(1, 0.21951219512195122);
context.beginPath();
context.arc(0, 0, 42, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();
</script>
</body>
</html>