1: %!
2: %%BoundingBox: 62 88 536 490
3: %%Creator: Igor
4: %%Title: Layout0
5: %%Creation Date: Wed, Nov 05, 2003 2:20 PM
6: %%DocumentFonts: (atend)
7: %%EndComments
8: 0 578 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: 65 92 translate
528: 1.00 ps
529: gsave 1.00 ps 74.63 17.88 74.63 336.50 0 CapLine grestore
530: gsave 1.00 ps 426.50 17.88 426.50 336.50 0 CapLine grestore
531: 1 ps
532: 1.00 ps
533: gsave 1.00 ps 74.13 17.88 83.50 17.88 0 CapLine grestore
534: 1 ps
535: OurEncoding /_Helvetica /Helvetica EncodeFont
536: 16.00 (_Helvetica) 0 F
537: (3.0) 47.75 23.25 22.25 WS
538: 1.00 ps
539: gsave 1.00 ps 74.13 71.00 83.50 71.00 0 CapLine grestore
540: 1 ps
541: 16.00 (_Helvetica) 0 F
542: (2.5) 47.75 76.37 22.25 WS
543: 1.00 ps
544: gsave 1.00 ps 74.13 124.13 83.50 124.13 0 CapLine grestore
545: 1 ps
546: 16.00 (_Helvetica) 0 F
547: (2.0) 47.75 129.50 22.25 WS
548: 1.00 ps
549: gsave 1.00 ps 74.13 177.25 83.50 177.25 0 CapLine grestore
550: 1 ps
551: 16.00 (_Helvetica) 0 F
552: (1.5) 47.75 182.63 22.25 WS
553: 1.00 ps
554: gsave 1.00 ps 74.13 230.25 83.50 230.25 0 CapLine grestore
555: 1 ps
556: 16.00 (_Helvetica) 0 F
557: (1.0) 47.75 235.63 22.25 WS
558: 1.00 ps
559: gsave 1.00 ps 74.13 283.38 83.50 283.38 0 CapLine grestore
560: 1 ps
561: 16.00 (_Helvetica) 0 F
562: (0.5) 47.75 288.75 22.25 WS
563: 1.00 ps
564: gsave 1.00 ps 74.13 336.50 83.50 336.50 0 CapLine grestore
565: 1 ps
566: 16.00 (_Helvetica) 0 F
567: (0.0) 47.75 341.88 22.25 WS
568: 16.00 (_Helvetica) 0 F
569: gsave 24.38 187.13 translate -90 rotate
570: (K \(%\)) 0.00 0.00 40.13 WS
571: grestore
572: 1.00 ps
573: gsave 1.00 ps 74.63 336.50 426.50 336.50 0 CapLine grestore
574: gsave 1.00 ps 74.63 17.88 426.50 17.88 0 CapLine grestore
575: 1 ps
576: 1.00 ps
577: gsave 1.00 ps 426.50 337.00 426.50 327.62 0 CapLine grestore
578: 1 ps
579: 16.00 (_Helvetica) 0 F
580: (40) 417.63 356.00 17.75 WS
581: 1.00 ps
582: gsave 1.00 ps 338.50 337.00 338.50 327.62 0 CapLine grestore
583: 1 ps
584: 16.00 (_Helvetica) 0 F
585: (30) 329.63 356.00 17.75 WS
586: 1.00 ps
587: gsave 1.00 ps 250.63 337.00 250.63 327.62 0 CapLine grestore
588: 1 ps
589: 16.00 (_Helvetica) 0 F
590: (20) 241.75 356.00 17.75 WS
591: 1.00 ps
592: gsave 1.00 ps 162.63 337.00 162.63 327.62 0 CapLine grestore
593: 1 ps
594: 16.00 (_Helvetica) 0 F
595: (10) 153.75 356.00 17.75 WS
596: 1.00 ps
597: gsave 1.00 ps 74.63 337.00 74.63 327.62 0 CapLine grestore
598: 1 ps
599: 16.00 (_Helvetica) 0 F
600: (0) 70.25 356.00 8.88 WS
601: 16.00 (Symbol) 0 F
602: (c) 185.50 381.50 8.75 WS
603: OurEncoding /_Helvetica /Helvetica EncodeFont
604: 16.00 (_Helvetica) 0 F
605: ( \(x10) 194.25 381.50 35.63 WS
606: 11.25 (_Helvetica) 0 F
607: (-3) 229.87 372.00 10.00 WS
608: 16.00 (_Helvetica) 0 F
609: ( emu/mol\)) 239.88 381.50 75.75 WS
610: 0.50 ps
611: newpath 384.63 137.63 M
612: 388.63 145.63 L
613: 380.63 145.63 L
614: closepath
615: 0 FillPath
616: 0 StrokePath newpath
617: newpath 330.88 169.13 M
618: 334.88 177.13 L
619: 326.88 177.13 L
620: closepath
621: 0 FillPath
622: 0 StrokePath newpath
623: newpath 309.75 175.88 M
624: 313.75 183.88 L
625: 305.75 183.88 L
626: closepath
627: 0 FillPath
628: 0 StrokePath newpath
629: newpath 296.25 186.38 M
630: 300.25 194.38 L
631: 292.25 194.38 L
632: closepath
633: 0 FillPath
634: 0 StrokePath newpath
635: newpath 281.00 196.00 M
636: 285.00 204.00 L
637: 277.00 204.00 L
638: closepath
639: 0 FillPath
640: 0 StrokePath newpath
641: newpath 266.50 202.00 M
642: 270.50 210.00 L
643: 262.50 210.00 L
644: closepath
645: 0 FillPath
646: 0 StrokePath newpath
647: newpath 207.00 237.13 M
648: 211.00 245.13 L
649: 203.00 245.13 L
650: closepath
651: 0 FillPath
652: 0 StrokePath newpath
653: newpath 191.75 244.00 M
654: 195.75 252.00 L
655: 187.75 252.00 L
656: closepath
657: 0 FillPath
658: 0 StrokePath newpath
659: newpath 175.38 254.38 M
660: 179.38 262.38 L
661: 171.38 262.38 L
662: closepath
663: 0 FillPath
664: 0 StrokePath newpath
665: newpath 163.88 261.12 M
666: 167.88 269.13 L
667: 159.87 269.13 L
668: closepath
669: 0 FillPath
670: 0 StrokePath newpath
671: newpath 154.25 269.38 M
672: 158.25 277.38 L
673: 150.25 277.38 L
674: closepath
675: 0 FillPath
676: 0 StrokePath newpath
677: newpath 149.50 274.63 M
678: 153.50 282.63 L
679: 145.50 282.63 L
680: closepath
681: 0 FillPath
682: 0 StrokePath newpath
683: newpath 143.75 275.38 M
684: 147.75 283.38 L
685: 139.75 283.38 L
686: closepath
687: 0 FillPath
688: 0 StrokePath newpath
689: newpath 131.25 285.13 M
690: 135.25 293.13 L
691: 127.25 293.13 L
692: closepath
693: 0 FillPath
694: 0 StrokePath newpath
695: newpath 125.50 291.13 M
696: 129.50 299.13 L
697: 121.50 299.13 L
698: closepath
699: 0 FillPath
700: 0 StrokePath newpath
701: newpath 118.75 296.38 M
702: 122.75 304.38 L
703: 114.75 304.38 L
704: closepath
705: 0 FillPath
706: 0 StrokePath newpath
707: newpath 115.88 300.88 M
708: 119.88 308.88 L
709: 111.88 308.88 L
710: closepath
711: 0 FillPath
712: 0 StrokePath newpath
713: newpath 112.00 303.13 M
714: 116.00 311.12 L
715: 108.00 311.12 L
716: closepath
717: 0 FillPath
718: 0 StrokePath newpath
719: newpath 106.25 305.38 M
720: 110.25 313.38 L
721: 102.25 313.38 L
722: closepath
723: 0 FillPath
724: 0 StrokePath newpath
725: newpath 104.38 307.00 M
726: 108.38 315.00 L
727: 100.38 315.00 L
728: closepath
729: 0 FillPath
730: 0 StrokePath newpath
731: newpath 105.38 307.00 M
732: 109.38 315.00 L
733: 101.38 315.00 L
734: closepath
735: 0 FillPath
736: 0 StrokePath newpath
737: 1 ps
738: 1.00 ps
739: newpath 74.63 334.38 M
740: 76.37 333.00 L
741: 78.12 331.63 L
742: 79.87 330.25 L
743: 81.75 328.88 L
744: 83.50 327.62 L
745: 85.25 326.25 L
746: 87.00 324.88 L
747: 88.75 323.50 L
748: 90.50 322.13 L
749: 92.25 320.75 L
750: 94.13 319.50 L
751: 95.87 318.13 L
752: 97.62 316.75 L
753: 99.38 315.38 L
754: 101.13 314.00 L
755: 102.88 312.75 L
756: 104.63 311.38 L
757: 106.50 310.00 L
758: 108.25 308.63 L
759: 110.00 307.25 L
760: 111.75 305.88 L
761: 113.50 304.63 L
762: 115.25 303.25 L
763: 117.00 301.88 L
764: 118.88 300.50 L
765: 120.63 299.13 L
766: 122.37 297.75 L
767: 124.13 296.50 L
768: 125.88 295.13 L
769: 127.62 293.75 L
770: 129.50 292.37 L
771: 131.25 291.00 L
772: 133.00 289.75 L
773: 134.75 288.38 L
774: 136.50 287.00 L
775: 138.25 285.63 L
776: 140.00 284.25 L
777: 141.88 282.88 L
778: 143.63 281.63 L
779: 145.38 280.25 L
780: 147.13 278.88 L
781: 148.88 277.50 L
782: 150.63 276.13 L
783: 152.38 274.88 L
784: 154.25 273.50 L
785: 156.00 272.13 L
786: 157.75 270.75 L
787: 159.50 269.38 L
788: 161.25 268.00 L
789: 163.00 266.75 L
790: 164.75 265.38 L
791: 166.63 264.00 L
792: 168.38 262.63 L
793: 170.13 261.25 L
794: 171.87 259.88 L
795: 173.62 258.63 L
796: 175.38 257.25 L
797: 177.13 255.88 L
798: 179.00 254.50 L
799: 180.75 253.13 L
800: 182.50 251.88 L
801: 184.25 250.50 L
802: 186.00 249.13 L
803: 187.75 247.75 L
804: 189.50 246.38 L
805: 191.38 245.00 L
806: 193.13 243.75 L
807: 194.88 242.37 L
808: 196.63 241.00 L
809: 198.38 239.63 L
810: 200.13 238.25 L
811: 201.88 237.00 L
812: 203.75 235.63 L
813: 205.50 234.25 L
814: 207.25 232.88 L
815: 209.00 231.50 L
816: 210.75 230.13 L
817: 212.50 228.88 L
818: 214.38 227.50 L
819: 216.13 226.12 L
820: 217.88 224.75 L
821: 219.63 223.38 L
822: 221.38 222.00 L
823: 223.13 220.75 L
824: 224.88 219.38 L
825: 226.75 218.00 L
826: 228.50 216.63 L
827: 230.25 215.25 L
828: 232.00 214.00 L
829: 233.75 212.63 L
830: 235.50 211.25 L
831: 237.25 209.88 L
832: 239.13 208.50 L
833: 240.88 207.13 L
834: 242.63 205.88 L
835: 244.38 204.50 L
836: 246.13 203.13 L
837: 247.88 201.75 L
838: 249.63 200.38 L
839: 251.50 199.13 L
840: 253.25 197.75 L
841: 255.00 196.38 L
842: 256.75 195.00 L
843: 258.50 193.63 L
844: 260.25 192.25 L
845: 262.00 191.00 L
846: 263.88 189.63 L
847: 265.63 188.25 L
848: 267.37 186.88 L
849: 269.13 185.50 L
850: 270.88 184.13 L
851: 272.63 182.88 L
852: 274.38 181.50 L
853: 276.25 180.13 L
854: 278.00 178.75 L
855: 279.75 177.38 L
856: 281.50 176.13 L
857: 283.25 174.75 L
858: 285.00 173.38 L
859: 286.75 172.00 L
860: 288.63 170.62 L
861: 290.38 169.25 L
862: 292.13 168.00 L
863: 293.88 166.63 L
864: 295.63 165.25 L
865: 297.38 163.88 L
866: 299.25 162.50 L
867: 301.00 161.12 L
868: 302.75 159.87 L
869: 304.50 158.50 L
870: 306.25 157.13 L
871: 308.00 155.75 L
872: 309.75 154.38 L
873: 311.63 153.13 L
874: 313.38 151.75 L
875: 315.13 150.38 L
876: 316.88 149.00 L
877: 318.63 147.63 L
878: 320.38 146.25 L
879: 322.13 145.00 L
880: 324.00 143.63 L
881: 325.75 142.25 L
882: 327.50 140.88 L
883: 329.25 139.50 L
884: 331.00 138.25 L
885: 332.75 136.88 L
886: 334.50 135.50 L
887: 336.37 134.13 L
888: 338.13 132.75 L
889: 339.88 131.38 L
890: 341.63 130.13 L
891: 343.38 128.75 L
892: 345.12 127.38 L
893: 346.88 126.00 L
894: 348.75 124.63 L
895: 350.50 123.25 L
896: 352.25 122.00 L
897: 354.00 120.63 L
898: 355.75 119.25 L
899: 357.50 117.88 L
900: 359.25 116.50 L
901: 361.12 115.25 L
902: 362.88 113.88 L
903: 364.63 112.50 L
904: 366.38 111.12 L
905: 368.13 109.75 L
906: 369.88 108.38 L
907: 371.63 107.13 L
908: 373.50 105.75 L
909: 375.25 104.38 L
910: 377.00 103.00 L
911: 378.75 101.62 L
912: 380.50 100.38 L
913: 382.25 99.00 L
914: 384.13 97.62 L
915: 385.88 96.25 L
916: 387.63 94.87 L
917: 389.38 93.50 L
918: 391.13 92.25 L
919: 392.88 90.87 L
920: 394.63 89.50 L
921: 396.50 88.13 L
922: 398.25 86.75 L
923: 400.00 85.38 L
924: 401.75 84.13 L
925: 403.50 82.75 L
926: 405.25 81.37 L
927: 407.00 80.00 L
928: 408.88 78.62 L
929: 410.63 77.37 L
930: 412.38 76.00 L
931: 414.13 74.63 L
932: 415.88 73.25 L
933: 417.63 71.87 L
934: 419.38 70.50 L
935: mstroke
936: newpath 419.38 70.50 M
937: 421.25 69.25 L
938: 423.00 67.88 L
939: 424.75 66.50 L
940: 426.50 65.12 L
941: mstroke
942: [] sd
943: 1 ps
944: AnObj restore
945: /AnObj save def
946: 1 1 1 SetBack 0 0 0 SetFore UseFore
947: 0 0 translate
948: AnObj restore
949: /AnObj save def
950: 1 1 1 SetBack 0 0 0 SetFore UseFore
951: 142 112 translate
952: 1.00 ps
953: gsave 1.00 ps 75.12 17.88 75.12 128.75 0 CapLine grestore
954: gsave 1.00 ps 200.50 17.88 200.50 128.75 0 CapLine grestore
955: 1 ps
956: 1.00 ps
957: gsave 1.00 ps 74.63 128.75 81.88 128.75 0 CapLine grestore
958: 1 ps
959: OurEncoding /_Helvetica /Helvetica EncodeFont
960: 16.00 (_Helvetica) 0 F
961: (-0.5) 43.88 134.13 27.62 WS
962: 1.00 ps
963: gsave 1.00 ps 74.63 110.25 81.88 110.25 0 CapLine grestore
964: 1 ps
965: 16.00 (_Helvetica) 0 F
966: (-0.4) 43.88 115.63 27.62 WS
967: 1.00 ps
968: gsave 1.00 ps 74.63 91.75 81.88 91.75 0 CapLine grestore
969: 1 ps
970: 16.00 (_Helvetica) 0 F
971: (-0.3) 43.88 97.13 27.62 WS
972: 1.00 ps
973: gsave 1.00 ps 74.63 73.25 81.88 73.25 0 CapLine grestore
974: 1 ps
975: 16.00 (_Helvetica) 0 F
976: (-0.2) 43.88 78.62 27.62 WS
977: 1.00 ps
978: gsave 1.00 ps 74.63 54.88 81.88 54.88 0 CapLine grestore
979: 1 ps
980: 16.00 (_Helvetica) 0 F
981: (-0.1) 43.88 60.25 27.62 WS
982: 1.00 ps
983: gsave 1.00 ps 74.63 36.38 81.88 36.38 0 CapLine grestore
984: 1 ps
985: 16.00 (_Helvetica) 0 F
986: (0.0) 49.25 41.75 22.25 WS
987: 1.00 ps
988: gsave 1.00 ps 74.63 17.88 81.88 17.88 0 CapLine grestore
989: 1 ps
990: 16.00 (_Helvetica) 0 F
991: (0.1) 49.25 23.25 22.25 WS
992: 16.00 (_Helvetica) 0 F
993: gsave 30.38 90.75 translate -90 rotate
994: (K) 0.00 0.00 10.63 WS
995: grestore
996: 11.25 (_Helvetica) 0 F
997: gsave 35.25 80.12 translate -90 rotate
998: (cf) 0.00 0.00 8.88 WS
999: grestore
1000: 16.00 (_Helvetica) 0 F
1001: gsave 30.38 71.25 translate -90 rotate
1002: ( \(%\)) 0.00 0.00 29.50 WS
1003: grestore
1004: 1.00 ps
1005: gsave 1.00 ps 75.12 128.75 200.50 128.75 0 CapLine grestore
1006: gsave 1.00 ps 75.12 17.88 200.50 17.88 0 CapLine grestore
1007: 1 ps
1008: 1.00 ps
1009: gsave 1.00 ps 200.50 129.25 200.50 125.13 0 CapLine grestore
1010: 1 ps
1011: 1.00 ps
1012: gsave 1.00 ps 175.38 129.25 175.38 122.00 0 CapLine grestore
1013: 1 ps
1014: 16.00 (_Helvetica) 0 F
1015: (80) 166.50 147.25 17.75 WS
1016: 1.00 ps
1017: gsave 1.00 ps 150.38 129.25 150.38 125.13 0 CapLine grestore
1018: 1 ps
1019: 1.00 ps
1020: gsave 1.00 ps 125.25 129.25 125.25 122.00 0 CapLine grestore
1021: 1 ps
1022: 16.00 (_Helvetica) 0 F
1023: (40) 116.37 147.25 17.75 WS
1024: 1.00 ps
1025: gsave 1.00 ps 100.25 129.25 100.25 125.13 0 CapLine grestore
1026: 1 ps
1027: 1.00 ps
1028: gsave 1.00 ps 75.12 129.25 75.12 122.00 0 CapLine grestore
1029: 1 ps
1030: 16.00 (_Helvetica) 0 F
1031: (0) 70.75 147.25 8.88 WS
1032: 16.00 (_Helvetica) 0 F
1033: (T \(K\)) 120.00 170.50 35.63 WS
1034: 0.50 ps
1035: newpath 77.00 115.25 M
1036: 79.00 119.25 L
1037: 75.00 119.25 L
1038: closepath
1039: 0 FillPath
1040: 0 StrokePath newpath
1041: newpath 80.38 97.75 M
1042: 82.37 101.75 L
1043: 78.38 101.75 L
1044: closepath
1045: 0 FillPath
1046: 0 StrokePath newpath
1047: newpath 82.00 81.12 M
1048: 84.00 85.12 L
1049: 80.00 85.12 L
1050: closepath
1051: 0 FillPath
1052: 0 StrokePath newpath
1053: newpath 83.13 81.25 M
1054: 85.12 85.25 L
1055: 81.12 85.25 L
1056: closepath
1057: 0 FillPath
1058: 0 StrokePath newpath
1059: newpath 85.12 77.50 M
1060: 87.12 81.50 L
1061: 83.13 81.50 L
1062: closepath
1063: 0 FillPath
1064: 0 StrokePath newpath
1065: newpath 87.50 68.62 M
1066: 89.50 72.62 L
1067: 85.50 72.62 L
1068: closepath
1069: 0 FillPath
1070: 0 StrokePath newpath
1071: newpath 100.25 49.75 M
1072: 102.25 53.75 L
1073: 98.25 53.75 L
1074: closepath
1075: 0 FillPath
1076: 0 StrokePath newpath
1077: newpath 113.25 40.88 M
1078: 115.25 44.88 L
1079: 111.25 44.88 L
1080: closepath
1081: 0 FillPath
1082: 0 StrokePath newpath
1083: newpath 125.25 37.13 M
1084: 127.25 41.13 L
1085: 123.25 41.13 L
1086: closepath
1087: 0 FillPath
1088: 0 StrokePath newpath
1089: newpath 138.75 33.38 M
1090: 140.75 37.38 L
1091: 136.75 37.38 L
1092: closepath
1093: 0 FillPath
1094: 0 StrokePath newpath
1095: newpath 152.38 34.88 M
1096: 154.38 38.88 L
1097: 150.38 38.88 L
1098: closepath
1099: 0 FillPath
1100: 0 StrokePath newpath
1101: newpath 163.25 37.50 M
1102: 165.25 41.50 L
1103: 161.25 41.50 L
1104: closepath
1105: 0 FillPath
1106: 0 StrokePath newpath
1107: newpath 174.00 31.12 M
1108: 176.00 35.13 L
1109: 172.00 35.13 L
1110: closepath
1111: 0 FillPath
1112: 0 StrokePath newpath
1113: 1 ps
1114: 1.00 ps
1115: newpath 77.00 120.25 M
1116: 79.00 102.13 L
1117: 80.87 91.37 L
1118: 82.88 83.75 L
1119: 84.75 77.75 L
1120: 86.75 72.88 L
1121: 88.62 68.75 L
1122: 90.63 65.25 L
1123: 92.50 62.13 L
1124: 94.50 59.50 L
1125: 96.50 57.00 L
1126: 98.38 54.88 L
1127: 100.38 52.88 L
1128: 102.25 51.13 L
1129: 104.25 49.50 L
1130: 106.12 48.13 L
1131: 108.13 46.75 L
1132: 110.12 45.63 L
1133: 112.00 44.50 L
1134: 114.00 43.50 L
1135: 115.88 42.63 L
1136: 117.88 41.75 L
1137: 119.75 41.00 L
1138: 121.75 40.38 L
1139: 123.75 39.75 L
1140: 125.63 39.13 L
1141: 127.62 38.63 L
1142: 129.50 38.25 L
1143: 131.50 37.88 L
1144: 133.38 37.50 L
1145: 135.38 37.25 L
1146: 137.25 37.00 L
1147: 139.25 36.75 L
1148: 141.25 36.63 L
1149: 143.13 36.50 L
1150: 145.12 36.38 L
1151: 147.00 36.38 L
1152: 149.00 36.38 L
1153: 150.88 36.38 L
1154: 152.88 36.38 L
1155: 154.87 36.38 L
1156: 156.75 36.38 L
1157: 158.75 36.38 L
1158: 160.63 36.38 L
1159: 162.63 36.38 L
1160: 164.50 36.38 L
1161: 166.50 36.38 L
1162: 168.50 36.38 L
1163: 170.38 36.38 L
1164: 172.37 36.38 L
1165: 174.25 36.38 L
1166: 176.25 36.38 L
1167: 178.12 36.38 L
1168: 180.13 36.38 L
1169: 182.00 36.38 L
1170: 184.00 36.38 L
1171: 186.00 36.38 L
1172: 187.88 36.38 L
1173: 189.87 36.38 L
1174: 191.75 36.38 L
1175: 193.75 36.38 L
1176: 195.63 36.38 L
1177: 197.63 36.38 L
1178: 199.63 36.38 L
1179: 200.50 36.38 L
1180: mstroke
1181: [] sd
1182: 1 ps
1183: AnObj restore
1184: end
1185: IgorSave restore
1186: %%DocumentFonts: Helvetica
1187: %%+Symbol
1188: