/[lmdze]/trunk/Documentation/Manuel_LMDZE.texfol/Graphiques/compare_sampl_41.eps
ViewVC logotype

Annotation of /trunk/Documentation/Manuel_LMDZE.texfol/Graphiques/compare_sampl_41.eps

Parent Directory Parent Directory | Revision Log Revision Log


Revision 13 - (hide annotations)
Fri Jul 25 19:59:34 2008 UTC (15 years, 10 months ago) by guez
File MIME type: application/postscript
File size: 19640 byte(s)
-- Minor change of behaviour:

"etat0" does not compute "rugsrel" nor "radpas". Deleted arguments
"radpas" and "rugsrel" of "phyredem". Deleted argument "rugsrel" of
"phyetat0". "startphy.nc" does not contain the variable "RUGSREL". In
"physiq", "rugoro" is set to 0 if not "ok_orodr". The whole program
"etat0_lim" does not use "clesphys2".

-- Minor modification of input/output:

Created subroutine "read_clesphys2". Variables of "clesphys2" are read
in "read_clesphys2" instead of "conf_gcm". "printflag" does not print
variables of "clesphys2".

-- Should not change any result at run time:

References to module "numer_rec" instead of individual modules of
"Numer_rec_Lionel".

Deleted argument "clesphy0" of "calfis", "physiq", "conf_gcm",
"leapfrog", "phyetat0". Deleted variable "clesphy0" in
"gcm". "phyetat0" does not modify variables of "clesphys2".

The program unit "gcm" does not modify "itau_phy".

Added some "intent" attributes.

"regr11_lint" does not call "polint".

