1: %!
2: %%BoundingBox: 51 69 525 498
3: %%Creator: Igor
4: %%Title: Layout0
5: %%Creation Date: Wed, Nov 05, 2003 2:33 PM
6: %%DocumentFonts: (atend)
7: %%EndComments
8: 0 567 translate 1 -1 scale
9: /IgorSave save def
10:
11: 1000 dict begin
12:
13: 0 setgray 0 setlinecap
14: 1 setlinewidth 0 setlinejoin
15: 1 setmiterlimit [] 0 setdash
16:
17: /aw 0 def /ah 0 def
18: /x0 0 def /y0 0 def /x1 0 def /y1 0 def
19: /rx0 0 def /ry0 0 def /rx1 0 def /ry1 0 def
20: /tmp0 0 def /tmp1 0 def
21: /packedRed 0 def /packedGreen 0 def /packedBlue 0 def
22: /x 0 def /y 0 def /w 0 def /c 0 string def
23:
24: /rbak 1 def /gbak 1 def /bbak 1 def
25: /rfor 0 def /gfor 0 def /bfor 0 def
26:
27: /bdef{bind def}bind def
28: /ldef{load def}bdef
29: /xdef{exch def}bdef
30:
31: /setuserscreendict 22 dict def
32: setuserscreendict begin
33:
34: /tempctm matrix def
35: /temprot matrix def
36: /tempscale matrix def
37:
38: /concatprocs{
39: /proc2 exch cvlit def
40: /proc1 exch cvlit def
41: /newproc proc1 length proc2 length add array def
42: newproc 0 proc1 putinterval
43: newproc proc1 length proc2 putinterval
44: newproc cvx
45: }def
46:
47: /resmatrix matrix def
48: /findresolution{
49: 72 0 resmatrix defaultmatrix dtransform
50: /yres xdef /xres xdef
51: xres dup mul yres dup mul add sqrt
52: }def
53: end
54:
55: /setuserscreen{
56: setuserscreendict begin
57: /spotfunction xdef
58: /screenangle xdef
59: /cellsize xdef
60:
61: /m tempctm currentmatrix def
62: /rm screenangle temprot rotate def
63: /sm cellsize dup tempscale scale def
64:
65: sm rm m m concatmatrix m concatmatrix pop
66: 1 0 m dtransform /y1 xdef /x1 xdef
67: /veclength x1 dup mul y1 dup mul add sqrt def
68: /frequency findresolution veclength div def
69: /newscreenangle y1 x1 atan def
70: m 2 get m 1 get mul m 0 get m 3 get mul sub 0 gt
71: {
72: { neg } /spotfunction load concatprocs
73: /spotfunction xdef
74: } if
75: frequency newscreenangle /spotfunction load setscreen
76: end
77: }def
78:
79: /setpatterndict 18 dict def
80: setpatterndict begin
81: /bitison{
82: /ybit xdef /xbit xdef
83: /bytevalue bstring ybit bwidth mul xbit 8 idiv add get def
84: /mask 1 7 xbit 8 mod sub bitshift def
85: bytevalue mask and 0 ne
86: }def
87: end
88:
89: /bitpatternspotfunction{
90: setpatterndict begin
91: /y xdef /x xdef
92: /xindex x 1 add 2 div bpside mul cvi def
93: /yindex y 1 add 2 div bpside mul cvi def
94: xindex yindex bitison
95: { /onbits onbits 1 add def 1 }
96: { /offbits offbits 1 add def 0 }
97: ifelse
98: end
99: }def
100:
101: /setpattern{
102: setpatterndict begin
103: /cellsz xdef
104: /angle xdef
105: /bwidth xdef
106: /bpside xdef
107: /bstring xdef
108:
109: /onbits 0 def /offbits 0 def
110: cellsz angle /bitpatternspotfunction load setuserscreen
111: {} settransfer
112: offbits offbits onbits add div setgray
113: end
114: }def
115:
116: /FillPattern{ % patternstring --
117: /pat xdef
118: gsave
119: pat 8 1 0 72 300 32 div div setpattern
120: fill
121: grestore
122: }def
123:
124:
125:
126: /UseBack{ rbak gbak bbak setrgbcolor }bdef
127: /UseFore{ rfor gfor bfor setrgbcolor }bdef
128: /SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef
129: /SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef
130:
131:
132: /ps {setlinewidth} bdef
133: /clw {currentlinewidth} bdef
134: /sd {0 setdash} bdef
135:
136: /mstroke {0 clw eq {newpath}{stroke} ifelse} bdef
137:
138: /_R{ .5 sub round .5 add}bdef
139: /allign { transform _R exch _R exch itransform }bdef
140: /L {allign lineto} bdef
141: /M {allign moveto} bdef
142:
143: /addto { dup load exec 3 -1 roll add store }bdef
144: /MacLine{ % xto yto xfrom yfrom MacLine --
145: newpath % only handles horizontal or vertical lines
146: /y0 xdef /x0 xdef /y1 xdef /x1 xdef
147: x1 x0 sub abs
148: y1 y0 sub abs gt
149: {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto}
150: {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto}
151: ifelse
152: x0 y0 M
153: x1 y1 L
154: mstroke
155: }bdef
156:
157: /FillPath{ % graylevel FillPath -- fills current path and leaves path alive
158: gsave
159: dup 1 exch sub % glev 1-glev
160: rbak 2 index mul rfor 2 index mul add
161: gbak 3 index mul gfor 3 index mul add
162: bbak 4 index mul bfor 4 index mul add
163: setrgbcolor
164: pop pop
165: fill
166: grestore
167: }bdef
168:
169: /StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive
170: gsave
171: setlinejoin
172: mstroke
173: grestore
174: }bdef
175:
176: /RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange
177: /y1 xdef /x1 xdef /y0 xdef /x0 xdef
178: newpath
179: x0 y0 M
180: x1 y0 L
181: x1 y1 L
182: x0 y1 L
183: closepath
184: }bdef
185:
186: /PaintRect{ % x0 y0 x1 y1 graylevel PaintRect --
187: gsave
188: 5 1 roll
189: RectPath
190: FillPath
191: grestore
192: }bdef
193:
194:
195:
196:
197: % **** begin image stuff *****
198: % The following are used for images. This has to be kept
199: % in synch with corresponding code in ImageDisp.c.In particular
200: % the expansion factor, 8, has to be in synch. LH010606: now to
201: % fix colorscales in layouts, expansion factor is in variable.
202: % packedcolor is (red*256+green)*256+blue
203:
204: /ExpFact 8 def % default expansion factor
205:
206: /SetPackedColor{ % packedcolor SetPackedColor --
207: dup 256 mod /tmp0 xdef % extract blue
208: 256 idiv
209: dup 256 mod /tmp1 xdef % extract green
210: 256 idiv % extract red
211: 255 div /packedRed xdef
212: tmp1 255 div /packedGreen xdef
213: tmp0 255 div /packedBlue xdef
214: }bdef
215:
216: /IR_FillRect{
217: gsave
218: newpath
219: rx0 ry0 M
220: rx1 ry0 L
221: rx1 ry1 L
222: rx0 ry1 L
223: closepath
224: packedRed packedGreen packedBlue setrgbcolor
225: fill
226: grestore
227: }bdef
228:
229: /NewRectImageLine{ % x0 y0 x1 y1 packedcolor NewRectImageLine --
230: SetPackedColor
231:
232: /ry1 xdef /rx1 xdef /ry0 xdef /rx0 xdef % remember starting rectange for following calls
233:
234: IR_FillRect
235: }bdef
236:
237: /rx{ % xdist rx --
238: ExpFact div
239: dup 0 lt
240: { rx0 /rx1 xdef rx1 add /rx0 xdef } % neg delta steps left
241: { rx1 /rx0 xdef rx0 add /rx1 xdef }
242: ifelse
243: IR_FillRect
244: }bdef
245:
246: /ry{ % ydist rr --
247: ExpFact div
248: dup 0 lt
249: { ry1 /ry0 xdef ry0 exch sub /ry1 xdef } % neg delta steps down
250: { ry0 /ry1 xdef ry1 exch sub /ry0 xdef }
251: ifelse
252: IR_FillRect
253: }bdef
254:
255:
256: /cx{ % xdist packedcolor cx --
257: SetPackedColor
258: rx
259: }bdef
260:
261: /cy{ % ydist packedcolor cx --
262: SetPackedColor
263: ry
264: }bdef
265:
266: % **** end image stuff *****
267:
268:
269:
270: /EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color
271: gsave
272: RectPath
273: UseBack fill
274: grestore
275: }bdef
276:
277: /FrameRect{ % x0 y0 x1 y1 FrameRect --
278: RectPath
279: mstroke
280: }bdef
281:
282: /FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version
283: RectPath
284: mstroke
285: }bdef
286:
287:
288: /ellipse{
289: /savematrix matrix currentmatrix def
290: translate scale 0 0 1 0 360 arc
291: savematrix setmatrix
292: }bdef
293:
294:
295:
296: /OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange
297: /y1 xdef /x1 xdef /y0 xdef /x0 xdef
298: newpath
299: x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse
300: closepath
301: }bdef
302:
303:
304: /PaintOval{ % x0 y0 x1 y1 graylevel PaintOval --
305: gsave
306: 5 1 roll
307: OvalPath
308: FillPath
309: grestore
310: }bdef
311:
312: /EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color
313: gsave
314: OvalPath
315: UseBack fill
316: grestore
317: }bdef
318:
319: /FrameOval{ % x0 y0 x1 y1 FrameOval --
320: OvalPath
321: mstroke
322: }bdef
323:
324:
325: /RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r
326: /radius xdef
327: /y1 xdef /x1 xdef /y0 xdef /x0 xdef
328: newpath
329: x0 radius add y0 M
330: x1 y0 x1 y1 radius arcto 4{pop}repeat
331: x1 y1 x0 y1 radius arcto 4{pop}repeat
332: x0 y1 x0 y0 radius arcto 4{pop}repeat
333: x0 y0 x1 y0 radius arcto 4{pop}repeat
334: closepath
335: }bdef
336:
337:
338: /PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect --
339: gsave
340: 6 1 roll
341: RRectPath
342: FillPath
343: grestore
344: }bdef
345:
346: /EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color
347: gsave
348: RRectPath
349: UseBack fill
350: grestore
351: }bdef
352:
353: /FrameRRect{ % x0 y0 x1 y1 r FrameRect --
354: RRectPath
355: mstroke
356: }bdef
357:
358:
359:
360:
361: /CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap
362: gsave
363: setlinecap
364: /y1 xdef /x1 xdef /y0 xdef /x0 xdef
365: newpath
366: x0 y0 M
367: x1 y1 L
368: mstroke
369: grestore
370: }bdef
371:
372: /Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1
373: gsave
374: /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef
375: x0 y0 translate
376: /x1 x1 x0 sub def
377: /y1 y1 y0 sub def
378: y1 x1 atan rotate
379: newpath
380: 0 0 M
381: aw ah 2 div L
382: aw ah 2 div neg L
383: closepath
384: gl FillPath
385: % 10 setmiterlimit
386: % 1 ps
387: % 0 StrokePath
388: grestore
389: }bdef
390:
391:
392: % ************ fonts ************
393:
394:
395: /normal 0 def
396: /bold 1 def
397: /italic 2 def
398: /underline 4 def
399: /outline 8 def
400: /shadow 16 def
401:
402: /FACE1 bold italic or def
403: /FACE2 outline shadow or def
404:
405: /Shadow {
406: gsave
407: siz 0.08 mul 1 index mul x add
408: exch siz 0.07 mul mul y add M
409: c show
410: grestore
411: } def
412:
413: /Outline {
414: gsave
415: siz .02 mul setlinewidth
416: x y M c true charpath
417: gsave UseBack fill grestore stroke
418: grestore
419: } def
420:
421: /Underline{
422: gsave
423: siz 0.08 mul ps
424: x y clw add M x c stringwidth pop add y clw add L stroke
425: grestore
426: }bdef
427:
428: /DoShow{ % assumes x,y,c are already set
429: fontkind FACE2 and
430: dup normal eq {c x y M show} if
431: dup outline eq {Outline} if
432: dup shadow eq {1 Shadow Outline} if
433: outline shadow or eq {1 Shadow 1.5 Shadow Outline} if
434: fontkind underline and 0 ne { Underline } if
435: }bdef
436:
437: /DoWShow{ % assumes x,y,c & w are already set
438: gsave
439: x y translate
440: /x 0 def /y 0 def
441: w c stringwidth pop div 1 scale
442: DoShow
443: grestore
444: }bdef
445:
446: /S{
447: /y xdef /x xdef /c xdef
448: DoShow
449: }bdef
450:
451: /WS{ % string x y desiredwidth WS -
452: /w xdef /y xdef /x xdef /c xdef
453: DoWShow
454: }bdef
455:
456: /F{
457: /fontkind xdef
458: findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont
459: }bdef
460:
461:
462:
463: /Re-encode {
464: dup length array copy
465: /eap 0 def
466: exch {
467: dup type /integertype eq
468: { /eap xdef }
469: {
470: 1 index
471: exch
472: eap exch
473: put
474: /eap eap 1 add def
475: }
476: ifelse
477: } forall
478: } bind def
479:
480: [ 39/quotesingle 96/grave 128/.notdef/.notdef/quotesinglbase
481: /florin/quotedblbase/ellipsis/dagger/daggerdbl/circumflex
482: /perthousand/Scaron/guilsinglleft/OE/.notdef/.notdef
483: /.notdef/.notdef/quoteleft/quoteright/quotedblleft/quotedblright
484: /bullet/endash/emdash/tilde/trademark/scaron/guilsinglright
485: /oe/.notdef/.notdef/Ydieresis/.notdef/exclamdown/cent
486: /sterling/currency/yen/brokenbar/section/dieresis/copyright
487: /ordfeminine/guillemotleft/logicalnot/.notdef/registered
488: /macron/degree/plusminus/twosuperior/threesuperior/acute
489: /mu/paragraph/periodcentered/cedilla/onesuperior/ordmasculine
490: /guillemotright/onequarter/onehalf/threequarters/questiondown
491: /Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE
492: /Ccedilla/Egrave/Eacute/Ecircumflex/Edieresis/Igrave
493: /Iacute/Icircumflex/Idieresis/Eth/Ntilde/Ograve/Oacute
494: /Ocircumflex/Otilde/Odieresis/multiply/Oslash/Ugrave
495: /Uacute/Ucircumflex/Udieresis/Yacute/Thorn/germandbls
496: /agrave/aacute/acircumflex/atilde/adieresis/aring/ae
497: /ccedilla/egrave/eacute/ecircumflex/edieresis/igrave
498: /iacute/icircumflex/idieresis/eth/ntilde/ograve/oacute
499: /ocircumflex/otilde/odieresis/divide/oslash/ugrave/uacute
500: /ucircumflex/udieresis/yacute/thorn/ydieresis]
501: /zzz xdef
502:
503: /OurEncoding{ zzz StandardEncoding Re-encode }bdef
504:
505: /EncodeFont {
506: findfont
507: dup length dict begin
508: {
509: 1 index /FID ne
510: { def }
511: { pop pop }
512: ifelse
513: } forall
514: /FontName xdef
515: /Encoding xdef
516: FontName currentdict
517: end
518: definefont pop
519: } bind def
520:
521: /AnObj save def
522: 1 1 1 SetBack 0 0 0 SetFore UseFore
523: 0 0 translate
524: AnObj restore
525: /AnObj save def
526: 1 1 1 SetBack 0 0 0 SetFore UseFore
527: 55 73 translate
528: 1.00 ps
529: gsave 1.00 ps 74.63 17.88 74.63 363.50 0 CapLine grestore
530: gsave 1.00 ps 425.50 17.88 425.50 363.50 0 CapLine grestore
531: 1 ps
532: 1.00 ps
533: gsave 1.00 ps 74.13 305.88 83.50 305.88 0 CapLine grestore
534: 1 ps
535: OurEncoding /_Helvetica /Helvetica EncodeFont
536: 16.00 (_Helvetica) 0 F
537: (-10) 46.88 311.25 23.13 WS
538: 1.00 ps
539: gsave 1.00 ps 74.13 209.88 83.50 209.88 0 CapLine grestore
540: 1 ps
541: 16.00 (_Helvetica) 0 F
542: (-5) 55.75 215.25 14.25 WS
543: 1.00 ps
544: gsave 1.00 ps 74.13 113.88 83.50 113.88 0 CapLine grestore
545: 1 ps
546: 16.00 (_Helvetica) 0 F
547: (0) 61.13 119.25 8.88 WS
548: 1.00 ps
549: gsave 1.00 ps 74.13 17.88 83.50 17.88 0 CapLine grestore
550: 1 ps
551: 16.00 (_Helvetica) 0 F
552: (5) 61.13 23.25 8.88 WS
553: 16.00 (_Helvetica) 0 F
554: gsave 35.38 203.63 translate -90 rotate
555: (K) 0.00 0.00 10.63 WS
556: grestore
557: 16.00 (_Helvetica) 0 F
558: gsave 35.38 193.00 translate -90 rotate
559: ( \(%\)) 0.00 0.00 29.50 WS
560: grestore
561: 1.00 ps
562: gsave 1.00 ps 74.63 363.50 425.50 363.50 0 CapLine grestore
563: gsave 1.00 ps 74.63 17.88 425.50 17.88 0 CapLine grestore
564: 1 ps
565: 1.00 ps
566: gsave 1.00 ps 425.50 364.00 425.50 354.63 0 CapLine grestore
567: 1 ps
568: 16.00 (_Helvetica) 0 F
569: (12) 416.63 383.00 17.75 WS
570: 1.00 ps
571: gsave 1.00 ps 367.00 364.00 367.00 354.63 0 CapLine grestore
572: 1 ps
573: 16.00 (_Helvetica) 0 F
574: (10) 358.13 383.00 17.75 WS
575: 1.00 ps
576: gsave 1.00 ps 308.50 364.00 308.50 354.63 0 CapLine grestore
577: 1 ps
578: 16.00 (_Helvetica) 0 F
579: (8) 304.13 383.00 8.88 WS
580: 1.00 ps
581: gsave 1.00 ps 250.13 364.00 250.13 354.63 0 CapLine grestore
582: 1 ps
583: 16.00 (_Helvetica) 0 F
584: (6) 245.75 383.00 8.88 WS
585: 1.00 ps
586: gsave 1.00 ps 191.63 364.00 191.63 354.63 0 CapLine grestore
587: 1 ps
588: 16.00 (_Helvetica) 0 F
589: (4) 187.25 383.00 8.88 WS
590: 1.00 ps
591: gsave 1.00 ps 133.13 364.00 133.13 354.63 0 CapLine grestore
592: 1 ps
593: 16.00 (_Helvetica) 0 F
594: (2) 128.75 383.00 8.88 WS
595: 1.00 ps
596: gsave 1.00 ps 74.63 364.00 74.63 354.63 0 CapLine grestore
597: 1 ps
598: 16.00 (_Helvetica) 0 F
599: (0) 70.25 383.00 8.88 WS
600: 16.00 (Symbol) 0 F
601: (c) 185.00 413.75 8.75 WS
602: OurEncoding /_Helvetica /Helvetica EncodeFont
603: 16.00 (_Helvetica) 0 F
604: ( \(x10) 193.75 413.75 35.63 WS
605: 11.25 (_Helvetica) 0 F
606: (-3) 229.38 404.25 10.00 WS
607: 16.00 (_Helvetica) 0 F
608: ( emu/mol\)) 239.38 413.75 75.75 WS
609: 0.50 ps
610: newpath 332.13 284.13 M
611: 326.25 284.13 L
612: 326.25 290.00 L
613: closepath
614: 0 FillPath
615: 0 StrokePath newpath
616: newpath 333.25 287.38 M
617: 327.38 287.38 L
618: 327.38 293.25 L
619: closepath
620: 0 FillPath
621: 0 StrokePath newpath
622: newpath 334.38 289.00 M
623: 328.50 289.00 L
624: 328.50 294.88 L
625: closepath
626: 0 FillPath
627: 0 StrokePath newpath
628: newpath 334.38 290.75 M
629: 328.50 290.75 L
630: 328.50 296.63 L
631: closepath
632: 0 FillPath
633: 0 StrokePath newpath
634: newpath 336.88 293.13 M
635: 331.00 293.13 L
636: 331.00 299.00 L
637: closepath
638: 0 FillPath
639: 0 StrokePath newpath
640: newpath 337.00 293.75 M
641: 331.13 293.75 L
642: 331.13 299.63 L
643: closepath
644: 0 FillPath
645: 0 StrokePath newpath
646: newpath 340.00 299.25 M
647: 334.13 299.25 L
648: 334.13 305.13 L
649: closepath
650: 0 FillPath
651: 0 StrokePath newpath
652: newpath 345.63 306.38 M
653: 339.75 306.38 L
654: 339.75 312.25 L
655: closepath
656: 0 FillPath
657: 0 StrokePath newpath
658: newpath 345.88 307.50 M
659: 340.00 307.50 L
660: 340.00 313.38 L
661: closepath
662: 0 FillPath
663: 0 StrokePath newpath
664: newpath 349.88 314.38 M
665: 344.00 314.38 L
666: 344.00 320.25 L
667: closepath
668: 0 FillPath
669: 0 StrokePath newpath
670: newpath 351.63 317.75 M
671: 345.75 317.75 L
672: 345.75 323.62 L
673: closepath
674: 0 FillPath
675: 0 StrokePath newpath
676: newpath 353.50 318.50 M
677: 347.63 318.50 L
678: 347.63 324.38 L
679: closepath
680: 0 FillPath
681: 0 StrokePath newpath
682: newpath 355.38 320.88 M
683: 349.50 320.88 L
684: 349.50 326.75 L
685: closepath
686: 0 FillPath
687: 0 StrokePath newpath
688: newpath 358.75 325.13 M
689: 352.88 325.13 L
690: 352.88 331.00 L
691: closepath
692: 0 FillPath
693: 0 StrokePath newpath
694: newpath 363.50 332.38 M
695: 357.62 332.38 L
696: 357.62 338.25 L
697: closepath
698: 0 FillPath
699: 0 StrokePath newpath
700: newpath 374.00 339.75 M
701: 368.13 339.75 L
702: 368.13 345.63 L
703: closepath
704: 0 FillPath
705: 0 StrokePath newpath
706: newpath 382.13 344.88 M
707: 376.25 344.88 L
708: 376.25 350.75 L
709: closepath
710: 0 FillPath
711: 0 StrokePath newpath
712: newpath 386.25 346.75 M
713: 380.38 346.75 L
714: 380.38 352.62 L
715: closepath
716: 0 FillPath
717: 0 StrokePath newpath
718: 1 ps
719: 1.00 ps
720: newpath 74.63 152.25 M
721: 76.37 153.38 L
722: 78.12 154.50 L
723: 79.87 155.63 L
724: 81.63 156.75 L
725: 83.50 157.88 L
726: 85.25 159.00 L
727: 87.00 160.13 L
728: 88.75 161.25 L
729: 90.50 162.38 L
730: 92.25 163.50 L
731: 94.00 164.63 L
732: 95.75 165.75 L
733: 97.50 166.88 L
734: 99.25 168.00 L
735: 101.13 169.13 L
736: 102.88 170.25 L
737: 104.63 171.38 L
738: 106.38 172.50 L
739: 108.13 173.62 L
740: 109.87 174.75 L
741: 111.63 175.88 L
742: 113.38 177.00 L
743: 115.12 178.25 L
744: 117.00 179.38 L
745: 118.75 180.50 L
746: 120.50 181.63 L
747: 122.25 182.75 L
748: 124.00 183.88 L
749: 125.75 185.00 L
750: 127.50 186.12 L
751: 129.25 187.25 L
752: 131.00 188.38 L
753: 132.75 189.50 L
754: 134.63 190.62 L
755: 136.38 191.75 L
756: 138.13 192.88 L
757: 139.88 194.00 L
758: 141.63 195.13 L
759: 143.38 196.25 L
760: 145.12 197.37 L
761: 146.88 198.50 L
762: 148.62 199.63 L
763: 150.50 200.75 L
764: 152.25 201.88 L
765: 154.00 203.00 L
766: 155.75 204.13 L
767: 157.50 205.25 L
768: 159.25 206.38 L
769: 161.00 207.50 L
770: 162.75 208.63 L
771: 164.50 209.75 L
772: 166.25 210.88 L
773: 168.13 212.00 L
774: 169.88 213.13 L
775: 171.63 214.25 L
776: 173.38 215.37 L
777: 175.13 216.50 L
778: 176.87 217.63 L
779: 178.62 218.75 L
780: 180.38 219.87 L
781: 182.13 221.00 L
782: 184.00 222.25 L
783: 185.75 223.38 L
784: 187.50 224.50 L
785: 189.25 225.63 L
786: 191.00 226.75 L
787: 192.75 227.87 L
788: 194.50 229.00 L
789: 196.25 230.13 L
790: 198.00 231.25 L
791: 199.75 232.37 L
792: 201.63 233.50 L
793: 203.38 234.63 L
794: 205.13 235.75 L
795: 206.88 236.88 L
796: 208.63 238.00 L
797: 210.38 239.13 L
798: 212.13 240.25 L
799: 213.88 241.38 L
800: 215.63 242.50 L
801: 217.50 243.63 L
802: 219.25 244.75 L
803: 221.00 245.88 L
804: 222.75 247.00 L
805: 224.50 248.13 L
806: 226.25 249.25 L
807: 228.00 250.38 L
808: 229.75 251.50 L
809: 231.50 252.63 L
810: 233.25 253.75 L
811: 235.13 254.87 L
812: 236.88 256.00 L
813: 238.62 257.13 L
814: 240.38 258.25 L
815: 242.13 259.38 L
816: 243.88 260.50 L
817: 245.63 261.63 L
818: 247.38 262.75 L
819: 249.13 263.88 L
820: 251.00 265.00 L
821: 252.75 266.25 L
822: 254.50 267.37 L
823: 256.25 268.50 L
824: 258.00 269.63 L
825: 259.75 270.75 L
826: 261.50 271.88 L
827: 263.25 273.00 L
828: 265.00 274.13 L
829: 266.88 275.25 L
830: 268.63 276.38 L
831: 270.38 277.50 L
832: 272.13 278.63 L
833: 273.88 279.75 L
834: 275.63 280.88 L
835: 277.38 282.00 L
836: 279.13 283.13 L
837: 280.88 284.25 L
838: 282.63 285.38 L
839: 284.50 286.50 L
840: 286.25 287.63 L
841: 288.00 288.75 L
842: 289.75 289.87 L
843: 291.50 291.00 L
844: 293.25 292.13 L
845: 295.00 293.25 L
846: 296.75 294.38 L
847: 298.50 295.50 L
848: 300.38 296.63 L
849: 302.13 297.75 L
850: 303.88 298.88 L
851: 305.63 300.00 L
852: 307.38 301.13 L
853: 309.13 302.25 L
854: 310.88 303.38 L
855: 312.63 304.50 L
856: 314.38 305.63 L
857: 316.13 306.75 L
858: 318.00 307.88 L
859: 319.75 309.00 L
860: 321.50 310.13 L
861: 323.25 311.38 L
862: 325.00 312.50 L
863: 326.75 313.63 L
864: 328.50 314.75 L
865: 330.25 315.88 L
866: 332.00 317.00 L
867: 333.87 318.13 L
868: 335.63 319.25 L
869: 337.38 320.38 L
870: 339.13 321.50 L
871: 340.88 322.63 L
872: 342.62 323.75 L
873: 344.38 324.88 L
874: 346.13 326.00 L
875: 347.88 327.13 L
876: 349.63 328.25 L
877: 351.50 329.38 L
878: 353.25 330.50 L
879: 355.00 331.63 L
880: 356.75 332.75 L
881: 358.50 333.87 L
882: 360.25 335.00 L
883: 362.00 336.12 L
884: 363.75 337.25 L
885: 365.50 338.38 L
886: 367.37 339.50 L
887: 369.13 340.63 L
888: 370.88 341.75 L
889: 372.63 342.88 L
890: 374.38 344.00 L
891: 376.13 345.12 L
892: 377.88 346.25 L
893: 379.63 347.38 L
894: 381.38 348.50 L
895: 383.13 349.63 L
896: 385.00 350.75 L
897: 386.75 351.88 L
898: 388.50 353.00 L
899: 390.25 354.13 L
900: 392.00 355.38 L
901: 393.75 356.50 L
902: 395.50 357.62 L
903: 397.25 358.75 L
904: 399.00 359.88 L
905: 400.87 361.00 L
906: 402.63 362.13 L
907: 404.38 363.25 L
908: 404.75 363.50 L
909: mstroke
910: [] sd
911: 1 ps
912: 0.50 ps
913: newpath 174.88 148.62 M
914: 180.88 148.62 L
915: 180.88 154.50 L
916: closepath
917: 0 FillPath
918: 0 StrokePath newpath
919: newpath 174.75 148.25 M
920: 180.75 148.25 L
921: 180.75 154.13 L
922: closepath
923: 0 FillPath
924: 0 StrokePath newpath
925: newpath 174.25 147.88 M
926: 180.25 147.88 L
927: 180.25 153.75 L
928: closepath
929: 0 FillPath
930: 0 StrokePath newpath
931: newpath 173.62 147.63 M
932: 179.63 147.63 L
933: 179.63 153.50 L
934: closepath
935: 0 FillPath
936: 0 StrokePath newpath
937: newpath 172.88 148.13 M
938: 178.88 148.13 L
939: 178.88 154.00 L
940: closepath
941: 0 FillPath
942: 0 StrokePath newpath
943: newpath 171.63 147.37 M
944: 177.63 147.37 L
945: 177.63 153.25 L
946: closepath
947: 0 FillPath
948: 0 StrokePath newpath
949: newpath 170.25 147.37 M
950: 176.25 147.37 L
951: 176.25 153.25 L
952: closepath
953: 0 FillPath
954: 0 StrokePath newpath
955: newpath 168.75 146.00 M
956: 174.75 146.00 L
957: 174.75 151.88 L
958: closepath
959: 0 FillPath
960: 0 StrokePath newpath
961: newpath 168.38 145.00 M
962: 174.38 145.00 L
963: 174.38 150.88 L
964: closepath
965: 0 FillPath
966: 0 StrokePath newpath
967: newpath 167.37 143.88 M
968: 173.38 143.88 L
969: 173.38 149.75 L
970: closepath
971: 0 FillPath
972: 0 StrokePath newpath
973: newpath 165.38 142.75 M
974: 171.38 142.75 L
975: 171.38 148.62 L
976: closepath
977: 0 FillPath
978: 0 StrokePath newpath
979: newpath 162.63 141.00 M
980: 168.63 141.00 L
981: 168.63 146.88 L
982: closepath
983: 0 FillPath
984: 0 StrokePath newpath
985: newpath 161.25 138.75 M
986: 167.25 138.75 L
987: 167.25 144.63 L
988: closepath
989: 0 FillPath
990: 0 StrokePath newpath
991: newpath 160.38 135.75 M
992: 166.38 135.75 L
993: 166.38 141.63 L
994: closepath
995: 0 FillPath
996: 0 StrokePath newpath
997: newpath 157.88 133.25 M
998: 163.88 133.25 L
999: 163.88 139.13 L
1000: closepath
1001: 0 FillPath
1002: 0 StrokePath newpath
1003: newpath 155.38 130.63 M
1004: 161.38 130.63 L
1005: 161.38 136.50 L
1006: closepath
1007: 0 FillPath
1008: 0 StrokePath newpath
1009: newpath 151.25 128.00 M
1010: 157.25 128.00 L
1011: 157.25 133.87 L
1012: closepath
1013: 0 FillPath
1014: 0 StrokePath newpath
1015: 1 ps
1016: 1.00 ps
1017: newpath 74.63 38.00 M
1018: 76.37 39.88 L
1019: 78.12 41.88 L
1020: 79.87 43.88 L
1021: 81.63 45.88 L
1022: 83.50 47.88 L
1023: 85.25 49.88 L
1024: 87.00 51.88 L
1025: 88.75 53.88 L
1026: 90.50 55.75 L
1027: 92.25 57.75 L
1028: 94.00 59.75 L
1029: 95.75 61.75 L
1030: 97.50 63.75 L
1031: 99.25 65.75 L
1032: 101.13 67.75 L
1033: 102.88 69.75 L
1034: 104.63 71.63 L
1035: 106.38 73.62 L
1036: 108.13 75.62 L
1037: 109.87 77.62 L
1038: 111.63 79.63 L
1039: 113.38 81.63 L
1040: 115.12 83.62 L
1041: 117.00 85.63 L
1042: 118.75 87.50 L
1043: 120.50 89.50 L
1044: 122.25 91.50 L
1045: 124.00 93.50 L
1046: 125.75 95.50 L
1047: 127.50 97.50 L
1048: 129.25 99.50 L
1049: 131.00 101.50 L
1050: 132.75 103.38 L
1051: 134.63 105.38 L
1052: 136.38 107.38 L
1053: 138.13 109.38 L
1054: 139.88 111.38 L
1055: 141.63 113.38 L
1056: 143.38 115.38 L
1057: 145.12 117.37 L
1058: 146.88 119.25 L
1059: 148.62 121.25 L
1060: 150.50 123.25 L
1061: 152.25 125.25 L
1062: 154.00 127.25 L
1063: 155.75 129.25 L
1064: 157.50 131.25 L
1065: 159.25 133.25 L
1066: 161.00 135.13 L
1067: 162.75 137.13 L
1068: 164.50 139.13 L
1069: 166.25 141.12 L
1070: 168.13 143.13 L
1071: 169.88 145.12 L
1072: 171.63 147.13 L
1073: 173.38 149.13 L
1074: 175.13 151.00 L
1075: 176.87 153.00 L
1076: 178.62 155.00 L
1077: 180.38 157.00 L
1078: 182.13 159.00 L
1079: 184.00 161.00 L
1080: 185.75 163.00 L
1081: 187.50 164.88 L
1082: 189.25 166.88 L
1083: 191.00 168.88 L
1084: 192.75 170.88 L
1085: 194.50 172.88 L
1086: 196.25 174.88 L
1087: 198.00 176.87 L
1088: 199.75 178.88 L
1089: 201.63 180.75 L
1090: 203.38 182.75 L
1091: 205.13 184.75 L
1092: 206.88 186.75 L
1093: 208.63 188.75 L
1094: 210.38 190.75 L
1095: 212.13 192.75 L
1096: 213.88 194.75 L
1097: 215.63 196.63 L
1098: 217.50 198.62 L
1099: 219.25 200.63 L
1100: 221.00 202.63 L
1101: 222.75 204.63 L
1102: 224.50 206.63 L
1103: 226.25 208.63 L
1104: 228.00 210.63 L
1105: 229.75 212.50 L
1106: 231.50 214.50 L
1107: 233.25 216.50 L
1108: 235.13 218.50 L
1109: 236.88 220.50 L
1110: 238.62 222.50 L
1111: 240.38 224.50 L
1112: 242.13 226.50 L
1113: 243.88 228.38 L
1114: 245.63 230.38 L
1115: 247.38 232.37 L
1116: 249.13 234.38 L
1117: 251.00 236.38 L
1118: 252.75 238.38 L
1119: 254.50 240.38 L
1120: 256.25 242.37 L
1121: 258.00 244.25 L
1122: 259.75 246.25 L
1123: 261.50 248.25 L
1124: 263.25 250.25 L
1125: 265.00 252.25 L
1126: 266.88 254.25 L
1127: 268.63 256.25 L
1128: 270.38 258.25 L
1129: 272.13 260.13 L
1130: 273.88 262.13 L
1131: 275.63 264.13 L
1132: 277.38 266.13 L
1133: 279.13 268.13 L
1134: 280.88 270.13 L
1135: 282.63 272.13 L
1136: 284.50 274.13 L
1137: 286.25 276.00 L
1138: 288.00 278.00 L
1139: 289.75 280.00 L
1140: 291.50 282.00 L
1141: 293.25 284.00 L
1142: 295.00 286.00 L
1143: 296.75 288.00 L
1144: 298.50 289.87 L
1145: 300.38 291.88 L
1146: 302.13 293.88 L
1147: 303.88 295.88 L
1148: 305.63 297.88 L
1149: 307.38 299.88 L
1150: 309.13 301.88 L
1151: 310.88 303.88 L
1152: 312.63 305.75 L
1153: 314.38 307.75 L
1154: 316.13 309.75 L
1155: 318.00 311.75 L
1156: 319.75 313.75 L
1157: 321.50 315.75 L
1158: 323.25 317.75 L
1159: 325.00 319.75 L
1160: 326.75 321.63 L
1161: 328.50 323.62 L
1162: 330.25 325.63 L
1163: 332.00 327.62 L
1164: 333.87 329.63 L
1165: 335.63 331.63 L
1166: 337.38 333.63 L
1167: 339.13 335.63 L
1168: 340.88 337.50 L
1169: 342.62 339.50 L
1170: 344.38 341.50 L
1171: 346.13 343.50 L
1172: 347.88 345.50 L
1173: 349.63 347.50 L
1174: 351.50 349.50 L
1175: 353.25 351.50 L
1176: 355.00 353.38 L
1177: 356.75 355.38 L
1178: 358.50 357.38 L
1179: 360.25 359.38 L
1180: 362.00 361.37 L
1181: 363.75 363.38 L
1182: 363.87 363.50 L
1183: mstroke
1184: [] sd
1185: 1 ps
1186: AnObj restore
1187: /AnObj save def
1188: 1 1 1 SetBack 0 0 0 SetFore UseFore
1189: 0 0 translate
1190: AnObj restore
1191: /AnObj save def
1192: 1 1 1 SetBack 0 0 0 SetFore UseFore
1193: 210 84 translate
1194: 1.00 ps
1195: gsave 1.00 ps 78.38 17.88 78.38 156.25 0 CapLine grestore
1196: gsave 1.00 ps 259.50 17.88 259.50 156.25 0 CapLine grestore
1197: 1 ps
1198: 1.00 ps
1199: gsave 1.00 ps 77.88 17.88 85.87 17.88 0 CapLine grestore
1200: 1 ps
1201: OurEncoding /_Helvetica /Helvetica EncodeFont
1202: 16.00 (_Helvetica) 0 F
1203: (1.6) 52.13 23.25 22.25 WS
1204: 1.00 ps
1205: gsave 1.00 ps 77.88 33.25 82.37 33.25 0 CapLine grestore
1206: 1 ps
1207: 1.00 ps
1208: gsave 1.00 ps 77.88 48.63 85.87 48.63 0 CapLine grestore
1209: 1 ps
1210: 16.00 (_Helvetica) 0 F
1211: (1.2) 52.13 54.00 22.25 WS
1212: 1.00 ps
1213: gsave 1.00 ps 77.88 64.00 82.37 64.00 0 CapLine grestore
1214: 1 ps
1215: 1.00 ps
1216: gsave 1.00 ps 77.88 79.37 85.87 79.37 0 CapLine grestore
1217: 1 ps
1218: 16.00 (_Helvetica) 0 F
1219: (0.8) 52.13 84.75 22.25 WS
1220: 1.00 ps
1221: gsave 1.00 ps 77.88 94.75 82.37 94.75 0 CapLine grestore
1222: 1 ps
1223: 1.00 ps
1224: gsave 1.00 ps 77.88 110.12 85.87 110.12 0 CapLine grestore
1225: 1 ps
1226: 16.00 (_Helvetica) 0 F
1227: (0.4) 52.13 115.50 22.25 WS
1228: 1.00 ps
1229: gsave 1.00 ps 77.88 125.50 82.37 125.50 0 CapLine grestore
1230: 1 ps
1231: 1.00 ps
1232: gsave 1.00 ps 77.88 140.88 85.87 140.88 0 CapLine grestore
1233: 1 ps
1234: 16.00 (_Helvetica) 0 F
1235: (0.0) 52.13 146.25 22.25 WS
1236: 1.00 ps
1237: gsave 1.00 ps 77.88 156.25 82.37 156.25 0 CapLine grestore
1238: 1 ps
1239: 16.00 (_Helvetica) 0 F
1240: gsave 40.38 103.50 translate -90 rotate
1241: (K) 0.00 0.00 10.63 WS
1242: grestore
1243: 11.25 (_Helvetica) 0 F
1244: gsave 45.25 92.88 translate -90 rotate
1245: (cf) 0.00 0.00 8.88 WS
1246: grestore
1247: 16.00 (_Helvetica) 0 F
1248: gsave 40.38 84.00 translate -90 rotate
1249: ( \(%\)) 0.00 0.00 29.50 WS
1250: grestore
1251: 1.00 ps
1252: gsave 1.00 ps 78.38 156.25 259.50 156.25 0 CapLine grestore
1253: gsave 1.00 ps 78.38 17.88 259.50 17.88 0 CapLine grestore
1254: 1 ps
1255: 1.00 ps
1256: gsave 1.00 ps 259.50 156.75 259.50 148.75 0 CapLine grestore
1257: 1 ps
1258: 16.00 (_Helvetica) 0 F
1259: (50) 250.63 175.13 17.75 WS
1260: 1.00 ps
1261: gsave 1.00 ps 223.25 156.75 223.25 148.75 0 CapLine grestore
1262: 1 ps
1263: 16.00 (_Helvetica) 0 F
1264: (40) 214.38 175.13 17.75 WS
1265: 1.00 ps
1266: gsave 1.00 ps 187.00 156.75 187.00 148.75 0 CapLine grestore
1267: 1 ps
1268: 16.00 (_Helvetica) 0 F
1269: (30) 178.12 175.13 17.75 WS
1270: 1.00 ps
1271: gsave 1.00 ps 150.88 156.75 150.88 148.75 0 CapLine grestore
1272: 1 ps
1273: 16.00 (_Helvetica) 0 F
1274: (20) 142.00 175.13 17.75 WS
1275: 1.00 ps
1276: gsave 1.00 ps 114.63 156.75 114.63 148.75 0 CapLine grestore
1277: 1 ps
1278: 16.00 (_Helvetica) 0 F
1279: (10) 105.75 175.13 17.75 WS
1280: 1.00 ps
1281: gsave 1.00 ps 78.38 156.75 78.38 148.75 0 CapLine grestore
1282: 1 ps
1283: 16.00 (_Helvetica) 0 F
1284: (0) 74.00 175.13 8.88 WS
1285: 16.00 (_Helvetica) 0 F
1286: (T \(K\)) 153.13 200.50 35.63 WS
1287: 0.50 ps
1288: newpath 96.00 25.38 M
1289: 91.63 25.38 L
1290: 91.63 29.75 L
1291: closepath
1292: 0 FillPath
1293: 0 StrokePath newpath
1294: newpath 97.50 36.00 M
1295: 93.13 36.00 L
1296: 93.13 40.38 L
1297: closepath
1298: 0 FillPath
1299: 0 StrokePath newpath
1300: newpath 99.25 39.50 M
1301: 94.87 39.50 L
1302: 94.87 43.88 L
1303: closepath
1304: 0 FillPath
1305: 0 StrokePath newpath
1306: newpath 99.25 46.13 M
1307: 94.87 46.13 L
1308: 94.87 50.50 L
1309: closepath
1310: 0 FillPath
1311: 0 StrokePath newpath
1312: newpath 102.75 49.25 M
1313: 98.38 49.25 L
1314: 98.38 53.63 L
1315: closepath
1316: 0 FillPath
1317: 0 StrokePath newpath
1318: newpath 102.88 51.88 M
1319: 98.50 51.88 L
1320: 98.50 56.25 L
1321: closepath
1322: 0 FillPath
1323: 0 StrokePath newpath
1324: newpath 106.25 65.88 M
1325: 101.88 65.88 L
1326: 101.88 70.25 L
1327: closepath
1328: 0 FillPath
1329: 0 StrokePath newpath
1330: newpath 109.87 80.12 M
1331: 105.50 80.12 L
1332: 105.50 84.50 L
1333: closepath
1334: 0 FillPath
1335: 0 StrokePath newpath
1336: newpath 110.00 84.38 M
1337: 105.63 84.38 L
1338: 105.63 88.75 L
1339: closepath
1340: 0 FillPath
1341: 0 StrokePath newpath
1342: newpath 113.63 101.50 M
1343: 109.25 101.50 L
1344: 109.25 105.88 L
1345: closepath
1346: 0 FillPath
1347: 0 StrokePath newpath
1348: newpath 115.38 110.25 M
1349: 111.00 110.25 L
1350: 111.00 114.63 L
1351: closepath
1352: 0 FillPath
1353: 0 StrokePath newpath
1354: newpath 117.25 108.13 M
1355: 112.88 108.13 L
1356: 112.88 112.50 L
1357: closepath
1358: 0 FillPath
1359: 0 StrokePath newpath
1360: newpath 119.00 113.13 M
1361: 114.63 113.13 L
1362: 114.63 117.50 L
1363: closepath
1364: 0 FillPath
1365: 0 StrokePath newpath
1366: newpath 120.63 121.50 M
1367: 116.25 121.50 L
1368: 116.25 125.88 L
1369: closepath
1370: 0 FillPath
1371: 0 StrokePath newpath
1372: newpath 128.25 138.50 M
1373: 123.88 138.50 L
1374: 123.88 142.88 L
1375: closepath
1376: 0 FillPath
1377: 0 StrokePath newpath
1378: newpath 134.63 141.00 M
1379: 130.25 141.00 L
1380: 130.25 145.38 L
1381: closepath
1382: 0 FillPath
1383: 0 StrokePath newpath
1384: newpath 143.63 140.75 M
1385: 139.25 140.75 L
1386: 139.25 145.12 L
1387: closepath
1388: 0 FillPath
1389: 0 StrokePath newpath
1390: newpath 149.88 137.75 M
1391: 145.50 137.75 L
1392: 145.50 142.13 L
1393: closepath
1394: 0 FillPath
1395: 0 StrokePath newpath
1396: 1 ps
1397: 1.00 ps
1398: newpath 93.00 19.63 M
1399: 93.25 21.62 L
1400: 93.50 23.62 L
1401: 93.75 25.63 L
1402: 94.13 27.62 L
1403: 94.38 29.50 L
1404: 94.62 31.37 L
1405: 94.87 33.13 L
1406: 95.12 34.88 L
1407: 95.38 36.75 L
1408: 95.75 38.38 L
1409: 96.00 40.13 L
1410: 96.25 41.75 L
1411: 96.50 43.38 L
1412: 96.75 45.00 L
1413: 97.00 46.63 L
1414: 97.37 48.13 L
1415: 97.62 49.75 L
1416: 97.88 51.25 L
1417: 98.13 52.75 L
1418: 98.38 54.13 L
1419: 98.62 55.63 L
1420: 99.00 57.00 L
1421: 99.25 58.38 L
1422: 99.50 59.75 L
1423: 99.75 61.13 L
1424: 100.00 62.38 L
1425: 100.25 63.75 L
1426: 100.63 65.00 L
1427: 100.88 66.25 L
1428: 101.13 67.50 L
1429: 101.38 68.75 L
1430: 101.62 69.87 L
1431: 101.88 71.12 L
1432: 102.25 72.25 L
1433: 102.50 73.38 L
1434: 102.75 74.50 L
1435: 103.00 75.62 L
1436: 103.25 76.75 L
1437: 103.50 77.88 L
1438: 103.87 78.87 L
1439: 104.13 80.00 L
1440: 104.38 81.00 L
1441: 104.63 82.00 L
1442: 104.87 83.00 L
1443: 105.13 84.00 L
1444: 105.50 85.00 L
1445: 105.75 86.00 L
1446: 106.00 86.88 L
1447: 106.25 87.88 L
1448: 106.50 88.75 L
1449: 106.75 89.75 L
1450: 107.13 90.63 L
1451: 107.38 91.50 L
1452: 107.63 92.37 L
1453: 107.87 93.25 L
1454: 108.13 94.00 L
1455: 108.38 94.87 L
1456: 108.75 95.75 L
1457: 109.00 96.50 L
1458: 109.25 97.37 L
1459: 109.50 98.13 L
1460: 109.75 98.87 L
1461: 110.00 99.63 L
1462: 110.38 100.38 L
1463: 110.63 101.13 L
1464: 110.88 101.88 L
1465: 111.12 102.62 L
1466: 111.38 103.38 L
1467: 111.63 104.13 L
1468: 112.00 104.75 L
1469: 112.25 105.50 L
1470: 112.50 106.12 L
1471: 112.75 106.75 L
1472: 113.00 107.50 L
1473: 113.25 108.13 L
1474: 113.63 108.75 L
1475: 113.88 109.38 L
1476: 114.12 110.00 L
1477: 114.38 110.63 L
1478: 114.63 111.25 L
1479: 114.88 111.88 L
1480: 115.25 112.37 L
1481: 115.50 113.00 L
1482: 115.75 113.50 L
1483: 116.00 114.12 L
1484: 116.25 114.63 L
1485: 116.50 115.25 L
1486: 116.88 115.75 L
1487: 117.13 116.25 L
1488: 117.37 116.88 L
1489: 117.63 117.37 L
1490: 117.88 117.88 L
1491: 118.13 118.38 L
1492: 118.50 118.88 L
1493: 118.75 119.38 L
1494: 119.00 119.75 L
1495: 119.25 120.25 L
1496: 119.50 120.75 L
1497: 119.75 121.25 L
1498: 120.13 121.63 L
1499: 120.38 122.13 L
1500: 120.63 122.50 L
1501: 120.88 123.00 L
1502: 121.13 123.38 L
1503: 121.37 123.88 L
1504: 121.75 124.25 L
1505: 122.00 124.63 L
1506: 122.25 125.00 L
1507: 122.50 125.38 L
1508: 122.75 125.88 L
1509: 123.00 126.25 L
1510: 123.38 126.63 L
1511: 123.62 127.00 L
1512: 123.88 127.25 L
1513: 124.13 127.62 L
1514: 124.38 128.00 L
1515: 124.63 128.38 L
1516: 125.00 128.75 L
1517: 125.25 129.00 L
1518: 125.50 129.38 L
1519: 125.75 129.63 L
1520: 126.00 130.00 L
1521: 126.25 130.38 L
1522: 126.63 130.63 L
1523: 126.88 130.88 L
1524: 127.13 131.25 L
1525: 127.38 131.50 L
1526: 127.62 131.75 L
1527: 127.88 132.13 L
1528: 128.25 132.38 L
1529: 128.50 132.63 L
1530: 128.75 132.88 L
1531: 129.00 133.13 L
1532: 129.25 133.38 L
1533: 129.50 133.63 L
1534: 129.87 133.87 L
1535: 130.13 134.13 L
1536: 130.38 134.38 L
1537: 130.63 134.63 L
1538: 130.88 134.87 L
1539: 131.13 135.00 L
1540: 131.50 135.25 L
1541: 131.75 135.50 L
1542: 132.00 135.63 L
1543: 132.25 135.88 L
1544: 132.50 136.12 L
1545: 132.75 136.25 L
1546: 133.13 136.50 L
1547: 133.38 136.63 L
1548: 133.63 136.88 L
1549: 133.87 137.00 L
1550: 134.13 137.13 L
1551: 134.38 137.38 L
1552: 134.75 137.50 L
1553: 135.00 137.63 L
1554: 135.25 137.88 L
1555: 135.50 138.00 L
1556: 135.75 138.13 L
1557: 136.00 138.25 L
1558: 136.38 138.38 L
1559: 136.63 138.50 L
1560: 136.88 138.63 L
1561: 137.13 138.75 L
1562: 137.38 138.88 L
1563: 137.63 139.00 L
1564: 138.00 139.13 L
1565: 138.25 139.25 L
1566: 138.50 139.38 L
1567: 138.75 139.50 L
1568: 139.00 139.50 L
1569: 139.25 139.63 L
1570: 139.63 139.75 L
1571: 139.88 139.88 L
1572: 140.12 139.88 L
1573: 140.38 140.00 L
1574: 140.63 140.12 L
1575: 140.88 140.12 L
1576: 141.25 140.25 L
1577: 141.50 140.25 L
1578: 141.75 140.38 L
1579: 142.00 140.38 L
1580: 142.25 140.50 L
1581: 142.50 140.50 L
1582: 142.88 140.50 L
1583: 143.13 140.63 L
1584: 143.38 140.63 L
1585: 143.63 140.63 L
1586: 143.88 140.75 L
1587: 144.25 140.75 L
1588: 144.50 140.75 L
1589: 144.75 140.75 L
1590: 145.00 140.88 L
1591: 145.25 140.88 L
1592: 145.50 140.88 L
1593: 145.88 140.88 L
1594: mstroke
1595: newpath 145.88 140.88 M
1596: 146.13 140.88 L
1597: 146.37 140.88 L
1598: 146.63 140.88 L
1599: 146.88 140.88 L
1600: mstroke
1601: [] sd
1602: 1 ps
1603: 0.50 ps
1604: newpath 90.25 120.25 M
1605: 94.75 120.25 L
1606: 94.75 124.63 L
1607: closepath
1608: 0 FillPath
1609: 0 StrokePath newpath
1610: newpath 91.00 119.88 M
1611: 95.50 119.88 L
1612: 95.50 124.25 L
1613: closepath
1614: 0 FillPath
1615: 0 StrokePath newpath
1616: newpath 93.62 120.25 M
1617: 98.13 120.25 L
1618: 98.13 124.63 L
1619: closepath
1620: 0 FillPath
1621: 0 StrokePath newpath
1622: newpath 96.63 122.37 M
1623: 101.13 122.37 L
1624: 101.13 126.75 L
1625: closepath
1626: 0 FillPath
1627: 0 StrokePath newpath
1628: newpath 100.38 127.38 M
1629: 104.87 127.38 L
1630: 104.87 131.75 L
1631: closepath
1632: 0 FillPath
1633: 0 StrokePath newpath
1634: newpath 106.00 129.75 M
1635: 110.50 129.75 L
1636: 110.50 134.13 L
1637: closepath
1638: 0 FillPath
1639: 0 StrokePath newpath
1640: newpath 111.00 136.00 M
1641: 115.50 136.00 L
1642: 115.50 140.38 L
1643: closepath
1644: 0 FillPath
1645: 0 StrokePath newpath
1646: newpath 120.63 137.13 M
1647: 125.13 137.13 L
1648: 125.13 141.50 L
1649: closepath
1650: 0 FillPath
1651: 0 StrokePath newpath
1652: newpath 129.00 135.38 M
1653: 133.50 135.38 L
1654: 133.50 139.75 L
1655: closepath
1656: 0 FillPath
1657: 0 StrokePath newpath
1658: newpath 138.00 134.75 M
1659: 142.50 134.75 L
1660: 142.50 139.13 L
1661: closepath
1662: 0 FillPath
1663: 0 StrokePath newpath
1664: newpath 144.25 139.75 M
1665: 148.75 139.75 L
1666: 148.75 144.13 L
1667: closepath
1668: 0 FillPath
1669: 0 StrokePath newpath
1670: newpath 154.87 144.63 M
1671: 159.38 144.63 L
1672: 159.38 149.00 L
1673: closepath
1674: 0 FillPath
1675: 0 StrokePath newpath
1676: newpath 169.50 142.37 M
1677: 174.00 142.37 L
1678: 174.00 146.75 L
1679: closepath
1680: 0 FillPath
1681: 0 StrokePath newpath
1682: newpath 184.50 134.50 M
1683: 189.00 134.50 L
1684: 189.00 138.88 L
1685: closepath
1686: 0 FillPath
1687: 0 StrokePath newpath
1688: newpath 203.00 135.38 M
1689: 207.50 135.38 L
1690: 207.50 139.75 L
1691: closepath
1692: 0 FillPath
1693: 0 StrokePath newpath
1694: newpath 217.13 136.00 M
1695: 221.62 136.00 L
1696: 221.62 140.38 L
1697: closepath
1698: 0 FillPath
1699: 0 StrokePath newpath
1700: newpath 244.13 144.13 M
1701: 248.62 144.13 L
1702: 248.62 148.50 L
1703: closepath
1704: 0 FillPath
1705: 0 StrokePath newpath
1706: 1 ps
1707: 1.00 ps
1708: newpath 93.25 120.00 M
1709: 94.00 120.88 L
1710: 94.75 121.63 L
1711: 95.50 122.37 L
1712: 96.25 123.13 L
1713: 97.13 123.88 L
1714: 97.88 124.50 L
1715: 98.62 125.13 L
1716: 99.38 125.75 L
1717: 100.13 126.38 L
1718: 100.88 126.88 L
1719: 101.75 127.50 L
1720: 102.50 128.00 L
1721: 103.25 128.50 L
1722: 104.00 128.88 L
1723: 104.75 129.38 L
1724: 105.63 129.87 L
1725: 106.38 130.25 L
1726: 107.13 130.63 L
1727: 107.87 131.13 L
1728: 108.63 131.50 L
1729: 109.50 131.88 L
1730: 110.25 132.25 L
1731: 111.00 132.50 L
1732: 111.75 132.88 L
1733: 112.50 133.25 L
1734: 113.25 133.50 L
1735: 114.12 133.87 L
1736: 114.88 134.13 L
1737: 115.63 134.38 L
1738: 116.37 134.63 L
1739: 117.13 134.87 L
1740: 118.00 135.13 L
1741: 118.75 135.38 L
1742: 119.50 135.63 L
1743: 120.25 135.88 L
1744: 121.00 136.12 L
1745: 121.88 136.38 L
1746: 122.63 136.50 L
1747: 123.38 136.75 L
1748: 124.13 137.00 L
1749: 124.88 137.13 L
1750: 125.63 137.38 L
1751: 126.50 137.50 L
1752: 127.25 137.63 L
1753: 128.00 137.88 L
1754: 128.75 138.00 L
1755: 129.50 138.13 L
1756: 130.38 138.38 L
1757: 131.13 138.50 L
1758: 131.88 138.63 L
1759: 132.63 138.75 L
1760: 133.38 138.88 L
1761: 134.25 139.00 L
1762: 135.00 139.13 L
1763: 135.75 139.25 L
1764: 136.50 139.38 L
1765: 137.25 139.38 L
1766: 138.00 139.50 L
1767: 138.88 139.63 L
1768: 139.63 139.75 L
1769: 140.38 139.75 L
1770: 141.12 139.88 L
1771: 141.88 140.00 L
1772: 142.75 140.00 L
1773: 143.50 140.12 L
1774: 144.25 140.12 L
1775: 145.00 140.25 L
1776: 145.75 140.38 L
1777: 146.63 140.38 L
1778: 147.37 140.38 L
1779: 148.13 140.50 L
1780: 148.88 140.50 L
1781: 149.63 140.63 L
1782: 150.38 140.63 L
1783: 151.25 140.63 L
1784: 152.00 140.63 L
1785: 152.75 140.75 L
1786: 153.50 140.75 L
1787: 154.25 140.75 L
1788: 155.13 140.75 L
1789: 155.88 140.88 L
1790: 156.63 140.88 L
1791: 157.38 140.88 L
1792: 158.13 140.88 L
1793: 159.00 140.88 L
1794: 159.75 140.88 L
1795: 160.50 140.88 L
1796: 161.25 140.88 L
1797: 162.00 140.88 L
1798: 162.75 140.88 L
1799: 163.63 140.88 L
1800: 164.37 140.88 L
1801: 165.13 140.88 L
1802: 165.88 140.88 L
1803: 166.63 140.88 L
1804: 167.50 140.88 L
1805: 168.25 140.88 L
1806: 169.00 140.88 L
1807: 169.75 140.88 L
1808: 170.50 140.88 L
1809: 171.38 140.88 L
1810: 172.13 140.88 L
1811: 172.88 140.88 L
1812: 173.62 140.88 L
1813: 174.38 140.88 L
1814: 175.13 140.88 L
1815: 176.00 140.88 L
1816: 176.75 140.88 L
1817: 177.50 140.88 L
1818: 178.25 140.88 L
1819: 179.00 140.88 L
1820: 179.87 140.88 L
1821: 180.63 140.88 L
1822: 181.38 140.88 L
1823: 182.13 140.88 L
1824: 182.88 140.88 L
1825: 183.75 140.88 L
1826: 184.50 140.88 L
1827: 185.25 140.88 L
1828: 186.00 140.88 L
1829: 186.75 140.88 L
1830: 187.50 140.88 L
1831: 188.38 140.88 L
1832: 189.13 140.88 L
1833: 189.87 140.88 L
1834: 190.62 140.88 L
1835: 191.38 140.88 L
1836: 192.25 140.88 L
1837: 193.00 140.88 L
1838: 193.75 140.88 L
1839: 194.50 140.88 L
1840: 195.25 140.88 L
1841: 196.00 140.88 L
1842: 196.88 140.88 L
1843: 197.63 140.88 L
1844: 198.38 140.88 L
1845: 199.13 140.88 L
1846: 199.88 140.88 L
1847: 200.75 140.88 L
1848: 201.50 140.88 L
1849: 202.25 140.88 L
1850: 203.00 140.88 L
1851: 203.75 140.88 L
1852: 204.63 140.88 L
1853: 205.38 140.88 L
1854: 206.13 140.88 L
1855: 206.88 140.88 L
1856: 207.63 140.88 L
1857: 208.38 140.88 L
1858: 209.25 140.88 L
1859: 210.00 140.88 L
1860: 210.75 140.88 L
1861: 211.50 140.88 L
1862: 212.25 140.88 L
1863: 213.13 140.88 L
1864: 213.88 140.88 L
1865: 214.63 140.88 L
1866: 215.37 140.88 L
1867: 216.13 140.88 L
1868: 217.00 140.88 L
1869: 217.75 140.88 L
1870: 218.50 140.88 L
1871: 219.25 140.88 L
1872: 220.00 140.88 L
1873: 220.75 140.88 L
1874: 221.62 140.88 L
1875: 222.38 140.88 L
1876: 223.13 140.88 L
1877: 223.88 140.88 L
1878: 224.63 140.88 L
1879: 225.50 140.88 L
1880: 226.25 140.88 L
1881: 227.00 140.88 L
1882: 227.75 140.88 L
1883: 228.50 140.88 L
1884: 229.38 140.88 L
1885: 230.13 140.88 L
1886: 230.88 140.88 L
1887: 231.63 140.88 L
1888: 232.37 140.88 L
1889: 233.13 140.88 L
1890: 234.00 140.88 L
1891: 234.75 140.88 L
1892: 235.50 140.88 L
1893: 236.25 140.88 L
1894: 237.00 140.88 L
1895: 237.88 140.88 L
1896: 238.62 140.88 L
1897: 239.38 140.88 L
1898: 240.13 140.88 L
1899: 240.88 140.88 L
1900: 241.75 140.88 L
1901: 242.50 140.88 L
1902: 243.25 140.88 L
1903: 244.00 140.88 L
1904: mstroke
1905: newpath 244.00 140.88 M
1906: 244.75 140.88 L
1907: 245.50 140.88 L
1908: 246.38 140.88 L
1909: 247.13 140.88 L
1910: mstroke
1911: [] sd
1912: 1 ps
1913: 206.00 23.62 249.50 55.88 EraseRect
1914: gsave 1.00 ps 207.50 25.12 248.00 54.38 FrameRect grestore
1915: 1.00 ps
1916: 1 ps
1917: 0.50 ps
1918: newpath 224.00 32.00 M
1919: 219.38 32.00 L
1920: 219.38 36.63 L
1921: closepath
1922: 0 FillPath
1923: 0 StrokePath newpath
1924: 1 ps
1925: 10.00 (_Helvetica) 0 F
1926: ( ab) 231.75 36.63 13.75 WS
1927: 1.00 ps
1928: 1 ps
1929: 0.50 ps
1930: newpath 217.75 44.13 M
1931: 222.50 44.13 L
1932: 222.50 48.75 L
1933: closepath
1934: 0 FillPath
1935: 0 StrokePath newpath
1936: 1 ps
1937: 10.00 (_Helvetica) 0 F
1938: ( c) 231.75 48.75 7.75 WS
1939: AnObj restore
1940: end
1941: IgorSave restore
1942: %%DocumentFonts: Helvetica
1943: %%+Symbol
1944: