1: %!
2: %%BoundingBox: 71 78 533 486
3: %%Creator: Igor
4: %%Title: Layout0
5: %%Creation Date: Wed, Nov 05, 2003 2:21 PM
6: %%DocumentFonts: (atend)
7: %%EndComments
8: 0 564 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: 74 82 translate
528: 1.00 ps
529: gsave 1.00 ps 74.63 17.88 74.63 342.50 0 CapLine grestore
530: gsave 1.00 ps 414.50 17.88 414.50 342.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: (1.0) 47.75 23.25 22.25 WS
538: 1.00 ps
539: gsave 1.00 ps 74.13 82.75 83.50 82.75 0 CapLine grestore
540: 1 ps
541: 16.00 (_Helvetica) 0 F
542: (0.8) 47.75 88.13 22.25 WS
543: 1.00 ps
544: gsave 1.00 ps 74.13 147.75 83.50 147.75 0 CapLine grestore
545: 1 ps
546: 16.00 (_Helvetica) 0 F
547: (0.6) 47.75 153.13 22.25 WS
548: 1.00 ps
549: gsave 1.00 ps 74.13 212.63 83.50 212.63 0 CapLine grestore
550: 1 ps
551: 16.00 (_Helvetica) 0 F
552: (0.4) 47.75 218.00 22.25 WS
553: 1.00 ps
554: gsave 1.00 ps 74.13 277.63 83.50 277.63 0 CapLine grestore
555: 1 ps
556: 16.00 (_Helvetica) 0 F
557: (0.2) 47.75 283.00 22.25 WS
558: 1.00 ps
559: gsave 1.00 ps 74.13 342.50 83.50 342.50 0 CapLine grestore
560: 1 ps
561: 16.00 (_Helvetica) 0 F
562: (0.0) 47.75 347.88 22.25 WS
563: 16.00 (_Helvetica) 0 F
564: gsave 14.38 200.13 translate -90 rotate
565: (K \(%\)) 0.00 0.00 40.13 WS
566: grestore
567: 1.00 ps
568: gsave 1.00 ps 74.63 342.50 414.50 342.50 0 CapLine grestore
569: gsave 1.00 ps 74.63 17.88 414.50 17.88 0 CapLine grestore
570: 1 ps
571: 1.00 ps
572: gsave 1.00 ps 414.50 343.00 414.50 333.63 0 CapLine grestore
573: 1 ps
574: 16.00 (_Helvetica) 0 F
575: (10) 405.63 362.00 17.75 WS
576: 1.00 ps
577: gsave 1.00 ps 346.50 343.00 346.50 333.63 0 CapLine grestore
578: 1 ps
579: 16.00 (_Helvetica) 0 F
580: (8) 342.13 362.00 8.88 WS
581: 1.00 ps
582: gsave 1.00 ps 278.50 343.00 278.50 333.63 0 CapLine grestore
583: 1 ps
584: 16.00 (_Helvetica) 0 F
585: (6) 274.13 362.00 8.88 WS
586: 1.00 ps
587: gsave 1.00 ps 210.63 343.00 210.63 333.63 0 CapLine grestore
588: 1 ps
589: 16.00 (_Helvetica) 0 F
590: (4) 206.25 362.00 8.88 WS
591: 1.00 ps
592: gsave 1.00 ps 142.63 343.00 142.63 333.63 0 CapLine grestore
593: 1 ps
594: 16.00 (_Helvetica) 0 F
595: (2) 138.25 362.00 8.88 WS
596: 1.00 ps
597: gsave 1.00 ps 74.63 343.00 74.63 333.63 0 CapLine grestore
598: 1 ps
599: 16.00 (_Helvetica) 0 F
600: (0) 70.25 362.00 8.88 WS
601: 16.00 (Symbol) 0 F
602: (c) 176.63 392.75 8.75 WS
603: OurEncoding /_Helvetica /Helvetica EncodeFont
604: 11.25 (_Helvetica) 0 F
605: (c) 185.38 397.63 5.62 WS
606: 16.00 (_Helvetica) 0 F
607: ( \(x10) 191.00 392.75 35.63 WS
608: 11.25 (_Helvetica) 0 F
609: (-3) 226.63 383.25 10.00 WS
610: 16.00 (_Helvetica) 0 F
611: ( emu/mol\)) 236.63 392.75 75.75 WS
612: 1.00 ps
613: newpath 74.63 326.50 M
614: 76.37 325.63 L
615: 78.00 324.63 L
616: 79.75 323.62 L
617: 81.50 322.63 L
618: 83.13 321.63 L
619: 84.87 320.63 L
620: 86.63 319.63 L
621: 88.25 318.63 L
622: 90.00 317.75 L
623: 91.75 316.75 L
624: 93.37 315.75 L
625: 95.12 314.75 L
626: 96.88 313.75 L
627: 98.50 312.75 L
628: 100.25 311.75 L
629: 102.00 310.88 L
630: 103.62 309.88 L
631: 105.38 308.88 L
632: 107.13 307.88 L
633: 108.75 306.88 L
634: 110.50 305.88 L
635: 112.25 304.87 L
636: 113.88 303.88 L
637: 115.63 303.00 L
638: 117.37 302.00 L
639: 119.00 301.00 L
640: 120.75 300.00 L
641: 122.50 299.00 L
642: 124.13 298.00 L
643: 125.88 297.00 L
644: 127.62 296.00 L
645: 129.25 295.13 L
646: 131.00 294.13 L
647: 132.75 293.13 L
648: 134.38 292.13 L
649: 136.12 291.13 L
650: 137.88 290.13 L
651: 139.50 289.13 L
652: 141.25 288.25 L
653: 143.00 287.25 L
654: 144.63 286.25 L
655: 146.37 285.25 L
656: 148.13 284.25 L
657: 149.75 283.25 L
658: 151.50 282.25 L
659: 153.25 281.25 L
660: 154.87 280.38 L
661: 156.63 279.38 L
662: 158.38 278.38 L
663: 160.00 277.38 L
664: 161.75 276.38 L
665: 163.38 275.38 L
666: 165.13 274.38 L
667: 166.88 273.50 L
668: 168.50 272.50 L
669: 170.25 271.50 L
670: 172.00 270.50 L
671: 173.62 269.50 L
672: 175.38 268.50 L
673: 177.13 267.50 L
674: 178.75 266.50 L
675: 180.50 265.63 L
676: 182.25 264.63 L
677: 183.88 263.63 L
678: 185.63 262.63 L
679: 187.38 261.63 L
680: 189.00 260.63 L
681: 190.75 259.63 L
682: 192.50 258.63 L
683: 194.13 257.75 L
684: 195.88 256.75 L
685: 197.63 255.75 L
686: 199.25 254.75 L
687: 201.00 253.75 L
688: 202.75 252.75 L
689: 204.38 251.75 L
690: 206.13 250.88 L
691: 207.88 249.88 L
692: 209.50 248.88 L
693: 211.25 247.88 L
694: 213.00 246.88 L
695: 214.63 245.88 L
696: 216.38 244.88 L
697: 218.13 243.88 L
698: 219.75 243.00 L
699: 221.50 242.00 L
700: 223.25 241.00 L
701: 224.88 240.00 L
702: 226.63 239.00 L
703: 228.38 238.00 L
704: 230.00 237.00 L
705: 231.75 236.00 L
706: 233.50 235.13 L
707: 235.13 234.12 L
708: 236.88 233.13 L
709: 238.62 232.13 L
710: 240.25 231.13 L
711: 242.00 230.13 L
712: 243.75 229.13 L
713: 245.38 228.25 L
714: 247.13 227.25 L
715: 248.88 226.25 L
716: 250.50 225.25 L
717: 252.25 224.25 L
718: 254.00 223.25 L
719: 255.63 222.25 L
720: 257.38 221.25 L
721: 259.13 220.38 L
722: 260.75 219.38 L
723: 262.50 218.38 L
724: 264.25 217.37 L
725: 265.88 216.38 L
726: 267.63 215.37 L
727: 269.38 214.38 L
728: 271.00 213.38 L
729: 272.75 212.50 L
730: 274.50 211.50 L
731: 276.13 210.50 L
732: 277.88 209.50 L
733: 279.63 208.50 L
734: 281.25 207.50 L
735: 283.00 206.50 L
736: 284.75 205.63 L
737: 286.38 204.63 L
738: 288.13 203.63 L
739: 289.87 202.63 L
740: 291.50 201.63 L
741: 293.25 200.63 L
742: 295.00 199.63 L
743: 296.63 198.62 L
744: 298.38 197.75 L
745: 300.13 196.75 L
746: 301.75 195.75 L
747: 303.50 194.75 L
748: 305.25 193.75 L
749: 306.88 192.75 L
750: 308.63 191.75 L
751: 310.38 190.88 L
752: 312.00 189.87 L
753: 313.75 188.88 L
754: 315.50 187.88 L
755: 317.13 186.88 L
756: 318.88 185.88 L
757: 320.63 184.87 L
758: 322.25 183.88 L
759: 324.00 183.00 L
760: 325.75 182.00 L
761: 327.38 181.00 L
762: 329.13 180.00 L
763: 330.75 179.00 L
764: 332.50 178.00 L
765: 334.25 177.00 L
766: 335.88 176.00 L
767: 337.63 175.13 L
768: 339.38 174.13 L
769: 341.00 173.13 L
770: 342.75 172.13 L
771: 344.50 171.13 L
772: 346.13 170.13 L
773: 347.88 169.13 L
774: 349.63 168.25 L
775: 351.25 167.25 L
776: 353.00 166.25 L
777: 354.75 165.25 L
778: 356.38 164.25 L
779: 358.13 163.25 L
780: 359.88 162.25 L
781: 361.50 161.25 L
782: 363.25 160.38 L
783: 365.00 159.38 L
784: 366.63 158.38 L
785: 368.38 157.38 L
786: 370.12 156.38 L
787: 371.75 155.38 L
788: 373.50 154.38 L
789: 375.25 153.38 L
790: 376.88 152.50 L
791: 378.63 151.50 L
792: 380.38 150.50 L
793: 382.00 149.50 L
794: 383.75 148.50 L
795: 385.50 147.50 L
796: 387.13 146.50 L
797: 388.88 145.63 L
798: 390.63 144.63 L
799: 392.25 143.63 L
800: 394.00 142.63 L
801: 395.75 141.63 L
802: 397.38 140.63 L
803: 399.13 139.63 L
804: 400.87 138.63 L
805: 402.50 137.75 L
806: 404.25 136.75 L
807: 406.00 135.75 L
808: 407.63 134.75 L
809: mstroke
810: newpath 407.63 134.75 M
811: 409.38 133.75 L
812: 411.12 132.75 L
813: 412.75 131.75 L
814: 414.50 130.88 L
815: mstroke
816: [] sd
817: 1 ps
818: 0.50 ps
819: 316.88 192.88 324.88 200.88 RectPath
820: 1 FillPath
821: 0 StrokePath
822: newpath
823: 316.88 192.88 324.88 200.88 2 CapLine
824: 324.88 192.88 316.88 200.88 2 CapLine
825: 332.88 183.75 340.88 191.75 RectPath
826: 1 FillPath
827: 0 StrokePath
828: newpath
829: 332.88 183.75 340.88 191.75 2 CapLine
830: 340.88 183.75 332.88 191.75 2 CapLine
831: 351.50 171.75 359.50 179.75 RectPath
832: 1 FillPath
833: 0 StrokePath
834: newpath
835: 351.50 171.75 359.50 179.75 2 CapLine
836: 359.50 171.75 351.50 179.75 2 CapLine
837: 368.13 156.50 376.13 164.50 RectPath
838: 1 FillPath
839: 0 StrokePath
840: newpath
841: 368.13 156.50 376.13 164.50 2 CapLine
842: 376.13 156.50 368.13 164.50 2 CapLine
843: 377.38 150.88 385.38 158.87 RectPath
844: 1 FillPath
845: 0 StrokePath
846: newpath
847: 377.38 150.88 385.38 158.87 2 CapLine
848: 385.38 150.88 377.38 158.87 2 CapLine
849: 373.75 149.25 381.75 157.25 RectPath
850: 1 FillPath
851: 0 StrokePath
852: newpath
853: 373.75 149.25 381.75 157.25 2 CapLine
854: 381.75 149.25 373.75 157.25 2 CapLine
855: 367.75 151.75 375.75 159.75 RectPath
856: 1 FillPath
857: 0 StrokePath
858: newpath
859: 367.75 151.75 375.75 159.75 2 CapLine
860: 375.75 151.75 367.75 159.75 2 CapLine
861: 360.63 156.38 368.63 164.37 RectPath
862: 1 FillPath
863: 0 StrokePath
864: newpath
865: 360.63 156.38 368.63 164.37 2 CapLine
866: 368.63 156.38 360.63 164.37 2 CapLine
867: 339.88 167.50 347.88 175.50 RectPath
868: 1 FillPath
869: 0 StrokePath
870: newpath
871: 339.88 167.50 347.88 175.50 2 CapLine
872: 347.88 167.50 339.88 175.50 2 CapLine
873: 290.75 194.13 298.75 202.13 RectPath
874: 1 FillPath
875: 0 StrokePath
876: newpath
877: 290.75 194.13 298.75 202.13 2 CapLine
878: 298.75 194.13 290.75 202.13 2 CapLine
879: 243.38 221.38 251.38 229.38 RectPath
880: 1 FillPath
881: 0 StrokePath
882: newpath
883: 243.38 221.38 251.38 229.38 2 CapLine
884: 251.38 221.38 243.38 229.38 2 CapLine
885: 218.63 238.75 226.63 246.75 RectPath
886: 1 FillPath
887: 0 StrokePath
888: newpath
889: 218.63 238.75 226.63 246.75 2 CapLine
890: 226.63 238.75 218.63 246.75 2 CapLine
891: 197.75 250.88 205.75 258.88 RectPath
892: 1 FillPath
893: 0 StrokePath
894: newpath
895: 197.75 250.88 205.75 258.88 2 CapLine
896: 205.75 250.88 197.75 258.88 2 CapLine
897: 181.38 257.88 189.37 265.88 RectPath
898: 1 FillPath
899: 0 StrokePath
900: newpath
901: 181.38 257.88 189.37 265.88 2 CapLine
902: 189.37 257.88 181.38 265.88 2 CapLine
903: 1 ps
904: AnObj restore
905: /AnObj save def
906: 1 1 1 SetBack 0 0 0 SetFore UseFore
907: 0 0 translate
908: AnObj restore
909: /AnObj save def
910: 1 1 1 SetBack 0 0 0 SetFore UseFore
911: 140 97 translate
912: 1.00 ps
913: gsave 1.00 ps 84.00 17.88 84.00 138.75 0 CapLine grestore
914: gsave 1.00 ps 245.50 17.88 245.50 138.75 0 CapLine grestore
915: 1 ps
916: 1.00 ps
917: gsave 1.00 ps 83.50 128.62 87.62 128.62 0 CapLine grestore
918: 1 ps
919: 1.00 ps
920: gsave 1.00 ps 83.50 108.50 90.75 108.50 0 CapLine grestore
921: 1 ps
922: OurEncoding /_Helvetica /Helvetica EncodeFont
923: 16.00 (_Helvetica) 0 F
924: (-0.08) 43.88 113.88 36.50 WS
925: 1.00 ps
926: gsave 1.00 ps 83.50 88.37 87.62 88.37 0 CapLine grestore
927: 1 ps
928: 1.00 ps
929: gsave 1.00 ps 83.50 68.25 90.75 68.25 0 CapLine grestore
930: 1 ps
931: 16.00 (_Helvetica) 0 F
932: (-0.04) 43.88 73.62 36.50 WS
933: 1.00 ps
934: gsave 1.00 ps 83.50 48.13 87.62 48.13 0 CapLine grestore
935: 1 ps
936: 1.00 ps
937: gsave 1.00 ps 83.50 28.00 90.75 28.00 0 CapLine grestore
938: 1 ps
939: 16.00 (_Helvetica) 0 F
940: (0.00) 49.25 33.38 31.12 WS
941: 16.00 (_Helvetica) 0 F
942: gsave 35.38 98.75 translate -90 rotate
943: (K) 0.00 0.00 10.63 WS
944: grestore
945: 11.25 (_Helvetica) 0 F
946: gsave 40.25 88.13 translate -90 rotate
947: (cf) 0.00 0.00 8.88 WS
948: grestore
949: 16.00 (_Helvetica) 0 F
950: gsave 35.38 79.25 translate -90 rotate
951: ( \(%\)) 0.00 0.00 29.50 WS
952: grestore
953: 1.00 ps
954: gsave 1.00 ps 84.00 138.75 245.50 138.75 0 CapLine grestore
955: gsave 1.00 ps 84.00 17.88 245.50 17.88 0 CapLine grestore
956: 1 ps
957: 1.00 ps
958: gsave 1.00 ps 245.50 139.25 245.50 132.00 0 CapLine grestore
959: 1 ps
960: 16.00 (_Helvetica) 0 F
961: (250) 232.25 157.25 26.63 WS
962: 1.00 ps
963: gsave 1.00 ps 213.25 139.25 213.25 132.00 0 CapLine grestore
964: 1 ps
965: 16.00 (_Helvetica) 0 F
966: (200) 200.00 157.25 26.63 WS
967: 1.00 ps
968: gsave 1.00 ps 180.88 139.25 180.88 132.00 0 CapLine grestore
969: 1 ps
970: 16.00 (_Helvetica) 0 F
971: (150) 167.63 157.25 26.63 WS
972: 1.00 ps
973: gsave 1.00 ps 148.62 139.25 148.62 132.00 0 CapLine grestore
974: 1 ps
975: 16.00 (_Helvetica) 0 F
976: (100) 135.38 157.25 26.63 WS
977: 1.00 ps
978: gsave 1.00 ps 116.25 139.25 116.25 132.00 0 CapLine grestore
979: 1 ps
980: 16.00 (_Helvetica) 0 F
981: (50) 107.38 157.25 17.75 WS
982: 1.00 ps
983: gsave 1.00 ps 84.00 139.25 84.00 132.00 0 CapLine grestore
984: 1 ps
985: 16.00 (_Helvetica) 0 F
986: (0) 79.63 157.25 8.88 WS
987: 16.00 (_Helvetica) 0 F
988: (T \(K\)) 147.00 186.50 35.63 WS
989: 1.00 ps
990: newpath 86.63 78.00 M
991: 87.37 78.00 L
992: 88.25 78.00 L
993: 89.00 78.00 L
994: 89.75 78.00 L
995: 90.50 78.00 L
996: 91.25 78.00 L
997: 92.00 78.00 L
998: 92.75 78.00 L
999: 93.50 76.00 L
1000: 94.25 73.12 L
1001: 95.00 70.38 L
1002: 95.75 68.00 L
1003: 96.50 65.62 L
1004: 97.25 63.50 L
1005: 98.13 61.38 L
1006: 98.87 59.50 L
1007: 99.63 57.75 L
1008: 100.38 56.00 L
1009: 101.13 54.38 L
1010: 101.88 52.88 L
1011: 102.62 51.50 L
1012: 103.38 50.13 L
1013: 104.13 48.75 L
1014: 104.87 47.63 L
1015: 105.63 46.38 L
1016: 106.38 45.25 L
1017: 107.25 44.25 L
1018: 108.00 43.25 L
1019: 108.75 42.25 L
1020: 109.50 41.38 L
1021: 110.25 40.50 L
1022: 111.00 39.75 L
1023: 111.75 38.88 L
1024: 112.50 38.25 L
1025: 113.25 37.50 L
1026: 114.00 36.75 L
1027: 114.75 36.13 L
1028: 115.50 35.63 L
1029: 116.37 35.00 L
1030: 117.13 34.50 L
1031: 117.88 33.88 L
1032: 118.62 33.38 L
1033: 119.38 33.00 L
1034: 120.13 32.50 L
1035: 120.88 32.13 L
1036: 121.63 31.75 L
1037: 122.37 31.37 L
1038: 123.13 31.00 L
1039: 123.88 30.63 L
1040: 124.63 30.38 L
1041: 125.38 30.12 L
1042: 126.25 29.87 L
1043: 127.00 29.63 L
1044: 127.75 29.38 L
1045: 128.50 29.13 L
1046: 129.25 29.00 L
1047: 130.00 28.75 L
1048: 130.75 28.62 L
1049: 131.50 28.50 L
1050: 132.25 28.38 L
1051: 133.00 28.25 L
1052: 133.75 28.25 L
1053: 134.50 28.13 L
1054: 135.38 28.00 L
1055: 136.12 28.00 L
1056: 136.88 28.00 L
1057: 137.63 28.00 L
1058: 138.38 28.00 L
1059: 139.13 28.00 L
1060: 139.88 28.00 L
1061: 140.63 28.00 L
1062: 141.38 28.00 L
1063: 142.13 28.00 L
1064: 142.88 28.00 L
1065: 143.63 28.00 L
1066: 144.50 28.00 L
1067: 145.25 28.00 L
1068: 146.00 28.00 L
1069: 146.75 28.00 L
1070: 147.50 28.00 L
1071: 148.25 28.00 L
1072: 149.00 28.00 L
1073: 149.75 28.00 L
1074: 150.50 28.00 L
1075: 151.25 28.00 L
1076: 152.00 28.00 L
1077: 152.75 28.00 L
1078: 153.50 28.00 L
1079: 154.38 28.00 L
1080: 155.13 28.00 L
1081: 155.88 28.00 L
1082: 156.63 28.00 L
1083: 157.38 28.00 L
1084: 158.13 28.00 L
1085: 158.87 28.00 L
1086: 159.63 28.00 L
1087: 160.38 28.00 L
1088: 161.12 28.00 L
1089: 161.88 28.00 L
1090: 162.63 28.00 L
1091: 163.50 28.00 L
1092: 164.25 28.00 L
1093: 165.00 28.00 L
1094: 165.75 28.00 L
1095: 166.50 28.00 L
1096: 167.25 28.00 L
1097: 168.00 28.00 L
1098: 168.75 28.00 L
1099: 169.50 28.00 L
1100: 170.25 28.00 L
1101: 171.00 28.00 L
1102: 171.75 28.00 L
1103: 172.63 28.00 L
1104: 173.38 28.00 L
1105: 174.13 28.00 L
1106: 174.88 28.00 L
1107: 175.62 28.00 L
1108: 176.38 28.00 L
1109: 177.13 28.00 L
1110: 177.88 28.00 L
1111: 178.62 28.00 L
1112: 179.38 28.00 L
1113: 180.13 28.00 L
1114: 180.88 28.00 L
1115: 181.63 28.00 L
1116: 182.50 28.00 L
1117: 183.25 28.00 L
1118: 184.00 28.00 L
1119: 184.75 28.00 L
1120: 185.50 28.00 L
1121: 186.25 28.00 L
1122: 187.00 28.00 L
1123: 187.75 28.00 L
1124: 188.50 28.00 L
1125: 189.25 28.00 L
1126: 190.00 28.00 L
1127: 190.75 28.00 L
1128: 191.63 28.00 L
1129: 192.37 28.00 L
1130: 193.13 28.00 L
1131: 193.88 28.00 L
1132: 194.63 28.00 L
1133: 195.38 28.00 L
1134: 196.12 28.00 L
1135: 196.88 28.00 L
1136: 197.63 28.00 L
1137: 198.38 28.00 L
1138: 199.13 28.00 L
1139: 199.88 28.00 L
1140: 200.75 28.00 L
1141: 201.50 28.00 L
1142: 202.25 28.00 L
1143: 203.00 28.00 L
1144: 203.75 28.00 L
1145: 204.50 28.00 L
1146: 205.25 28.00 L
1147: 206.00 28.00 L
1148: 206.75 28.00 L
1149: 207.50 28.00 L
1150: 208.25 28.00 L
1151: 209.00 28.00 L
1152: 209.75 28.00 L
1153: 210.63 28.00 L
1154: 211.38 28.00 L
1155: 212.13 28.00 L
1156: 212.88 28.00 L
1157: 213.62 28.00 L
1158: 214.38 28.00 L
1159: 215.13 28.00 L
1160: 215.88 28.00 L
1161: 216.63 28.00 L
1162: 217.37 28.00 L
1163: 218.13 28.00 L
1164: 218.88 28.00 L
1165: 219.75 28.00 L
1166: 220.50 28.00 L
1167: 221.25 28.00 L
1168: 222.00 28.00 L
1169: 222.75 28.00 L
1170: 223.50 28.00 L
1171: 224.25 28.00 L
1172: 225.00 28.00 L
1173: 225.75 28.00 L
1174: 226.50 28.00 L
1175: 227.25 28.00 L
1176: 228.00 28.00 L
1177: 228.88 28.00 L
1178: 229.63 28.00 L
1179: 230.38 28.00 L
1180: 231.13 28.00 L
1181: 231.88 28.00 L
1182: 232.63 28.00 L
1183: 233.38 28.00 L
1184: 234.12 28.00 L
1185: 234.88 28.00 L
1186: mstroke
1187: newpath 234.88 28.00 M
1188: 235.63 28.00 L
1189: 236.38 28.00 L
1190: 237.13 28.00 L
1191: 237.88 28.00 L
1192: mstroke
1193: [] sd
1194: 1 ps
1195: 0.50 ps
1196: 94.50 63.38 98.50 67.37 RectPath
1197: 1 FillPath
1198: 0 StrokePath
1199: newpath
1200: 94.50 63.38 98.50 67.37 2 CapLine
1201: 98.50 63.38 94.50 67.37 2 CapLine
1202: 95.75 63.63 99.75 67.62 RectPath
1203: 1 FillPath
1204: 0 StrokePath
1205: newpath
1206: 95.75 63.63 99.75 67.62 2 CapLine
1207: 99.75 63.63 95.75 67.62 2 CapLine
1208: 98.75 60.00 102.75 64.00 RectPath
1209: 1 FillPath
1210: 0 StrokePath
1211: newpath
1212: 98.75 60.00 102.75 64.00 2 CapLine
1213: 102.75 60.00 98.75 64.00 2 CapLine
1214: 103.50 42.13 107.50 46.13 RectPath
1215: 1 FillPath
1216: 0 StrokePath
1217: newpath
1218: 103.50 42.13 107.50 46.13 2 CapLine
1219: 107.50 42.13 103.50 46.13 2 CapLine
1220: 108.00 41.25 112.00 45.25 RectPath
1221: 1 FillPath
1222: 0 StrokePath
1223: newpath
1224: 108.00 41.25 112.00 45.25 2 CapLine
1225: 112.00 41.25 108.00 45.25 2 CapLine
1226: 113.75 29.87 117.75 33.88 RectPath
1227: 1 FillPath
1228: 0 StrokePath
1229: newpath
1230: 113.75 29.87 117.75 33.88 2 CapLine
1231: 117.75 29.87 113.75 33.88 2 CapLine
1232: 118.88 26.75 122.88 30.75 RectPath
1233: 1 FillPath
1234: 0 StrokePath
1235: newpath
1236: 118.88 26.75 122.88 30.75 2 CapLine
1237: 122.88 26.75 118.88 30.75 2 CapLine
1238: 123.13 28.50 127.13 32.50 RectPath
1239: 1 FillPath
1240: 0 StrokePath
1241: newpath
1242: 123.13 28.50 127.13 32.50 2 CapLine
1243: 127.13 28.50 123.13 32.50 2 CapLine
1244: 133.00 25.88 137.00 29.87 RectPath
1245: 1 FillPath
1246: 0 StrokePath
1247: newpath
1248: 133.00 25.88 137.00 29.87 2 CapLine
1249: 137.00 25.88 133.00 29.87 2 CapLine
1250: 155.75 21.00 159.75 25.00 RectPath
1251: 1 FillPath
1252: 0 StrokePath
1253: newpath
1254: 155.75 21.00 159.75 25.00 2 CapLine
1255: 159.75 21.00 155.75 25.00 2 CapLine
1256: 182.13 20.75 186.12 24.75 RectPath
1257: 1 FillPath
1258: 0 StrokePath
1259: newpath
1260: 182.13 20.75 186.12 24.75 2 CapLine
1261: 186.12 20.75 182.13 24.75 2 CapLine
1262: 203.88 30.50 207.88 34.50 RectPath
1263: 1 FillPath
1264: 0 StrokePath
1265: newpath
1266: 203.88 30.50 207.88 34.50 2 CapLine
1267: 207.88 30.50 203.88 34.50 2 CapLine
1268: 221.50 30.88 225.50 34.88 RectPath
1269: 1 FillPath
1270: 0 StrokePath
1271: newpath
1272: 221.50 30.88 225.50 34.88 2 CapLine
1273: 225.50 30.88 221.50 34.88 2 CapLine
1274: 235.88 23.25 239.88 27.25 RectPath
1275: 1 FillPath
1276: 0 StrokePath
1277: newpath
1278: 235.88 23.25 239.88 27.25 2 CapLine
1279: 239.88 23.25 235.88 27.25 2 CapLine
1280: 1 ps
1281: AnObj restore
1282: end
1283: IgorSave restore
1284: %%DocumentFonts: Helvetica
1285: %%+Symbol
1286: