%!PS-Adobe-2.0
%%DocumentFonts: Times-Roman
%%Creator: Axiom
%%CreationDate: today
%%Pages: 1
%%processing (hard) limit: 250 pts or 500 values for the operand stack.
%%EndComments

%------------------------------- prologue -------------------------------%
%-------------------------- support procedures --------------------------%

%--------- first create user dictionary with 100 entries max ------------%
%          (number can be changed to accomodate definitions)             %

100	dict	begin		%% using 100 entries in top level dictionary

/FontHeight     12 def

/inch
        {       72 mul }
        def

% yVal and hVal are necessary because the Xwindow display origin
% is at the upper left corner, while the postscript display
% origin is at the lower left hand corner.

/yVal		%% get Y value -- make upper left corner origin
        {       maxY sub abs }	%% maxY is viewWindow height
        def

/hVal		%% get H value -- used for displaying title text
        {       maxH sub abs }	%% maxH is viewWindow height+titleWindow height
        def

% loads in the font

/loadFont
        {       /Times-Roman findfont FontHeight scalefont setfont }
        def

% draws a rectangle with input operand: 
%		height
%		width
% notice that this function does not "draw" or ink the rectangle.
/drawRect
	{	1 index 1 add 0 rlineto		%% draw first side
                0 exch 1 add neg rlineto	%% draw second side
                1 add neg 0 rlineto		%% draw third side
                closepath }			%% draw fourth side
        def

% create a rectangle with input operand in the view window: 
%		y
%		x
%		height
%		width
% notice that this function does not "draw" or ink the rectangle.
/rectangle
        {       yVal moveto			%% set currentpoint for line
		drawRect }			%% draws the rectangle
        def

% These are global variables that every draw procedure uses
% THe operand should be as follows:
%		viewWindow width
%		viewWindow height
%		title height
/setDim
        {       /maxX exch def			%% width of display
                /maxY exch def			%% height of display
		/titleH exch def		%% height of title
		/maxH maxY titleH add def	%% height of display + title
        } def

%-------------------------- major procedures --------------------------%

/title		%% draws a rectangle around the title of picture
	{	gsave
		newpath
		moveto				%% lower left of title
                titleH 1 add 0 exch rlineto	%% draw first side
                1 add 0 rlineto			%% draw second side
                1 add neg 0 exch rlineto
		begin installGC stroke end	%% draw third side
		grestore }
	def

/drawFrame      %% draw display frame
        {	gsave
                newpath
                maxX maxY 0 0 rectangle
		begin installGC stroke end
                grestore }
        def

% updates the foreground color of existing graphics-context dictionary:
%		foreground color
%		dictionary name
/setForeground
	{	/FGcolor exch put }
	def

% updates the background color of existing graphics-context dictionary:
%		background color
%		dictionary name
/setBackground
	{	/BGcolor exch put }
	def

% updates the line width, line style, cap style, join style of
% existing graphics-context dictionary:
%		dictionary name
%		join style
%		cap style
%		line width
/setLineAttributes
	{	begin
		/JoinStyle exch def
		/CapStyle  exch def
		/LineWidth exch def
		end }
	def

% creates a graphics context dictionary with the following information:
%		/dictionary name
%		foreground color
%		background color
%		line width
%		cap style
%		join style
% this creates different graphical contexts for different drawing functions.
/makeDict
	{	5 dict 2 copy def begin	pop %% with dict name on top of stack
		/FGcolor   exch def	%% define drawing attributes
		/BGcolor   exch def	%% not heavily used
		/LineWidth exch def
		/CapStyle  exch def
		/JoinStyle exch def
		end }
	def

% makes the current dictionary attributes effective
% this function takes the values in the current dictionary to set the context
% these are the values currently being used: foreground, cap, join, and width
/installGC
	{
		FGcolor currentgray ne
		{FGcolor setgray} if		%% foreground color
		CapStyle currentlinecap ne
		{CapStyle setlinecap} if	%% cap style
		JoinStyle currentlinejoin ne
		{JoinStyle setlinejoin} if	%% join style
		LineWidth currentlinewidth ne
		{LineWidth setlinewidth} if }	%% line width
	def

% operand stack configuration in order to use psDrawLine:
%		psDrawLine
%		y0
%		x0
%		y1
%		x1
%		graphics-context dictionary
% this draws a line from (x0, y0) to (x1, y1).

/psDrawLine
        {	gsave
                newpath
                yVal moveto
                yVal lineto
		begin installGC stroke end
		grestore }
        def

% operand stack configuration in order to use psDrawStr:
%		psDrawStr
%		y
%		x
%		string
%		graphics-context dictionary
% this function draws a text string at (x,y).

/psDrawStr
        {	gsave
		newpath
                loadFont
                yVal moveto
		exch begin installGC show end
                grestore }
        def

%-------------------------- script --------------------------%

% 1 inch 1 inch translate

   mark					%% mark bottom of our stack

	0	0	1
	1072693248	0	/globalGC1	makeDict
	0	0	1
	1072693248	0	/globalGC2	makeDict
	0	0	1
	1072693248	0	/trashGC	makeDict
	0	0	1
	1072693248	0	/componentGC	makeDict
	0	0	1
	1072693248	0	/opaqueGC	makeDict
	0	0	1
	1072693248	0	/renderGC	makeDict
	0	0	1
	1072693248	0	/globGC	makeDict
	0	0	1
	1072693248	0	/anotherGC	makeDict
	1	0	1
	1072693248	0	/renderGC	makeDict

    gsave	% save graphics state for clipping path

	1.000000	1.000000	scale

	24	276	300	setDim
	maxX maxY	0 0	rectangle	clip	% set clip path

	globalGC1	0.000000	setForeground
	globGC	0.000000	setForeground
	globalGC1	36	223	244	76	psDrawLine
	globGC	(X)	31	228	psDrawStr
	globalGC1	106.000000	setForeground
	globGC	106.000000	setForeground
	globalGC1	0.000000	setForeground
	globGC	0.000000	setForeground
	globalGC1	268	223	61	76	psDrawLine
	globGC	(Y)	273	228	psDrawStr
	globalGC1	106.000000	setForeground
	globGC	106.000000	setForeground
	globalGC1	0.000000	setForeground
	globGC	0.000000	setForeground
	globalGC1	152	18	152	229	psDrawLine
	globGC	(Z)	157	13	psDrawStr
	globalGC1	106.000000	setForeground
	globGC	106.000000	setForeground
	1	0	0	componentGC	setLineAttributes
	componentGC	0.000000	setForeground
	componentGC	0.000000	setForeground
	componentGC	175	52	152	57	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	161	54	175	52	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	163	57	175	52	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	177	56	157	60	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	166	57	177	56	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	168	59	177	56	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	179	59	162	63	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	171	60	179	59	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	172	62	179	59	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	181	62	167	66	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	176	63	181	62	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	176	64	181	62	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	184	66	172	69	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	180	67	184	66	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	180	67	184	66	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	187	69	177	72	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	184	70	187	69	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	185	70	187	69	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	191	72	182	75	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	188	73	191	72	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	189	73	191	72	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	195	76	187	78	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	193	76	195	76	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	193	76	195	76	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	199	79	192	82	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	197	79	199	79	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	198	80	199	79	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	203	82	197	85	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	202	82	203	82	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	202	83	203	82	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	208	85	202	88	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	207	86	208	85	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	207	86	208	85	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	212	88	207	91	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	211	89	212	88	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	212	89	212	88	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	217	92	213	94	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	216	92	217	92	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	217	92	217	92	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	222	95	218	98	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	222	95	222	95	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	222	95	222	95	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	227	98	224	101	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	227	98	227	98	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	227	98	227	98	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	233	101	229	104	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	232	101	233	101	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	232	101	233	101	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	238	103	235	108	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	237	104	238	103	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	238	104	238	103	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	244	106	240	111	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	243	107	244	106	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	244	107	244	106	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	250	109	246	115	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	249	110	250	109	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	249	110	250	109	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	256	111	252	118	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	254	113	256	111	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	255	113	256	111	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	262	114	258	122	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	260	116	262	114	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	261	116	262	114	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	268	116	264	126	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	266	119	268	116	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	267	119	268	116	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	274	118	270	129	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	272	122	274	118	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	274	122	274	118	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	281	120	276	133	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	277	125	281	120	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	280	126	281	120	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	287	121	282	137	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	283	129	287	121	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	287	129	287	121	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	294	122	288	141	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	288	132	294	122	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	293	134	294	122	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	169	53	148	60	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	155	56	169	53	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	158	58	169	53	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	171	57	152	63	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	161	59	171	57	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	162	61	171	57	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	173	60	157	66	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	166	62	173	60	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	167	64	173	60	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	176	64	162	69	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	170	65	176	64	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	171	67	176	64	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	179	68	167	72	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	175	69	179	68	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	175	70	179	68	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	182	71	172	75	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	179	72	182	71	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	180	73	182	71	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	186	75	177	78	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	183	75	186	75	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	184	76	186	75	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	190	78	182	82	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	188	79	190	78	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	188	79	190	78	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	194	81	187	85	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	192	82	194	81	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	193	82	194	81	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	198	85	192	88	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	197	85	198	85	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	197	85	198	85	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	203	88	197	91	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	202	89	203	88	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	202	89	203	88	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	208	91	203	94	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	207	92	208	91	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	207	92	208	91	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	213	95	208	98	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	212	95	213	95	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	212	95	213	95	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	218	98	213	101	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	217	98	218	98	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	217	98	218	98	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	223	101	219	104	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	222	101	223	101	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	223	101	223	101	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	229	104	224	108	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	228	104	229	104	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	228	105	229	104	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	234	107	230	111	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	233	108	234	107	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	234	108	234	107	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	240	110	236	115	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	239	111	240	110	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	240	111	240	110	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	246	113	241	118	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	245	114	246	113	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	246	114	246	113	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	253	115	247	122	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	251	117	253	115	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	252	117	253	115	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	259	118	253	126	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	257	120	259	118	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	258	120	259	118	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	266	120	259	129	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	263	123	266	120	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	264	123	266	120	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	272	122	265	133	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	269	126	272	122	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	271	127	272	122	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	279	124	271	137	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	274	129	279	124	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	277	130	279	124	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	287	126	277	141	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	280	133	287	126	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	284	134	287	126	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	294	127	284	144	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	285	136	294	127	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	291	138	294	127	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	162	54	143	63	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	149	58	162	54	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	152	60	162	54	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	164	58	148	66	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	155	61	164	58	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	157	63	164	58	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	167	62	152	69	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	160	64	167	62	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	161	66	167	62	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	170	66	157	72	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	164	68	170	66	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	166	69	170	66	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	173	70	162	75	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	169	71	173	70	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	170	72	173	70	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	176	73	167	78	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	173	75	176	73	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	174	75	176	73	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	180	77	172	82	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	178	78	180	77	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	179	78	180	77	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	184	81	177	85	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	183	81	184	81	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	183	82	184	81	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	189	84	182	88	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	187	85	189	84	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	188	85	189	84	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	193	88	187	91	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	192	88	193	88	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	192	88	193	88	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	198	91	193	94	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	197	91	198	91	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	197	92	198	91	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	203	94	198	98	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	202	95	203	94	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	202	95	203	94	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	208	98	203	101	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	207	98	208	98	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	207	98	208	98	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	213	101	209	104	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	213	101	213	101	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	213	102	213	101	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	219	104	214	108	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	218	105	219	104	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	218	105	219	104	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	225	107	220	111	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	224	108	225	107	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	224	108	225	107	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	230	111	225	115	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	229	111	230	111	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	230	111	230	111	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	236	114	231	118	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	235	114	236	114	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	236	115	236	114	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	243	117	237	122	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	241	118	243	117	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	242	118	243	117	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	249	119	243	126	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	247	121	249	119	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	248	121	249	119	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	256	122	248	129	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	253	124	256	122	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	254	124	256	122	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	263	125	254	133	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	259	127	263	125	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	261	128	263	125	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	270	127	260	137	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	266	130	270	127	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	267	131	270	127	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	278	129	267	141	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	272	133	278	129	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	274	135	278	129	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	285	131	273	144	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	277	137	285	131	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	281	139	285	131	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	294	133	279	148	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	283	141	294	133	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	287	143	294	133	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	155	55	138	66	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	143	61	155	55	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	147	63	155	55	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	157	59	143	69	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	149	64	157	59	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	151	65	157	59	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	160	64	148	72	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	154	67	160	64	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	156	68	160	64	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	163	68	152	75	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	159	70	163	68	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	160	71	163	68	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	167	72	157	78	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	163	74	167	72	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	164	74	167	72	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	171	76	162	82	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	168	77	171	76	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	169	78	171	76	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	175	79	167	85	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	172	81	175	79	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	173	81	175	79	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	179	83	172	88	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	177	84	179	83	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	178	84	179	83	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	183	87	177	91	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	182	88	183	87	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	182	88	183	87	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	188	91	183	94	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	187	91	188	91	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	187	91	188	91	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	193	94	188	98	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	192	95	193	94	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	192	95	193	94	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	198	98	193	101	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	197	98	198	98	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	197	98	198	98	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	203	101	198	104	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	202	101	203	101	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	203	102	203	101	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	209	104	204	108	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	208	105	209	104	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	208	105	209	104	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	214	108	209	111	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	213	108	214	108	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	214	108	214	108	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	220	111	215	115	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	219	112	220	111	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	219	112	220	111	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	226	114	221	118	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	225	115	226	114	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	225	115	226	114	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	233	118	226	122	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	231	118	233	118	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	231	119	233	118	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	239	121	232	126	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	237	122	239	121	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	238	122	239	121	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	246	124	238	129	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	243	125	246	124	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	244	125	246	124	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	253	127	244	133	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	250	128	253	127	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	251	129	253	127	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	260	129	250	137	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	256	131	260	129	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	257	132	260	129	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	268	132	256	141	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	262	135	268	132	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	264	136	268	132	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	276	134	262	144	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	268	138	276	134	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	271	140	276	134	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	284	137	268	148	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	274	141	284	137	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	277	144	284	137	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	293	138	274	152	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	280	145	293	138	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	284	148	293	138	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	147	56	133	69	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	137	63	147	56	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	141	65	147	56	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	150	61	138	72	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	143	66	150	61	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	145	67	150	61	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	153	65	143	75	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	148	69	153	65	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	150	70	153	65	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	157	70	148	78	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	152	73	157	70	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	154	73	157	70	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	160	74	152	82	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	157	76	160	74	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	158	77	160	74	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	164	78	157	85	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	162	80	164	78	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	163	80	164	78	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	169	82	162	88	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	167	83	169	82	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	167	84	169	82	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	173	86	167	91	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	172	87	173	86	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	172	87	173	86	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	178	90	173	94	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	176	91	178	90	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	177	91	178	90	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	183	94	178	98	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	182	94	183	94	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	182	94	183	94	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	188	97	183	101	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	187	98	188	97	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	187	98	188	97	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	193	101	188	104	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	192	101	193	101	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	192	102	193	101	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	198	104	194	108	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	197	105	198	104	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	198	105	198	104	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	204	108	199	111	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	203	108	204	108	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	203	109	204	108	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	210	111	204	115	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	209	112	210	111	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	209	112	210	111	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	216	115	210	118	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	215	115	216	115	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	215	116	216	115	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	222	118	216	122	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	221	119	222	118	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	221	119	222	118	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	228	122	221	126	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	227	122	228	122	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	227	123	228	122	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	235	125	227	129	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	233	126	235	125	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	234	126	235	125	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	242	128	233	133	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	239	129	242	128	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	240	130	242	128	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	249	131	239	137	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	246	133	249	131	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	247	133	249	131	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	257	134	245	141	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	252	136	257	134	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	253	137	257	134	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	265	137	251	144	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	259	139	265	137	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	260	141	265	137	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	273	140	257	148	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	265	143	273	140	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	267	145	273	140	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	282	142	263	152	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	271	146	282	142	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	274	149	282	142	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	292	145	269	156	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	277	150	292	145	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	280	153	292	145	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	139	58	128	72	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	131	66	139	58	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	135	67	139	58	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	142	63	133	75	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	136	69	142	63	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	139	70	142	63	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	146	68	138	78	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	141	72	146	68	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	144	73	146	68	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	150	72	143	82	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	146	75	150	72	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	148	76	150	72	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	154	77	147	85	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	151	79	154	77	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	152	79	154	77	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	158	81	152	88	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	156	83	158	81	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	157	83	158	81	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	162	85	157	91	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	161	86	162	85	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	162	87	162	85	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	167	89	162	94	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	166	90	167	89	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	166	90	167	89	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	172	93	168	98	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	171	94	172	93	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	171	94	172	93	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	177	97	173	101	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	176	97	177	97	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	176	98	177	97	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	182	101	178	104	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	181	101	182	101	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	182	101	182	101	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	188	104	183	108	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	187	105	188	104	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	187	105	188	104	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	193	108	189	111	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	192	108	193	108	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	193	109	193	108	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	199	112	194	115	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	198	112	199	112	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	198	112	199	112	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	205	115	200	118	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	204	116	205	115	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	204	116	205	115	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	211	119	205	122	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	210	119	211	119	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	210	119	211	119	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	217	122	211	126	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	216	123	217	122	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	216	123	217	122	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	224	126	216	129	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	222	126	224	126	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	223	127	224	126	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	231	129	222	133	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	229	130	231	129	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	229	130	231	129	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	238	133	228	137	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	235	134	238	133	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	236	134	238	133	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	245	136	234	141	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	242	137	245	136	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	243	138	245	136	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	253	140	240	144	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	249	141	253	140	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	249	142	253	140	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	262	143	246	148	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	255	144	262	143	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	256	146	262	143	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	270	146	252	152	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	262	148	270	146	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	263	150	270	146	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	280	149	258	156	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	268	151	280	149	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	270	154	280	149	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	290	152	265	160	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	273	155	290	152	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	276	159	290	152	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	131	60	123	75	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	124	69	131	60	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	129	69	131	60	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	134	65	128	78	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	130	71	134	65	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	133	72	134	65	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	138	70	133	82	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	135	75	138	70	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	137	75	138	70	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	143	75	138	85	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	140	78	143	75	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	142	79	143	75	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	147	79	142	88	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	145	82	147	79	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	146	82	147	79	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	151	84	147	91	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	150	86	151	84	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	151	86	151	84	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	156	88	152	94	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	155	89	156	88	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	156	90	156	88	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	161	92	157	98	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	160	93	161	92	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	161	93	161	92	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	166	96	163	101	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	165	97	166	96	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	166	97	166	96	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	171	100	168	104	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	170	101	171	100	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	171	101	171	100	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	177	104	173	108	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	176	104	177	104	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	176	105	177	104	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	182	108	178	111	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	181	108	182	108	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	182	108	182	108	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	188	112	184	115	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	187	112	188	112	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	187	112	188	112	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	194	115	189	118	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	193	116	194	115	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	193	116	194	115	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	200	119	195	122	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	199	120	200	119	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	199	120	200	119	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	206	123	200	126	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	205	123	206	123	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	205	123	206	123	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	212	127	206	129	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	211	127	212	127	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	211	127	212	127	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	219	130	211	133	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	218	131	219	130	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	218	131	219	130	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	226	134	217	137	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	224	134	226	134	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	224	135	226	134	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	234	138	223	141	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	231	138	234	138	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	231	139	234	138	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	241	141	229	144	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	238	142	241	141	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	238	143	241	141	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	249	145	235	148	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	244	146	249	145	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	245	147	249	145	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	258	149	241	152	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	251	149	258	149	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	252	151	258	149	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	267	152	247	156	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	258	153	267	152	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	259	155	267	152	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	277	155	253	160	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	264	157	277	155	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	266	159	277	155	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	287	159	260	165	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	270	160	287	159	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	272	164	287	159	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	122	63	118	78	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	117	72	122	63	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	122	72	122	63	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	126	68	123	82	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	123	75	126	68	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	126	75	126	68	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	131	73	128	85	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	128	78	131	73	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	131	78	131	73	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	135	78	133	88	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	133	81	135	78	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	135	81	135	78	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	140	82	137	91	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	138	85	140	82	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	140	85	140	82	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	145	87	142	94	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	144	89	145	87	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	145	89	145	87	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	150	91	147	98	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	149	93	150	91	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	149	93	150	91	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	155	95	152	101	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	154	96	155	95	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	155	96	155	95	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	160	99	158	104	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	159	100	160	99	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	160	100	160	99	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	165	104	163	108	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	165	104	165	104	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	165	104	165	104	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	171	108	168	111	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	170	108	171	108	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	171	108	171	108	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	176	112	173	115	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	176	112	176	112	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	176	112	176	112	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	182	115	179	118	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	182	116	182	115	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	182	116	182	115	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	188	119	184	122	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	188	120	188	119	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	188	120	188	119	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	194	123	190	126	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	194	124	194	123	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	194	124	194	123	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	201	127	195	129	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	200	127	201	127	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	200	128	201	127	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	207	131	201	133	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	206	131	207	131	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	206	132	207	131	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	214	135	206	137	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	213	135	214	135	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	213	135	214	135	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	221	139	212	141	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	219	139	221	139	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	220	139	221	139	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	229	143	218	144	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	226	143	229	143	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	226	143	229	143	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	237	147	224	148	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	233	147	237	147	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	233	148	237	147	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	245	151	230	152	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	240	151	245	151	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	240	152	245	151	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	254	155	236	156	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	247	154	254	155	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	248	156	254	155	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	263	158	242	160	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	254	158	263	158	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	254	160	263	158	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	273	162	248	165	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	260	162	273	162	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	261	165	273	162	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	284	166	255	169	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	266	166	284	166	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	267	170	284	166	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	113	66	113	82	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	111	75	113	66	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	115	75	113	66	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	118	71	118	85	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	116	78	118	71	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	120	78	118	71	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	123	76	123	88	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	121	81	123	76	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	124	81	123	76	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	128	81	127	91	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	127	85	128	81	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	128	84	128	81	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	133	86	132	94	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	132	88	133	86	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	133	88	133	86	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	138	90	137	98	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	137	92	138	90	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	138	92	138	90	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	143	94	142	101	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	142	96	143	94	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	143	96	143	94	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	148	99	147	104	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	148	100	148	99	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	148	100	148	99	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	154	103	152	108	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	153	104	154	103	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	154	104	154	103	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	159	107	158	111	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	159	108	159	107	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	159	108	159	107	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	165	111	163	115	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	165	112	165	111	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	165	112	165	111	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	171	115	168	118	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	170	116	171	115	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	170	116	171	115	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	177	119	173	122	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	176	120	177	119	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	176	120	177	119	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	183	123	179	126	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	182	124	183	123	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	182	124	183	123	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	189	127	184	129	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	188	128	189	127	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	188	128	189	127	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	195	132	190	133	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	195	132	195	132	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	195	132	195	132	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	202	136	196	137	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	201	136	202	136	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	201	136	202	136	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	209	140	201	141	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	208	140	209	140	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	208	140	209	140	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	216	144	207	144	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	214	144	216	144	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	215	144	216	144	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	224	148	213	148	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	221	148	224	148	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	221	148	224	148	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	232	152	219	152	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	228	152	232	152	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	228	153	232	152	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	240	156	225	156	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	235	156	240	156	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	236	157	240	156	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	249	161	231	160	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	242	160	249	161	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	243	161	249	161	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	258	165	237	165	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	249	164	258	165	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	250	166	258	165	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	269	169	243	169	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	256	168	269	169	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	256	171	269	169	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	280	174	250	173	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	262	171	280	174	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	262	175	280	174	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	104	69	108	85	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	104	78	104	69	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	109	78	104	69	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	109	74	113	88	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	109	81	109	74	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	113	81	109	74	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	115	79	117	91	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	115	84	115	79	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	117	84	115	79	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	120	84	122	94	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	120	88	120	84	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	122	88	120	84	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	125	89	127	98	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	125	92	125	89	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	126	92	125	89	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	131	94	132	101	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	131	96	131	94	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	132	95	131	94	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	136	98	137	104	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	136	99	136	98	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	137	99	136	98	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	142	102	142	108	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	142	103	142	102	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	142	103	142	102	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	147	107	147	111	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	147	107	147	107	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	147	107	147	107	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	153	111	152	115	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	153	111	153	111	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	153	111	153	111	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	159	115	158	118	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	159	115	159	115	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	159	115	159	115	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	165	119	163	122	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	164	120	165	119	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	165	120	165	119	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	171	123	168	126	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	170	124	171	123	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	171	124	171	123	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	177	128	174	129	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	177	128	177	128	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	177	128	177	128	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	183	132	179	133	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	183	132	183	132	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	183	132	183	132	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	190	136	185	137	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	189	136	190	136	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	189	136	190	136	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	196	140	190	141	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	196	140	196	140	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	196	140	196	140	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	203	144	196	144	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	202	144	203	144	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	202	145	203	144	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	211	149	202	148	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	209	149	211	149	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	209	149	211	149	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	218	153	208	152	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	216	153	218	153	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	216	153	218	153	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	226	158	214	156	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	223	157	226	158	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	223	158	226	158	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	235	162	220	160	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	230	161	235	162	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	230	162	235	162	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	244	167	226	165	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	237	165	244	167	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	237	167	244	167	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	253	172	232	169	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	244	169	253	172	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	244	172	253	172	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	264	177	238	173	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	251	173	264	177	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	251	176	264	177	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	275	182	245	177	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	257	177	275	182	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	257	181	275	182	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	95	73	103	88	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	97	82	95	73	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	102	81	95	73	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	101	78	107	91	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	102	85	101	78	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	106	84	101	78	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	107	83	112	94	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	108	88	107	83	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	110	88	107	83	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	112	88	117	98	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	113	92	112	88	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	115	91	112	88	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	118	93	122	101	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	119	95	118	93	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	120	95	118	93	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	124	97	127	104	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	124	99	124	97	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	125	99	124	97	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	129	102	132	108	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	130	103	129	102	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	130	103	129	102	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	135	106	137	111	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	135	107	135	106	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	136	107	135	106	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	141	111	142	115	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	141	111	141	111	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	141	111	141	111	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	147	115	147	118	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	147	115	147	115	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	147	115	147	115	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	153	119	152	122	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	153	119	153	119	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	153	119	153	119	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	159	123	158	126	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	159	124	159	123	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	159	124	159	123	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	165	128	163	129	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	165	128	165	128	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	165	128	165	128	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	171	132	169	133	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	171	132	171	132	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	171	132	171	132	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	177	136	174	137	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	177	136	177	136	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	177	136	177	136	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	184	140	180	141	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	184	140	184	140	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	184	141	184	140	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	191	145	185	144	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	190	145	191	145	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	190	145	191	145	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	198	149	191	148	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	197	149	198	149	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	197	149	198	149	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	205	154	197	152	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	204	153	205	154	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	204	154	205	154	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	213	158	203	156	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	211	158	213	158	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	210	158	213	158	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	221	163	208	160	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	218	162	221	163	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	217	163	221	163	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	229	168	215	165	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	225	167	229	168	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	225	168	229	168	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	238	173	221	169	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	232	171	238	173	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	232	172	238	173	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	247	179	227	173	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	239	175	247	179	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	238	177	247	179	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	258	184	233	177	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	246	179	258	184	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	245	182	258	184	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	269	190	239	182	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	252	183	269	190	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	251	187	269	190	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	86	77	97	91	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	90	86	86	77	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	95	84	86	77	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	92	82	102	94	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	96	89	92	82	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	99	88	92	82	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	98	87	107	98	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	101	92	98	87	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	103	91	98	87	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	105	92	112	101	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	106	95	105	92	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	108	95	105	92	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	111	97	117	104	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	112	99	111	97	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	113	99	111	97	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	117	101	122	108	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	117	103	117	101	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	118	103	117	101	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	123	106	127	111	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	123	107	123	106	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	124	107	123	106	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	128	110	132	115	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	129	111	128	110	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	129	111	128	110	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	134	115	137	118	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	135	115	134	115	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	135	115	134	115	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	140	119	142	122	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	140	119	140	119	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	141	119	140	119	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	146	123	147	126	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	146	123	146	123	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	146	123	146	123	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	152	128	152	129	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	152	128	152	128	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	152	128	152	128	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	159	132	158	133	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	159	132	159	132	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	159	132	159	132	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	165	136	163	137	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	165	136	165	136	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	165	136	165	136	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	171	141	169	141	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	171	141	171	141	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	171	141	171	141	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	178	145	174	144	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	178	145	178	145	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	178	145	178	145	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	185	150	180	148	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	184	149	185	150	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	184	150	185	150	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	192	154	186	152	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	191	154	192	154	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	191	154	192	154	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	199	159	191	156	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	198	158	199	159	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	198	159	199	159	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	206	164	197	160	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	205	163	206	164	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	204	163	206	164	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	214	169	203	165	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	212	168	214	169	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	211	168	214	169	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	223	174	209	169	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	219	172	223	174	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	218	173	223	174	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	231	180	215	173	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	226	177	231	180	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	225	178	231	180	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	241	185	221	177	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	233	181	241	185	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	232	183	241	185	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	251	191	228	182	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	240	185	251	191	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	239	188	251	191	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	262	198	234	186	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	247	189	262	198	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	245	193	262	198	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	77	82	92	94	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	84	90	77	82	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	87	88	77	82	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	84	87	97	98	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	89	93	84	87	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	91	91	84	87	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	91	92	102	101	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	94	96	91	92	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	96	95	91	92	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	97	97	106	104	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	100	100	97	97	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	101	99	97	97	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	103	101	111	108	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	105	103	103	101	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	106	103	103	101	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	110	106	116	111	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	111	107	110	106	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	111	107	110	106	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	116	110	121	115	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	117	111	116	110	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	117	111	116	110	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	122	114	126	118	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	122	115	122	114	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	123	115	122	114	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	128	119	131	122	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	128	119	128	119	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	128	119	128	119	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	134	123	137	126	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	134	123	134	123	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	134	123	134	123	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	140	127	142	129	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	140	128	140	127	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	140	128	140	127	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	146	132	147	133	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	146	132	146	132	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	146	132	146	132	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	152	136	152	137	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	152	136	152	136	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	152	136	152	136	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	159	141	158	141	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	159	141	159	141	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	159	141	159	141	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	165	145	163	144	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	165	145	165	145	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	165	145	165	145	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	172	150	169	148	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	172	150	172	150	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	171	150	172	150	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	178	154	175	152	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	178	154	178	154	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	178	154	178	154	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	185	159	180	156	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	185	159	185	159	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	185	159	185	159	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	193	164	186	160	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	192	163	193	164	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	191	164	193	164	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	200	169	192	165	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	199	168	200	169	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	198	168	200	169	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	208	175	198	169	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	206	173	208	175	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	205	173	208	175	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	216	180	204	173	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	213	178	216	180	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	212	178	216	180	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	225	186	210	177	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	220	182	225	186	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	219	183	225	186	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	234	192	216	182	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	227	187	234	192	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	226	189	234	192	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	243	199	222	186	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	234	191	243	199	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	232	194	243	199	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	254	206	229	190	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	241	195	254	206	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	238	198	254	206	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	68	87	87	98	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	77	94	68	87	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	80	92	68	87	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	76	92	91	101	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	82	97	76	92	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	84	95	76	92	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	83	97	96	104	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	87	100	83	97	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	89	99	83	97	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	90	101	101	108	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	93	104	90	101	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	94	103	90	101	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	96	106	106	111	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	98	108	96	106	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	99	107	96	106	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	103	110	111	115	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	104	111	103	110	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	105	111	103	110	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	109	114	116	118	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	110	115	109	114	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	110	115	109	114	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	115	119	121	122	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	116	119	115	119	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	116	119	115	119	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	121	123	126	126	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	122	124	121	123	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	122	123	121	123	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	128	127	131	129	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	128	128	128	127	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	128	128	128	127	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	134	132	136	133	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	134	132	134	132	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	134	132	134	132	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	140	136	142	137	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	140	136	140	136	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	140	136	140	136	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	146	141	147	141	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	146	141	146	141	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	146	141	146	141	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	152	145	152	144	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	152	145	152	145	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	152	145	152	145	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	159	150	158	148	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	159	150	159	150	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	159	150	159	150	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	165	154	163	152	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	165	154	165	154	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	165	154	165	154	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	172	159	169	156	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	172	159	172	159	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	172	159	172	159	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	179	164	175	160	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	178	164	179	164	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	178	164	179	164	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	186	169	181	165	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	185	168	186	169	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	185	169	186	169	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	193	175	187	169	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	192	173	193	175	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	192	174	193	175	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	201	180	192	173	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	199	178	201	180	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	198	179	201	180	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	209	186	198	177	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	206	183	209	186	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	205	184	209	186	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	217	192	205	182	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	213	188	217	192	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	212	189	217	192	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	226	199	211	186	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	221	193	226	199	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	219	194	226	199	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	235	206	217	190	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	228	197	235	206	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	225	199	235	206	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	245	213	223	195	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	235	201	245	213	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	231	204	245	213	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	60	92	81	101	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	71	99	60	92	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	74	96	60	92	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	68	97	86	104	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	76	102	68	97	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	78	100	68	97	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	75	102	91	108	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	81	105	75	102	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	82	103	75	102	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	82	106	95	111	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	86	108	82	106	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	87	107	82	106	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	89	110	100	115	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	92	112	89	110	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	93	111	89	110	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	96	115	105	118	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	98	116	96	115	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	98	115	96	115	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	102	119	110	122	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	104	120	102	119	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	104	119	102	119	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	109	123	115	126	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	110	124	109	123	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	110	124	109	123	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	115	128	120	129	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	116	128	115	128	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	116	128	115	128	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	121	132	126	133	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	122	132	121	132	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	122	132	121	132	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	127	136	131	137	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	128	136	127	136	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	128	136	127	136	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	134	141	136	141	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	134	141	134	141	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	134	141	134	141	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	140	145	141	144	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	140	145	140	145	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	140	145	140	145	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	146	150	147	148	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	146	150	146	150	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	146	150	146	150	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	152	154	152	152	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	152	154	152	154	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	152	154	152	154	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	159	159	158	156	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	159	159	159	159	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	159	159	159	159	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	165	164	164	160	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	165	164	165	164	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	165	164	165	164	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	172	169	169	165	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	172	168	172	169	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	172	168	172	169	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	179	174	175	169	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	179	173	179	174	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	178	173	179	174	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	186	180	181	173	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	185	178	186	180	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	185	179	186	180	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	193	186	187	177	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	192	183	193	186	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	191	184	193	186	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	201	192	193	182	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	199	188	201	192	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	198	189	201	192	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	209	198	199	186	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	206	193	209	198	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	205	194	209	198	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	218	205	205	190	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	214	198	218	205	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	211	199	218	205	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	226	212	212	195	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	221	203	226	212	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	217	205	226	212	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	236	221	218	200	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	228	207	236	221	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	223	209	236	221	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	52	98	76	104	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	65	103	52	98	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	67	100	52	98	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	60	103	80	108	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	69	106	60	103	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	71	104	60	103	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	68	107	85	111	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	74	109	68	107	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	75	108	68	107	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	75	111	90	115	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	80	113	75	111	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	81	112	75	111	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	82	115	95	118	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	86	117	82	115	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	86	116	82	115	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	89	120	100	122	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	91	120	89	120	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	92	120	89	120	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	96	124	105	126	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	97	124	96	124	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	98	124	96	124	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	102	128	110	129	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	103	128	102	128	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	103	128	102	128	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	108	132	115	133	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	109	132	108	132	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	109	132	108	132	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	115	136	120	137	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	115	137	115	136	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	115	136	115	136	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	121	141	125	141	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	121	141	121	141	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	121	141	121	141	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	127	145	131	144	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	127	145	127	145	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	127	145	127	145	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	133	150	136	148	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	133	150	133	150	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	133	150	133	150	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	140	154	141	152	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	140	154	140	154	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	140	154	140	154	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	146	159	147	156	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	146	159	146	159	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	146	159	146	159	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	152	164	152	160	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	152	163	152	164	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	152	163	152	164	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	159	169	158	165	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	159	168	159	169	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	158	168	159	169	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	165	174	164	169	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	165	173	165	174	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	165	173	165	174	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	172	179	170	173	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	172	178	172	179	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	171	178	172	179	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	179	185	175	177	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	178	183	179	185	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	178	183	179	185	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	186	191	181	182	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	185	188	186	191	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	184	189	186	191	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	193	197	187	186	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	192	194	193	197	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	191	194	193	197	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	201	204	194	190	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	199	199	201	204	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	197	199	201	204	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	209	211	200	195	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	206	204	209	211	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	204	205	209	211	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	217	219	206	200	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	213	209	217	219	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	210	210	217	219	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	226	227	212	204	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	221	213	226	227	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	215	215	226	227	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	45	104	70	108	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	59	108	45	104	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	60	105	45	104	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	53	108	75	111	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	63	111	53	108	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	64	109	53	108	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	61	112	80	115	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	68	114	61	112	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	69	113	61	112	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	68	116	84	118	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	74	118	68	116	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	74	116	68	116	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	75	120	89	122	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	79	121	75	120	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	80	120	75	120	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	82	124	94	126	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	85	125	82	124	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	85	124	82	124	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	89	129	99	129	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	91	129	89	129	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	91	128	89	129	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	96	133	104	133	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	97	133	96	133	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	97	133	96	133	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	102	137	109	137	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	103	137	102	137	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	103	137	102	137	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	108	141	114	141	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	109	141	108	141	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	109	141	108	141	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	115	145	120	144	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	115	145	115	145	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	115	145	115	145	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	121	150	125	148	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	121	150	121	150	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	121	150	121	150	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	127	154	130	152	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	127	154	127	154	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	127	154	127	154	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	133	159	136	156	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	133	159	133	159	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	133	159	133	159	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	139	164	141	160	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	139	163	139	164	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	139	163	139	164	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	145	168	147	165	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	146	168	145	168	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	146	168	145	168	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	152	173	152	169	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	152	173	152	173	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	152	173	152	173	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	158	179	158	173	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	158	178	158	179	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	158	178	158	179	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	165	184	164	177	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	165	183	165	184	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	164	183	165	184	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	171	190	170	182	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	171	188	171	190	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	171	188	171	190	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	178	196	176	186	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	178	193	178	196	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	177	194	178	196	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	185	203	182	190	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	185	199	185	203	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	183	199	185	203	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	192	209	188	195	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	192	204	192	209	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	190	204	192	209	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	200	217	194	200	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	199	209	200	217	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	196	210	200	217	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	207	225	200	204	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	206	214	207	225	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	202	215	207	225	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	215	234	207	209	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	213	219	215	234	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	207	220	215	234	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	38	110	64	111	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	53	113	38	110	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	54	109	38	110	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	46	114	69	115	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	57	116	46	114	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	58	113	46	114	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	54	118	74	118	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	62	119	54	118	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	63	117	54	118	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	62	122	79	122	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	68	123	62	122	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	68	121	62	122	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	69	126	83	126	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	73	126	69	126	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	73	125	69	126	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	76	130	88	129	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	79	130	76	130	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	79	129	76	130	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	83	133	93	133	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	85	134	83	133	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	85	133	83	133	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	89	137	98	137	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	91	138	89	137	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	91	137	89	137	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	96	142	104	141	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	97	142	96	142	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	97	141	96	142	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	102	146	109	144	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	103	146	102	146	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	103	145	102	146	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	108	150	114	148	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	109	150	108	150	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	109	150	108	150	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	114	154	119	152	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	115	154	114	154	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	115	154	114	154	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	120	159	125	156	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	121	159	120	159	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	121	159	120	159	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	126	163	130	160	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	127	163	126	163	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	127	163	126	163	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	133	168	135	165	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	133	168	133	168	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	133	168	133	168	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	139	173	141	169	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	139	173	139	173	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	139	172	139	173	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	145	178	147	173	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	145	177	145	178	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	145	177	145	178	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	151	183	152	177	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	151	182	151	183	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	151	182	151	183	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	157	189	158	182	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	158	188	157	189	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	157	188	157	189	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	164	195	164	186	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	164	193	164	195	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	163	193	164	195	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	170	201	170	190	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	171	198	170	201	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	169	198	170	201	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	176	208	176	195	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	177	204	176	208	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	176	204	176	208	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	183	215	182	200	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	184	209	183	215	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	182	209	183	215	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	190	222	188	204	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	191	214	190	222	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	188	215	190	222	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	197	231	195	209	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	198	220	197	231	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	194	220	197	231	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	204	240	201	214	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	205	224	204	240	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	199	224	204	240	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	31	117	59	115	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	47	117	31	117	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	47	114	31	117	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	40	120	63	118	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	52	121	40	120	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	52	118	40	120	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	48	124	68	122	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	57	124	48	124	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	56	122	48	124	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	55	127	73	126	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	62	127	55	127	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	62	126	55	127	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	63	131	78	129	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	67	131	63	131	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	67	130	63	131	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	70	135	83	133	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	73	135	70	135	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	73	134	70	135	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	77	138	88	137	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	79	138	77	138	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	79	138	77	138	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	83	142	93	141	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	85	142	83	142	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	85	142	83	142	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	89	146	98	144	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	91	146	89	146	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	91	146	89	146	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	96	150	103	148	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	97	150	96	150	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	97	150	96	150	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	102	155	108	152	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	103	154	102	155	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	103	154	102	155	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	108	159	113	156	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	109	159	108	159	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	109	159	108	159	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	114	163	119	160	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	115	163	114	163	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	114	163	114	163	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	120	168	124	165	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	121	168	120	168	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	120	168	120	168	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	126	173	130	169	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	126	172	126	173	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	126	172	126	173	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	132	178	135	173	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	132	177	132	178	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	132	177	132	178	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	138	183	141	177	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	138	182	138	183	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	138	182	138	183	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	144	188	147	182	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	144	187	144	188	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	144	187	144	188	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	150	194	152	186	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	151	192	150	194	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	150	192	150	194	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	156	200	158	190	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	157	198	156	200	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	156	197	156	200	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	162	206	164	195	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	163	203	162	206	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	162	203	162	206	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	168	212	170	200	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	170	209	168	212	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	168	208	168	212	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	174	220	176	204	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	176	214	174	220	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	174	214	174	220	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	180	227	183	209	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	183	219	180	227	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	180	219	180	227	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	187	236	189	214	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	190	225	187	236	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	186	224	187	236	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	193	245	195	218	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	197	229	193	245	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	191	229	193	245	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	25	123	53	118	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	42	122	25	123	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	41	119	25	123	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	34	126	58	122	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	46	125	34	126	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	46	123	34	126	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	42	130	62	126	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	51	129	42	130	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	50	127	42	130	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	50	133	67	129	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	56	132	50	133	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	56	131	50	133	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	57	136	72	133	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	62	136	57	136	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	61	135	57	136	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	64	140	77	137	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	68	139	64	140	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	67	139	64	140	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	71	143	82	141	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	73	143	71	143	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	73	143	71	143	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	77	147	87	144	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	79	147	77	147	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	79	146	77	147	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	83	151	92	148	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	85	151	83	151	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	85	150	83	151	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	90	155	97	152	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	91	155	90	155	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	91	155	90	155	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	96	159	102	156	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	97	159	96	159	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	97	159	96	159	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	102	164	108	160	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	103	163	102	164	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	102	163	102	164	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	108	168	113	165	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	108	168	108	168	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	108	167	108	168	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	113	173	118	169	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	114	172	113	173	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	114	172	113	173	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	119	177	124	173	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	120	177	119	177	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	120	177	119	177	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	125	182	129	177	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	126	182	125	182	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	126	181	125	182	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	131	187	135	182	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	132	186	131	187	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	131	186	131	187	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	137	193	141	186	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	138	192	137	193	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	137	191	137	193	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	142	198	147	190	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	143	197	142	198	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	143	197	142	198	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	148	204	152	195	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	149	202	148	204	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	149	202	148	204	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	154	210	158	200	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	156	208	154	210	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	154	207	154	210	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	159	217	164	204	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	162	213	159	217	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	160	213	159	217	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	165	224	171	209	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	168	219	165	224	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	166	218	165	224	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	171	232	177	214	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	175	224	171	232	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	172	224	171	232	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	176	240	183	218	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	182	230	176	240	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	178	229	176	240	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	182	249	189	223	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	189	235	182	249	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	183	233	182	249	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	20	130	47	122	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	37	127	20	130	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	35	124	20	130	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	28	133	52	126	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	41	130	28	133	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	40	128	28	133	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	36	135	56	129	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	46	134	36	135	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	45	132	36	135	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	44	138	61	133	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	51	137	44	138	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	50	136	44	138	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	51	142	66	137	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	56	141	51	142	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	56	140	51	142	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	58	145	71	141	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	62	144	58	145	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	61	143	58	145	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	65	149	76	144	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	68	148	65	149	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	67	147	65	149	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	71	152	81	148	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	73	152	71	152	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	73	151	71	152	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	77	156	86	152	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	79	155	77	156	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	79	155	77	156	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	84	160	91	156	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	85	159	84	160	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	85	159	84	160	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	90	164	96	160	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	91	164	90	164	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	90	163	90	164	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	95	168	102	165	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	96	168	95	168	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	96	168	95	168	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	101	173	107	169	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	102	172	101	173	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	102	172	101	173	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	107	177	112	173	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	108	177	107	177	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	108	176	107	177	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	113	182	118	177	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	114	181	113	182	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	113	181	113	182	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	118	187	123	182	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	119	186	118	187	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	119	186	118	187	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	124	192	129	186	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	125	191	124	192	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	125	191	124	192	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	129	197	135	190	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	131	196	129	197	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	130	196	129	197	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	135	203	141	195	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	136	201	135	203	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	136	201	135	203	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	140	209	146	200	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	142	207	140	209	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	141	206	140	209	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	145	215	152	204	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	148	212	145	215	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	147	212	145	215	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	151	221	158	209	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	154	218	151	221	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	152	217	151	221	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	156	228	165	214	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	160	223	156	228	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	158	222	156	228	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	161	236	171	218	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	167	229	161	236	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	164	228	161	236	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	166	244	177	223	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	174	234	166	244	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	169	233	166	244	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	170	253	183	228	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	181	239	170	253	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	175	237	170	253	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	15	136	41	126	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	32	132	15	136	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	29	128	15	136	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	23	139	46	129	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	36	135	23	139	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	34	133	23	139	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	31	141	50	133	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	40	139	31	141	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	39	137	31	141	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	39	144	55	137	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	46	142	39	144	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	45	141	39	144	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	46	147	60	141	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	51	145	46	147	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	50	144	46	147	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	53	150	65	144	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	56	149	53	150	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	56	148	53	150	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	59	154	70	148	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	62	153	59	154	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	62	152	59	154	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	65	157	75	152	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	68	156	65	157	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	67	156	65	157	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	72	161	80	156	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	73	160	72	161	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	73	160	72	161	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	78	165	85	160	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	79	164	78	165	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	79	164	78	165	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	83	169	90	165	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	85	168	83	169	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	84	168	83	169	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	89	173	96	169	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	90	172	89	173	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	90	172	89	173	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	95	177	101	173	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	96	177	95	177	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	96	176	95	177	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	100	182	106	177	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	102	181	100	182	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	101	181	100	182	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	106	186	112	182	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	107	186	106	186	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	107	185	106	186	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	111	191	117	186	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	113	190	111	191	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	112	190	111	191	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	117	196	123	190	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	118	195	117	196	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	118	195	117	196	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	122	201	129	195	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	124	200	122	201	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	123	200	122	201	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	127	207	135	200	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	129	205	127	207	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	129	205	127	207	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	132	213	140	204	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	135	211	132	213	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	134	210	132	213	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	137	219	146	209	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	141	216	137	219	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	139	216	137	219	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	142	225	152	214	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	146	222	142	225	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	145	221	142	225	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	147	232	159	218	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	152	228	147	232	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	150	227	147	232	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	151	240	165	223	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	159	233	151	240	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	156	232	151	240	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	156	248	171	228	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	165	239	156	248	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	162	237	156	248	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	159	257	177	233	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	173	244	159	257	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	168	241	159	257	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	11	143	35	129	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	27	136	11	143	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	24	133	11	143	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	19	145	40	133	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	31	140	19	145	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	29	138	19	145	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	27	147	44	137	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	35	143	27	147	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	34	142	27	147	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	34	150	49	141	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	40	147	34	150	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	39	146	34	150	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	41	152	54	144	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	46	150	41	152	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	45	149	41	152	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	47	155	59	148	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	51	154	47	155	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	50	153	47	155	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	54	159	64	152	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	57	157	54	159	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	56	157	54	159	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	60	162	69	156	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	62	161	60	162	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	62	160	60	162	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	66	166	74	160	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	68	165	66	166	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	67	164	66	166	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	72	169	79	165	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	73	169	72	169	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	73	168	72	169	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	77	173	84	169	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	79	173	77	173	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	78	172	77	173	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	83	177	90	173	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	84	177	83	177	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	84	176	83	177	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	89	182	95	177	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	90	181	89	182	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	90	181	89	182	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	94	186	100	182	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	95	185	94	186	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	95	185	94	186	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	99	191	106	186	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	101	190	99	191	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	100	190	99	191	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	105	195	111	190	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	106	195	105	195	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	106	194	105	195	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	110	200	117	195	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	111	200	110	200	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	111	199	110	200	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	115	206	123	200	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	117	205	115	206	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	116	204	115	206	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	120	211	128	204	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	122	210	120	211	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	122	209	120	211	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	125	217	134	209	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	128	215	125	217	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	127	214	125	217	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	129	223	140	214	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	133	221	129	223	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	132	220	129	223	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	134	229	146	218	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	139	226	134	229	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	137	225	134	229	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	138	236	152	223	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	145	232	138	236	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	143	230	138	236	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	142	243	159	228	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	151	238	142	243	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	148	236	142	243	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	146	251	165	233	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	157	243	146	251	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	154	241	146	251	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	149	259	171	239	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	165	249	149	259	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	160	245	149	259	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	7	149	29	133	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	22	141	7	149	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	18	138	7	149	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	15	151	34	137	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	26	144	15	151	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	23	143	15	151	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	22	153	38	141	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	30	148	22	153	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	28	147	22	153	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	29	155	43	144	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	35	151	29	155	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	34	150	29	155	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	36	157	48	148	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	40	155	36	157	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	39	154	36	157	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	42	160	53	152	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	46	158	42	160	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	45	158	42	160	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	48	163	58	156	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	51	162	48	163	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	50	161	48	163	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	54	167	63	160	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	57	165	54	167	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	56	165	54	167	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	60	170	68	165	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	62	169	60	170	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	62	169	60	170	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	66	174	73	169	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	67	173	66	174	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	67	173	66	174	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	72	178	78	173	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	73	177	72	178	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	73	177	72	178	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	77	182	83	177	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	78	181	77	182	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	78	181	77	182	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	82	186	89	182	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	84	185	82	186	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	83	185	82	186	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	88	190	94	186	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	89	190	88	190	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	89	190	88	190	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	93	195	100	190	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	94	194	93	195	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	94	194	93	195	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	98	200	105	195	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	99	199	98	200	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	99	199	98	200	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	103	205	111	200	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	105	204	103	205	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	104	204	103	205	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	108	210	116	204	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	110	209	108	210	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	110	208	108	210	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	113	215	122	209	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	115	214	113	215	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	115	213	113	215	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	117	221	128	214	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	120	219	117	221	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	120	219	117	221	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	122	227	134	218	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	126	225	122	227	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	125	224	122	227	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	126	233	140	223	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	131	230	126	233	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	130	229	126	233	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	130	239	146	228	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	137	236	130	239	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	135	234	130	239	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	133	246	152	233	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	143	242	133	246	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	141	239	133	246	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	136	254	159	239	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	149	247	136	254	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	146	244	136	254	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	139	262	165	244	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	157	253	139	262	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	152	249	139	262	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	4	155	23	137	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	18	145	4	155	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	13	143	4	155	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	12	156	27	141	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	21	149	12	156	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	18	147	12	156	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	18	158	32	144	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	26	152	18	158	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	23	151	18	158	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	25	160	37	148	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	30	156	25	160	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	29	155	25	160	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	31	162	42	152	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	35	159	31	162	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	34	159	31	162	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	37	165	47	156	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	41	163	37	165	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	40	162	37	165	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	43	168	51	160	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	46	166	43	168	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	45	166	43	168	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	49	171	56	165	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	51	170	49	171	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	50	170	49	171	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	55	175	62	169	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	56	174	55	175	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	56	173	55	175	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	60	178	67	173	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	62	178	60	178	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	61	177	60	178	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	66	182	72	177	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	67	182	66	182	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	67	181	66	182	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	71	186	77	182	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	72	186	71	186	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	72	185	71	186	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	76	190	82	186	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	77	190	76	190	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	77	190	76	190	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	82	195	88	190	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	83	194	82	195	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	82	194	82	195	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	87	199	93	195	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	88	199	87	199	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	88	198	87	199	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	92	204	99	200	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	93	203	92	204	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	93	203	92	204	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	96	209	104	204	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	98	208	96	209	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	98	208	96	209	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	101	214	110	209	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	103	213	101	214	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	103	213	101	214	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	106	219	116	214	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	108	218	106	219	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	108	218	106	219	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	110	224	122	218	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	113	223	110	224	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	113	223	110	224	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	114	230	128	223	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	118	229	114	230	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	118	228	114	230	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	118	236	134	228	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	124	234	118	236	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	123	233	118	236	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	121	242	140	233	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	129	240	121	242	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	128	238	121	242	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	125	249	146	239	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	135	246	125	249	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	133	243	125	249	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	127	256	152	244	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	141	251	127	256	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	139	248	127	256	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	129	263	159	249	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	148	257	129	263	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	145	252	129	263	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	2	160	17	141	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	13	149	2	160	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	8	148	2	160	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	8	161	21	144	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	17	153	8	161	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	13	152	8	161	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	15	163	26	148	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	21	157	15	163	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	18	156	15	163	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	21	165	31	152	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	26	160	21	165	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	24	160	21	165	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	27	167	35	156	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	30	164	27	167	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	29	163	27	167	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	33	170	40	160	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	35	167	33	170	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	34	167	33	170	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	38	173	45	165	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	41	171	38	173	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	40	171	38	173	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	44	176	50	169	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	46	175	44	176	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	45	174	44	176	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	49	179	55	173	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	51	178	49	179	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	50	178	49	179	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	55	183	60	177	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	56	182	55	183	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	56	182	55	183	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	60	187	66	182	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	61	186	60	187	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	61	186	60	187	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	65	191	71	186	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	66	190	65	191	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	66	190	65	191	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	70	195	76	190	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	71	194	70	195	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	71	194	70	195	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	75	199	81	195	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	76	198	75	199	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	76	198	75	199	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	80	203	87	200	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	81	203	80	203	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	81	203	80	203	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	85	208	92	204	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	86	208	85	208	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	86	207	85	208	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	90	213	98	209	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	91	212	90	213	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	91	212	90	213	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	94	218	104	214	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	96	217	94	218	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	96	217	94	218	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	99	223	110	218	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	101	222	99	223	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	101	222	99	223	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	103	228	115	223	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	106	227	103	228	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	106	227	103	228	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	107	234	121	228	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	111	233	107	234	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	111	232	107	234	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	111	239	127	233	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	116	238	111	239	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	116	237	111	239	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	114	245	134	239	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	122	244	114	245	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	121	242	114	245	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	117	251	140	244	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	127	249	117	251	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	126	247	117	251	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	119	258	146	249	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	133	255	119	258	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	132	252	119	258	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	120	265	152	254	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	140	261	120	265	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	138	256	120	265	psDrawLine

    grestore	% restore graphics state


   cleartomark					%% clearing operand stack

end		%% pops mainDict from dictionary stack

showpage

%-------------------------- end --------------------------%