1 guez 11 %%!PS-Adobe-3.0 EPSF-3.0
2     %%Title: (compare_sampl_41.eps)
3     %%Creator: gnuplot 4.0 patchlevel 0
4     %%CreationDate: Mon Sep 17 15:33:42 2007
5     %%BoundingBox: 72 72 432 288
6     %%EndComments
7     /Gpdict 100 dict def
8     Gpdict begin
9     /Color true def
10     /Dashed true def
11     /Gplinewidth 20.000 def
12     /hpt_ 100.000 def
13     /vpt_ 100.000 def
14     /hpt hpt_ def
15     /vpt vpt_ def
16     /Gppointsize_ 1 def
17     /Gplinewidth_ 1 def
18    
19     /ArrowDict 25 dict def
20    
21     /M /moveto load def
22     /L /lineto load def
23     /R /rmoveto load def
24     /V /rlineto load def
25     /N {newpath moveto} bind def
26     /f {rlineto fill} bind def
27     /ED { exch def} bind def
28    
29     /Atan {/atan load stopped {pop pop 0} if } def
30     /Div {dup 0 eq { pop } { div } ifelse } def
31     /Pyth {dup mul exch dup mul add sqrt} def
32    
33     %Sizes
34     /Gpsetlinewidth
35     {
36     dup
37     % /Gplinewidth_ ED %save
38     Gplinewidth mul setlinewidth
39     } def
40    
41     /Gpsetpointsize
42     {
43     dup
44     /Gppointsize_ ED %save
45     dup
46     vpt_ mul /vpt ED
47     hpt_ mul /hpt ED
48     } def
49    
50     %Color
51     /SetHsbColor { Color {sethsbcolor} {pop pop pop} ifelse } def
52     /SetCmykColor { Color {setcmykcolor} {pop pop pop pop} ifelse } def
53     /SimpleSetColor {6 div 1 1 SetHsbColor} def
54     /Black {0 0 0 0 SetCmykColor} def
55     /Red {0 SimpleSetColor} def
56     /Blue {1 1 0 0 SetCmykColor} def
57     /Cyan {1 0 0 0 SetCmykColor} def
58     /Magenta {0 1 0 0 SetCmykColor} def
59    
60     %Stroking
61     /PathLength@ % z = z + sqrt{(x-xlast)^2 + (y-ylast)^2}
62     {
63     /z
64     z
65     y ylast sub
66     x xlast sub
67     Pyth
68     add
69     def
70     /ylast y def
71     /xlast x def
72     } def
73    
74     /PathLength
75     {
76     flattenpath
77     /z 0 def
78     { %move
79     /ystart ED
80     /xstart ED
81     /xlast xstart def
82     /ylast ystart def
83     }
84     { %line
85     /y ED
86     /x ED
87     PathLength@
88     }
89     { %curve
90     }
91     { %close
92     /x xstart def
93     /y ystart def
94     PathLength@
95     }
96     /pathforall load
97     stopped {pop pop pop pop} if
98     z
99     } def
100    
101     %dotsep DotLine
102     /DotLine
103     {
104     PathLength /b ED
105     /z ED
106     /y currentlinewidth def
107     /z y z add def
108     [ 0 b b z Div round Div dup 0 le { pop 1 } if] 0 setdash
109     1 setlinecap
110     } def
111    
112     /DashLine
113     {
114     PathLength /b ED
115     /x ED
116     /y ED
117     /z y x add def
118     b y sub z Div round z mul y add b exch Div
119     dup
120     y mul /y ED
121     x mul /x ED
122     x 0 gt y 0 gt and
123     { [ y x ] 0 }
124     { [ 1 0 ] 0 }
125     ifelse
126     setdash
127     } def
128    
129     /DashLineTwo
130     {
131     PathLength /b ED
132     /u ED
133     /v ED
134     /x ED
135     /y ED
136     /z y x add u add v add def
137     b y sub z Div round z mul y add b exch Div
138     dup
139     y mul /y ED
140     x mul /x ED
141     x 0 gt y 0 gt and
142     { [ y x v u] 0 }
143     { [ 1 0 ] 0 }
144     ifelse
145     setdash
146     } def
147    
148    
149     /DotLineStroke
150     {
151     gsave
152     Dashed {currentlinewidth 2 mul DotLine} if
153     stroke
154     grestore
155     } def
156    
157     /SolidLineStroke
158     {
159     gsave
160     [] 0 setdash
161     stroke
162     grestore
163     } def
164    
165     /DashLineStroke
166     {
167     gsave
168     Dashed {Gplinewidth 8 mul Gplinewidth 5 mul DashLine} if
169     stroke
170     grestore
171     } def
172    
173     /DashDotLineStroke
174     {
175     gsave
176     Dashed {Gplinewidth 8 mul Gplinewidth 5 mul 0 Gplinewidth 5 mul DashLineTwo} if
177     stroke
178     grestore
179     } def
180    
181     /DashShortLineStroke
182     {
183     gsave
184     Dashed {Gplinewidth 4 mul dup DashLine} if
185     stroke
186     grestore
187     } def
188    
189     /ArrowHead
190     {
191     currentlinewidth mul add dup 2 div /w ED
192     mul dup /h ED
193     mul /a ED
194     w neg h moveto
195     0 0 L
196     w h L
197     w neg a neg rlineto
198     gsave fill grestore
199     } def
200    
201     %/DrawArrowHead {1 dup scale 0.2 1.4 50 3 ArrowHead} def
202     %%%%%
203     %inset length dim num
204     %arrowwidth = dim + num*linewidth
205     %arrowlength = length*arrowwidth
206     %arrowinset = width * inset
207    
208     /DrawArrowHead {0.2 1.4 Gplinewidth 3 mul 4 ArrowHead} def
209    
210     /Arrow
211     {
212     currentpoint
213     4 2 roll
214     ArrowDict
215     begin
216     /@mtrx matrix currentmatrix def
217     gsave
218     2 copy translate
219     2 index sub neg exch
220     3 index sub exch Atan
221     rotate
222     newpath
223     DrawArrowHead
224     @mtrx setmatrix
225     currentpoint
226     grestore
227     end %ArrowDicht
228     lineto
229     Gpstroke
230     } def
231    
232     %axis
233     /LTa
234     {
235     Gpstroke
236     newpath
237     0 setgray
238     /Gpstroke {DotLineStroke newpath} def
239     } def
240    
241     %border
242     /LTb
243     {
244     Gpstroke
245     newpath
246     0 setgray
247     /Gpstroke {SolidLineStroke newpath} def
248     } def
249    
250     /LT0
251     {
252     Gpstroke
253     newpath
254     Red
255     /Gpstroke {SolidLineStroke newpath} def
256     } def
257    
258     /LT1
259     {
260     Gpstroke
261     newpath
262     Blue
263     /Gpstroke {DashLineStroke newpath} def
264     } def
265    
266     /LT2
267     {
268     Gpstroke
269     newpath
270     Cyan
271     /Gpstroke {DashShortLineStroke newpath} def
272     } def
273    
274     /LT3
275     {
276     Gpstroke
277     newpath
278     Magenta
279     /Gpstroke {DashDotLineStroke newpath} def
280     } def
281    
282     /Pnt
283     {
284     gsave
285     [] 0 setdash
286     1 setlinecap
287     Gplinewidth Gppointsize_ mul setlinewidth
288     M
289     0 0 V
290     stroke
291     grestore
292     } def
293    
294     /DiaPath
295     {
296     [] 0 setdash
297     Gplinewidth setlinewidth
298     2 copy
299     newpath
300     vpt add moveto
301     hpt neg vpt neg rlineto
302     hpt vpt neg rlineto
303     hpt vpt rlineto
304     hpt neg vpt rlineto
305     closepath
306     } def
307    
308     /Dia
309     {
310     gsave
311     DiaPath
312     stroke
313     grestore
314     } def
315    
316     /DaF
317     {
318     gsave
319     DiaPath
320     fill
321     grestore
322     } def
323    
324     /Crc
325     {
326     gsave
327     [] 0 setdash
328     Gplinewidth setlinewidth
329     newpath
330     vpt 0.85 mul 0 360 arc
331     closepath
332     stroke
333     grestore
334     } def
335    
336    
337     /Crs
338     {
339     gsave
340     [] 0 setdash
341     Gplinewidth setlinewidth
342     0 setlinecap
343     newpath
344     vpt sub
345     moveto
346     0 vpt 2 mul rlineto
347     hpt vpt neg rmoveto
348     hpt 2 mul neg 0 rlineto
349     stroke
350     grestore
351     } def
352    
353     /CrX
354     {
355     gsave
356     translate
357     45 rotate
358     0 0 Crs
359     grestore
360     } def
361    
362     /CcF
363     {
364     gsave
365     [] 0 setdash
366     Gplinewidth setlinewidth
367     newpath
368     vpt 0.85 mul 0 360 arc
369     closepath
370     fill
371     grestore
372     } def
373    
374     /Box
375     {
376     gsave
377     translate
378     45 rotate
379     0 0 DiaPath
380     stroke
381     grestore
382     } def
383    
384     /BxF
385     {
386     gsave
387     translate
388     45 rotate
389     0 0 DiaPath
390     fill
391     grestore
392     } def
393    
394     /Gpstroke {stroke} def
395     1 setlinecap
396     1 setlinejoin
397     %
398     % PostScript level 2 pattern fill definitions
399     % Ethan A Merritt April 2003
400     %
401     % Level-1 compatible emulation for rectfill
402     /RF { gsave newpath 4 -2 roll moveto dup 0 exch rlineto
403     exch 0 rlineto neg 0 exch rlineto closepath fill grestore
404     } bind def
405     /BoxFill { gsave RF fill grestore } def
406     /Blank { 0 0 M 0 8 L 8 8 L 8 0 L 0 0 L
407     1.0 setgray fill 0.0 setgray 0.5 setlinewidth } bind def
408     /Tile8x8 { /PaintType 1 def /PatternType 1 def /TilingType 1 def
409     /BBox [0 0 8 8] def /XStep 8 def /YStep 8 def
410     } bind def
411     /P1D 12 dict def P1D begin
412     Tile8x8 /PaintProc { Blank 0 0 M 8 8 L 0 8 M 8 0 L stroke } def
413     end P1D matrix makepattern
414     /Pattern1 exch def
415     /P2D 12 dict def P2D begin
416     Tile8x8 /PaintProc { Blank 0 0 M 8 8 L 0 8 M 8 0 L stroke
417     0 4 M 4 8 L 8 4 L 4 0 L 0 4 L stroke } def
418     end P2D matrix makepattern
419     /Pattern2 exch def
420     /P3D 12 dict def P3D begin
421     Tile8x8 /PaintProc { Blank 0 0 M 0 8 L
422     8 8 L 8 0 L 0 0 L fill } def
423     end P3D matrix makepattern
424     /Pattern3 exch def
425     /P4D 12 dict def P4D begin
426     Tile8x8 /PaintProc { Blank -4 8 M 8 -4 L
427     0 12 M 12 0 L stroke } def
428     end P4D matrix makepattern
429     /Pattern4 exch def
430     /P5D 12 dict def P5D begin
431     Tile8x8 /PaintProc { Blank -4 0 M 8 12 L
432     0 -4 M 12 8 L stroke } def
433     end P5D matrix makepattern
434     /Pattern5 exch def
435     /P6D 12 dict def P6D begin
436     Tile8x8 /PaintProc { Blank -2 8 M 4 -4 L
437     0 12 M 8 -4 L 4 12 M 10 0 L stroke } def
438     end P6D matrix makepattern
439     /Pattern6 exch def
440     /P7D 12 dict def P7D begin
441     Tile8x8 /PaintProc { Blank -2 0 M 4 12 L
442     0 -4 M 8 12 L 4 -4 M 10 8 L stroke } def
443     end P7D matrix makepattern
444     /Pattern7 exch def
445     /P8D 12 dict def P8D begin
446     Tile8x8 /PaintProc { Blank 8 -2 M -4 4 L
447     12 0 M -4 8 L 12 4 M 0 10 L stroke } def
448     end P8D matrix makepattern
449     /Pattern8 exch def
450     /P9D 12 dict def P9D begin
451     Tile8x8 /PaintProc { Blank 0 -2 M 12 4 L
452     -4 0 M 12 8 L -4 4 M 8 10 L stroke } def
453     end P9D matrix makepattern
454     /Pattern9 exch def
455    
456     end
457     %%%%EndProlog
458     Gpdict begin
459     gsave
460     72 72 translate
461     0.0200 0.0200 scale
462     0 setgray
463     newpath
464     1.000 Gpsetpointsize
465     1.000 Gpsetlinewidth
466     1.000 Gpsetlinewidth
467     LTb
468     1.000 Gpsetlinewidth
469     LTa
470     3300 10250 M
471     13875 0 V
472     Gpstroke
473     1.000 Gpsetlinewidth
474     LTb
475     3300 10250 M
476     300 0 V
477     Gpstroke
478     17175 10250 M
479     -300 0 V
480     Gpstroke
481     1.000 Gpsetlinewidth
482     LTb
483     3300 10250 M
484     150 0 V
485     Gpstroke
486     17175 10250 M
487     -150 0 V
488     Gpstroke
489     1.000 Gpsetlinewidth
490     LTa
491     3300 8817 M
492     275 0 V
493     Gpstroke
494     7450 8817 M
495     9725 0 V
496     Gpstroke
497     1.000 Gpsetlinewidth
498     LTb
499     3300 8817 M
500     300 0 V
501     Gpstroke
502     17175 8817 M
503     -300 0 V
504     Gpstroke
505     1.000 Gpsetlinewidth
506     LTb
507     3300 10250 M
508     150 0 V
509     Gpstroke
510     17175 10250 M
511     -150 0 V
512     Gpstroke
513     3300 9819 M
514     150 0 V
515     Gpstroke
516     17175 9819 M
517     -150 0 V
518     Gpstroke
519     3300 9566 M
520     150 0 V
521     Gpstroke
522     17175 9566 M
523     -150 0 V
524     Gpstroke
525     3300 9387 M
526     150 0 V
527     Gpstroke
528     17175 9387 M
529     -150 0 V
530     Gpstroke
531     3300 9248 M
532     150 0 V
533     Gpstroke
534     17175 9248 M
535     -150 0 V
536     Gpstroke
537     3300 9135 M
538     150 0 V
539     Gpstroke
540     17175 9135 M
541     -150 0 V
542     Gpstroke
543     3300 9039 M
544     150 0 V
545     Gpstroke
546     17175 9039 M
547     -150 0 V
548     Gpstroke
549     3300 8956 M
550     150 0 V
551     Gpstroke
552     17175 8956 M
553     -150 0 V
554     Gpstroke
555     3300 8882 M
556     150 0 V
557     Gpstroke
558     17175 8882 M
559     -150 0 V
560     Gpstroke
561     3300 8817 M
562     150 0 V
563     Gpstroke
564     17175 8817 M
565     -150 0 V
566     Gpstroke
567     1.000 Gpsetlinewidth
568     LTa
569     3300 7383 M
570     13875 0 V
571     Gpstroke
572     1.000 Gpsetlinewidth
573     LTb
574     3300 7383 M
575     300 0 V
576     Gpstroke
577     17175 7383 M
578     -300 0 V
579     Gpstroke
580     1.000 Gpsetlinewidth
581     LTb
582     3300 8817 M
583     150 0 V
584     Gpstroke
585     17175 8817 M
586     -150 0 V
587     Gpstroke
588     3300 8385 M
589     150 0 V
590     Gpstroke
591     17175 8385 M
592     -150 0 V
593     Gpstroke
594     3300 8133 M
595     150 0 V
596     Gpstroke
597     17175 8133 M
598     -150 0 V
599     Gpstroke
600     3300 7954 M
601     150 0 V
602     Gpstroke
603     17175 7954 M
604     -150 0 V
605     Gpstroke
606     3300 7815 M
607     150 0 V
608     Gpstroke
609     17175 7815 M
610     -150 0 V
611     Gpstroke
612     3300 7701 M
613     150 0 V
614     Gpstroke
615     17175 7701 M
616     -150 0 V
617     Gpstroke
618     3300 7605 M
619     150 0 V
620     Gpstroke
621     17175 7605 M
622     -150 0 V
623     Gpstroke
624     3300 7522 M
625     150 0 V
626     Gpstroke
627     17175 7522 M
628     -150 0 V
629     Gpstroke
630     3300 7449 M
631     150 0 V
632     Gpstroke
633     17175 7449 M
634     -150 0 V
635     Gpstroke
636     3300 7383 M
637     150 0 V
638     Gpstroke
639     17175 7383 M
640     -150 0 V
641     Gpstroke
642     1.000 Gpsetlinewidth
643     LTa
644     3300 5950 M
645     13875 0 V
646     Gpstroke
647     1.000 Gpsetlinewidth
648     LTb
649     3300 5950 M
650     300 0 V
651     Gpstroke
652     17175 5950 M
653     -300 0 V
654     Gpstroke
655     1.000 Gpsetlinewidth
656     LTb
657     3300 7383 M
658     150 0 V
659     Gpstroke
660     17175 7383 M
661     -150 0 V
662     Gpstroke
663     3300 6952 M
664     150 0 V
665     Gpstroke
666     17175 6952 M
667     -150 0 V
668     Gpstroke
669     3300 6699 M
670     150 0 V
671     Gpstroke
672     17175 6699 M
673     -150 0 V
674     Gpstroke
675     3300 6520 M
676     150 0 V
677     Gpstroke
678     17175 6520 M
679     -150 0 V
680     Gpstroke
681     3300 6381 M
682     150 0 V
683     Gpstroke
684     17175 6381 M
685     -150 0 V
686     Gpstroke
687     3300 6268 M
688     150 0 V
689     Gpstroke
690     17175 6268 M
691     -150 0 V
692     Gpstroke
693     3300 6172 M
694     150 0 V
695     Gpstroke
696     17175 6172 M
697     -150 0 V
698     Gpstroke
699     3300 6089 M
700     150 0 V
701     Gpstroke
702     17175 6089 M
703     -150 0 V
704     Gpstroke
705     3300 6016 M
706     150 0 V
707     Gpstroke
708     17175 6016 M
709     -150 0 V
710     Gpstroke
711     3300 5950 M
712     150 0 V
713     Gpstroke
714     17175 5950 M
715     -150 0 V
716     Gpstroke
717     1.000 Gpsetlinewidth
718     LTa
719     3300 4517 M
720     13875 0 V
721     Gpstroke
722     1.000 Gpsetlinewidth
723     LTb
724     3300 4517 M
725     300 0 V
726     Gpstroke
727     17175 4517 M
728     -300 0 V
729     Gpstroke
730     1.000 Gpsetlinewidth
731     LTb
732     3300 5950 M
733     150 0 V
734     Gpstroke
735     17175 5950 M
736     -150 0 V
737     Gpstroke
738     3300 5519 M
739     150 0 V
740     Gpstroke
741     17175 5519 M
742     -150 0 V
743     Gpstroke
744     3300 5266 M
745     150 0 V
746     Gpstroke
747     17175 5266 M
748     -150 0 V
749     Gpstroke
750     3300 5087 M
751     150 0 V
752     Gpstroke
753     17175 5087 M
754     -150 0 V
755     Gpstroke
756     3300 4948 M
757     150 0 V
758     Gpstroke
759     17175 4948 M
760     -150 0 V
761     Gpstroke
762     3300 4835 M
763     150 0 V
764     Gpstroke
765     17175 4835 M
766     -150 0 V
767     Gpstroke
768     3300 4739 M
769     150 0 V
770     Gpstroke
771     17175 4739 M
772     -150 0 V
773     Gpstroke
774     3300 4656 M
775     150 0 V
776     Gpstroke
777     17175 4656 M
778     -150 0 V
779     Gpstroke
780     3300 4582 M
781     150 0 V
782     Gpstroke
783     17175 4582 M
784     -150 0 V
785     Gpstroke
786     3300 4517 M
787     150 0 V
788     Gpstroke
789     17175 4517 M
790     -150 0 V
791     Gpstroke
792     1.000 Gpsetlinewidth
793     LTa
794     3300 3083 M
795     13875 0 V
796     Gpstroke
797     1.000 Gpsetlinewidth
798     LTb
799     3300 3083 M
800     300 0 V
801     Gpstroke
802     17175 3083 M
803     -300 0 V
804     Gpstroke
805     1.000 Gpsetlinewidth
806     LTb
807     3300 4517 M
808     150 0 V
809     Gpstroke
810     17175 4517 M
811     -150 0 V
812     Gpstroke
813     3300 4085 M
814     150 0 V
815     Gpstroke
816     17175 4085 M
817     -150 0 V
818     Gpstroke
819     3300 3833 M
820     150 0 V
821     Gpstroke
822     17175 3833 M
823     -150 0 V
824     Gpstroke
825     3300 3654 M
826     150 0 V
827     Gpstroke
828     17175 3654 M
829     -150 0 V
830     Gpstroke
831     3300 3515 M
832     150 0 V
833     Gpstroke
834     17175 3515 M
835     -150 0 V
836     Gpstroke
837     3300 3401 M
838     150 0 V
839     Gpstroke
840     17175 3401 M
841     -150 0 V
842     Gpstroke
843     3300 3305 M
844     150 0 V
845     Gpstroke
846     17175 3305 M
847     -150 0 V
848     Gpstroke
849     3300 3222 M
850     150 0 V
851     Gpstroke
852     17175 3222 M
853     -150 0 V
854     Gpstroke
855     3300 3149 M
856     150 0 V
857     Gpstroke
858     17175 3149 M
859     -150 0 V
860     Gpstroke
861     3300 3083 M
862     150 0 V
863     Gpstroke
864     17175 3083 M
865     -150 0 V
866     Gpstroke
867     1.000 Gpsetlinewidth
868     LTa
869     3300 1650 M
870     13875 0 V
871     Gpstroke
872     1.000 Gpsetlinewidth
873     LTb
874     3300 1650 M
875     300 0 V
876     Gpstroke
877     17175 1650 M
878     -300 0 V
879     Gpstroke
880     1.000 Gpsetlinewidth
881     LTb
882     3300 3083 M
883     150 0 V
884     Gpstroke
885     17175 3083 M
886     -150 0 V
887     Gpstroke
888     3300 2652 M
889     150 0 V
890     Gpstroke
891     17175 2652 M
892     -150 0 V
893     Gpstroke
894     3300 2399 M
895     150 0 V
896     Gpstroke
897     17175 2399 M
898     -150 0 V
899     Gpstroke
900     3300 2220 M
901     150 0 V
902     Gpstroke
903     17175 2220 M
904     -150 0 V
905     Gpstroke
906     3300 2081 M
907     150 0 V
908     Gpstroke
909     17175 2081 M
910     -150 0 V
911     Gpstroke
912     3300 1968 M
913     150 0 V
914     Gpstroke
915     17175 1968 M
916     -150 0 V
917     Gpstroke
918     3300 1872 M
919     150 0 V
920     Gpstroke
921     17175 1872 M
922     -150 0 V
923     Gpstroke
924     3300 1789 M
925     150 0 V
926     Gpstroke
927     17175 1789 M
928     -150 0 V
929     Gpstroke
930     3300 1716 M
931     150 0 V
932     Gpstroke
933     17175 1716 M
934     -150 0 V
935     Gpstroke
936     3300 1650 M
937     150 0 V
938     Gpstroke
939     17175 1650 M
940     -150 0 V
941     Gpstroke
942     3300 1650 M
943     0 300 V
944     Gpstroke
945     3300 10250 M
946     0 -300 V
947     Gpstroke
948     1.000 Gpsetlinewidth
949     LTb
950     4842 1650 M
951     0 300 V
952     Gpstroke
953     4842 10250 M
954     0 -300 V
955     Gpstroke
956     1.000 Gpsetlinewidth
957     LTb
958     6383 1650 M
959     0 300 V
960     Gpstroke
961     6383 10250 M
962     0 -300 V
963     Gpstroke
964     1.000 Gpsetlinewidth
965     LTb
966     7925 1650 M
967     0 300 V
968     Gpstroke
969     7925 10250 M
970     0 -300 V
971     Gpstroke
972     1.000 Gpsetlinewidth
973     LTb
974     9467 1650 M
975     0 300 V
976     Gpstroke
977     9467 10250 M
978     0 -300 V
979     Gpstroke
980     1.000 Gpsetlinewidth
981     LTb
982     11008 1650 M
983     0 300 V
984     Gpstroke
985     11008 10250 M
986     0 -300 V
987     Gpstroke
988     1.000 Gpsetlinewidth
989     LTb
990     12550 1650 M
991     0 300 V
992     Gpstroke
993     12550 10250 M
994     0 -300 V
995     Gpstroke
996     1.000 Gpsetlinewidth
997     LTb
998     14092 1650 M
999     0 300 V
1000     Gpstroke
1001     14092 10250 M
1002     0 -300 V
1003     Gpstroke
1004     1.000 Gpsetlinewidth
1005     LTb
1006     15633 1650 M
1007     0 300 V
1008     Gpstroke
1009     15633 10250 M
1010     0 -300 V
1011     Gpstroke
1012     1.000 Gpsetlinewidth
1013     LTb
1014     17175 1650 M
1015     0 300 V
1016     Gpstroke
1017     17175 10250 M
1018     0 -300 V
1019     Gpstroke
1020     1.000 Gpsetlinewidth
1021     LTb
1022     1.000 Gpsetlinewidth
1023     LTb
1024     3300 1650 M
1025     13875 0 V
1026     0 8600 V
1027     -13875 0 V
1028     0 -8600 V
1029     Gpstroke
1030     LTb
1031     LTb
1032     1.000 Gpsetpointsize
1033     1.000 Gpsetpointsize
1034     1.000 Gpsetlinewidth
1035     LT0
1036     LTb
1037     LT0
1038     5775 9675 M
1039     1400 0 V
1040     Gpstroke
1041     3608 3075 M
1042     309 5 V
1043     308 6 V
1044     308 6 V
1045     309 8 V
1046     308 9 V
1047     308 12 V
1048     309 14 V
1049     308 17 V
1050     308 21 V
1051     309 25 V
1052     308 30 V
1053     308 36 V
1054     309 41 V
1055     308 49 V
1056     308 56 V
1057     309 64 V
1058     308 72 V
1059     308 81 V
1060     309 86 V
1061     308 89 V
1062     308 89 V
1063     309 85 V
1064     308 78 V
1065     308 74 V
1066     309 74 V
1067     308 77 V
1068     308 83 V
1069     309 90 V
1070     308 97 V
1071     308 105 V
1072     309 113 V
1073     308 123 V
1074     308 133 V
1075     309 146 V
1076     308 159 V
1077     308 177 V
1078     309 201 V
1079     308 238 V
1080     308 304 V
1081     309 474 V
1082     Gpstroke
1083     3608 3075 Dia
1084     3917 3080 Dia
1085     4225 3086 Dia
1086     4533 3092 Dia
1087     4842 3100 Dia
1088     5150 3109 Dia
1089     5458 3121 Dia
1090     5767 3135 Dia
1091     6075 3152 Dia
1092     6383 3173 Dia
1093     6692 3198 Dia
1094     7000 3228 Dia
1095     7308 3264 Dia
1096     7617 3305 Dia
1097     7925 3354 Dia
1098     8233 3410 Dia
1099     8542 3474 Dia
1100     8850 3546 Dia
1101     9158 3627 Dia
1102     9467 3713 Dia
1103     9775 3802 Dia
1104     10083 3891 Dia
1105     10392 3976 Dia
1106     10700 4054 Dia
1107     11008 4128 Dia
1108     11317 4202 Dia
1109     11625 4279 Dia
1110     11933 4362 Dia
1111     12242 4452 Dia
1112     12550 4549 Dia
1113     12858 4654 Dia
1114     13167 4767 Dia
1115     13475 4890 Dia
1116     13783 5023 Dia
1117     14092 5169 Dia
1118     14400 5328 Dia
1119     14708 5505 Dia
1120     15017 5706 Dia
1121     15325 5944 Dia
1122     15633 6248 Dia
1123     15942 6722 Dia
1124     6475 9675 Dia
1125     1.000 Gpsetpointsize
1126     1.000 Gpsetlinewidth
1127     LT1
1128     LTb
1129     LT1
1130     5775 9125 M
1131     1400 0 V
1132     Gpstroke
1133     3608 3075 M
1134     309 6 V
1135     308 16 V
1136     308 28 V
1137     309 40 V
1138     308 54 V
1139     308 70 V
1140     309 85 V
1141     308 103 V
1142     308 118 V
1143     309 128 V
1144     308 128 V
1145     308 117 V
1146     309 101 V
1147     308 92 V
1148     308 90 V
1149     309 93 V
1150     308 97 V
1151     308 100 V
1152     309 105 V
1153     308 107 V
1154     308 111 V
1155     309 114 V
1156     308 116 V
1157     308 120 V
1158     309 122 V
1159     308 125 V
1160     308 128 V
1161     309 131 V
1162     308 134 V
1163     308 137 V
1164     309 142 V
1165     308 146 V
1166     308 152 V
1167     309 159 V
1168     308 168 V
1169     308 179 V
1170     309 193 V
1171     308 211 V
1172     308 234 V
1173     309 264 V
1174     Gpstroke
1175     3608 3075 Crc
1176     3917 3081 Crc
1177     4225 3097 Crc
1178     4533 3125 Crc
1179     4842 3165 Crc
1180     5150 3219 Crc
1181     5458 3289 Crc
1182     5767 3374 Crc
1183     6075 3477 Crc
1184     6383 3595 Crc
1185     6692 3723 Crc
1186     7000 3851 Crc
1187     7308 3968 Crc
1188     7617 4069 Crc
1189     7925 4161 Crc
1190     8233 4251 Crc
1191     8542 4344 Crc
1192     8850 4441 Crc
1193     9158 4541 Crc
1194     9467 4646 Crc
1195     9775 4753 Crc
1196     10083 4864 Crc
1197     10392 4978 Crc
1198     10700 5094 Crc
1199     11008 5214 Crc
1200     11317 5336 Crc
1201     11625 5461 Crc
1202     11933 5589 Crc
1203     12242 5720 Crc
1204     12550 5854 Crc
1205     12858 5991 Crc
1206     13167 6133 Crc
1207     13475 6279 Crc
1208     13783 6431 Crc
1209     14092 6590 Crc
1210     14400 6758 Crc
1211     14708 6937 Crc
1212     15017 7130 Crc
1213     15325 7341 Crc
1214     15633 7575 Crc
1215     15942 7839 Crc
1216     6475 9125 Crc
1217     1.000 Gpsetpointsize
1218     1.000 Gpsetlinewidth
1219     LT2
1220     LTb
1221     LT2
1222     5775 8575 M
1223     1400 0 V
1224     Gpstroke
1225     3608 3075 M
1226     309 12 V
1227     308 13 V
1228     308 16 V
1229     309 19 V
1230     308 26 V
1231     308 34 V
1232     309 47 V
1233     308 65 V
1234     308 91 V
1235     309 124 V
1236     308 158 V
1237     308 178 V
1238     309 167 V
1239     308 144 V
1240     308 144 V
1241     309 154 V
1242     308 163 V
1243     308 169 V
1244     309 175 V
1245     308 177 V
1246     308 181 V
1247     309 182 V
1248     308 184 V
1249     308 185 V
1250     309 187 V
1251     308 188 V
1252     308 189 V
1253     309 191 V
1254     308 194 V
1255     308 196 V
1256     309 200 V
1257     308 203 V
1258     308 210 V
1259     309 217 V
1260     308 228 V
1261     308 243 V
1262     309 265 V
1263     308 302 V
1264     308 372 V
1265     309 547 V
1266     Gpstroke
1267     3608 3075 Crs
1268     3917 3087 Crs
1269     4225 3100 Crs
1270     4533 3116 Crs
1271     4842 3135 Crs
1272     5150 3161 Crs
1273     5458 3195 Crs
1274     5767 3242 Crs
1275     6075 3307 Crs
1276     6383 3398 Crs
1277     6692 3522 Crs
1278     7000 3680 Crs
1279     7308 3858 Crs
1280     7617 4025 Crs
1281     7925 4169 Crs
1282     8233 4313 Crs
1283     8542 4467 Crs
1284     8850 4630 Crs
1285     9158 4799 Crs
1286     9467 4974 Crs
1287     9775 5151 Crs
1288     10083 5332 Crs
1289     10392 5514 Crs
1290     10700 5698 Crs
1291     11008 5883 Crs
1292     11317 6070 Crs
1293     11625 6258 Crs
1294     11933 6447 Crs
1295     12242 6638 Crs
1296     12550 6832 Crs
1297     12858 7028 Crs
1298     13167 7228 Crs
1299     13475 7431 Crs
1300     13783 7641 Crs
1301     14092 7858 Crs
1302     14400 8086 Crs
1303     14708 8329 Crs
1304     15017 8594 Crs
1305     15325 8896 Crs
1306     15633 9268 Crs
1307     15942 9815 Crs
1308     6475 8575 Crs
1309     1.000 Gpsetpointsize
1310     1.000 Gpsetlinewidth
1311     LT3
1312     LTb
1313     LT3
1314     5775 8025 M
1315     1400 0 V
1316     Gpstroke
1317     3608 3075 M
1318     309 14 V
1319     308 15 V
1320     308 17 V
1321     309 20 V
1322     308 26 V
1323     308 30 V
1324     309 38 V
1325     308 46 V
1326     308 56 V
1327     309 67 V
1328     308 78 V
1329     308 91 V
1330     309 101 V
1331     308 107 V
1332     308 106 V
1333     309 100 V
1334     308 91 V
1335     308 86 V
1336     309 87 V
1337     308 92 V
1338     308 99 V
1339     309 107 V
1340     308 114 V
1341     308 121 V
1342     309 130 V
1343     308 137 V
1344     308 147 V
1345     309 154 V
1346     308 164 V
1347     308 174 V
1348     309 184 V
1349     308 194 V
1350     308 205 V
1351     309 218 V
1352     308 231 V
1353     308 247 V
1354     309 269 V
1355     308 302 V
1356     308 365 V
1357     309 530 V
1358     Gpstroke
1359     3608 3075 CrX
1360     3917 3089 CrX
1361     4225 3104 CrX
1362     4533 3121 CrX
1363     4842 3141 CrX
1364     5150 3167 CrX
1365     5458 3197 CrX
1366     5767 3235 CrX
1367     6075 3281 CrX
1368     6383 3337 CrX
1369     6692 3404 CrX
1370     7000 3482 CrX
1371     7308 3573 CrX
1372     7617 3674 CrX
1373     7925 3781 CrX
1374     8233 3887 CrX
1375     8542 3987 CrX
1376     8850 4078 CrX
1377     9158 4164 CrX
1378     9467 4251 CrX
1379     9775 4343 CrX
1380     10083 4442 CrX
1381     10392 4549 CrX
1382     10700 4663 CrX
1383     11008 4784 CrX
1384     11317 4914 CrX
1385     11625 5051 CrX
1386     11933 5198 CrX
1387     12242 5352 CrX
1388     12550 5516 CrX
1389     12858 5690 CrX
1390     13167 5874 CrX
1391     13475 6068 CrX
1392     13783 6273 CrX
1393     14092 6491 CrX
1394     14400 6722 CrX
1395     14708 6969 CrX
1396     15017 7238 CrX
1397     15325 7540 CrX
1398     15633 7905 CrX
1399     15942 8435 CrX
1400     6475 8025 CrX
1401     1.000 Gpsetlinewidth
1402     LTb
1403     3300 1650 M
1404     13875 0 V
1405     0 8600 V
1406     -13875 0 V
1407     0 -8600 V
1408     1.000 Gpsetpointsize
1409     Gpstroke
1410     grestore
1411     end
1412     showpage
1413     %%%%EOF

  ViewVC Help
Powered by ViewVC 1.1.21