<!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(62, 150);

context.lineTo(62, 150);
context.stroke();

context.lineTo(62, 149);
context.stroke();

context.lineTo(63, 149);
context.stroke();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(283, 203);

context.lineTo(283, 203);
context.stroke();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(161, 309);

context.lineTo(161, 309);
context.stroke();

context.strokeStyle = '#000000';
context.strokeRect(163, 81, 77, 245);

context.strokeStyle = '#000000';
context.save();
context.translate(171.5, 32.5);
context.scale(0.8918918918918919, 1);
context.beginPath();
context.arc(0, 0, 50, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#FFFFFF';
context.beginPath();
context.moveTo(213, 80);

context.lineTo(212, 82);
context.stroke();

context.lineTo(211, 82);
context.stroke();

context.lineTo(208, 82);
context.stroke();

context.lineTo(161, 60);
context.stroke();

context.lineTo(124, 40);
context.stroke();

context.lineTo(113, 33);
context.stroke();

context.lineTo(110, 31);
context.stroke();

context.lineTo(110, 31);
context.stroke();

context.strokeStyle = '#FFFFFF';
context.beginPath();
context.moveTo(344, 187);

context.lineTo(344, 187);
context.stroke();

context.lineTo(344, 187);
context.stroke();
</script>
</body>
</html>