(*********************************************************************** Mathematica-Compatible Notebook This notebook can be used on any computer system with Mathematica 3.0, MathReader 3.0, or any compatible application. The data for the notebook starts with the line of stars above. To get the notebook into a Mathematica-compatible application, do one of the following: * Save the data starting with the line of stars above into a file with a name ending in .nb, then open the file inside the application; * Copy the data starting with the line of stars above to the clipboard, then use the Paste menu command inside the application. Data for notebooks contains only printable 7-bit ASCII and can be sent directly in email or through ftp in text mode. Newlines can be CR, LF or CRLF (Unix, Macintosh or MS-DOS style). NOTE: If you modify the data for this notebook not in a Mathematica- compatible application, you must delete the line below containing the word CacheID, otherwise Mathematica-compatible applications may try to use invalid cache data. For more information on notebooks and Mathematica-compatible applications, contact Wolfram Research: web: http://www.wolfram.com email: info@wolfram.com phone: +1-217-398-0700 (U.S.) Notebook reader applications are available free of charge from Wolfram Research. ***********************************************************************) (*CacheID: 232*) (*NotebookFileLineBreakTest NotebookFileLineBreakTest*) (*NotebookOptionsPosition[ 8524869, 233079]*) (*NotebookOutlinePosition[ 8526316, 233122]*) (* CellTagsIndexPosition[ 8526272, 233118]*) (*WindowFrame->Normal*) Notebook[{ Cell[BoxData[ StyleBox[\( (*\ \[Copyright]\ Orly\ Alter\ 2000\ *) \), FontColor->RGBColor[1, 0, 0]]], "Input", PageBreakAbove->True, PageBreakBelow->False, Background->RGBColor[1, 1, 0]], Cell[BoxData[ StyleBox[\( (*\ All\ Rights\ Reserved\ *) \), FontColor->RGBColor[1, 0, 0]]], "Input", PageBreakAbove->False, PageBreakBelow->False, Background->RGBColor[1, 1, 0]], Cell[BoxData[ \(\n\)], "Input", PageBreakAbove->False, PageBreakBelow->False], Cell[BoxData[ StyleBox[\( (*\ SVD\ Analysis\ of\ Elutriation\ *) \), FontColor->RGBColor[1, 0, 0]]], "Input", PageBreakAbove->False, PageBreakBelow->False, Background->RGBColor[1, 1, 0]], Cell[BoxData[ StyleBox[\( (*\ Normalize\ Selected\ Data\ *) \), FontColor->RGBColor[1, 0, 0]]], "Input", PageBreakAbove->False, PageBreakBelow->False, Background->RGBColor[1, 1, 0]], Cell[BoxData[ StyleBox[\( (*\ Read\ Selected\ Data\ from\ Select_Data . txt\ *) \), FontColor->RGBColor[0, 0, 1]]], "Input", PageBreakAbove->False, PageBreakBelow->False], Cell[BoxData[ \(<< LinearAlgebra`MatrixManipulation`; \n<< NumericalMath`TrigFit`; \n<< Graphics`Graphics`; \n<< Graphics`Arrow`; \n Off[General::"\"]; \)], "Input", PageBreakAbove->False, PageBreakBelow->False], Cell[BoxData[ StyleBox[\( (*\ Define\ HardDrive\ *) \), FontColor->RGBColor[1, 0, 0]]], "Input", PageBreakAbove->False, PageBreakBelow->False], Cell[BoxData[ \(\(name = "\"; \)\)], "Input", PageBreakAbove->False, PageBreakBelow->False], Cell[BoxData[ StyleBox[\( (*\ Elutriation\ *) \), FontColor->RGBColor[1, 0, 0]]], "Input", PageBreakAbove->False, PageBreakBelow->False], Cell[CellGroupData[{ Cell[BoxData[{ \(stream = StringJoin[name, "\<:Desktop Folder:PNAS Data:Select_Elutriation.txt\>"]; \n matrix = ReadList[stream, Word, RecordLists -> True, NullWords -> True]; \n{genes, arrays} = Dimensions[matrix] - {2, 1}\), \(\(Clear[stream]; \)\)}], "Input", PageBreakAbove->False, PageBreakBelow->False], Cell[BoxData[ \({5981, 14}\)], "Output", PageBreakAbove->False] }, Open ]], Cell[BoxData[ \(genenames = TakeRows[\n\t\tTakeColumns[matrix, {1, 1}], \n\t\t{3, genes + 2}]; \n arraynames = TakeColumns[\n\t\tTakeRows[matrix, {1, 2}], \n\t\t{2, arrays + 1}]; \n matrix = TakeColumns[\n\t\tTakeRows[matrix, {3, genes + 2}], \n \t\t\t\t{2, arrays + 1}]; \nmatrix = ToExpression[matrix]; \)], "Input", PageBreakAbove->False, PageBreakBelow->False], Cell[BoxData[ \(sizes = Flatten[\n\t\t Table[\n\t\t\t Dimensions[\n\t\t\t\t Characters[\n\t\t\t\t\tToString[arraynames[\([2, a]\)]]\n\t\t\t\t] \n\t\t\t], {a, 1, arrays}]]; \n size = \(Sort[sizes, OrderedQ[{#2, #1}]&]\)[\([1]\)]; \n Do[\n\tDo[ arraynames[\([2, a]\)] = StringJoin[ToString[arraynames[\([2, a]\)]], "\< \>"], \n \t\ \ \ \ \ \ \ {b, 1, size - sizes[\([a]\)]}], \n \ \ \ \ \t{a, 1, arrays}]; \)], "Input", PageBreakAbove->False, PageBreakBelow->False], Cell[BoxData[ StyleBox[\( (*\ Examine\ Raw\ Data\ *) \), FontColor->RGBColor[1, 0, 0]]], "Input", PageBreakAbove->True, PageBreakBelow->False, Background->RGBColor[1, 1, 0]], Cell[BoxData[ StyleBox[\( (*\ Calculate\ Singular\ Value\ Decomposition\ *) \), FontColor->RGBColor[0, 0, 1]]], "Input", PageBreakAbove->False, PageBreakBelow->False], Cell[CellGroupData[{ Cell[BoxData[ \(correlation = Dot[Transpose[matrix], matrix]/\((arrays - 1)\); \n{eigenexpressions, eigengenes} = Eigensystem[correlation]; \n eigenexpressions = Sqrt[\((arrays - 1)\)*eigenexpressions]; \n Clear[correlation]; \n Do[eigengenes[\([a]\)] = \(-eigengenes[\([a]\)]\), \n\t{a, 1, arrays}]; \n eigenarrays = Dot[eigengenes, Transpose[matrix]]; \n Do[\n\teigenarrays[\([a]\)] = eigenarrays[\([a]\)]/eigenexpressions[\([a]\)], \n\t{a, 1, arrays}]; \neigenarrays = Transpose[eigenarrays]; \n arraycorrelations = Dot[DiagonalMatrix[eigenexpressions], eigengenes]; \n genecorrelations = Dot[eigenarrays, DiagonalMatrix[eigenexpressions]]; \n genecorrelations = Transpose[genecorrelations]; \n fractions = eigenexpressions^2/Sum[eigenexpressions[\([a]\)]^2, {a, 1, arrays}]; \n entropy = \(-N[Sum[fractions[\([a]\)]*Log[fractions[\([a]\)]], {a, 1, arrays}]/ Log[arrays]]\); \nentropy = N[Round[100*entropy]/100]\)], "Input",\ PageBreakAbove->False, PageBreakBelow->False], Cell[BoxData[ \(0.140000000000000017`\)], "Output", PageBreakAbove->False] }, Open ]], Cell[BoxData[ \( (*\ Create\ Fractions\ Bar\ Charts\ Displays\ *) \)], "Input", PageBreakAbove->False, PageBreakBelow->False, FontColor->RGBColor[0, 0, 1]], Cell[CellGroupData[{ Cell[BoxData[ \(fractions[\([2]\)]\)], "Input", PageBreakAbove->False, PageBreakBelow->False], Cell[BoxData[ \(0.0311581679229624919`\)], "Output", PageBreakAbove->False] }, Open ]], Cell[BoxData[ \(\(limit = 0.04; \)\)], "Input", PageBreakAbove->False, PageBreakBelow->False], Cell[BoxData[ \(Clear[gridx, framex, framey, sizes]; \n gridx = Table[a, {a, 0, limit, N[limit/4]}]; \nframex = gridx; \n sizes = Flatten[\n\t\t Table[\n\t\t\t Dimensions[\n\t\t\t\t Characters[\n\t\t\t\t\tToString[framex[\([a]\)]]\n\t\t\t\t]\n \t\t\t], {a, 1, 5}]]; \n Do[\n\tDo[ framex[\([a]\)] = StringJoin[ToString[framex[\([a]\)]], "\< \>"], \n \t\ \ \ \ \ \ \ {b, 1, 4 - sizes[\([a]\)]}], \n\ \ \ \ \t{a, 1, 5}]; \nframex = Table[{gridx[\([a]\)], framex[\([a]\)]}, {a, 1, 5}]; \n gridx = Table[{gridx[\([a]\)], RGBColor[0, 0, 0]}, {a, 1, 5}]; \n framey = Table[{a + 1, arrays - a}, {a, 0, arrays - 2}]; \n table = Table[fractions[\([arrays - a]\)], {a, 0, arrays - 2}]; \n g = BarChart[\n\t\ttable, \n\t\tBarOrientation -> Horizontal, \n\t\t PlotRange -> {{0, limit*1.0001}, {0.5, arrays - 1 + 0.5}}, \n\t\t AspectRatio -> 1, \n\t\tAxes -> False, \n\t\tFrame -> True, \n\t\t FrameTicks -> {None, framey, framex, None}, \n\t\t FrameLabel -> {None, None, None, None}, \t\t\n\t\t GridLines -> {gridx, None}, \n\t\tDisplayFunction -> Identity]; \n g = FullGraphics[g]; \n g[\([1, 2]\)] = g[\([1, 2]\)] /. \n\t\t Text[a_, {b_, c_}, {0. , \(-1. \)}] -> \n\t\t\t Text[a, {b, c + 1.5}, {0, 0}, {0, 1}]; \n g1 = Show[g, \n\tAspectRatio -> 1.25, \n\tPlotRange -> All, \n\t DisplayFunction -> Identity]; \)], "Input", PageBreakAbove->True, PageBreakBelow->False], Cell[BoxData[ \(gridx = Table[a, {a, 0, 1, 0.2}]; \nframex = gridx; \n sizes = Flatten[\n\t\t Table[\n\t\t\t Dimensions[\n\t\t\t\t Characters[\n\t\t\t\t\tToString[framex[\([a]\)]]\n\t\t\t\t]\n \t\t\t], {a, 1, 6}]]; \n Do[\n\tDo[ framex[\([a]\)] = StringJoin[ToString[framex[\([a]\)]], "\< \>"], \n \t\ \ \ \ \ \ \ {b, 1, size - sizes[\([a]\)]}], \n \ \ \ \ \t{a, 1, 6}]; \n framex = Table[{gridx[\([a]\)], \n\t\t\tframex[\([a]\)]}, {a, 1, 6}]; \n gridx = Table[{gridx[\([a]\)], RGBColor[0, 0, 0]}, {a, 1, 6}]; \n framey = Table[{a + 1, arrays - a}, {a, 0, arrays - 1}]; \n labelx = ColumnForm[\n \t\t{"\<(b) Eigenexpression Fraction\>", StringJoin["\", ToString[entropy]], "\< \>"}, Center]; \n g = BarChart[\n\t\t Table[fractions[\([arrays - a]\)], {a, 0, arrays - 1}], \n\t\t BarOrientation -> Horizontal, \n\t\t PlotRange -> {{0, 1.0001}, {0.5, arrays + 0.5}}, \n\t\t AspectRatio -> 1, \n\t\tAxes -> False, \n\t\tFrame -> True, \n\t\t FrameTicks -> {None, framey, framex, None}, \n\t\t FrameLabel -> {None, None, labelx, None}, \n\t\t GridLines -> {gridx, None}, \n\tDisplayFunction -> Identity]; \n g = FullGraphics[g]; \n g[\([1, 2]\)] = g[\([1, 2]\)] /. \n\t\t Text[labelx, {b_, c_}, {0. , \(-1. \)}] -> \n\t\t\t Text[labelx, {b, c + 2}, {0, \(-1\)}, {1, 0}]; \n g[\([1, 2]\)] = g[\([1, 2]\)] /. \n\t\t Text[a_, {b_, c_}, {0. , \(-1. \)}] -> \n\t\t\t Text[a, {b, c + 1.8}, {0, 0}, {0, 1}]; \n g2 = Show[{g, \n\t\t\t Graphics[{RGBColor[1, 1, 0.8], Rectangle[{0.1, 0.6}, {0.98, 12.6}]}], \n\t\t\t Graphics[{Rectangle[{0.1, 0.6}, {0.98, 12.6}, g1]}]}, \n\t AspectRatio -> 1.35, \n\tPlotRange -> All, \n\t DisplayFunction -> Identity]; \)], "Input", PageBreakAbove->True, PageBreakBelow->False], Cell[BoxData[ \( (*\ \(Create\ Eigengenes\ 2 D\ Red\ &\)\ Green\ Raster\ Display\ *) \)], "Input", PageBreakAbove->True, PageBreakBelow->False, FontColor->RGBColor[0, 0, 1]], Cell[BoxData[ \(contrast = 3; \n displaying = Table[\n\t\t If[contrast*eigengenes[\([i, j]\)] > 0, \n\t\t\t If[contrast*eigengenes[\([i, j]\)] < 1, { contrast*eigengenes[\([i, j]\)], 0}, {1, 0}], \n\t\t\t If[contrast*eigengenes[\([i, j]\)] > \(-1\), {0, \(-contrast\)*eigengenes[\([i, j]\)]}, {0, 1}]], \n \t\t{i, 1, arrays}, {j, 1, arrays}]; \n framex = Table[{a - 0.5, arraynames[\([2, a]\)]}, {a, 1, arrays}]; \n framey = Table[{a + 1 - 0.5, arrays - a}, {a, 0, arrays - 1}]; \n labely = "\"; \n labelx = ColumnForm[{"\<(a) Arrays\>", "\< \>", "\< \>"}, Center]; \n g = Show[\n\t Graphics[\n\t\t RasterArray[\n\t\t\t Table[\n\t\t\t\t RGBColor[\n\t\t\t\t\tdisplaying[\([i, j, 1]\)], displaying[\([i, j, 2]\)], 0\n\t\t\t\t\t], \n \t\t\t\t{i, arrays, 1, \(-1\)}, {j, 1, arrays}\n\t\t\t]]], \n\t AspectRatio -> 1, Frame -> True, \n\t FrameTicks -> {None, framey, framex, None}, \n\t FrameLabel -> {None, labely, labelx, None}, \n\t DisplayFunction -> Identity]; \ng = FullGraphics[g]; \n g[\([1, 2]\)] = g[\([1, 2]\)] /. \n\t\t Text[labely, {b_, c_}, {1. , 0. }] -> \n\t\t\t Text[labely, {b - 2, c}, {0, 0}, {0, 1}]; \n g[\([1, 2]\)] = g[\([1, 2]\)] /. \n\t\t Text[labelx, {b_, c_}, {0. , \(-1. \)}] -> \n\t\t\t Text[labelx, {b, c + 2}, {0, \(-1\)}, {1, 0}]; \n g[\([1, 2]\)] = g[\([1, 2]\)] /. \n\t\t Text[a_, {b_, c_}, {0. , \(-1. \)}] -> \n\t\t\t Text[a, {b, c + 1.8}, {0, 0}, {0, 1}]; \n g1 = Show[g, \n\tAspectRatio -> 1.05, \n\tPlotRange -> All, \n\t DisplayFunction -> Identity]; \)], "Input", PageBreakAbove->False, PageBreakBelow->False], Cell[BoxData[ \( (*\ Create\ Selected\ Eigengenes\ Graph\ Display\ *) \)], "Input", PageBreakAbove->False, PageBreakBelow->False, FontColor->RGBColor[0, 0, 1]], Cell[CellGroupData[{ Cell[BoxData[{ \(eigengenes1 = Chop[TrigFit[eigengenes[\([1]\)], 2, {x, arrays - 1}], 0.05]\), \(eigengenes2 = Chop[TrigFit[eigengenes[\([2]\)], 2, {x, arrays - 1}], 0.175]\), \(eigengenes3 = Chop[TrigFit[eigengenes[\([3]\)], 4, {x, arrays - 1}], 0.15]\), \(eigengenes4 = Chop[TrigFit[eigengenes[\([4]\)], 4, {x, arrays - 1}], 0.15]\)}], "Input", PageBreakAbove->False, PageBreakBelow->False], Cell[BoxData[ \(0.266134588799056537`\)], "Output", PageBreakAbove->False], Cell[BoxData[ \(0.241145676519458884`\ Cos[\(2\ \[Pi]\ x\)\/13]\)], "Output", PageBreakAbove->False], Cell[BoxData[ \(0.32203350885970936`\ Sin[\(2\ \[Pi]\ x\)\/13]\)], "Output", PageBreakAbove->False], Cell[BoxData[ \(0.190451842036642222`\ Cos[\(2\ \[Pi]\ x\)\/13]\)], "Output", PageBreakAbove->False] }, Open ]], Cell[BoxData[ \(eigengenes2 = 0.276*Cos[2*Pi*x/13]; \n eigengenes3 = 0.39*Sin[2*Pi*x/13]; \neigengenes4 = 0.276*Cos[2*Pi*x/13]; \)], "Input", PageBreakAbove->False, PageBreakBelow->False], Cell[CellGroupData[{ Cell[BoxData[ \(labelx = ColumnForm[{"\<(c) Arrays\>"}, Center]; \n labely = ColumnForm[{"\< \>", "\"}, Center]; \n framex = Table[{a - 1, arraynames[\([2, a]\)]}, {a, 1, arrays}]; \n framey = {\(-1\), \(-0.5\), 0, 0.5, 1}; \n coordinates = Table[{a - 1, eigengenes[\([1, a]\)]}, \t{a, 1, arrays}]; \n points = Table[Point[coordinates[\([a]\)]], \t{a, 1, arrays}]; \n line = Line[coordinates]; \n g = Show[\n \t\t{Graphics[{RGBColor[0, 0.5, 0], PointSize[0.022], points}], \n \t\t\tGraphics[{RGBColor[0, 0.5, 0], line}]}, \n\tFrame -> True, \n \tFrameLabel -> {None, labely, labelx, None}, \n\t GridLines -> {None, {{0, RGBColor[0, 0, 0]}}}, \n\t FrameTicks -> {None, framey, framex, None}, \n\t PlotRange -> {\(-1.05\), 1.05}, \n\tDisplayFunction -> Identity]; \n g = FullGraphics[g]; \n g[\([1, 2]\)] = g[\([1, 2]\)] /. \n\t\t Text[labely, {b_, c_}, {1. , 0. }] -> \n\t\t\t Text[labely, {b - 3.6, c}, {0, 0}, {0, 1}]; \n g[\([1, 2]\)] = g[\([1, 2]\)] /. \n\t\t Text[labelx, {b_, c_}, {0. , \(-1. \)}] -> \n\t\t\t Text[labelx, {b, c + 0.6}, {0, \(-1\)}, {1, 0}]; \n g[\([1, 2]\)] = g[\([1, 2]\)] /. \n\t\t Text[a_, {b_, c_}, {0. , \(-1. \)}] -> \n\t\t\t Text[a, {b, c + 0.24}, {0, 0}, {0, 1}]; \n p1 = Show[g, \n\t\tAspectRatio -> 1.05, \n\t\tPlotRange -> All]; \)], "Input", PageBreakAbove->True, PageBreakBelow->False], Cell[GraphicsData["PostScript", "\<\ %! %%Creator: Mathematica %%AspectRatio: 1.05 MathPictureStart /Mabs { Mgmatrix idtransform Mtmatrix dtransform } bind def /Mabsadd { Mabs 3 -1 roll add 3 1 roll add exch } bind def %% Graphics %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10 scalefont setfont % Scaling calculations 0.251266 0.0544033 0.407866 0.364634 [ [.2243 .04323 -12 -4.5 ] [.2243 .04323 0 4.5 ] [.2243 .22555 -24 -4.5 ] [.2243 .22555 0 4.5 ] [.2243 .40787 -6 -4.5 ] [.2243 .40787 0 4.5 ] [.2243 .59018 -18 -4.5 ] [.2243 .59018 0 4.5 ] [.2243 .7725 -6 -4.5 ] [.2243 .7725 0 4.5 ] [.02381 .40787 -13.0625 -50 ] [.02381 .40787 13.0625 50 ] [.25127 .89373 -6.1875 -20.125 ] [.25127 .89373 6.1875 20.125 ] [.30567 .89373 -6.1875 -20.125 ] [.30567 .89373 6.1875 20.125 ] [.36007 .89373 -6.1875 -20.125 ] [.36007 .89373 6.1875 20.125 ] [.41448 .89373 -6.1875 -20.125 ] [.41448 .89373 6.1875 20.125 ] [.46888 .89373 -6.1875 -20.125 ] [.46888 .89373 6.1875 20.125 ] [.52328 .89373 -6.1875 -20.125 ] [.52328 .89373 6.1875 20.125 ] [.57769 .89373 -6.1875 -20.125 ] [.57769 .89373 6.1875 20.125 ] [.63209 .89373 -6.1875 -20.125 ] [.63209 .89373 6.1875 20.125 ] [.68649 .89373 -6.1875 -20.125 ] [.68649 .89373 6.1875 20.125 ] [.7409 .89373 -6.1875 -20.125 ] [.7409 .89373 6.1875 20.125 ] [.7953 .89373 -6.1875 -20.125 ] [.7953 .89373 6.1875 20.125 ] [.8497 .89373 -6.1875 -20.125 ] [.8497 .89373 6.1875 20.125 ] [.90411 .89373 -6.1875 -20.125 ] [.90411 .89373 6.1875 20.125 ] [.95851 .89373 -6.1875 -20.125 ] [.95851 .89373 6.1875 20.125 ] [.60489 1.025 -32 0 ] [.60489 1.025 32 12.625 ] [ 0 0 0 0 ] [ 1 1.05 0 0 ] ] MathScale % Start of Graphics 1 setlinecap 1 setlinejoin newpath 0 .5 0 r .022 w .25127 .51195 Mdot .30567 .51653 Mdot .36007 .49172 Mdot .41448 .50285 Mdot .46888 .50658 Mdot .52328 .50703 Mdot .57769 .49237 Mdot .63209 .50126 Mdot .68649 .50026 Mdot .7409 .49617 Mdot .7953 .51578 Mdot .8497 .52089 Mdot .90411 .49573 Mdot .95851 .5096 Mdot .5 Mabswid [ ] 0 setdash .25127 .51195 m .30567 .51653 L .36007 .49172 L .41448 .50285 L .46888 .50658 L .52328 .50703 L .57769 .49237 L .63209 .50126 L .68649 .50026 L .7409 .49617 L .7953 .51578 L .8497 .52089 L .90411 .49573 L .95851 .5096 L s 0 g .25 Mabswid .23359 .40787 m .97619 .40787 L s .23359 .025 m .97619 .025 L s .23359 .04323 m .23823 .04323 L s [(-1)] .2243 .04323 1 0 Mshowa .23359 .22555 m .23823 .22555 L s [(-0.5)] .2243 .22555 1 0 Mshowa .23359 .40787 m .23823 .40787 L s [(0)] .2243 .40787 1 0 Mshowa .23359 .59018 m .23823 .59018 L s [(0.5)] .2243 .59018 1 0 Mshowa .23359 .7725 m .23823 .7725 L s [(1)] .2243 .7725 1 0 Mshowa .23359 .025 m .23359 .79073 L s gsave .02381 .40787 -111 -17.0625 Mabsadd m 1 1 Mabs scale currentpoint translate 111 17.0625 translate 90 rotate -111 -17.0625 translate 0 34.125 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 30.125000 moveto 558.000000 30.125000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 30.125000 lineto closepath clip newpath 108.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 114.000000 13.000000 moveto 0.000000 0.000000 rmoveto 63.000000 26.812500 moveto 0.000000 0.000000 rmoveto 63.000000 26.812500 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (Expression) show 129.000000 26.812500 moveto (Level) show 159.000000 26.812500 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .25127 .78299 m .25127 .79073 L s gsave .25127 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (0) show 81.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .30567 .78299 m .30567 .79073 L s gsave .30567 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (30) show 87.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .36007 .78299 m .36007 .79073 L s gsave .36007 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (60) show 87.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .41448 .78299 m .41448 .79073 L s gsave .41448 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (90) show 87.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .46888 .78299 m .46888 .79073 L s gsave .46888 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (120) show 93.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .52328 .78299 m .52328 .79073 L s gsave .52328 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (150) show 93.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .57769 .78299 m .57769 .79073 L s gsave .57769 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (180) show 93.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .63209 .78299 m .63209 .79073 L s gsave .63209 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (210) show 93.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .68649 .78299 m .68649 .79073 L s gsave .68649 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (240) show 93.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .7409 .78299 m .7409 .79073 L s gsave .7409 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (270) show 93.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .7953 .78299 m .7953 .79073 L s gsave .7953 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (300) show 93.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .8497 .78299 m .8497 .79073 L s gsave .8497 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (330) show 93.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .90411 .78299 m .90411 .79073 L s gsave .90411 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (360) show 93.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .95851 .78299 m .95851 .79073 L s gsave .95851 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (390) show 93.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .23359 .79073 m .97619 .79073 L s gsave .60489 1.025 -93 -4 Mabsadd m 1 1 Mabs scale currentpoint translate 0 20.625 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.625000 moveto 558.000000 16.625000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.625000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto %%IncludeResource: font Math2Mono %%IncludeFont: Math2Mono /Math2Mono findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 63.000000 13.000000 moveto (H) show 69.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (c) show %%IncludeResource: font Math2Mono %%IncludeFont: Math2Mono /Math2Mono findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 75.000000 13.000000 moveto (L) show 87.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (Arrays) show 123.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Math2Mono %%+ font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Math2Mono %%+ Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Math2Mono %%+ font Courier grestore .97619 .025 m .97619 .79073 L s 0 0 m 1 0 L 1 1.05 L 0 1.05 L closepath clip newpath % End of Graphics MathPictureEnd \ \>"], "Graphics", PageBreakAbove->False, PageBreakBelow->False, GroupPageBreakWithin->False, ImageSize->{272, 285.5}, ImageMargins->{{43, 0}, {0, 0}}, ImageRegion->{{0, 1}, {0, 1}}, ImageCache->GraphicsData["Bitmap", "\<\ CF5dJ6E]HGAYHf4PAg9QL6QYHg0?ooo`030000003oool0oooo00P0oooo00@000000?ooo`3o ool000003@3oool00`000000oooo0?ooo`030?ooo`00C@3oool01@000000oooo0000003oool00000 00T0oooo00@000000?ooo`3oool000002P3oool010000000oooo0?ooo`00000;0?ooo`040000003o ool0oooo000000`0oooo00<000000?ooo`3oool0303oool00`000000oooo0?ooo`090?ooo`040000 003oool0oooo000000/0oooo00<000000?ooo`3oool02P3oool4000000d0oooo00<000000?ooo`3o ool02@3oool010000000oooo0?ooo`00000>0?ooo`030000003oool0oooo00P0oooo00@000000?oo o`3oool000002`3oool3000000D0oooo001=0?ooo`050000003oool000000?ooo`0000002@3oool0 10000000oooo0?ooo`00000:0?ooo`040000003oool0oooo000000/0oooo00@000000?ooo`3oool0 00003@3oool00`000000oooo0?ooo`080?ooo`<000003@3oool2000000`0oooo00<000000?ooo`3o ool02P3oool00`000000oooo0000000>0?ooo`030000003oool0oooo00T0oooo00@000000?ooo`3o ool00000303oool2000000/0oooo0`00000;0?ooo`040000003oool0oooo000000D0oooo001<0?oo o`H000002@3oool010000000oooo0?ooo`00000:0?ooo`040000003oool0oooo000000/0oooo00@0 00000?ooo`3oool000002P3oool010000000oooo0?ooo`00000:0?ooo`030000003oool0oooo00`0 oooo00@000000?ooo`3oool000002`3oool00`000000oooo0?ooo`0:0?ooo`030000003oool00000 00l0oooo00<000000?ooo`3oool0203oool010000000oooo0?ooo`00000>0?ooo`030000003oool0 oooo00P0oooo00<000000?ooo`3oool02`3oool010000000oooo0?ooo`0000050?ooo`00G03oool2 000000`0oooo0P00000=0?ooo`800000303oool2000000/0oooo1000000<0?ooo`8000002`3oool2 000000d0oooo0P00000<0?ooo`@000002`3oool2000000`0oooo0`00000<0?ooo`<000002`3oool2 000000H0oooo001K0?ooo`050000003oool000000?ooo`0000002@3oool01@000000oooo0000003o ool0000000X0oooo00D000000?ooo`000000oooo0000000:0?ooo`800000303oool2000000d0oooo 0P00000<0?ooo`800000303oool2000000d0oooo0P00000<0?ooo`8000003@3oool2000000`0oooo 0P00000<0?ooo`8000001P3oool005/0oooo00D000000?ooo`000000oooo000000090?ooo`050000 003oool000000?ooo`0000002P3oool01@000000oooo0000003oool0000000T0oooo00@000000?oo o`3oool000002P3oool010000000oooo0?ooo`00000;0?ooo`040000003oool0oooo000000X0oooo 00@000000?ooo`3oool000002P3oool010000000oooo0?ooo`00000;0?ooo`040000003oool0oooo 000000X0oooo00@000000?ooo`3oool000002`3oool010000000oooo0?ooo`00000:0?ooo`040000 003oool0oooo000000X0oooo00@000000?ooo`3oool000001@3oool005/0oooo00D000000?ooo`00 0000oooo000000090?ooo`050000003oool000000?ooo`0000002P3oool01@000000oooo0000003o ool0000000T0oooo00@000000?ooo`3oool000002P3oool010000000oooo0?ooo`00000;0?ooo`04 0000003oool0oooo000000X0oooo00@000000?ooo`3oool000002P3oool010000000oooo0?ooo`00 000;0?ooo`040000003oool0oooo000000X0oooo00@000000?ooo`3oool000002`3oool010000000 oooo0?ooo`00000:0?ooo`040000003oool0oooo000000X0oooo00@000000?ooo`3oool000001@3o ool005/0oooo00D000000?ooo`000000oooo000000090?ooo`050000003oool000000?ooo`000000 2P3oool01@000000oooo0000003oool0000000T0oooo00@000000?ooo`3oool000002P3oool01000 0000oooo0?ooo`00000;0?ooo`040000003oool0oooo000000X0oooo00@000000?ooo`3oool00000 2P3oool010000000oooo0?ooo`00000;0?ooo`040000003oool0oooo000000X0oooo00@000000?oo o`3oool000002`3oool010000000oooo0?ooo`00000:0?ooo`040000003oool0oooo000000X0oooo 00@000000?ooo`3oool000001@3oool005X0oooo1P0000080?ooo`H000002@3oool6000000T0oooo 00@000000?ooo`3oool000002P3oool010000000oooo0?ooo`00000;0?ooo`040000003oool0oooo 000000X0oooo00@000000?ooo`3oool000002P3oool010000000oooo0?ooo`00000;0?ooo`040000 003oool0oooo000000X0oooo00@000000?ooo`3oool000002`3oool010000000oooo0?ooo`00000: 0?ooo`040000003oool0oooo000000X0oooo00@000000?ooo`3oool000001@3oool008L0oooo0P00 000<0?ooo`8000003@3oool2000000`0oooo0P00000<0?ooo`8000003@3oool2000000`0oooo0P00 000=0?ooo`800000303oool2000000`0oooo0P0000060?ooo`00QP3oool01@000000oooo0000003o ool0000000T0oooo00D000000?ooo`000000oooo0000000:0?ooo`050000003oool000000?ooo`00 00002@3oool01@000000oooo0000003oool0000000T0oooo00D000000?ooo`000000oooo0000000: 0?ooo`050000003oool000000?ooo`0000002@3oool01@000000oooo0000003oool0000000X0oooo 00D000000?ooo`000000oooo000000090?ooo`050000003oool000000?ooo`0000002@3oool01@00 0000oooo0000003oool0000000@0oooo00260?ooo`050000003oool000000?ooo`0000002@3oool0 1@000000oooo0000003oool0000000X0oooo00D000000?ooo`000000oooo000000090?ooo`050000 003oool000000?ooo`0000002@3oool01@000000oooo0000003oool0000000X0oooo00D000000?oo o`000000oooo000000090?ooo`050000003oool000000?ooo`0000002P3oool01@000000oooo0000 003oool0000000T0oooo00D000000?ooo`000000oooo000000090?ooo`050000003oool000000?oo o`000000103oool008H0oooo00D000000?ooo`000000oooo000000090?ooo`050000003oool00000 0?ooo`0000002P3oool01@000000oooo0000003oool0000000T0oooo00D000000?ooo`000000oooo 000000090?ooo`050000003oool000000?ooo`0000002P3oool01@000000oooo0000003oool00000 00T0oooo00D000000?ooo`000000oooo0000000:0?ooo`050000003oool000000?ooo`0000002@3o ool01@000000oooo0000003oool0000000T0oooo00D000000?ooo`000000oooo000000040?ooo`00 QP3oool01@000000oooo0000003oool0000000T0oooo00D000000?ooo`000000oooo0000000:0?oo o`050000003oool000000?ooo`0000002@3oool01@000000oooo0000003oool0000000T0oooo00D0 00000?ooo`000000oooo0000000:0?ooo`050000003oool000000?ooo`0000002@3oool01@000000 oooo0000003oool0000000X0oooo00D000000?ooo`000000oooo000000090?ooo`050000003oool0 00000?ooo`0000002@3oool01@000000oooo0000003oool0000000@0oooo00250?ooo`H00000203o ool6000000T0oooo1P0000080?ooo`H00000203oool6000000T0oooo1P0000080?ooo`H000002@3o ool6000000P0oooo1P0000080?ooo`H00000103oool00?l0oooo4@3oool00?l0oooo4@3oool00?l0 oooo4@3oool00?l0oooo4@3oool00?l0oooo4@3oool00?l0oooo4@3oool00?l0oooo4@3oool00?l0 oooo4@3oool00?l0oooo4@3oool00?l0oooo4@3oool00?l0oooo4@3oool00?l0oooo4@3oool00?l0 oooo4@3oool00?l0oooo4@3oool00?l0oooo4@3oool00?l0oooo4@3oool00?l0oooo4@3oool00?l0 oooo4@3oool00?l0oooo4@3oool008`0oooo00<000000?ooo`3oool01P3oool00`000000oooo0?oo o`0P0?ooo`<00000E@3oool008/0oooo00<000000?ooo`3oool0203oool00`000000oooo0?ooo`0P 0?ooo`030000003oool0oooo05@0oooo002:0?ooo`030000003oool0oooo00<0oooo0`0000040?oo o`030000003oool0oooo00H0oooo0P0000000`3oool00000000000020?ooo`@000000P3oool40000 0080oooo1@0000020?ooo`030000003oool0oooo0080oooo1000001=0?ooo`00RP3oool00`000000 oooo0?ooo`020?ooo`050000003oool0oooo0?ooo`0000000`3oool00`000000oooo0?ooo`070?oo o`030000003oool0000000@0oooo00<000000?ooo`3oool00`3oool00`000000oooo0?ooo`020?oo o`040000003oool0oooo000000<0oooo00<000000?ooo`3oool01@3oool00`000000oooo0?ooo`1; 0?ooo`00RP3oool00`000000oooo0?ooo`020?ooo`030000003oool0oooo00D0oooo00<000000?oo o`3oool01`3oool3000000@0oooo00<000000?ooo`3oool00`3oool00`000000oooo0?ooo`020?oo o`@000000P3oool00`000000oooo000000030?ooo`@00000C@3oool008X0oooo00<000000?ooo`3o ool00P3oool01@000000oooo0?ooo`3oool0000000<0oooo00<000000?ooo`3oool01`3oool00`00 0000oooo000000040?ooo`800000103oool2000000H0oooo00H000000?ooo`3oool000000?ooo`00 00030?ooo`030000003oool0oooo04h0oooo002;0?ooo`030000003oool0oooo0080oooo10000002 0?ooo`030000003oool0oooo00T0oooo00<000000?ooo`3oool00P3oool2000000040?ooo`000000 00000?ooo`80000000<0oooo0000000000000P3oool3000000040?ooo`00000000000?ooo`800000 0P3oool4000004d0oooo002<0?ooo`030000003oool0oooo00H0oooo00<000000?ooo`3oool02@3o ool2000006d0oooo003o0?oooa40oooo003o0?oooa40oooo003o0?oooa40oooo0000\ \>"], ImageRangeCache->{{{0, 271}, {284.5, 0}} -> {-5.08972, -1.12398, 0.0695663, 0.0103793}}] }, Open ]], Cell[CellGroupData[{ Cell[BoxData[ \(graph = Plot[\n\t\teigengenes2, \n\t\t{x, 0, arrays - 1}, \n\t\t PlotStyle -> {RGBColor[1, 0, 0], Dashing[{0.03, 0.02}]}, \n\t\t DisplayFunction -> Identity]; \n labelx = ColumnForm[{"\<(c) Arrays\>"}, Center]; \n labely = ColumnForm[{"\< \>", "\"}, Center]; \n framex = Table[{a - 1, arraynames[\([2, a]\)]}, {a, 1, arrays}]; \n framey = {\(-1\), \(-0.5\), 0, 0.5, 1}; \n coordinates = Table[{a - 1, eigengenes[\([2, a]\)]}, \t{a, 1, arrays}]; \n points = Table[Point[coordinates[\([a]\)]], \t{a, 1, arrays}]; \n line = Line[coordinates]; \n g = Show[\n \t\t{Graphics[{RGBColor[1, 0, 0], PointSize[0.022], points}], \n\t\t\t Graphics[{RGBColor[1, 0, 0], line}], \n\t\t\tgraph, \n\t\t\t Graphics[{RGBColor[1, 0, 0], Text[\*"\"\<\!\(\@\(1\/T\)\)cos(\!\(\(2 \[Pi]t\)\/T\))\>\"", { 9, 0.8}]}]}, \n\tFrame -> True, \n\t FrameLabel -> {None, labely, labelx, None}, \n\t GridLines -> {None, {{0, RGBColor[0, 0, 0]}}}, \n\t FrameTicks -> {None, framey, framex, None}, \n\t PlotRange -> {\(-1.05\), 1.05}, \n\tDisplayFunction -> Identity]; \n g = FullGraphics[g]; \n g[\([1, 2]\)] = g[\([1, 2]\)] /. \n\t\t Text[labely, {b_, c_}, {1. , 0. }] -> \n\t\t\t Text[labely, {b - 3.6, c}, {0, 0}, {0, 1}]; \n g[\([1, 2]\)] = g[\([1, 2]\)] /. \n\t\t Text[labelx, {b_, c_}, {0. , \(-1. \)}] -> \n\t\t\t Text[labelx, {b, c + 0.6}, {0, \(-1\)}, {1, 0}]; \n g[\([1, 2]\)] = g[\([1, 2]\)] /. \n\t\t Text[a_, {b_, c_}, {0. , \(-1. \)}] -> \n\t\t\t Text[a, {b, c + 0.24}, {0, 0}, {0, 1}]; \n p2 = Show[g, \n\t\tAspectRatio -> 1.05, \n\t\tPlotRange -> All]; \)], "Input", PageBreakAbove->True, PageBreakBelow->False], Cell[GraphicsData["PostScript", "\<\ %! %%Creator: Mathematica %%AspectRatio: 1.05 MathPictureStart /Mabs { Mgmatrix idtransform Mtmatrix dtransform } bind def /Mabsadd { Mabs 3 -1 roll add 3 1 roll add exch } bind def %% Graphics %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10 scalefont setfont % Scaling calculations 0.251266 0.0544033 0.407866 0.364634 [ [.7409 .69957 -43.0625 -15.5938 ] [.7409 .69957 43.0625 15.5938 ] [.2243 .04323 -12 -4.5 ] [.2243 .04323 0 4.5 ] [.2243 .22555 -24 -4.5 ] [.2243 .22555 0 4.5 ] [.2243 .40787 -6 -4.5 ] [.2243 .40787 0 4.5 ] [.2243 .59018 -18 -4.5 ] [.2243 .59018 0 4.5 ] [.2243 .7725 -6 -4.5 ] [.2243 .7725 0 4.5 ] [.02381 .40787 -13.0625 -50 ] [.02381 .40787 13.0625 50 ] [.25127 .89373 -6.1875 -20.125 ] [.25127 .89373 6.1875 20.125 ] [.30567 .89373 -6.1875 -20.125 ] [.30567 .89373 6.1875 20.125 ] [.36007 .89373 -6.1875 -20.125 ] [.36007 .89373 6.1875 20.125 ] [.41448 .89373 -6.1875 -20.125 ] [.41448 .89373 6.1875 20.125 ] [.46888 .89373 -6.1875 -20.125 ] [.46888 .89373 6.1875 20.125 ] [.52328 .89373 -6.1875 -20.125 ] [.52328 .89373 6.1875 20.125 ] [.57769 .89373 -6.1875 -20.125 ] [.57769 .89373 6.1875 20.125 ] [.63209 .89373 -6.1875 -20.125 ] [.63209 .89373 6.1875 20.125 ] [.68649 .89373 -6.1875 -20.125 ] [.68649 .89373 6.1875 20.125 ] [.7409 .89373 -6.1875 -20.125 ] [.7409 .89373 6.1875 20.125 ] [.7953 .89373 -6.1875 -20.125 ] [.7953 .89373 6.1875 20.125 ] [.8497 .89373 -6.1875 -20.125 ] [.8497 .89373 6.1875 20.125 ] [.90411 .89373 -6.1875 -20.125 ] [.90411 .89373 6.1875 20.125 ] [.95851 .89373 -6.1875 -20.125 ] [.95851 .89373 6.1875 20.125 ] [.60489 1.025 -32 0 ] [.60489 1.025 32 12.625 ] [ 0 0 0 0 ] [ 1 1.05 0 0 ] ] MathScale % Start of Graphics 1 setlinecap 1 setlinejoin newpath 1 0 0 r .022 w .25127 .73253 Mdot .30567 .46628 Mdot .36007 .41283 Mdot .41448 .38151 Mdot .46888 .33876 Mdot .52328 .32831 Mdot .57769 .3553 Mdot .63209 .35406 Mdot .68649 .37298 Mdot .7409 .34986 Mdot .7953 .3656 Mdot .8497 .39743 Mdot .90411 .41892 Mdot .95851 .40038 Mdot .5 Mabswid [ ] 0 setdash .25127 .73253 m .30567 .46628 L .36007 .41283 L .41448 .38151 L .46888 .33876 L .52328 .32831 L .57769 .3553 L .63209 .35406 L .68649 .37298 L .7409 .34986 L .7953 .3656 L .8497 .39743 L .90411 .41892 L .95851 .40038 L s [ .03 .02 ] 0 setdash .25127 .50851 m .25214 .5085 L .25293 .50849 L .25385 .50848 L .25472 .50846 L .25626 .50841 L .25793 .50833 L .25977 .50822 L .26173 .50807 L .26523 .50773 L .26885 .50728 L .27224 .50676 L .27996 .50525 L .28783 .50324 L .29503 .50099 L .31125 .49455 L .34073 .47835 L .3691 .45822 L .39928 .43333 L .42834 .40763 L .45922 .38038 L .48897 .35604 L .5176 .336 L .53211 .32754 L .54805 .31979 L .56321 .31405 L .57 .31202 L .57737 .31022 L .5814 .30941 L .58513 .30877 L .58863 .30828 L .59249 .30784 L .59414 .30769 L .59593 .30755 L .59748 .30745 L .59917 .30736 L .60097 .30729 L .60195 .30726 L .60287 .30724 L .60373 .30723 L .60451 .30723 L .60541 .30723 L .60627 .30723 L .60712 .30725 L .60804 .30727 L .60891 .30729 L .6097 .30732 L .61164 .30741 L .61348 .30752 L .61714 .30782 L Mistroke .62113 .30827 L .62824 .30938 L .63483 .31077 L .6501 .31524 L .66393 .32076 L .69372 .33697 L .72239 .35726 L .75287 .38238 L .78224 .40835 L .81047 .43331 L .84053 .45811 L .86946 .47862 L .8842 .48736 L .90022 .49531 L .91562 .50129 L .92296 .50353 L .92985 .50526 L .93641 .50657 L .94348 .50761 L .9473 .50801 L .94923 .50816 L .95133 .5083 L .95313 .50839 L .95413 .50843 L .95505 .50846 L .9559 .50848 L .95683 .50849 L .9577 .5085 L .95851 .50851 L Mfstroke gsave .7409 .69957 -104.062 -19.5938 Mabsadd m 1 1 Mabs scale currentpoint translate 0 39.1875 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 35.187500 moveto 558.000000 35.187500 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 35.187500 lineto closepath clip newpath 63.000000 23.812500 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 1.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 0.000000 0.000000 setrgbcolor %%IncludeResource: font Math2Mono %%IncludeFont: Math2Mono /Math2Mono findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 1.000000 0.000000 0.000000 setrgbcolor 63.000000 22.812500 moveto ($) show 72.750000 22.812500 moveto (%) show 75.375000 22.812500 moveto (%) show 78.000000 22.812500 moveto (%) show 80.625000 22.812500 moveto (%) show 83.250000 22.812500 moveto (%) show 83.750000 22.812500 moveto (%) show 77.125000 17.875000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 1.000000 0.000000 0.000000 setrgbcolor (1) show %%IncludeResource: font Math1Mono %%IncludeFont: Math1Mono /Math1Mono findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 1.000000 0.000000 0.000000 setrgbcolor 75.812500 23.812500 moveto (\\200) show 77.687500 23.812500 moveto (\\200) show 79.562500 23.812500 moveto (\\200) show 81.437500 23.812500 moveto (\\200) show 82.625000 23.812500 moveto (\\200) show 77.125000 30.062500 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 1.000000 0.000000 0.000000 setrgbcolor (T) show 88.312500 23.812500 moveto (cos) show %%IncludeResource: font Math2Mono %%IncludeFont: Math2Mono /Math2Mono findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 1.000000 0.000000 0.000000 setrgbcolor 106.312500 23.812500 moveto (H) show 115.375000 17.875000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 1.000000 0.000000 0.000000 setrgbcolor (2) show 121.375000 17.875000 moveto %%IncludeResource: font Math1Mono %%IncludeFont: Math1Mono /Math1Mono findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 1.000000 0.000000 0.000000 setrgbcolor ( ) show 124.000000 17.875000 moveto %%IncludeResource: font Math1Mono %%IncludeFont: Math1Mono /Math1Mono findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 1.000000 0.000000 0.000000 setrgbcolor (p) show %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 1.000000 0.000000 0.000000 setrgbcolor (t) show %%IncludeResource: font Math1Mono %%IncludeFont: Math1Mono /Math1Mono findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 1.000000 0.000000 0.000000 setrgbcolor 114.062500 23.812500 moveto (\\200) show 115.937500 23.812500 moveto (\\200) show 117.812500 23.812500 moveto (\\200) show 119.687500 23.812500 moveto (\\200) show 121.562500 23.812500 moveto (\\200) show 123.437500 23.812500 moveto (\\200) show 125.312500 23.812500 moveto (\\200) show 127.187500 23.812500 moveto (\\200) show 129.062500 23.812500 moveto (\\200) show 130.937500 23.812500 moveto (\\200) show 132.812500 23.812500 moveto (\\200) show 134.687500 23.812500 moveto (\\200) show 135.500000 23.812500 moveto (\\200) show 122.687500 30.062500 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 1.000000 0.000000 0.000000 setrgbcolor (T) show %%IncludeResource: font Math2Mono %%IncludeFont: Math2Mono /Math2Mono findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 1.000000 0.000000 0.000000 setrgbcolor 139.125000 23.812500 moveto (L) show 145.125000 23.812500 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 1.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Math1Mono %%+ font Math2Mono %%+ font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Math1Mono %%+ Math2Mono %%+ Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Math1Mono %%+ font Math2Mono %%+ font Courier grestore 0 g .25 Mabswid [ ] 0 setdash .23359 .40787 m .97619 .40787 L s .23359 .025 m .97619 .025 L s .23359 .04323 m .23823 .04323 L s [(-1)] .2243 .04323 1 0 Mshowa .23359 .22555 m .23823 .22555 L s [(-0.5)] .2243 .22555 1 0 Mshowa .23359 .40787 m .23823 .40787 L s [(0)] .2243 .40787 1 0 Mshowa .23359 .59018 m .23823 .59018 L s [(0.5)] .2243 .59018 1 0 Mshowa .23359 .7725 m .23823 .7725 L s [(1)] .2243 .7725 1 0 Mshowa .23359 .025 m .23359 .79073 L s gsave .02381 .40787 -111 -17.0625 Mabsadd m 1 1 Mabs scale currentpoint translate 111 17.0625 translate 90 rotate -111 -17.0625 translate 0 34.125 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 30.125000 moveto 558.000000 30.125000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 30.125000 lineto closepath clip newpath 108.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 114.000000 13.000000 moveto 0.000000 0.000000 rmoveto 63.000000 26.812500 moveto 0.000000 0.000000 rmoveto 63.000000 26.812500 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (Expression) show 129.000000 26.812500 moveto (Level) show 159.000000 26.812500 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .25127 .78299 m .25127 .79073 L s gsave .25127 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (0) show 81.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .30567 .78299 m .30567 .79073 L s gsave .30567 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (30) show 87.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .36007 .78299 m .36007 .79073 L s gsave .36007 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (60) show 87.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .41448 .78299 m .41448 .79073 L s gsave .41448 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (90) show 87.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .46888 .78299 m .46888 .79073 L s gsave .46888 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (120) show 93.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .52328 .78299 m .52328 .79073 L s gsave .52328 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (150) show 93.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .57769 .78299 m .57769 .79073 L s gsave .57769 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (180) show 93.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .63209 .78299 m .63209 .79073 L s gsave .63209 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (210) show 93.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .68649 .78299 m .68649 .79073 L s gsave .68649 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (240) show 93.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .7409 .78299 m .7409 .79073 L s gsave .7409 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (270) show 93.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .7953 .78299 m .7953 .79073 L s gsave .7953 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (300) show 93.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .8497 .78299 m .8497 .79073 L s gsave .8497 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (330) show 93.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .90411 .78299 m .90411 .79073 L s gsave .90411 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (360) show 93.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .95851 .78299 m .95851 .79073 L s gsave .95851 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (390) show 93.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .23359 .79073 m .97619 .79073 L s gsave .60489 1.025 -93 -4 Mabsadd m 1 1 Mabs scale currentpoint translate 0 20.625 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.625000 moveto 558.000000 16.625000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.625000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto %%IncludeResource: font Math2Mono %%IncludeFont: Math2Mono /Math2Mono findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 63.000000 13.000000 moveto (H) show 69.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (c) show %%IncludeResource: font Math2Mono %%IncludeFont: Math2Mono /Math2Mono findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 75.000000 13.000000 moveto (L) show 87.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (Arrays) show 123.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Math2Mono %%+ font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Math2Mono %%+ Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Math2Mono %%+ font Courier grestore .97619 .025 m .97619 .79073 L s 0 0 m 1 0 L 1 1.05 L 0 1.05 L closepath clip newpath % End of Graphics MathPictureEnd \ \>"], "Graphics", PageBreakAbove->False, PageBreakBelow->False, GroupPageBreakWithin->False, ImageSize->{274.25, 288}, ImageMargins->{{43, 0}, {0, 0}}, ImageRegion->{{0, 1}, {0, 1}}, ImageCache->GraphicsData["Bitmap", "\<\ CF5dJ6E]HGAYHf4PAg9QL6QYHgP3oool60?l000T0oooo0`3o00030?ooo`80o`009`3oool20?l0 04T0oooo00<000000?ooo`3oool01@3oool004@0oooo00<000000?ooo`3oool0>P3oool50?l00180 oooo0P3o000W0?ooo`030?l0003oool0oooo04H0oooo00<000000?ooo`3oool01@3oool001L0oooo 1000000Y0?ooo`030000003oool0oooo03T0oooo1P3o000D0?ooo`80o`009P3oool00`3o0000oooo 0?ooo`050?ooo`<0o`00?@3oool00`000000oooo0?ooo`050?ooo`006P3oool00`000000oooo0?oo o`0W0?ooo`030000003oool0oooo03P0oooo00<0o`000?ooo`3oool00`3o00060?ooo`80o`003`3o ool20?l000040?ooo`3o0000o`000?l000/0oooo0`3o000C0?ooo`030?l0003oool0oooo00<0oooo 1@3o000l0?ooo`030000003oool0oooo00D0oooo000G0?ooo`@00000:@3oool00`000000oooo0?oo o`0g0?ooo`030?l0003oool0oooo00T0oooo00<0o`000?ooo`3oool04@3oool50?l000D0oooo2@3o 000G0?ooo`T0o`00>@3oool00`000000oooo0?ooo`050?ooo`005`3oool00`000000oooo0?ooo`0Z 0?ooo`030000003oool0oooo03H0oooo00<0o`000?ooo`3oool0203oool20?l001@0oooo2P3o0004 0?ooo`P0o`004P3oool20?l000030?ooo`3o0000o`0000<0o`000`3oool30?l003H0oooo00<00000 0?ooo`3oool01@3oool001L0oooo1000000Y0?ooo`030000003oool0oooo03@0oooo0P3o000:0?oo o`030?l0003oool0oooo01@0oooo1@3o00090?ooo`D0o`000`3oool30?l000`0oooo0`3o00020?oo o`D0o`001`3oool30?l00080oooo0`3o000^0?ooo`030000003oool0oooo00D0oooo00140?ooo`03 0000003oool0oooo03<0oooo00<0o`000?ooo`3oool02@3oool00`3o0000oooo0?ooo`0F0?ooo`<0 o`002`3oool30?l000L0oooo0`3o00070?ooo`80o`001`3oool00`3o0000oooo0?ooo`0:0?ooo`H0 o`00;@3oool00`000000oooo0?ooo`050?ooo`005`3oool4000002T0oooo00<000000?ooo`3oool0 @3oool50?l000h0oooo00<0o`000?ooo`3oool03`3oool20?l002P0oooo00<000000?oo o`3oool01@3oool001L0oooo1000000Y0?ooo`030000003oool0oooo02/0oooo1@3o00080?ooo`03 0?l0003oool0oooo03X0oooo0`3o000S0?ooo`030?l0003oool0oooo02D0oooo00<000000?ooo`3o ool01@3oool004@0oooo00<000000?ooo`3oool0:`3oool50?l000L0oooo00<0o`000?ooo`3oool0 HP3oool20?l002D0oooo00<000000?ooo`3oool01@3oool001L0oooo1@00000X0?ooo`030000003o ool0oooo02T0oooo0P3o0000103oool0o`000?l0003o00070?ooo`030?l0003oool0oooo06D0oooo 1@3o000P0?ooo`030000003oool0oooo00D0oooo000I0?ooo`030000003oool0oooo02P0oooo00<0 00000?ooo`3oool09`3oool20?l000`0oooo00<0o`000?ooo`3oool0D`3oool20?l00180oooo1@3o 000I0?ooo`<0o`000`3oool00`000000oooo0?ooo`050?ooo`006@3oool00`000000oooo0?ooo`0X 0?ooo`030000003oool0oooo02H0oooo00<0o`000?ooo`3oool02`3oool00`3o0000oooo0?ooo`1F 0?ooo`030?l0003oool0oooo00l0oooo1@3o000H0?ooo`D0o`000P3oool00`000000oooo0?ooo`05 0?ooo`006@3oool00`000000oooo0?ooo`0R0?ooo`800000103oool00`000000oooo0?ooo`0T0?oo o`80o`00J03oool00`3o0000oooo0?ooo`0>0?ooo`P0o`005@3oool50?l00080oooo00<000000?oo o`3oool01@3oool001P0oooo0P00000S0?ooo`040000003oool0oooo000000<0oooo00<000000?oo o`3oool07P3oool30?l000030?ooo`3o0000o`0006/0oooo00<0o`000?ooo`3oool03P3oool30?l0 00@0oooo0P3o000B0?ooo`H0o`000P3oool00`000000oooo0?ooo`050?ooo`00?@3oool010000000 oooo0?ooo`0000030?ooolL000001`3oool001P0oooo0`00000R0?ooo`040000003oool0oooo0000 00<0oooo00<000000?ooo`3oool07@3oool50?l000d0oooo0P3o001P0?ooo`030?l0003oool0oooo 01L0oooo0`3o0000103oool0o`000?l0003o00030?ooo`<0o`002`3oool00`000000oooo0?ooo`05 0?ooo`005`3oool01@000000oooo0?ooo`3oool000000240oooo00@000000?ooo`3oool000000`3o ool00`000000oooo0?ooo`0M0?ooo`D0o`00303oool00`3o0000oooo0?ooo`1m0?ooo`L0o`003P3o ool00`000000oooo0?ooo`050?ooo`005`3oool01@000000oooo0?ooo`3oool000000280oooo0P00 00040?ooo`030000003oool0oooo01d0oooo103o000<0?ooo`030?l0003oool0oooo07h0oooo1@3o 000@0?ooo`030000003oool0oooo00D0oooo000G0?ooo`050000003oool0oooo0?ooo`000000:03o ool00`000000oooo0?ooo`0L0?ooo`030?l0003oool0oooo00d0oooo00<0o`000?ooo`3oool0IP3o ool00`3o0000oooo0?ooo`0F0?ooo`D0o`00403oool00`000000oooo0?ooo`050?ooo`00603oool3 000002T0oooo00<000000?ooo`3oool06`3oool00`3o0000oooo0?ooo`0=0?ooo`030?l0003oool0 oooo06L0oooo00<0o`000?ooo`3oool05`3oool30?l00140oooo00<000000?ooo`3oool01@3oool0 04@0oooo00<000000?ooo`3oool06P3oool00`3o0000oooo0?ooo`0=0?ooo`030?l0003oool0oooo 06T0oooo00<0o`000?ooo`3oool0:P3oool00`000000oooo0?ooo`050?ooo`005`3oool200000003 0?ooo`000000000002P0oooo00<000000?ooo`3oool06@3oool00`3o0000oooo0?ooo`1k0?ooo`80 o`00:P3oool00`000000oooo0?ooo`050?ooo`005`3oool010000000oooo0?ooo`00000Y0?ooo`03 0000003oool0oooo01P0oooo00<0o`000?ooo`3oool0OP3oool00`3o0000oooo0?ooo`0W0?ooo`03 0000003oool0oooo00D0oooo000G0?ooo`040000003oool0oooo000002T0oooo00<000000?ooo`3o ool05`3oool00`3o0000oooo0?ooo`200?ooo`030?l0003oool0oooo02H0oooo00<000000?ooo`3o ool01@3oool001L0oooo00@000000?ooo`3oool00000:@3oool00`000000oooo0?ooo`0F0?ooo`03 0?l0003oool0oooo00`0oooo0P3o001d0?ooo`030?l0003oool0oooo02D0oooo00<000000?ooo`3o ool01@3oool001H0oooo1@00000Y0?ooo`030000003oool0oooo01D0oooo00<0o`000?ooo`3oool0 303oool00`3o0000oooo0?ooo`2L0?ooo`030000003oool0oooo00D0oooo00140?ooo`030000003o ool0oooo01@0oooo00<0o`000?ooo`3oool0303oool00`3o0000oooo0?ooo`2M0?ooo`030000003o ool0oooo00D0oooo00140?ooo`030000003oool0oooo01<0oooo00<0o`000?ooo`3oool0303oool0 0`3o0000oooo0?ooo`1j0?ooo`80o`008P3oool00`000000oooo0?ooo`050?ooo`00A03oool00`00 0000oooo0?ooo`0?0?ooo`@0o`003P3oool00`3o0000oooo0?ooo`1m0?ooo`030?l0003oool0oooo 01l0oooo00<000000?ooo`3oool01@3oool004@0oooo00<000000?ooo`3oool03P3oool50?l000d0 oooo00<0o`000?ooo`3oool0O`3oool00`3o0000oooo0?ooo`0N0?ooo`030000003oool0oooo00D0 oooo00140?ooo`030000003oool0oooo00h0oooo1@3o002@0?ooo`030?l0003oool0oooo01d0oooo 00<000000?ooo`3oool01@3oool004@0oooo00<000000?ooo`3oool03P3oool50?l00940oooo00<0 o`000?ooo`3oool0703oool00`000000oooo0?ooo`050?ooo`00A03oool00`000000oooo0?ooo`0? 0?ooo`<0o`002@3oool00`3o0000oooo0?ooo`270?ooo`030?l0003oool0oooo01/0oooo00<00000 0?ooo`3oool01@3oool001H0oooo1@00000Y0?ooo`030000003oool0oooo0100oooo00<0o`000?oo o`3oool01P3oool20?l00:P0oooo00<000000?ooo`3oool01@3oool001L0oooo00@000000?ooo`3o ool00000:@3oool00`000000oooo0?ooo`0@0?ooo`030?l0003oool0oooo00@0oooo0P3o002A0?oo o`030?l0003oool0oooo01H0oooo00<000000?ooo`3oool01@3oool001L0oooo00@000000?ooo`3o ool00000:@3oool00`000000oooo0?ooo`0@0?ooo`030?l0003oool0oooo0080oooo0P3o002D0?oo o`80o`005P3oool00`000000oooo0?ooo`050?ooo`005`3oool00`000000oooo0?ooo`0Z0?ooo`03 0000003oool0oooo0100oooo00D0o`000?ooo`3oool0oooo0?l0002H0?ooo`80o`00503oool00`00 0000oooo0?ooo`050?ooo`005`3oool00`000000oooo0?ooo`0Z0?ooo`030000003oool0oooo00l0 oooo00<0o`000?ooo`3oool0W@3oool20?l00180oooo00<000000?ooo`3oool01@3oool001H0oooo 0`00000[0?ooo`030000003oool0oooo00l0oooo0P3o002P0?ooo`030?l0003oool0oooo00l0oooo 00<000000?ooo`3oool01@3oool001P0oooo1000000X0?ooo`030000003oool0oooo00/0oooo1@3o 002c0?ooo`030000003oool0oooo00D0oooo000G0?ooo`030000003oool0oooo02X0oooo00<00000 0?ooo`3oool0203oool30?l000@0oooo00<0o`000?ooo`3oool0Y03oool70?l000H0oooo00<00000 0?ooo`3oool01@3oool001L0oooo1@00000X0?ooo`030000003oool0oooo0080oooo0P3o000;0?oo o`030?l0003oool0oooo0:X0oooo0`3o00040?ooo`030000003oool0oooo00D0oooo000G0?ooo`05 0000003oool0oooo0?ooo`000000:03oool00`000000oooo0?ooo`0>0?ooo`030?l0003oool0oooo 0;80oooo00<000000?ooo`3oool01@3oool001P0oooo0`00000Y0?ooo`030000003oool0oooo00h0 oooo00<0o`000?ooo`3oool0/P3oool00`000000oooo0?ooo`050?ooo`00A03oool00`000000oooo 0?ooo`0>0?ooo`030?l0003oool0oooo0;80oooo00<000000?ooo`3oool01@3oool001P0oooo0P00 000Z0?ooo`030000003oool0oooo00h0oooo00<0o`000?ooo`3oool0/P3oool00`000000oooo0?oo o`050?ooo`00603oool2000002X0oooo00<000000?ooo`3oool03P3oool00`3o0000oooo0?ooo`2b 0?ooo`030000003oool0oooo00D0oooo000G0?ooo`040000003oool00000000002T0oooo00<00000 0?ooo`3oool03@3oool00`3o0000oooo0?ooo`2c0?ooo`030000003oool0oooo00D0oooo000G0?oo o`040000003oool0oooo000002T0oooo00<000000?ooo`3oool03@3oool00`3o0000oooo0?ooo`2c 0?ooo`030000003oool0oooo00D0oooo000F0?ooo`8000000P3oool2000002P0oooo00<000000?oo o`3oool03@3oool00`3o0000oooo0?ooo`2c0?ooo`030000003oool0oooo00D0oooo00140?ooo`03 0000003oool0oooo00d0oooo00<0o`000?ooo`3oool0/`3oool00`000000oooo0?ooo`050?ooo`00 603oool4000002P0oooo00<000000?ooo`3oool0303oool00`3o0000oooo0?ooo`2d0?ooo`030000 003oool0oooo00D0oooo000G0?ooo`030000003oool0oooo02X0oooo00<000000?ooo`3oool0303o ool00`3o0000oooo0?ooo`2d0?ooo`030000003oool0oooo00D0oooo000G0?ooo`D00000:03oool0 0`000000oooo0?ooo`0<0?ooo`030?l0003oool0oooo0;@0oooo00<000000?ooo`3oool01@3oool0 01L0oooo00D000000?ooo`3oool0oooo0000000X0?ooo`030000003oool0oooo00`0oooo00<0o`00 0?ooo`3oool0]03oool00`000000oooo0?ooo`050?ooo`00603oool3000002T0oooo00<000000?oo o`3oool0303oool00`3o0000oooo0?ooo`2d0?ooo`030000003oool0oooo00D0oooo00140?ooo`03 0000003oool0oooo00/0oooo00<0o`000?ooo`3oool0]@3oool00`000000oooo0?ooo`050?ooo`00 5`3oool5000002P0oooo00<000000?ooo`3oool02`3oool00`3o0000oooo0?ooo`2e0?ooo`030000 003oool0oooo00D0oooo000I0?ooo`030000003oool0oooo02P0oooo00<000000?ooo`3oool02`3o ool00`3o0000oooo0?ooo`2e0?ooo`030000003oool0oooo00D0oooo000I0?ooo`030000003oool0 oooo02P0oooo00<000000?ooo`3oool02`3oool00`3o0000oooo0?ooo`2e0?ooo`030000003oool0 oooo00D0oooo000I0?ooo`030000003oool0oooo01H0oooo0P0000040?ooo`8000000`3oool30000 00@0oooo00<000000?ooo`3oool02`3oool00`3o0000oooo0?ooo`2e0?ooo`030000003oool0oooo 00D0oooo000I0?ooo`030000003oool0oooo01D0oooo00@000000?ooo`3oool000000`3oool20000 00H0oooo00D000000?ooo`3oool0oooo0000000<0?ooo`030?l0003oool0oooo0;H0oooo00<00000 0?ooo`3oool01@3oool001T0oooo00<000000?ooo`3oool05@3oool010000000oooo0?ooo`00000; 0?ooo`040000003oool0oooo0?ooo`<000002P3oool00`3o0000oooo0?ooo`2f0?ooo`030000003o ool0oooo00D0oooo000G0?ooo`<000005`3oool010000000oooo0?ooo`0000080?ooo`<00000103o ool00`000000oooo0?ooo`0:0?ooo`030?l0003oool0oooo0;H0oooo00<000000?ooo`3oool01@3o ool00340oooo00@000000?ooo`3oool00000203oool00`000000oooo0?ooo`040?ooo`030000003o ool0oooo00X0oooo00<0o`000?ooo`3oool0]P3oool00`000000oooo0?ooo`050?ooo`000?ooo`030000003oool0oooo00P0oooo 00@000000?ooo`3oool000003P3oool00`000000oooo0?ooo`090?ooo`030000003oool0oooo00`0 oooo00<000000?ooo`3oool02`3oool00`000000oooo0?ooo`0<0?ooo`030000003oool0oooo00/0 oooo00<000000?ooo`3oool0303oool00`000000oooo0?ooo`0=0?ooo`030000003oool0oooo00`0 oooo00<000000?ooo`3oool02`3oool00`000000oooo0?ooo`0<0?ooo`030000003oool0oooo0080 oooo001=0?ooo`040000003oool0oooo000000h0oooo00<000000?ooo`3oool0203oool010000000 oooo0?ooo`00000<0?ooo`<000002`3oool00`000000oooo0?ooo`0<0?ooo`030000003oool0oooo 00/0oooo00<000000?ooo`3oool03@3oool00`000000oooo0?ooo`0;0?ooo`030000003oool0oooo 00`0oooo00<000000?ooo`3oool0303oool00`000000oooo0?ooo`0<0?ooo`030000003oool0oooo 00/0oooo00<000000?ooo`3oool0303oool00`000000oooo0?ooo`020?ooo`00C@3oool010000000 oooo0?ooo`00000<0?ooo`8000002`3oool3000000`0oooo00@000000?ooo`3oool000002`3oool0 0`000000oooo0?ooo`0<0?ooo`030000003oool0oooo00/0oooo00<000000?ooo`3oool03P3oool0 0`000000oooo0?ooo`0;0?ooo`030000003oool0oooo00`0oooo00<000000?ooo`3oool02@3oool2 000000d0oooo0P00000<0?ooo`8000003@3oool2000000D0oooo001=0?ooo`040000003oool0oooo 000000h0oooo00<000000?ooo`3oool0203oool00`000000oooo0?ooo`0<0?ooo`040000003oool0 oooo000000/0oooo00<000000?ooo`3oool0303oool00`000000oooo0?ooo`0;0?ooo`030000003o ool0oooo00/0oooo00@000000?ooo`3oool000002P3oool010000000oooo0?ooo`00000;0?ooo`04 0000003oool0oooo000000d0oooo00<000000?ooo`3oool0303oool00`000000oooo0?ooo`0;0?oo o`030000003oool0oooo00`0oooo00<000000?ooo`3oool00P3oool004h0oooo0P00000<0?ooo`<0 0000303oool3000000`0oooo0P00000;0?ooo`8000003@3oool2000000`0oooo0P00000>0?ooo`80 0000303oool2000000d0oooo0P00000;0?ooo`<00000303oool3000000/0oooo0`00000<0?ooo`<0 00001@3oool004d0oooo00D000000?ooo`000000oooo0000000;0?ooo`800000303oool2000000d0 oooo0P00000;0?ooo`@000002`3oool3000000`0oooo0P00000<0?ooo`<00000303oool3000000`0 oooo00<000000?ooo`3oool02`3oool2000000`0oooo0`00000<0?ooo`800000303oool3000000D0 oooo001=0?ooo`050000003oool000000?ooo`0000002P3oool010000000oooo0?ooo`00000:0?oo o`040000003oool0oooo000000/0oooo00@000000?ooo`3oool000002`3oool00`000000oooo0?oo o`0>0?ooo`030000003oool0oooo00P0oooo00@000000?ooo`3oool00000303oool00`000000oooo 0?ooo`0<0?ooo`030000003oool0oooo00/0oooo00<000000?ooo`3oool02P3oool010000000oooo 0?ooo`00000>0?ooo`030000003oool0oooo00P0oooo00@000000?ooo`3oool000003P3oool00`00 0000oooo0?ooo`020?ooo`00C@3oool01@000000oooo0000003oool0000000X0oooo00@000000?oo o`3oool000002P3oool010000000oooo0?ooo`00000;0?ooo`040000003oool0oooo000000`0oooo 00<000000?ooo`3oool03@3oool00`000000oooo0?ooo`080?ooo`040000003oool0oooo000000`0 oooo00<000000?ooo`3oool02P3oool4000000d0oooo00<000000?ooo`3oool02@3oool010000000 oooo0?ooo`00000>0?ooo`030000003oool0oooo00P0oooo00@000000?ooo`3oool00000303oool3 000000@0oooo001=0?ooo`050000003oool000000?ooo`0000002P3oool010000000oooo0?ooo`00 000:0?ooo`040000003oool0oooo000000/0oooo00@000000?ooo`3oool000003@3oool00`000000 oooo0?ooo`090?ooo`<00000303oool2000000d0oooo00<000000?ooo`3oool02P3oool00`000000 oooo0000000>0?ooo`030000003oool0oooo00T0oooo00@000000?ooo`3oool00000303oool20000 00/0oooo0`00000<0?ooo`040000003oool0oooo000000@0oooo001<0?ooo`H000002P3oool01000 0000oooo0?ooo`00000:0?ooo`040000003oool0oooo000000/0oooo00@000000?ooo`3oool00000 2P3oool010000000oooo0?ooo`00000;0?ooo`030000003oool0oooo00/0oooo00@000000?ooo`3o ool00000303oool00`000000oooo0?ooo`0:0?ooo`030000003oool0000000l0oooo00<000000?oo o`3oool0203oool010000000oooo0?ooo`00000>0?ooo`030000003oool0oooo00P0oooo00<00000 0?ooo`3oool0303oool010000000oooo0?ooo`0000040?ooo`00G@3oool2000000`0oooo0P00000= 0?ooo`800000303oool2000000`0oooo1000000;0?ooo`800000303oool2000000d0oooo0P00000< 0?ooo`@000002`3oool2000000`0oooo0`00000<0?ooo`<00000303oool2000000D0oooo001L0?oo o`050000003oool000000?ooo`0000002@3oool01@000000oooo0000003oool0000000X0oooo00D0 00000?ooo`000000oooo0000000:0?ooo`8000003@3oool2000000`0oooo0P00000=0?ooo`800000 303oool2000000d0oooo0P00000<0?ooo`8000003@3oool2000000`0oooo0P00000=0?ooo`800000 1@3oool005`0oooo00D000000?ooo`000000oooo000000090?ooo`050000003oool000000?ooo`00 00002P3oool01@000000oooo0000003oool0000000T0oooo00@000000?ooo`3oool000002`3oool0 10000000oooo0?ooo`00000:0?ooo`040000003oool0oooo000000/0oooo00@000000?ooo`3oool0 00002P3oool010000000oooo0?ooo`00000;0?ooo`040000003oool0oooo000000X0oooo00@00000 0?ooo`3oool000002`3oool010000000oooo0?ooo`00000:0?ooo`040000003oool0oooo000000/0 oooo00@000000?ooo`3oool00000103oool005`0oooo00D000000?ooo`000000oooo000000090?oo o`050000003oool000000?ooo`0000002P3oool01@000000oooo0000003oool0000000T0oooo00@0 00000?ooo`3oool000002`3oool010000000oooo0?ooo`00000:0?ooo`040000003oool0oooo0000 00/0oooo00@000000?ooo`3oool000002P3oool010000000oooo0?ooo`00000;0?ooo`040000003o ool0oooo000000X0oooo00@000000?ooo`3oool000002`3oool010000000oooo0?ooo`00000:0?oo o`040000003oool0oooo000000/0oooo00@000000?ooo`3oool00000103oool005`0oooo00D00000 0?ooo`000000oooo000000090?ooo`050000003oool000000?ooo`0000002P3oool01@000000oooo 0000003oool0000000T0oooo00@000000?ooo`3oool000002`3oool010000000oooo0?ooo`00000: 0?ooo`040000003oool0oooo000000/0oooo00@000000?ooo`3oool000002P3oool010000000oooo 0?ooo`00000;0?ooo`040000003oool0oooo000000X0oooo00@000000?ooo`3oool000002`3oool0 10000000oooo0?ooo`00000:0?ooo`040000003oool0oooo000000/0oooo00@000000?ooo`3oool0 0000103oool005/0oooo1P0000080?ooo`H000002@3oool6000000T0oooo00@000000?ooo`3oool0 00002`3oool010000000oooo0?ooo`00000:0?ooo`040000003oool0oooo000000/0oooo00@00000 0?ooo`3oool000002P3oool010000000oooo0?ooo`00000;0?ooo`040000003oool0oooo000000X0 oooo00@000000?ooo`3oool000002`3oool010000000oooo0?ooo`00000:0?ooo`040000003oool0 oooo000000/0oooo00@000000?ooo`3oool00000103oool008P0oooo0P00000=0?ooo`800000303o ool2000000d0oooo0P00000<0?ooo`8000003@3oool2000000`0oooo0P00000=0?ooo`800000303o ool2000000d0oooo0P0000050?ooo`00Q`3oool01@000000oooo0000003oool0000000X0oooo00D0 00000?ooo`000000oooo000000090?ooo`050000003oool000000?ooo`0000002P3oool01@000000 oooo0000003oool0000000T0oooo00D000000?ooo`000000oooo0000000:0?ooo`050000003oool0 00000?ooo`0000002@3oool01@000000oooo0000003oool0000000X0oooo00D000000?ooo`000000 oooo000000090?ooo`050000003oool000000?ooo`0000002P3oool01@000000oooo0000003oool0 000000<0oooo00270?ooo`050000003oool000000?ooo`0000002P3oool01@000000oooo0000003o ool0000000T0oooo00D000000?ooo`000000oooo0000000:0?ooo`050000003oool000000?ooo`00 00002@3oool01@000000oooo0000003oool0000000X0oooo00D000000?ooo`000000oooo00000009 0?ooo`050000003oool000000?ooo`0000002P3oool01@000000oooo0000003oool0000000T0oooo 00D000000?ooo`000000oooo0000000:0?ooo`050000003oool000000?ooo`0000000`3oool008L0 oooo00D000000?ooo`000000oooo0000000:0?ooo`050000003oool000000?ooo`0000002@3oool0 1@000000oooo0000003oool0000000X0oooo00D000000?ooo`000000oooo000000090?ooo`050000 003oool000000?ooo`0000002P3oool01@000000oooo0000003oool0000000T0oooo00D000000?oo o`000000oooo0000000:0?ooo`050000003oool000000?ooo`0000002@3oool01@000000oooo0000 003oool0000000X0oooo00D000000?ooo`000000oooo000000030?ooo`00Q`3oool01@000000oooo 0000003oool0000000X0oooo00D000000?ooo`000000oooo000000090?ooo`050000003oool00000 0?ooo`0000002P3oool01@000000oooo0000003oool0000000T0oooo00D000000?ooo`000000oooo 0000000:0?ooo`050000003oool000000?ooo`0000002@3oool01@000000oooo0000003oool00000 00X0oooo00D000000?ooo`000000oooo000000090?ooo`050000003oool000000?ooo`0000002P3o ool01@000000oooo0000003oool0000000<0oooo00260?ooo`H000002@3oool6000000P0oooo1P00 00090?ooo`H00000203oool6000000T0oooo1P0000080?ooo`H000002@3oool6000000P0oooo1P00 00090?ooo`H000000`3oool00?l0oooo4`3oool00?l0oooo4`3oool00?l0oooo4`3oool00?l0oooo 4`3oool00?l0oooo4`3oool00?l0oooo4`3oool00?l0oooo4`3oool00?l0oooo4`3oool00?l0oooo 4`3oool00?l0oooo4`3oool00?l0oooo4`3oool00?l0oooo4`3oool00?l0oooo4`3oool00?l0oooo 4`3oool00?l0oooo4`3oool00?l0oooo4`3oool00?l0oooo4`3oool00?l0oooo4`3oool00?l0oooo 4`3oool00?l0oooo4`3oool008d0oooo00<000000?ooo`3oool01P3oool00`000000oooo0?ooo`0P 0?ooo`<00000EP3oool008`0oooo00<000000?ooo`3oool0203oool00`000000oooo0?ooo`0P0?oo o`030000003oool0oooo05D0oooo002;0?ooo`030000003oool0oooo00<0oooo0`0000040?ooo`03 0000003oool0oooo00H0oooo0P0000000`3oool00000000000020?ooo`@000000P3oool400000080 oooo1@0000020?ooo`030000003oool0oooo0080oooo1000001>0?ooo`00R`3oool00`000000oooo 0?ooo`020?ooo`050000003oool0oooo0?ooo`0000000`3oool00`000000oooo0?ooo`070?ooo`03 0000003oool0000000@0oooo00<000000?ooo`3oool00`3oool00`000000oooo0?ooo`020?ooo`04 0000003oool0oooo000000<0oooo00<000000?ooo`3oool01@3oool00`000000oooo0?ooo`1<0?oo o`00R`3oool00`000000oooo0?ooo`020?ooo`030000003oool0oooo00D0oooo00<000000?ooo`3o ool01`3oool3000000@0oooo00<000000?ooo`3oool00`3oool00`000000oooo0?ooo`020?ooo`@0 00000P3oool00`000000oooo000000030?ooo`@00000CP3oool008/0oooo00<000000?ooo`3oool0 0P3oool01@000000oooo0?ooo`3oool0000000<0oooo00<000000?ooo`3oool01`3oool00`000000 oooo000000040?ooo`800000103oool2000000H0oooo00H000000?ooo`3oool000000?ooo`000003 0?ooo`030000003oool0oooo04l0oooo002<0?ooo`030000003oool0oooo0080oooo100000020?oo o`030000003oool0oooo00T0oooo00<000000?ooo`3oool00P3oool2000000040?ooo`0000000000 0?ooo`80000000<0oooo0000000000000P3oool3000000040?ooo`00000000000?ooo`8000000P3o ool4000004h0oooo002=0?ooo`030000003oool0oooo00H0oooo00<000000?ooo`3oool02@3oool2 000006h0oooo003o0?oooa<0oooo003o0?oooa<0oooo003o0?oooa<0oooo0000\ \>"], ImageRangeCache->{{{0, 273.25}, {287, 0}} -> {-5.08186, -1.12464, 0.0689647, 0.0102895}}] }, Open ]], Cell[CellGroupData[{ Cell[BoxData[ \(graph = Plot[\n\t\teigengenes3, \n\t\t{x, 0, arrays - 1}, \n\t\t PlotStyle -> {RGBColor[0, 0, 1], Dashing[{0.03, 0.02}]}, \n\t\t DisplayFunction -> Identity]; \n labelx = ColumnForm[{"\<(c) Arrays\>"}, Center]; \n labely = ColumnForm[{"\< \>", "\"}, Center]; \n framex = Table[{a - 1, arraynames[\([2, a]\)]}, {a, 1, arrays}]; \n framey = {\(-1\), \(-0.5\), 0, 0.5, 1}; \n coordinates = Table[{a - 1, eigengenes[\([3, a]\)]}, \t{a, 1, arrays}]; \n points = Table[Point[coordinates[\([a]\)]], \t{a, 1, arrays}]; \n line = Line[coordinates]; \n g = Show[\n \t\t{Graphics[{RGBColor[0, 0, 1], PointSize[0.022], points}], \n\t\t\t Graphics[{RGBColor[0, 0, 1], line}], \n\t\t\tgraph, \n\t\t\t Graphics[{RGBColor[0, 0, 1], Text[\*"\"\<\!\(\@\(2\/T\)\)sin(\!\(\(2 \[Pi]t\)\/T\))\>\"", { 9, \(-0.7\)}]}]}, \n\tFrame -> True, \n\t FrameLabel -> {None, labely, labelx, None}, \n\t GridLines -> {None, {{0, RGBColor[0, 0, 0]}}}, \n\t FrameTicks -> {None, framey, framex, None}, \n\t PlotRange -> {\(-1.05\), 1.05}, \n\tDisplayFunction -> Identity]; \n g = FullGraphics[g]; \n g[\([1, 2]\)] = g[\([1, 2]\)] /. \n\t\t Text[labely, {b_, c_}, {1. , 0. }] -> \n\t\t\t Text[labely, {b - 3.6, c}, {0, 0}, {0, 1}]; \n g[\([1, 2]\)] = g[\([1, 2]\)] /. \n\t\t Text[labelx, {b_, c_}, {0. , \(-1. \)}] -> \n\t\t\t Text[labelx, {b, c + 0.6}, {0, \(-1\)}, {1, 0}]; \n g[\([1, 2]\)] = g[\([1, 2]\)] /. \n\t\t Text[a_, {b_, c_}, {0. , \(-1. \)}] -> \n\t\t\t Text[a, {b, c + 0.24}, {0, 0}, {0, 1}]; \n p3 = Show[g, \n\t\tAspectRatio -> 1.05, \n\t\tPlotRange -> All]; \)], "Input", PageBreakAbove->True, PageBreakBelow->False], Cell[GraphicsData["PostScript", "\<\ %! %%Creator: Mathematica %%AspectRatio: 1.05 MathPictureStart /Mabs { Mgmatrix idtransform Mtmatrix dtransform } bind def /Mabsadd { Mabs 3 -1 roll add 3 1 roll add exch } bind def %% Graphics %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10 scalefont setfont % Scaling calculations 0.251266 0.0544033 0.407866 0.364634 [ [.7409 .15262 -43.0625 -15.5938 ] [.7409 .15262 43.0625 15.5938 ] [.2243 .04323 -12 -4.5 ] [.2243 .04323 0 4.5 ] [.2243 .22555 -24 -4.5 ] [.2243 .22555 0 4.5 ] [.2243 .40787 -6 -4.5 ] [.2243 .40787 0 4.5 ] [.2243 .59018 -18 -4.5 ] [.2243 .59018 0 4.5 ] [.2243 .7725 -6 -4.5 ] [.2243 .7725 0 4.5 ] [.02381 .40787 -13.0625 -50 ] [.02381 .40787 13.0625 50 ] [.25127 .89373 -6.1875 -20.125 ] [.25127 .89373 6.1875 20.125 ] [.30567 .89373 -6.1875 -20.125 ] [.30567 .89373 6.1875 20.125 ] [.36007 .89373 -6.1875 -20.125 ] [.36007 .89373 6.1875 20.125 ] [.41448 .89373 -6.1875 -20.125 ] [.41448 .89373 6.1875 20.125 ] [.46888 .89373 -6.1875 -20.125 ] [.46888 .89373 6.1875 20.125 ] [.52328 .89373 -6.1875 -20.125 ] [.52328 .89373 6.1875 20.125 ] [.57769 .89373 -6.1875 -20.125 ] [.57769 .89373 6.1875 20.125 ] [.63209 .89373 -6.1875 -20.125 ] [.63209 .89373 6.1875 20.125 ] [.68649 .89373 -6.1875 -20.125 ] [.68649 .89373 6.1875 20.125 ] [.7409 .89373 -6.1875 -20.125 ] [.7409 .89373 6.1875 20.125 ] [.7953 .89373 -6.1875 -20.125 ] [.7953 .89373 6.1875 20.125 ] [.8497 .89373 -6.1875 -20.125 ] [.8497 .89373 6.1875 20.125 ] [.90411 .89373 -6.1875 -20.125 ] [.90411 .89373 6.1875 20.125 ] [.95851 .89373 -6.1875 -20.125 ] [.95851 .89373 6.1875 20.125 ] [.60489 1.025 -32 0 ] [.60489 1.025 32 12.625 ] [ 0 0 0 0 ] [ 1 1.05 0 0 ] ] MathScale % Start of Graphics 1 setlinecap 1 setlinejoin newpath 0 0 1 r .022 w .25127 .46144 Mdot .30567 .43368 Mdot .36007 .45643 Mdot .41448 .51941 Mdot .46888 .56358 Mdot .52328 .52769 Mdot .57769 .47115 Mdot .63209 .38184 Mdot .68649 .32485 Mdot .7409 .35969 Mdot .7953 .41919 Mdot .8497 .23613 Mdot .90411 .25437 Mdot .95851 .31331 Mdot .5 Mabswid [ ] 0 setdash .25127 .46144 m .30567 .43368 L .36007 .45643 L .41448 .51941 L .46888 .56358 L .52328 .52769 L .57769 .47115 L .63209 .38184 L .68649 .32485 L .7409 .35969 L .7953 .41919 L .8497 .23613 L .90411 .25437 L .95851 .31331 L s [ .03 .02 ] 0 setdash .25127 .40787 m .27996 .44372 L .31125 .48011 L .34063 .50928 L .36889 .53087 L .38343 .53903 L .39151 .54264 L .39898 .54535 L .40656 .54748 L .41056 .54835 L .4148 .54908 L .41657 .54933 L .41847 .54956 L .42012 .54972 L .42191 .54986 L .423 .54993 L .42401 .54998 L .42498 .55002 L .42547 .55004 L .42601 .55005 L .42653 .55006 L .42702 .55007 L .42797 .55007 L .42884 .55007 L .42975 .55006 L .43066 .55004 L .43117 .55002 L .43164 .55 L .43344 .54991 L .43506 .5498 L .43679 .54965 L .44038 .54923 L .44434 .54859 L .45136 .54704 L .45795 .54509 L .47294 .53893 L .48668 .53123 L .51611 .50876 L .54441 .48065 L .57453 .44576 L .60352 .40959 L .63434 .37108 L .66403 .33654 L .69259 .30794 L .70706 .29579 L .72298 .28457 L .7381 .27619 L .75224 .2705 L .75997 .2683 L .76378 .26746 L Mistroke .76731 .26682 L .7705 .26636 L .77389 .266 L .77583 .26585 L .77679 .26579 L .77766 .26575 L .77844 .26572 L .7793 .26569 L .78016 .26567 L .78107 .26566 L .78205 .26566 L .78294 .26567 L .78341 .26568 L .78393 .26569 L .78498 .26572 L .78589 .26576 L .78688 .26581 L .78867 .26593 L .79043 .26609 L .79228 .26629 L .79559 .26674 L .79944 .26742 L .80302 .2682 L .81113 .27049 L .81897 .27338 L .82635 .2767 L .84016 .28441 L .86877 .30612 L .89919 .33635 L .92849 .37039 L .95667 .40554 L .95851 .40787 L Mfstroke gsave .7409 .15262 -104.062 -19.5938 Mabsadd m 1 1 Mabs scale currentpoint translate 0 39.1875 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 35.187500 moveto 558.000000 35.187500 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 35.187500 lineto closepath clip newpath 63.000000 23.812500 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 1.000000 setrgbcolor 0.000000 0.000000 rmoveto 0.000000 0.000000 1.000000 setrgbcolor %%IncludeResource: font Math2Mono %%IncludeFont: Math2Mono /Math2Mono findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 1.000000 setrgbcolor 63.000000 22.812500 moveto ($) show 72.750000 22.812500 moveto (%) show 75.375000 22.812500 moveto (%) show 78.000000 22.812500 moveto (%) show 80.625000 22.812500 moveto (%) show 83.250000 22.812500 moveto (%) show 83.750000 22.812500 moveto (%) show 77.125000 17.875000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 1.000000 setrgbcolor (2) show %%IncludeResource: font Math1Mono %%IncludeFont: Math1Mono /Math1Mono findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 1.000000 setrgbcolor 75.812500 23.812500 moveto (\\200) show 77.687500 23.812500 moveto (\\200) show 79.562500 23.812500 moveto (\\200) show 81.437500 23.812500 moveto (\\200) show 82.625000 23.812500 moveto (\\200) show 77.125000 30.062500 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 1.000000 setrgbcolor (T) show 88.312500 23.812500 moveto (sin) show %%IncludeResource: font Math2Mono %%IncludeFont: Math2Mono /Math2Mono findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 1.000000 setrgbcolor 106.312500 23.812500 moveto (H) show 115.375000 17.875000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 1.000000 setrgbcolor (2) show 121.375000 17.875000 moveto %%IncludeResource: font Math1Mono %%IncludeFont: Math1Mono /Math1Mono findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 1.000000 setrgbcolor ( ) show 124.000000 17.875000 moveto %%IncludeResource: font Math1Mono %%IncludeFont: Math1Mono /Math1Mono findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 1.000000 setrgbcolor (p) show %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 1.000000 setrgbcolor (t) show %%IncludeResource: font Math1Mono %%IncludeFont: Math1Mono /Math1Mono findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 1.000000 setrgbcolor 114.062500 23.812500 moveto (\\200) show 115.937500 23.812500 moveto (\\200) show 117.812500 23.812500 moveto (\\200) show 119.687500 23.812500 moveto (\\200) show 121.562500 23.812500 moveto (\\200) show 123.437500 23.812500 moveto (\\200) show 125.312500 23.812500 moveto (\\200) show 127.187500 23.812500 moveto (\\200) show 129.062500 23.812500 moveto (\\200) show 130.937500 23.812500 moveto (\\200) show 132.812500 23.812500 moveto (\\200) show 134.687500 23.812500 moveto (\\200) show 135.500000 23.812500 moveto (\\200) show 122.687500 30.062500 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 1.000000 setrgbcolor (T) show %%IncludeResource: font Math2Mono %%IncludeFont: Math2Mono /Math2Mono findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 1.000000 setrgbcolor 139.125000 23.812500 moveto (L) show 145.125000 23.812500 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 1.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Math1Mono %%+ font Math2Mono %%+ font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Math1Mono %%+ Math2Mono %%+ Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Math1Mono %%+ font Math2Mono %%+ font Courier grestore 0 g .25 Mabswid [ ] 0 setdash .23359 .40787 m .97619 .40787 L s .23359 .025 m .97619 .025 L s .23359 .04323 m .23823 .04323 L s [(-1)] .2243 .04323 1 0 Mshowa .23359 .22555 m .23823 .22555 L s [(-0.5)] .2243 .22555 1 0 Mshowa .23359 .40787 m .23823 .40787 L s [(0)] .2243 .40787 1 0 Mshowa .23359 .59018 m .23823 .59018 L s [(0.5)] .2243 .59018 1 0 Mshowa .23359 .7725 m .23823 .7725 L s [(1)] .2243 .7725 1 0 Mshowa .23359 .025 m .23359 .79073 L s gsave .02381 .40787 -111 -17.0625 Mabsadd m 1 1 Mabs scale currentpoint translate 111 17.0625 translate 90 rotate -111 -17.0625 translate 0 34.125 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 30.125000 moveto 558.000000 30.125000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 30.125000 lineto closepath clip newpath 108.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 114.000000 13.000000 moveto 0.000000 0.000000 rmoveto 63.000000 26.812500 moveto 0.000000 0.000000 rmoveto 63.000000 26.812500 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (Expression) show 129.000000 26.812500 moveto (Level) show 159.000000 26.812500 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .25127 .78299 m .25127 .79073 L s gsave .25127 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (0) show 81.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .30567 .78299 m .30567 .79073 L s gsave .30567 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (30) show 87.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .36007 .78299 m .36007 .79073 L s gsave .36007 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (60) show 87.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .41448 .78299 m .41448 .79073 L s gsave .41448 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (90) show 87.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .46888 .78299 m .46888 .79073 L s gsave .46888 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (120) show 93.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .52328 .78299 m .52328 .79073 L s gsave .52328 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (150) show 93.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .57769 .78299 m .57769 .79073 L s gsave .57769 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (180) show 93.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .63209 .78299 m .63209 .79073 L s gsave .63209 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (210) show 93.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .68649 .78299 m .68649 .79073 L s gsave .68649 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (240) show 93.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .7409 .78299 m .7409 .79073 L s gsave .7409 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (270) show 93.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .7953 .78299 m .7953 .79073 L s gsave .7953 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (300) show 93.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .8497 .78299 m .8497 .79073 L s gsave .8497 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (330) show 93.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .90411 .78299 m .90411 .79073 L s gsave .90411 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (360) show 93.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .95851 .78299 m .95851 .79073 L s gsave .95851 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (390) show 93.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .23359 .79073 m .97619 .79073 L s gsave .60489 1.025 -93 -4 Mabsadd m 1 1 Mabs scale currentpoint translate 0 20.625 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.625000 moveto 558.000000 16.625000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.625000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto %%IncludeResource: font Math2Mono %%IncludeFont: Math2Mono /Math2Mono findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 63.000000 13.000000 moveto (H) show 69.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (c) show %%IncludeResource: font Math2Mono %%IncludeFont: Math2Mono /Math2Mono findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 75.000000 13.000000 moveto (L) show 87.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (Arrays) show 123.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Math2Mono %%+ font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Math2Mono %%+ Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Math2Mono %%+ font Courier grestore .97619 .025 m .97619 .79073 L s 0 0 m 1 0 L 1 1.05 L 0 1.05 L closepath clip newpath % End of Graphics MathPictureEnd \ \>"], "Graphics", PageBreakAbove->False, PageBreakBelow->False, GroupPageBreakWithin->False, ImageSize->{272.25, 285.875}, ImageMargins->{{43, 0}, {0, 0}}, ImageRegion->{{0, 1}, {0, 1}}, ImageCache->GraphicsData["Bitmap", "\<\ CF5dJ6E]HGAYHf4PAg9QL6QYHgP3oool00`00 0?l0oooo0?ooo`1S0?ooo`030000003oool0oooo00D0oooo00140?ooo`030000003oool0003o00@0 003o2@3oool00`000?l0oooo0?ooo`0<0?ooo`D0003o>@3oool00`000?l0oooo0?ooo`1T0?ooo`03 0000003oool0oooo00D0oooo00140?ooo`030000003oool0003o00@0003o2P3oool00`000?l0oooo 0?ooo`0<0?ooo`@0003o0?ooo`030000o`3oool0oooo00@0oooo1@00 0?me0?ooo`030000003oool0oooo00D0oooo000G0?ooo`040000003oool00000000002T0oooo00<0 00000?ooo`3oool08@3oool20000o`h0oooo00<0003o0?ooo`3oool02`3oool20000o`H0oooo1@00 0?me0?ooo`030000003oool0oooo00D0oooo000G0?ooo`040000003oool0oooo000002T0oooo00<0 00000?ooo`3oool08`3oool20000o`d0oooo0P000?l90?ooo`80003o1`3oool00`000?l0oooo0000 o`020000ogH0oooo00<000000?ooo`3oool01@3oool001H0oooo0P0000020?ooo`800000:03oool0 0`000000oooo0?ooo`0U0?ooo`80003o3@3oool00`000?l0oooo0?ooo`040?ooo`80003o1`3oool2 0000og/0oooo00<000000?ooo`3oool01@3oool004@0oooo00<000000?ooo`3oool09`3oool00`00 0?l0oooo0?ooo`0;0?ooo`040000o`3oool0oooo0?ooo`80003o1`3oool20000ogd0oooo00<00000 0?ooo`3oool01@3oool001P0oooo1000000X0?ooo`030000003oool0oooo02`0oooo0P000?l60?oo o`040000o`3oool0003o0000o`T0oooo00<0003o0?ooo`3oool0O@3oool00`000000oooo0?ooo`05 0?ooo`005`3oool00`000000oooo0?ooo`0Z0?ooo`030000003oool0oooo02h0oooo1P000?l40?oo o`030000o`3oool0oooo00@0oooo0P000?n00?ooo`030000003oool0oooo00D0oooo000G0?ooo`D0 0000:03oool00`000000oooo0?ooo`0i0?ooo`040000o`3oool0oooo0?ooo`80003oPP3oool00`00 0000oooo0?ooo`050?ooo`005`3oool01@000000oooo0?ooo`3oool0000002P0oooo00<000000?oo o`3oool0>P3oool30000oh@0oooo00<000000?ooo`3oool01@3oool001P0oooo0`00000Y0?ooo`03 0000003oool0oooo03T0oooo1@000?n30?ooo`030000003oool0oooo00D0oooo00140?ooo`030000 003oool0oooo03T0oooo1@000?n30?ooo`030000003oool0oooo00D0oooo000G0?ooo`D00000:03o ool00`000000oooo0?ooo`0i0?ooo`D0003oP`3oool00`000000oooo0?ooo`050?ooo`006@3oool0 0`000000oooo0?ooo`0X0?ooo`030000003oool0oooo03X0oooo0`000?n40?ooo`030000003oool0 oooo00D0oooo000I0?ooo`030000003oool0oooo02P0oooo00<000000?ooo`3oool0`@3oool00`00 0000oooo0?ooo`050?ooo`006@3oool00`000000oooo0?ooo`0F0?ooo`800000103oool2000000<0 oooo0`0000040?ooo`030000003oool0oooo0<40oooo00<000000?ooo`3oool01@3oool001T0oooo 00<000000?ooo`3oool05@3oool010000000oooo0?ooo`0000030?ooo`8000001P3oool01@000000 oooo0?ooo`3oool000000<<0oooo00<000000?ooo`3oool01@3oool001T0oooo00<000000?ooo`3o ool05@3oool010000000oooo0?ooo`00000;0?ooo`040000003oool0oooo0?ooo`800000`P3oool0 0`000000oooo0?ooo`050?ooo`005`3oool3000001L0oooo00@000000?ooo`3oool00000203oool3 000000@0oooo00<000000?ooo`3oool0`@3oool00`000000oooo0?ooo`050?ooo`00<@3oool01000 0000oooo0?ooo`0000080?ooo`030000003oool0oooo00@0oooo00<000000?ooo`3oool0`@3oool0 0`000000oooo0?ooo`050?ooo`000?oo o`030000003oool0oooo00P0oooo00@000000?ooo`3oool000003P3oool00`000000oooo0?ooo`02 0?ooo`00C@3oool01@000000oooo0000003oool0000000T0oooo00@000000?ooo`3oool000002P3o ool010000000oooo0?ooo`00000;0?ooo`040000003oool0oooo000000`0oooo00<000000?ooo`3o ool0303oool00`000000oooo0?ooo`090?ooo`040000003oool0oooo000000/0oooo00<000000?oo o`3oool02`3oool4000000`0oooo00<000000?ooo`3oool02@3oool010000000oooo0?ooo`00000> 0?ooo`030000003oool0oooo00P0oooo00@000000?ooo`3oool00000303oool3000000@0oooo001= 0?ooo`050000003oool000000?ooo`0000002@3oool010000000oooo0?ooo`00000:0?ooo`040000 003oool0oooo000000/0oooo00@000000?ooo`3oool000003@3oool00`000000oooo0?ooo`080?oo o`<000003@3oool2000000`0oooo00<000000?ooo`3oool02`3oool00`000000oooo0000000=0?oo o`030000003oool0oooo00T0oooo00@000000?ooo`3oool00000303oool2000000/0oooo0`00000< 0?ooo`040000003oool0oooo000000@0oooo001<0?ooo`H000002@3oool010000000oooo0?ooo`00 000:0?ooo`040000003oool0oooo000000/0oooo00@000000?ooo`3oool000002P3oool010000000 oooo0?ooo`00000:0?ooo`030000003oool0oooo00`0oooo00@000000?ooo`3oool000002`3oool0 0`000000oooo0?ooo`0;0?ooo`030000003oool0000000h0oooo00<000000?ooo`3oool0203oool0 10000000oooo0?ooo`00000>0?ooo`030000003oool0oooo00P0oooo00<000000?ooo`3oool0303o ool010000000oooo0?ooo`0000040?ooo`00G03oool2000000`0oooo0P00000=0?ooo`800000303o ool2000000/0oooo1000000<0?ooo`8000002`3oool2000000h0oooo0P00000;0?ooo`@000002`3o ool2000000`0oooo0`00000<0?ooo`<00000303oool2000000D0oooo001K0?ooo`050000003oool0 00000?ooo`0000002@3oool01@000000oooo0000003oool0000000X0oooo00D000000?ooo`000000 oooo0000000:0?ooo`800000303oool2000000d0oooo0P00000<0?ooo`8000003@3oool2000000`0 oooo0P00000<0?ooo`8000003@3oool2000000`0oooo0P00000=0?ooo`8000001@3oool005/0oooo 00D000000?ooo`000000oooo000000090?ooo`050000003oool000000?ooo`0000002P3oool01@00 0000oooo0000003oool0000000T0oooo00@000000?ooo`3oool000002P3oool010000000oooo0?oo o`00000;0?ooo`040000003oool0oooo000000X0oooo00@000000?ooo`3oool000002`3oool01000 0000oooo0?ooo`00000:0?ooo`040000003oool0oooo000000X0oooo00@000000?ooo`3oool00000 2`3oool010000000oooo0?ooo`00000:0?ooo`040000003oool0oooo000000/0oooo00@000000?oo o`3oool00000103oool005/0oooo00D000000?ooo`000000oooo000000090?ooo`050000003oool0 00000?ooo`0000002P3oool01@000000oooo0000003oool0000000T0oooo00@000000?ooo`3oool0 00002P3oool010000000oooo0?ooo`00000;0?ooo`040000003oool0oooo000000X0oooo00@00000 0?ooo`3oool000002`3oool010000000oooo0?ooo`00000:0?ooo`040000003oool0oooo000000X0 oooo00@000000?ooo`3oool000002`3oool010000000oooo0?ooo`00000:0?ooo`040000003oool0 oooo000000/0oooo00@000000?ooo`3oool00000103oool005/0oooo00D000000?ooo`000000oooo 000000090?ooo`050000003oool000000?ooo`0000002P3oool01@000000oooo0000003oool00000 00T0oooo00@000000?ooo`3oool000002P3oool010000000oooo0?ooo`00000;0?ooo`040000003o ool0oooo000000X0oooo00@000000?ooo`3oool000002`3oool010000000oooo0?ooo`00000:0?oo o`040000003oool0oooo000000X0oooo00@000000?ooo`3oool000002`3oool010000000oooo0?oo o`00000:0?ooo`040000003oool0oooo000000/0oooo00@000000?ooo`3oool00000103oool005X0 oooo1P0000080?ooo`H000002@3oool6000000T0oooo00@000000?ooo`3oool000002P3oool01000 0000oooo0?ooo`00000;0?ooo`040000003oool0oooo000000X0oooo00@000000?ooo`3oool00000 2`3oool010000000oooo0?ooo`00000:0?ooo`040000003oool0oooo000000X0oooo00@000000?oo o`3oool000002`3oool010000000oooo0?ooo`00000:0?ooo`040000003oool0oooo000000/0oooo 00@000000?ooo`3oool00000103oool008L0oooo0P00000<0?ooo`8000003@3oool2000000`0oooo 0P00000=0?ooo`800000303oool2000000`0oooo0P00000=0?ooo`800000303oool2000000d0oooo 0P0000050?ooo`00QP3oool01@000000oooo0000003oool0000000T0oooo00D000000?ooo`000000 oooo0000000:0?ooo`050000003oool000000?ooo`0000002@3oool01@000000oooo0000003oool0 000000X0oooo00D000000?ooo`000000oooo000000090?ooo`050000003oool000000?ooo`000000 2@3oool01@000000oooo0000003oool0000000X0oooo00D000000?ooo`000000oooo000000090?oo o`050000003oool000000?ooo`0000002P3oool01@000000oooo0000003oool0000000<0oooo0026 0?ooo`050000003oool000000?ooo`0000002@3oool01@000000oooo0000003oool0000000X0oooo 00D000000?ooo`000000oooo000000090?ooo`050000003oool000000?ooo`0000002P3oool01@00 0000oooo0000003oool0000000T0oooo00D000000?ooo`000000oooo000000090?ooo`050000003o ool000000?ooo`0000002P3oool01@000000oooo0000003oool0000000T0oooo00D000000?ooo`00 0000oooo0000000:0?ooo`050000003oool000000?ooo`0000000`3oool008H0oooo00D000000?oo o`000000oooo000000090?ooo`050000003oool000000?ooo`0000002P3oool01@000000oooo0000 003oool0000000T0oooo00D000000?ooo`000000oooo0000000:0?ooo`050000003oool000000?oo o`0000002@3oool01@000000oooo0000003oool0000000T0oooo00D000000?ooo`000000oooo0000 000:0?ooo`050000003oool000000?ooo`0000002@3oool01@000000oooo0000003oool0000000X0 oooo00D000000?ooo`000000oooo000000030?ooo`00QP3oool01@000000oooo0000003oool00000 00T0oooo00D000000?ooo`000000oooo0000000:0?ooo`050000003oool000000?ooo`0000002@3o ool01@000000oooo0000003oool0000000X0oooo00D000000?ooo`000000oooo000000090?ooo`05 0000003oool000000?ooo`0000002@3oool01@000000oooo0000003oool0000000X0oooo00D00000 0?ooo`000000oooo000000090?ooo`050000003oool000000?ooo`0000002P3oool01@000000oooo 0000003oool0000000<0oooo00250?ooo`H00000203oool6000000T0oooo1P0000080?ooo`H00000 2@3oool6000000P0oooo1P0000080?ooo`H000002@3oool6000000P0oooo1P0000090?ooo`H00000 0`3oool00?l0oooo4@3oool00?l0oooo4@3oool00?l0oooo4@3oool00?l0oooo4@3oool00?l0oooo 4@3oool00?l0oooo4@3oool00?l0oooo4@3oool00?l0oooo4@3oool00?l0oooo4@3oool00?l0oooo 4@3oool00?l0oooo4@3oool00?l0oooo4@3oool00?l0oooo4@3oool00?l0oooo4@3oool00?l0oooo 4@3oool00?l0oooo4@3oool00?l0oooo4@3oool00?l0oooo4@3oool00?l0oooo4@3oool008`0oooo 00<000000?ooo`3oool01P3oool00`000000oooo0?ooo`0P0?ooo`<00000E@3oool008/0oooo00<0 00000?ooo`3oool0203oool00`000000oooo0?ooo`0P0?ooo`030000003oool0oooo05@0oooo002: 0?ooo`030000003oool0oooo00<0oooo0`0000040?ooo`030000003oool0oooo00H0oooo0P000000 0`3oool00000000000020?ooo`@000000P3oool400000080oooo1@0000020?ooo`030000003oool0 oooo0080oooo1000001=0?ooo`00RP3oool00`000000oooo0?ooo`020?ooo`050000003oool0oooo 0?ooo`0000000`3oool00`000000oooo0?ooo`070?ooo`030000003oool0000000@0oooo00<00000 0?ooo`3oool00`3oool00`000000oooo0?ooo`020?ooo`040000003oool0oooo000000<0oooo00<0 00000?ooo`3oool01@3oool00`000000oooo0?ooo`1;0?ooo`00RP3oool00`000000oooo0?ooo`02 0?ooo`030000003oool0oooo00D0oooo00<000000?ooo`3oool01`3oool3000000@0oooo00<00000 0?ooo`3oool00`3oool00`000000oooo0?ooo`020?ooo`@000000P3oool00`000000oooo00000003 0?ooo`@00000C@3oool008X0oooo00<000000?ooo`3oool00P3oool01@000000oooo0?ooo`3oool0 000000<0oooo00<000000?ooo`3oool01`3oool00`000000oooo000000040?ooo`800000103oool2 000000H0oooo00H000000?ooo`3oool000000?ooo`0000030?ooo`030000003oool0oooo04h0oooo 002;0?ooo`030000003oool0oooo0080oooo100000020?ooo`030000003oool0oooo00T0oooo00<0 00000?ooo`3oool00P3oool2000000040?ooo`00000000000?ooo`80000000<0oooo000000000000 0P3oool3000000040?ooo`00000000000?ooo`8000000P3oool4000004d0oooo002<0?ooo`030000 003oool0oooo00H0oooo00<000000?ooo`3oool02@3oool2000006d0oooo003o0?oooa40oooo003o 0?oooa40oooo003o0?oooa40oooo0000\ \>"], ImageRangeCache->{{{0, 271.25}, {284.875, 0}} -> {-5.08884, -1.12455, 0.0694989, 0.0103692}}] }, Open ]], Cell[CellGroupData[{ Cell[BoxData[ \(graph = Plot[\n\t\teigengenes4, \n\t\t{x, 0, arrays - 1}, \n\t\t PlotStyle -> {RGBColor[0, 0.5, 0], Dashing[{0.03, 0.02}]}, \n\t\t DisplayFunction -> Identity]; \n labelx = ColumnForm[{"\<(c) Arrays\>"}, Center]; \n labely = ColumnForm[{"\< \>", "\"}, Center]; \n framex = Table[{a - 1, arraynames[\([2, a]\)]}, {a, 1, arrays}]; \n framey = {\(-1\), \(-0.5\), 0, 0.5, 1}; \n coordinates = Table[{a - 1, eigengenes[\([4, a]\)]}, \t{a, 1, arrays}]; \n points = Table[Point[coordinates[\([a]\)]], \t{a, 1, arrays}]; \n line = Line[coordinates]; \n g = Show[\n \t\t{Graphics[{RGBColor[0, 0.5, 0], PointSize[0.022], points}], \n \t\t\tGraphics[{RGBColor[0, 0.5, 0], line}], \n\t\t\tgraph, \n\t\t\t Graphics[{RGBColor[0, 0.5, 0], Text[\*"\"\<\!\(\@\(1\/T\)\)cos(\!\(\(2 \[Pi]t\)\/T\))\>\"", { 9, 0.45}]}]}, \n\tFrame -> True, \n\t FrameLabel -> {None, labely, labelx, None}, \n\t GridLines -> {None, {{0, RGBColor[0, 0, 0]}}}, \n\t FrameTicks -> {None, framey, framex, None}, \n\t PlotRange -> {\(-1.05\), 1.05}, \n\tDisplayFunction -> Identity]; \n g = FullGraphics[g]; \n g[\([1, 2]\)] = g[\([1, 2]\)] /. \n\t\t Text[labely, {b_, c_}, {1. , 0. }] -> \n\t\t\t Text[labely, {b - 3.6, c}, {0, 0}, {0, 1}]; \n g[\([1, 2]\)] = g[\([1, 2]\)] /. \n\t\t Text[labelx, {b_, c_}, {0. , \(-1. \)}] -> \n\t\t\t Text[labelx, {b, c + 0.6}, {0, \(-1\)}, {1, 0}]; \n g[\([1, 2]\)] = g[\([1, 2]\)] /. \n\t\t Text[a_, {b_, c_}, {0. , \(-1. \)}] -> \n\t\t\t Text[a, {b, c + 0.24}, {0, 0}, {0, 1}]; \n p4 = Show[g, \n\t\tAspectRatio -> 1.05, \n\t\tPlotRange -> All]; \)], "Input", PageBreakAbove->True, PageBreakBelow->False], Cell[GraphicsData["PostScript", "\<\ %! %%Creator: Mathematica %%AspectRatio: 1.05 MathPictureStart /Mabs { Mgmatrix idtransform Mtmatrix dtransform } bind def /Mabsadd { Mabs 3 -1 roll add 3 1 roll add exch } bind def %% Graphics %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10 scalefont setfont % Scaling calculations 0.251266 0.0544033 0.407866 0.364634 [ [.7409 .57195 -43.0625 -15.5938 ] [.7409 .57195 43.0625 15.5938 ] [.2243 .04323 -12 -4.5 ] [.2243 .04323 0 4.5 ] [.2243 .22555 -24 -4.5 ] [.2243 .22555 0 4.5 ] [.2243 .40787 -6 -4.5 ] [.2243 .40787 0 4.5 ] [.2243 .59018 -18 -4.5 ] [.2243 .59018 0 4.5 ] [.2243 .7725 -6 -4.5 ] [.2243 .7725 0 4.5 ] [.02381 .40787 -13.0625 -50 ] [.02381 .40787 13.0625 50 ] [.25127 .89373 -6.1875 -20.125 ] [.25127 .89373 6.1875 20.125 ] [.30567 .89373 -6.1875 -20.125 ] [.30567 .89373 6.1875 20.125 ] [.36007 .89373 -6.1875 -20.125 ] [.36007 .89373 6.1875 20.125 ] [.41448 .89373 -6.1875 -20.125 ] [.41448 .89373 6.1875 20.125 ] [.46888 .89373 -6.1875 -20.125 ] [.46888 .89373 6.1875 20.125 ] [.52328 .89373 -6.1875 -20.125 ] [.52328 .89373 6.1875 20.125 ] [.57769 .89373 -6.1875 -20.125 ] [.57769 .89373 6.1875 20.125 ] [.63209 .89373 -6.1875 -20.125 ] [.63209 .89373 6.1875 20.125 ] [.68649 .89373 -6.1875 -20.125 ] [.68649 .89373 6.1875 20.125 ] [.7409 .89373 -6.1875 -20.125 ] [.7409 .89373 6.1875 20.125 ] [.7953 .89373 -6.1875 -20.125 ] [.7953 .89373 6.1875 20.125 ] [.8497 .89373 -6.1875 -20.125 ] [.8497 .89373 6.1875 20.125 ] [.90411 .89373 -6.1875 -20.125 ] [.90411 .89373 6.1875 20.125 ] [.95851 .89373 -6.1875 -20.125 ] [.95851 .89373 6.1875 20.125 ] [.60489 1.025 -32 0 ] [.60489 1.025 32 12.625 ] [ 0 0 0 0 ] [ 1 1.05 0 0 ] ] MathScale % Start of Graphics 1 setlinecap 1 setlinejoin newpath 0 .5 0 r .022 w .25127 .29399 Mdot .30567 .70732 Mdot .36007 .47874 Mdot .41448 .47011 Mdot .46888 .37395 Mdot .52328 .33658 Mdot .57769 .35708 Mdot .63209 .35148 Mdot .68649 .35868 Mdot .7409 .3624 Mdot .7953 .35147 Mdot .8497 .38468 Mdot .90411 .43149 Mdot .95851 .43365 Mdot .5 Mabswid [ ] 0 setdash .25127 .29399 m .30567 .70732 L .36007 .47874 L .41448 .47011 L .46888 .37395 L .52328 .33658 L .57769 .35708 L .63209 .35148 L .68649 .35868 L .7409 .3624 L .7953 .35147 L .8497 .38468 L .90411 .43149 L .95851 .43365 L s [ .03 .02 ] 0 setdash .25127 .50851 m .25214 .5085 L .25293 .50849 L .25385 .50848 L .25472 .50846 L .25626 .50841 L .25793 .50833 L .25977 .50822 L .26173 .50807 L .26523 .50773 L .26885 .50728 L .27224 .50676 L .27996 .50525 L .28783 .50324 L .29503 .50099 L .31125 .49455 L .34073 .47835 L .3691 .45822 L .39928 .43333 L .42834 .40763 L .45922 .38038 L .48897 .35604 L .5176 .336 L .53211 .32754 L .54805 .31979 L .56321 .31405 L .57 .31202 L .57737 .31022 L .5814 .30941 L .58513 .30877 L .58863 .30828 L .59249 .30784 L .59414 .30769 L .59593 .30755 L .59748 .30745 L .59917 .30736 L .60097 .30729 L .60195 .30726 L .60287 .30724 L .60373 .30723 L .60451 .30723 L .60541 .30723 L .60627 .30723 L .60712 .30725 L .60804 .30727 L .60891 .30729 L .6097 .30732 L .61164 .30741 L .61348 .30752 L .61714 .30782 L Mistroke .62113 .30827 L .62824 .30938 L .63483 .31077 L .6501 .31524 L .66393 .32076 L .69372 .33697 L .72239 .35726 L .75287 .38238 L .78224 .40835 L .81047 .43331 L .84053 .45811 L .86946 .47862 L .8842 .48736 L .90022 .49531 L .91562 .50129 L .92296 .50353 L .92985 .50526 L .93641 .50657 L .94348 .50761 L .9473 .50801 L .94923 .50816 L .95133 .5083 L .95313 .50839 L .95413 .50843 L .95505 .50846 L .9559 .50848 L .95683 .50849 L .9577 .5085 L .95851 .50851 L Mfstroke gsave .7409 .57195 -104.062 -19.5938 Mabsadd m 1 1 Mabs scale currentpoint translate 0 39.1875 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 35.187500 moveto 558.000000 35.187500 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 35.187500 lineto closepath clip newpath 63.000000 23.812500 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.500008 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 0.000000 0.500008 0.000000 setrgbcolor %%IncludeResource: font Math2Mono %%IncludeFont: Math2Mono /Math2Mono findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.500008 0.000000 setrgbcolor 63.000000 22.812500 moveto ($) show 72.750000 22.812500 moveto (%) show 75.375000 22.812500 moveto (%) show 78.000000 22.812500 moveto (%) show 80.625000 22.812500 moveto (%) show 83.250000 22.812500 moveto (%) show 83.750000 22.812500 moveto (%) show 77.125000 17.875000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.500008 0.000000 setrgbcolor (1) show %%IncludeResource: font Math1Mono %%IncludeFont: Math1Mono /Math1Mono findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.500008 0.000000 setrgbcolor 75.812500 23.812500 moveto (\\200) show 77.687500 23.812500 moveto (\\200) show 79.562500 23.812500 moveto (\\200) show 81.437500 23.812500 moveto (\\200) show 82.625000 23.812500 moveto (\\200) show 77.125000 30.062500 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.500008 0.000000 setrgbcolor (T) show 88.312500 23.812500 moveto (cos) show %%IncludeResource: font Math2Mono %%IncludeFont: Math2Mono /Math2Mono findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.500008 0.000000 setrgbcolor 106.312500 23.812500 moveto (H) show 115.375000 17.875000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.500008 0.000000 setrgbcolor (2) show 121.375000 17.875000 moveto %%IncludeResource: font Math1Mono %%IncludeFont: Math1Mono /Math1Mono findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.500008 0.000000 setrgbcolor ( ) show 124.000000 17.875000 moveto %%IncludeResource: font Math1Mono %%IncludeFont: Math1Mono /Math1Mono findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.500008 0.000000 setrgbcolor (p) show %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.500008 0.000000 setrgbcolor (t) show %%IncludeResource: font Math1Mono %%IncludeFont: Math1Mono /Math1Mono findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.500008 0.000000 setrgbcolor 114.062500 23.812500 moveto (\\200) show 115.937500 23.812500 moveto (\\200) show 117.812500 23.812500 moveto (\\200) show 119.687500 23.812500 moveto (\\200) show 121.562500 23.812500 moveto (\\200) show 123.437500 23.812500 moveto (\\200) show 125.312500 23.812500 moveto (\\200) show 127.187500 23.812500 moveto (\\200) show 129.062500 23.812500 moveto (\\200) show 130.937500 23.812500 moveto (\\200) show 132.812500 23.812500 moveto (\\200) show 134.687500 23.812500 moveto (\\200) show 135.500000 23.812500 moveto (\\200) show 122.687500 30.062500 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.500008 0.000000 setrgbcolor (T) show %%IncludeResource: font Math2Mono %%IncludeFont: Math2Mono /Math2Mono findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.500008 0.000000 setrgbcolor 139.125000 23.812500 moveto (L) show 145.125000 23.812500 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.500008 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Math1Mono %%+ font Math2Mono %%+ font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Math1Mono %%+ Math2Mono %%+ Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Math1Mono %%+ font Math2Mono %%+ font Courier grestore 0 g .25 Mabswid [ ] 0 setdash .23359 .40787 m .97619 .40787 L s .23359 .025 m .97619 .025 L s .23359 .04323 m .23823 .04323 L s [(-1)] .2243 .04323 1 0 Mshowa .23359 .22555 m .23823 .22555 L s [(-0.5)] .2243 .22555 1 0 Mshowa .23359 .40787 m .23823 .40787 L s [(0)] .2243 .40787 1 0 Mshowa .23359 .59018 m .23823 .59018 L s [(0.5)] .2243 .59018 1 0 Mshowa .23359 .7725 m .23823 .7725 L s [(1)] .2243 .7725 1 0 Mshowa .23359 .025 m .23359 .79073 L s gsave .02381 .40787 -111 -17.0625 Mabsadd m 1 1 Mabs scale currentpoint translate 111 17.0625 translate 90 rotate -111 -17.0625 translate 0 34.125 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 30.125000 moveto 558.000000 30.125000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 30.125000 lineto closepath clip newpath 108.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 114.000000 13.000000 moveto 0.000000 0.000000 rmoveto 63.000000 26.812500 moveto 0.000000 0.000000 rmoveto 63.000000 26.812500 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (Expression) show 129.000000 26.812500 moveto (Level) show 159.000000 26.812500 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .25127 .78299 m .25127 .79073 L s gsave .25127 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (0) show 81.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .30567 .78299 m .30567 .79073 L s gsave .30567 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (30) show 87.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .36007 .78299 m .36007 .79073 L s gsave .36007 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (60) show 87.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .41448 .78299 m .41448 .79073 L s gsave .41448 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (90) show 87.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .46888 .78299 m .46888 .79073 L s gsave .46888 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (120) show 93.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .52328 .78299 m .52328 .79073 L s gsave .52328 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (150) show 93.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .57769 .78299 m .57769 .79073 L s gsave .57769 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (180) show 93.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .63209 .78299 m .63209 .79073 L s gsave .63209 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (210) show 93.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .68649 .78299 m .68649 .79073 L s gsave .68649 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (240) show 93.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .7409 .78299 m .7409 .79073 L s gsave .7409 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (270) show 93.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .7953 .78299 m .7953 .79073 L s gsave .7953 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (300) show 93.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .8497 .78299 m .8497 .79073 L s gsave .8497 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (330) show 93.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .90411 .78299 m .90411 .79073 L s gsave .90411 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (360) show 93.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .95851 .78299 m .95851 .79073 L s gsave .95851 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (390) show 93.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .23359 .79073 m .97619 .79073 L s gsave .60489 1.025 -93 -4 Mabsadd m 1 1 Mabs scale currentpoint translate 0 20.625 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.625000 moveto 558.000000 16.625000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.625000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto %%IncludeResource: font Math2Mono %%IncludeFont: Math2Mono /Math2Mono findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 63.000000 13.000000 moveto (H) show 69.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (c) show %%IncludeResource: font Math2Mono %%IncludeFont: Math2Mono /Math2Mono findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 75.000000 13.000000 moveto (L) show 87.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (Arrays) show 123.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Math2Mono %%+ font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Math2Mono %%+ Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Math2Mono %%+ font Courier grestore .97619 .025 m .97619 .79073 L s 0 0 m 1 0 L 1 1.05 L 0 1.05 L closepath clip newpath % End of Graphics MathPictureEnd \ \>"], "Graphics", PageBreakAbove->False, PageBreakBelow->False, GroupPageBreakWithin->False, ImageSize->{272.25, 285.875}, ImageMargins->{{43, 0}, {0, 0}}, ImageRegion->{{0, 1}, {0, 1}}, ImageCache->GraphicsData["Bitmap", "\<\ CF5dJ6E]HGAYHf4PAg9QL6QYHg`3oool3001o00h0oooo 0`00O`00103oool007l0001o0000O`090?ooo`P007l0203oool3001o01T0oooo1@00O`0]0?ooo`03 0000003oool0oooo00D0oooo000G0?ooo`030000003oool0oooo02X0oooo00<000000?ooo`3oool0 103oool00`00O`00oooo0?ooo`0i0?ooo`<007l04`3oool5001o00030?ooo`00O`0007l000D007l0 00<0oooo001o0000O`000`00O`020?ooo``007l02`3oool3001o00H0oooo2P00O`0/0?ooo`030000 003oool0oooo00D0oooo000G0?ooo`@00000:@3oool00`000000oooo0?ooo`040?ooo`03001o003o ool0oooo03P0oooo0`00O`0D0?ooo`H007l0203oool5001o00T0oooo2`00O`020?ooo``007l0103o ool5001o00030?ooo`00O`0007l002X0oooo00<000000?ooo`3oool01@3oool004@0oooo00<00000 0?ooo`3oool0103oool00`00O`00oooo0?ooo`0g0?ooo`8007l05P3oool5001o00X0oooo0`00O`0: 0?ooo`D007l01P3oool9001o00X0oooo0`00O`040?ooo`03001o003oool0oooo02L0oooo00<00000 0?ooo`3oool01@3oool001L0oooo1000000Y0?ooo`030000003oool0oooo00@0oooo00<007l00?oo o`3oool0<`3oool5001o01P0oooo0`00O`0I0?ooo`<007l02`3oool5001o0180oooo0P00O`0W0?oo o`030000003oool0oooo00D0oooo000J0?ooo`030000003oool0oooo02L0oooo00<000000?ooo`3o ool01@3oool00`00O`00oooo0?ooo`0a0?ooo`D007l0A03oool3001o01D0oooo0P00O`0U0?ooo`03 0000003oool0oooo00D0oooo000G0?ooo`@00000:@3oool00`000000oooo0?ooo`050?ooo`03001o 003oool0oooo0340oooo1@00O`160?ooo`03001o003oool0oooo01D0oooo00<007l00?ooo`3oool0 8P3oool00`000000oooo0?ooo`050?ooo`005`3oool00`000000oooo0?ooo`0Z0?ooo`030000003o ool0oooo00D0oooo00<007l00?ooo`3oool0<@3oool5001o04L0oooo00<007l00?ooo`3oool05@3o ool5001o01l0oooo00<000000?ooo`3oool01@3oool001L0oooo1000000Y0?ooo`030000003oool0 oooo00D0oooo00<007l00?ooo`3oool0<03oool5001o0640oooo1@00O`0N0?ooo`030000003oool0 oooo00D0oooo00140?ooo`030000003oool0oooo00D0oooo00<007l00?ooo`3oool0;`3oool01000 O`00oooo0?ooo`00O`1S0?ooo`D007l07P3oool00`000000oooo0?ooo`050?ooo`005`3oool50000 02P0oooo00<000000?ooo`3oool01@3oool00`00O`00oooo0?ooo`0^0?ooo`04001o003oool0oooo 001o06@0oooo1@00O`0N0?ooo`030000003oool0oooo00D0oooo000I0?ooo`030000003oool0oooo 02P0oooo00<000000?ooo`3oool01@3oool00`00O`00oooo0?ooo`0]0?ooo`05001o003oool0oooo 0?ooo`00O`00C`3oool2001o01@0oooo0`00O`000`3oool007l00?ooo`0L0?ooo`030000003oool0 oooo00D0oooo000I0?ooo`030000003oool0oooo02P0oooo00<000000?ooo`3oool01@3oool00`00 O`00oooo0?ooo`0/0?ooo`05001o003oool0oooo0?ooo`00O`00DP3oool00`00O`00oooo0?ooo`0F 0?ooo`03001o003oool0oooo01X0oooo00<000000?ooo`3oool01@3oool001T0oooo00<000000?oo o`3oool08P3oool2000000@0oooo00<000000?ooo`3oool01P3oool00`00O`00oooo0?ooo`0Z0?oo o`05001o003oool0oooo0?ooo`00O`00E03oool00`00O`00oooo0?ooo`0F0?ooo`03001o003oool0 oooo01T0oooo00<000000?ooo`3oool01@3oool001P0oooo0P00000S0?ooo`040000003oool0oooo 000000<0oooo00<000000?ooo`3oool01P3oool00`00O`00oooo0?ooo`0^0?ooo`03001o003oool0 oooo05<0oooo00<007l00?ooo`3oool05P3oool00`00O`00oooo0?ooo`0H0?ooo`030000003oool0 oooo00D0oooo000m0?ooo`040000003oool0oooo000000<0ooooa@0000070?ooo`00603oool30000 0280oooo00@000000?ooo`3oool000000`3oool00`000000oooo0?ooo`060?ooo`03001o003oool0 oooo02D0oooo0P00O`060?ooo`03001o003oool0oooo05H0oooo00<007l00?ooo`3oool05`3oool0 0`00O`00oooo0?ooo`0E0?ooo`030000003oool0oooo00D0oooo000G0?ooo`050000003oool0oooo 0?ooo`0000008@3oool010000000oooo0?ooo`0000030?ooo`030000003oool0oooo00H0oooo00<0 07l00?ooo`3oool0903oool00`00O`00oooo0?ooo`050?ooo`03001o003oool0oooo0780oooo00<0 07l00?ooo`3oool0503oool00`000000oooo0?ooo`050?ooo`005`3oool01@000000oooo0?ooo`3o ool000000280oooo0P0000040?ooo`030000003oool0oooo00H0oooo00<007l00?ooo`3oool08`3o ool00`00O`00oooo0?ooo`060?ooo`03001o003oool0oooo07<0oooo00<007l00?ooo`3oool04`3o ool00`000000oooo0?ooo`050?ooo`005`3oool01@000000oooo0?ooo`3oool0000002P0oooo00<0 00000?ooo`3oool01P3oool00`00O`00oooo0?ooo`0R0?ooo`03001o003oool0oooo00H0oooo00<0 07l00?ooo`3oool0M@3oool00`00O`00oooo0?ooo`0B0?ooo`030000003oool0oooo00D0oooo000H 0?ooo`<00000:@3oool00`000000oooo0?ooo`060?ooo`03001o003oool0oooo0240oooo00<007l0 0?ooo`3oool01`3oool00`00O`00oooo0?ooo`1L0?ooo`8007l0603oool3001o00/0oooo0`00O`03 0?ooo`030000003oool0oooo00D0oooo00140?ooo`030000003oool0oooo00L0oooo00<007l00?oo o`3oool07`3oool00`00O`00oooo0?ooo`070?ooo`03001o003oool0oooo05l0oooo00<007l00?oo o`3oool0503oool;001o00<0oooo1@00O`020?ooo`030000003oool0oooo00D0oooo000G0?ooo`80 000000<0oooo000000000000:03oool00`000000oooo0?ooo`070?ooo`03001o003oool0oooo02T0 oooo00<007l00?ooo`3oool0H03oool00`00O`00oooo0?ooo`0C0?ooo`D007l01P3oool8001o0080 oooo00<000000?ooo`3oool01@3oool001L0oooo00@000000?ooo`3oool00000:@3oool00`000000 oooo0?ooo`070?ooo`03001o003oool0oooo02P0oooo00<007l00?ooo`3oool0HP3oool00`00O`00 oooo0?ooo`0B0?ooo`D007l02@3oool5001o0080oooo00<000000?ooo`3oool01@3oool001L0oooo 00@000000?ooo`3oool00000:@3oool00`000000oooo0?ooo`070?ooo`03001o003oool0oooo02P0 oooo00<007l00?ooo`3oool0H`3oool00`00O`00oooo0?ooo`0B0?ooo`<007l02`3oool3001o00<0 oooo00<000000?ooo`3oool01@3oool001L0oooo00@000000?ooo`3oool00000:@3oool00`000000 oooo0?ooo`070?ooo`03001o003oool0oooo01X0oooo0P00O`0;0?ooo`03001o003oool0oooo06D0 oooo00<007l00?ooo`3oool09@3oool00`000000oooo0?ooo`050?ooo`005P3oool5000002T0oooo 00<000000?ooo`3oool01`3oool00`00O`00oooo0?ooo`0I0?ooo`03001o003oool0oooo00X0oooo 00<007l00?ooo`3oool0SP3oool00`000000oooo0?ooo`050?ooo`00A03oool00`000000oooo0?oo o`070?ooo`03001o003oool0oooo01P0oooo00<007l00?ooo`3oool02`3oool00`00O`00oooo0?oo o`2>0?ooo`030000003oool0oooo00D0oooo00140?ooo`030000003oool0oooo00L0oooo00<007l0 0?ooo`3oool05`3oool00`00O`00oooo0?ooo`0;0?ooo`03001o003oool0oooo06/0oooo0`00O`0Q 0?ooo`030000003oool0oooo00D0oooo00140?ooo`030000003oool0oooo00P0oooo00<007l00?oo o`3oool05@3oool00`00O`00oooo0?ooo`0<0?ooo`03001o003oool0oooo06h0oooo00<007l00?oo o`3oool07P3oool00`000000oooo0?ooo`050?ooo`00A03oool00`000000oooo0?ooo`080?ooo`03 001o003oool0oooo01@0oooo00<007l00?ooo`3oool02P3oool3001o0780oooo00<007l00?ooo`3o ool07@3oool00`000000oooo0?ooo`050?ooo`00A03oool00`000000oooo0?ooo`080?ooo`03001o 003oool0oooo0200oooo1@00O`1b0?ooo`03001o003oool0oooo01`0oooo00<000000?ooo`3oool0 1@3oool004@0oooo00<000000?ooo`3oool0203oool00`00O`00oooo0?ooo`0B0?ooo`<007l02P3o ool6001o07<0oooo00<007l00?ooo`3oool06`3oool00`000000oooo0?ooo`050?ooo`00A03oool0 0`000000oooo0?ooo`080?ooo`03001o003oool0oooo00l0oooo1`00O`020?ooo`L007l000<0oooo 001o0000O`000`00O`1d0?ooo`03001o003oool0oooo01X0oooo00<000000?ooo`3oool01@3oool0 01H0oooo1@00000Y0?ooo`030000003oool0oooo00P0oooo00<007l00?ooo`3oool03@3oool2001o 0080oooo1`00O`090?ooo`<007l0TP3oool00`000000oooo0?ooo`050?ooo`005`3oool010000000 oooo0?ooo`00000Y0?ooo`030000003oool0oooo00P0oooo00<007l00?ooo`3oool02`3oool2001o 00@0oooo1@00O`2P0?ooo`030000003oool0oooo00D0oooo000G0?ooo`040000003oool0oooo0000 02T0oooo00<000000?ooo`3oool0203oool00`00O`00oooo0?ooo`0:0?ooo`03001o003oool0oooo 00D0oooo0`00O`280?ooo`<007l05P3oool00`000000oooo0?ooo`050?ooo`005`3oool00`000000 oooo0?ooo`0Z0?ooo`030000003oool0oooo00T0oooo00<007l00?ooo`3oool0203oool00`00O`00 oooo0?ooo`070?ooo`03001o003oool0oooo08X0oooo0P00O`0D0?ooo`030000003oool0oooo00D0 oooo000G0?ooo`030000003oool0oooo02X0oooo00<000000?ooo`3oool02@3oool00`00O`00oooo 0?ooo`0B0?ooo`03001o003oool0oooo08`0oooo0P00O`0B0?ooo`030000003oool0oooo00D0oooo 000F0?ooo`<00000:`3oool00`000000oooo0?ooo`090?ooo`03001o003oool0oooo0080oooo0P00 O`0>0?ooo`03001o003oool0oooo08h0oooo00<007l00?ooo`3oool03`3oool00`000000oooo0?oo o`050?ooo`00603oool4000002P0oooo00<000000?ooo`3oool02@3oool5001o0100oooo00<007l0 0?ooo`3oool0X03oool00`000000oooo0?ooo`050?ooo`005`3oool00`000000oooo0?ooo`0Z0?oo o`030000003oool0oooo00L0oooo0`00O`0C0?ooo`03001o003oool0oooo09@0oooo1P00O`070?oo o`030000003oool0oooo00D0oooo000G0?ooo`D00000:03oool00`000000oooo0?ooo`020?ooo`03 001o003oool0oooo00@0oooo00<007l00?ooo`3oool04@3oool00`00O`00oooo0?ooo`2J0?ooo`<0 07l0103oool00`000000oooo0?ooo`050?ooo`005`3oool01@000000oooo0?ooo`3oool0000002P0 oooo00<000000?ooo`3oool02@3oool00`00O`00oooo0?ooo`0A0?ooo`03001o003oool0oooo0:40 oooo00<000000?ooo`3oool01@3oool001P0oooo0`00000Y0?ooo`030000003oool0oooo00X0oooo 00<007l00?ooo`3oool0403oool00`00O`00oooo0?ooo`2Q0?ooo`030000003oool0oooo00D0oooo 00140?ooo`030000003oool0oooo00X0oooo00<007l00?ooo`3oool03`3oool00`00O`00oooo0?oo o`100?ooo`030020003oool0oooo05l0oooo00<000000?ooo`3oool01@3oool001P0oooo0P00000Z 0?ooo`030000003oool0oooo00X0oooo00<007l00?ooo`3oool03`3oool00`00O`00oooo0?ooo`10 0?ooo`030020003oool0oooo05l0oooo00<000000?ooo`3oool01@3oool001P0oooo0P00000Z0?oo o`030000003oool0oooo00X0oooo00<007l00?ooo`3oool03`3oool00`00O`00oooo0?ooo`0o0?oo o`800800H@3oool00`000000oooo0?ooo`050?ooo`005`3oool010000000oooo00000000000Y0?oo o`030000003oool0oooo00X0oooo00<007l00?ooo`3oool03`3oool00`00O`00oooo0?ooo`0o0?oo o`800800H@3oool00`000000oooo0?ooo`050?ooo`005`3oool010000000oooo0?ooo`00000Y0?oo o`030000003oool0oooo00X0oooo00<007l00?ooo`3oool03P3oool00`00O`00oooo0?ooo`100?oo o`8008002P3oool3002002/0oooo0`00P00V0?ooo`030000003oool0oooo00D0oooo000F0?ooo`80 00000P3oool2000002P0oooo00<000000?ooo`3oool02P3oool00`00O`00oooo0?ooo`0>0?ooo`03 001o003oool0oooo03l0oooo00<008000?ooo`00P0002`3oool00`00P000oooo0?ooo`0[0?ooo`03 0020003oool0oooo02D0oooo00<000000?ooo`3oool01@3oool004@0oooo00<000000?ooo`3oool0 2P3oool00`00O`00oooo0?ooo`0>0?ooo`03001o003oool0oooo03l0oooo00<008000?ooo`00P000 2`3oool00`00P000oooo0?ooo`0[0?ooo`030020003oool0oooo02D0oooo00<000000?ooo`3oool0 1@3oool001P0oooo1000000X0?ooo`030000003oool0oooo00/0oooo00<007l00?ooo`3oool03@3o ool00`00O`00oooo0?ooo`0l0?ooo`040020003oool0080000200080oooo00<008000?ooo`3oool0 1P3oool01@00P000oooo0020003oool0080002T0oooo00D008000?ooo`00P000oooo0020000U0?oo o`030000003oool0oooo00D0oooo000G0?ooo`030000003oool0oooo02X0oooo00<000000?ooo`3o ool02`3oool00`00O`00oooo0?ooo`0<0?ooo`03001o003oool0oooo03h0oooo0P00P0030?ooo`03 0020003oool0oooo00H0oooo00D008000?ooo`00P000oooo0020000K0?ooo`030020003oool0oooo 00/0oooo00D008000?ooo`00P000oooo0020000;0?ooo`030020003oool0oooo01L0oooo00<00000 0?ooo`3oool01@3oool001L0oooo1@00000X0?ooo`030000003oool0oooo00/0oooo00<007l00?oo o`3oool0303oool00`00O`00oooo0?ooo`0o0?ooo`050020003oool0oooo0?ooo`00P000203oool5 002001X0oooo00<008000?ooo`3oool0303oool5002000`0oooo00<008000?ooo`3oool05P3oool0 0`000000oooo0?ooo`050?ooo`005`3oool01@000000oooo0?ooo`3oool0000002P0oooo00<00000 0?ooo`3oool02`3oool00`00O`00oooo0?ooo`0<0?ooo`03001o003oool0oooo04<0oooo00<00800 0?ooo`3oool04P3oool3002000<0oooo0`00P0020?ooo`@008000`3oool00`00P000oooo0?ooo`0O 0?ooo`030020003oool0oooo01D0oooo00<000000?ooo`3oool01@3oool001P0oooo0`00000Y0?oo o`030000003oool0oooo00/0oooo00<007l00?ooo`3oool0303oool00`00O`00oooo0?ooo`130?oo o`030020003oool0oooo0140oooo00L008000?ooo`3oool0oooo0020003oool0080000<0oooo00<0 08000?ooo`3oool00P3oool01@00P000oooo0?ooo`3oool008000240oooo00<008000?ooo`3oool0 5@3oool00`000000oooo0?ooo`050?ooo`00A03oool00`000000oooo0?ooo`0;0?ooo`03001o003o ool0oooo00/0oooo00<007l00?ooo`3oool0A03oool00`00P000oooo0?ooo`040?ooo`T00800103o ool00`00P000oooo0?ooo`030?ooo`060020003oool0oooo0?ooo`00P000oooo1000P0030?ooo`03 0020003oool0oooo00<0oooo6000P0040?ooo`030020003oool0oooo01D0oooo00<000000?ooo`3o ool01@3oool001L0oooo1@00000X0?ooo`030000003oool0oooo00/0oooo00<007l00?ooo`3oool0 2`3oool00`00O`00oooo0?ooo`150?ooo`030020003oool0oooo0100oooo00L008000?ooo`3oool0 oooo0020003oool0080000<0oooo00<008000?ooo`00P0001P3oool00`00P000oooo0?ooo`0O0?oo o`030020003oool0oooo01D0oooo00<000000?ooo`3oool01@3oool001T0oooo00<000000?ooo`3o ool0:03oool00`000000oooo0?ooo`0;0?ooo`03001o003oool0oooo00/0oooo00<007l00?ooo`3o ool0A@3oool00`00P000oooo0?ooo`0A0?ooo`@008000P3oool300200080oooo1000P0040?ooo`03 0020003oool0oooo01d0oooo00<008000?ooo`3oool05P3oool00`000000oooo0?ooo`050?ooo`00 6@3oool00`000000oooo0?ooo`0X0?ooo`030000003oool0oooo00`0oooo00<007l00?ooo`3oool0 2P3oool00`00O`00oooo0?ooo`150?ooo`030020003oool0oooo02D0oooo00<008000?ooo`3oool0 6`3oool00`00P000oooo0?ooo`0G0?ooo`030000003oool0oooo00D0oooo000I0?ooo`030000003o ool0oooo01H0oooo0P0000040?ooo`8000000`3oool3000000@0oooo00<000000?ooo`3oool0303o ool00`00O`00oooo0?ooo`090?ooo`03001o003oool0oooo04H0oooo00<008000?ooo`3oool01@3o ool3002002@0oooo1000P0030?ooo`030020003oool0oooo0080oooo00<008000?ooo`3oool00`00 P00O0?ooo`030000003oool0oooo00D0oooo000I0?ooo`030000003oool0oooo01D0oooo00@00000 0?ooo`3oool000000`3oool2000000H0oooo00D000000?ooo`3oool0oooo0000000>0?ooo`03001o 003oool0oooo00T0oooo00<007l00?ooo`3oool0AP3oool00`00P000oooo0?ooo`060?ooo`030020 003oool0oooo02@0oooo00<008000?ooo`3oool0103oool01000P000oooo0?ooo`00P0030?ooo`04 0020003oool0oooo002001h0oooo00<000000?ooo`3oool01@3oool001T0oooo00<000000?ooo`3o ool05@3oool010000000oooo0?ooo`00000;0?ooo`040000003oool0oooo0?ooo`8000003@3oool0 0`00O`00oooo0?ooo`090?ooo`03001o003oool0oooo04H0oooo00<008000?ooo`3oool01P3oool0 0`00P000oooo0?ooo`0U0?ooo`030020003oool0oooo00@0oooo00<008000?ooo`00P0000`3oool0 0`00P000oooo0?ooo`0O0?ooo`030000003oool0oooo00D0oooo000G0?ooo`<000005`3oool01000 0000oooo0?ooo`0000080?ooo`<00000103oool00`000000oooo0?ooo`0<0?ooo`03001o003oool0 oooo00T0oooo00<007l00?ooo`3oool0A`3oool00`00P000oooo0?ooo`050?ooo`030020003oool0 oooo02H0oooo00<008000?ooo`3oool00`3oool00`00P000oooo002000030?ooo`030020003oool0 oooo01l0oooo00<000000?ooo`3oool01@3oool00340oooo00@000000?ooo`3oool00000203oool0 0`000000oooo0?ooo`040?ooo`030000003oool0oooo00`0oooo00<007l00?ooo`3oool0203oool0 0`00O`00oooo0?ooo`180?ooo`030020003oool0oooo00D0oooo00<008000?ooo`3oool08`3oool0 1000P000oooo0?ooo`00P0040?ooo`D0080000<0oooo00200000P0000P00P00O0?ooo`030000003o ool0oooo00D0oooo000b0?ooo`8000002@3oool4000000<0oooo00<000000?ooo`3oool0303oool0 0`00O`00oooo0?ooo`080?ooo`03001o003oool0oooo04P0oooo00<008000?ooo`3oool0103oool2 002002H0oooo0P00P00<0?ooo`030020003oool0oooo01l0oooo00<000000?ooo`3oool01@3oool0 04@0oooo00<000000?ooo`3oool0303oool00`00O`00oooo0?ooo`080?ooo`03001o003oool0oooo 04P0oooo00<008000?ooo`3oool0>P3oool00`00P000oooo0?ooo`0O0?ooo`030000003oool0oooo 00D0oooo00140?ooo`030000003oool0oooo00d0oooo00<007l00?ooo`3oool01`3oool00`00O`00 oooo0?ooo`180?ooo`030020003oool0oooo05`0oooo00<000000?ooo`3oool01@3oool004@0oooo 00<000000?ooo`3oool03@3oool00`00O`00oooo0?ooo`060?ooo`03001o003oool0oooo04T0oooo 00<008000?ooo`3oool0G03oool00`000000oooo0?ooo`050?ooo`00A03oool00`000000oooo0?oo o`0=0?ooo`03001o003oool0oooo00H0oooo00<007l00?ooo`3oool0BP3oool00`00P000oooo0?oo o`1K0?ooo`030000003oool0oooo00D0oooo00140?ooo`030000003oool0oooo00d0oooo00<007l0 0?ooo`3oool01P3oool00`00O`00oooo0?ooo`1:0?ooo`030020003oool0oooo05/0oooo00<00000 0?ooo`3oool01@3oool004@0oooo00<000000?ooo`3oool03@3oool00`00O`00oooo0?ooo`060?oo o`03001o003oool0oooo04X0oooo3`00P01?0?ooo`030000003oool0oooo00D0oooo00140?ooo`03 0000003oool0oooo00d0oooo00<007l00?ooo`3oool01@3oool00`00O`00oooo0?ooo`2Y0?ooo`03 0000003oool0oooo00D0oooo00140?ooo`030000003oool0oooo00d0oooo00<007l00?ooo`3oool0 1@3oool00`00O`00oooo0?ooo`2Y0?ooo`030000003oool0oooo00D0oooo00140?ooo`030000003o ool0oooo00d0oooo00<007l00?ooo`3oool01@3oool00`00O`00oooo0?ooo`2Y0?ooo`030000003o ool0oooo00D0oooo00140?ooo`030000003oool0oooo00h0oooo00<007l00?ooo`3oool0103oool0 0`00O`00oooo0?ooo`2Y0?ooo`030000003oool0oooo00D0oooo00140?ooo`030000003oool0oooo 00h0oooo00<007l00?ooo`3oool00`3oool00`00O`00oooo0?ooo`2Z0?ooo`030000003oool0oooo 00D0oooo00140?ooo`030000003oool0oooo00h0oooo00<007l00?ooo`3oool00`3oool00`00O`00 oooo0?ooo`2Z0?ooo`030000003oool0oooo00D0oooo00140?ooo`030000003oool0oooo00h0oooo 00<007l00?ooo`3oool00`3oool00`00O`00oooo0?ooo`2Z0?ooo`030000003oool0oooo00D0oooo 00140?ooo`030000003oool0oooo00h0oooo00<007l00?ooo`3oool00`3oool00`00O`00oooo0?oo o`2Z0?ooo`030000003oool0oooo00D0oooo00140?ooo`030000003oool0oooo00h0oooo00<007l0 0?ooo`3oool00P3oool00`00O`00oooo0?ooo`2[0?ooo`030000003oool0oooo00D0oooo00140?oo o`030000003oool0oooo00h0oooo00<007l00?ooo`3oool00P3oool00`00O`00oooo0?ooo`2[0?oo o`030000003oool0oooo00D0oooo00140?ooo`030000003oool0oooo00l0oooo00D007l00?ooo`3o ool0oooo001o002]0?ooo`030000003oool0oooo00D0oooo00140?ooo`030000003oool0oooo00l0 oooo00D007l00?ooo`3oool0oooo001o002]0?ooo`030000003oool0oooo00D0oooo00140?ooo`03 0000003oool0oooo00l0oooo00@007l00?ooo`3oool007l0[P3oool00`000000oooo0?ooo`050?oo o`00A03oool00`000000oooo0?ooo`0?0?ooo`04001o003oool0oooo001o0:h0oooo00<000000?oo o`3oool01@3oool004@0oooo00<000000?ooo`3oool03`3oool01000O`00oooo0?ooo`00O`2^0?oo o`030000003oool0oooo00D0oooo00140?ooo`030000003oool0oooo00l0oooo00@007l00?ooo`3o ool007l0[P3oool00`000000oooo0?ooo`050?ooo`00A03oool00`000000oooo0?ooo`0?0?ooo`03 001o003oool007l00:l0oooo00<000000?ooo`3oool01@3oool004@0oooo00<000000?ooo`3oool0 3`3oool00`00O`00oooo001o002_0?ooo`030000003oool0oooo00D0oooo00140?ooo`030000003o ool0oooo0100oooo0P00O`2_0?ooo`030000003oool0oooo00D0oooo00140?ooo`030000003oool0 oooo0100oooo0P00O`2_0?ooo`030000003oool0oooo00D0oooo00140?ooo`030000003oool0oooo 00l0oooo0`00O`2_0?ooo`030000003oool0oooo00D0oooo00140?ooo`030000003oool0oooo00h0 oooo1@00O`2^0?ooo`030000003oool0oooo00D0oooo00140?ooo`030000003oool0oooo00h0oooo 1@00O`2^0?ooo`030000003oool0oooo00D0oooo00140?ooo`030000003oool0oooo00h0oooo1@00 O`2^0?ooo`030000003oool0oooo00D0oooo00140?ooo`030000003oool0oooo00l0oooo0`00O`2_ 0?ooo`030000003oool0oooo00D0oooo00140?ooo`030000003oool0oooo0<40oooo00<000000?oo o`3oool01@3oool004@0oooo00<000000?ooo`3oool0`@3oool00`000000oooo0?ooo`050?ooo`00 A03oool00`000000oooo0?ooo`310?ooo`030000003oool0oooo00D0oooo00140?ooo`030000003o ool0oooo0<40oooo00<000000?ooo`3oool01@3oool004@0oooo00<000000?ooo`3oool0`@3oool0 0`000000oooo0?ooo`050?ooo`00A03oool00`000000oooo0?ooo`310?ooo`030000003oool0oooo 00D0oooo00140?ooo`030000003oool0oooo0<40oooo00<000000?ooo`3oool01@3oool004@0oooo 00<000000?ooo`3oool0`@3oool00`000000oooo0?ooo`050?ooo`00A03oool00`000000oooo0?oo o`310?ooo`030000003oool0oooo00D0oooo00140?ooo`030000003oool0oooo0<40oooo00<00000 0?ooo`3oool01@3oool004@0oooo00<000000?ooo`3oool0`@3oool00`000000oooo0?ooo`050?oo o`00A03oool00`000000oooo0?ooo`310?ooo`030000003oool0oooo00D0oooo000m0?ooo`<00000 103oool00`000000oooo0?ooo`310?ooo`030000003oool0oooo00D0oooo000n0?ooo`030000003o ool0oooo00<0oooo00<000000?ooo`3oool0`@3oool00`000000oooo0?ooo`050?ooo`00?P3oool0 0`000000oooo0?ooo`030?ooo`800000`P3oool00`000000oooo0?ooo`050?ooo`00?P3oool00`00 0000oooo0?ooo`030?ooo`030000003oool0oooo0<40oooo00<000000?ooo`3oool01@3oool003h0 oooo00<000000?ooo`3oool00`3oool00`000000oooo0?ooo`020?ooo`030000003oool0oooo00/0 oooo00<000000?ooo`3oool0303oool00`000000oooo0?ooo`0;0?ooo`030000003oool0oooo00/0 oooo00<000000?ooo`3oool0303oool00`000000oooo0?ooo`0;0?ooo`030000003oool0oooo00/0 oooo00<000000?ooo`3oool0303oool00`000000oooo0?ooo`0;0?ooo`030000003oool0oooo00`0 oooo00<000000?ooo`3oool02`3oool00`000000oooo0?ooo`0;0?ooo`030000003oool0oooo00`0 oooo00D000000?ooo`3oool0oooo000000070?ooo`00?@3oool2000000D0oooo00<000000?ooo`3o ool00P3oool00`000000oooo0?ooo`0;0?ooo`030000003oool0oooo00`0oooo00<000000?ooo`3o ool02`3oool00`000000oooo0?ooo`0;0?ooo`030000003oool0oooo00`0oooo00<000000?ooo`3o ool02`3oool00`000000oooo0?ooo`0;0?ooo`030000003oool0oooo00`0oooo00<000000?ooo`3o ool02`3oool00`000000oooo0?ooo`0<0?ooo`030000003oool0oooo00/0oooo00<000000?ooo`3o ool02`3oool00`000000oooo0?ooo`0<0?ooo`050000003oool0oooo0?ooo`0000001`3oool004@0 ooooa@0000070?ooo`00o`3ooolA0?ooo`00o`3ooolA0?ooo`00o`3ooolA0?ooo`00o`3ooolA0?oo o`00o`3ooolA0?ooo`00o`3ooolA0?ooo`00o`3ooolA0?ooo`00o`3ooolA0?ooo`00o`3ooolA0?oo o`00CP3oool4000000X0oooo1000000:0?ooo`@000002`3oool4000000X0oooo1000000:0?ooo`@0 00002`3oool4000000X0oooo1000000;0?ooo`@000002P3oool4000000X0oooo1000000;0?ooo`@0 00002P3oool4000000/0oooo100000030?ooo`00C@3oool00`000000oooo0?ooo`0;0?ooo`030000 003oool0oooo00/0oooo00<000000?ooo`3oool0303oool00`000000oooo0?ooo`0;0?ooo`030000 003oool0oooo00/0oooo00<000000?ooo`3oool0303oool00`000000oooo0?ooo`0;0?ooo`030000 003oool0oooo00`0oooo00<000000?ooo`3oool02`3oool00`000000oooo0?ooo`0;0?ooo`030000 003oool0oooo00`0oooo00<000000?ooo`3oool02`3oool00`000000oooo0?ooo`0<0?ooo`030000 003oool0oooo00D0oooo001=0?ooo`D000002@3oool5000000T0oooo1@00000:0?ooo`D000002@3o ool5000000T0oooo1@00000:0?ooo`D000002@3oool5000000X0oooo1@0000090?ooo`D000002@3o ool5000000X0oooo1@0000090?ooo`D000002P3oool5000000<0oooo001<0?ooo`H00000203oool6 000000P0oooo1P0000090?ooo`H00000203oool6000000P0oooo1P0000090?ooo`H00000203oool6 000000T0oooo1P0000080?ooo`H00000203oool6000000T0oooo1P0000080?ooo`H000002@3oool6 000000<0oooo001>0?ooo`<000002`3oool3000000/0oooo0`00000<0?ooo`<000002`3oool30000 00/0oooo0`00000<0?ooo`<000002`3oool3000000`0oooo0`00000;0?ooo`<000002`3oool30000 00`0oooo0`00000;0?ooo`<00000303oool3000000@0oooo003o0?oooa40oooo003o0?oooa40oooo 003o0?oooa40oooo003o0?oooa40oooo003o0?oooa40oooo003o0?oooa40oooo003o0?oooa40oooo 003o0?oooa40oooo001>0?ooo`8000002`3oool3000000`0oooo0P00000<0?ooo`<000002`3oool3 000000/0oooo0`00000<0?ooo`<000002`3oool4000000/0oooo1000000:0?ooo`@000002P3oool3 000000`0oooo0`00000;0?ooo`<00000303oool3000000D0oooo001=0?ooo`040000003oool0oooo 000000d0oooo00<000000?ooo`3oool0203oool010000000oooo0?ooo`00000>0?ooo`030000003o ool0oooo00T0oooo00<000000?ooo`3oool02`3oool00`000000oooo0?ooo`0<0?ooo`030000003o ool0oooo00/0oooo00<000000?ooo`3oool0303oool00`000000oooo0?ooo`0;0?ooo`030000003o ool0oooo00d0oooo00<000000?ooo`3oool0303oool00`000000oooo0?ooo`0;0?ooo`030000003o ool0oooo00`0oooo00<000000?ooo`3oool00P3oool004d0oooo00@000000?ooo`3oool000003@3o ool00`000000oooo0?ooo`080?ooo`040000003oool0oooo000000`0oooo0`00000;0?ooo`030000 003oool0oooo00/0oooo00<000000?ooo`3oool0303oool00`000000oooo0?ooo`0<0?ooo`030000 003oool0oooo00`0oooo00<000000?ooo`3oool02`3oool00`000000oooo0?ooo`0<0?ooo`030000 003oool0oooo00`0oooo00<000000?ooo`3oool02`3oool00`000000oooo0?ooo`0<0?ooo`030000 003oool0oooo0080oooo001=0?ooo`040000003oool0oooo000000/0oooo0P00000;0?ooo`<00000 303oool010000000oooo0?ooo`00000;0?ooo`030000003oool0oooo00/0oooo00<000000?ooo`3o ool0303oool00`000000oooo0?ooo`0=0?ooo`030000003oool0oooo00`0oooo00<000000?ooo`3o ool02`3oool00`000000oooo0?ooo`090?ooo`8000003@3oool2000000`0oooo0P00000=0?ooo`80 00001@3oool004d0oooo00@000000?ooo`3oool000003@3oool00`000000oooo0?ooo`080?ooo`03 0000003oool0oooo00`0oooo00@000000?ooo`3oool000002`3oool00`000000oooo0?ooo`0;0?oo o`030000003oool0oooo00`0oooo00<000000?ooo`3oool02P3oool010000000oooo0?ooo`00000; 0?ooo`040000003oool0oooo000000X0oooo00@000000?ooo`3oool000003@3oool00`000000oooo 0?ooo`0<0?ooo`030000003oool0oooo00/0oooo00<000000?ooo`3oool0303oool00`000000oooo 0?ooo`020?ooo`00CP3oool2000000/0oooo0`00000<0?ooo`<00000303oool2000000/0oooo0P00 000<0?ooo`8000003@3oool2000000d0oooo0P00000=0?ooo`800000303oool2000000/0oooo0`00 000<0?ooo`<000002`3oool3000000`0oooo0`0000050?ooo`00C@3oool01@000000oooo0000003o ool0000000X0oooo0P00000<0?ooo`8000003@3oool2000000/0oooo1000000:0?ooo`<000003@3o ool2000000/0oooo0`00000=0?ooo`<000002`3oool00`000000oooo0?ooo`0;0?ooo`800000303o ool3000000`0oooo0P00000<0?ooo`<000001@3oool004d0oooo00D000000?ooo`000000oooo0000 00090?ooo`040000003oool0oooo000000X0oooo00@000000?ooo`3oool000002`3oool010000000 oooo0?ooo`00000;0?ooo`030000003oool0oooo00d0oooo00<000000?ooo`3oool02@3oool01000 0000oooo0?ooo`00000;0?ooo`030000003oool0oooo00d0oooo00<000000?ooo`3oool02P3oool0 0`000000oooo0?ooo`0:0?ooo`040000003oool0oooo000000h0oooo00<000000?ooo`3oool0203o ool010000000oooo0?ooo`00000>0?ooo`030000003oool0oooo0080oooo001=0?ooo`050000003o ool000000?ooo`0000002@3oool010000000oooo0?ooo`00000:0?ooo`040000003oool0oooo0000 00/0oooo00@000000?ooo`3oool00000303oool00`000000oooo0?ooo`0<0?ooo`030000003oool0 oooo00T0oooo00@000000?ooo`3oool000002`3oool00`000000oooo0?ooo`0;0?ooo`@00000303o ool00`000000oooo0?ooo`090?ooo`040000003oool0oooo000000h0oooo00<000000?ooo`3oool0 203oool010000000oooo0?ooo`00000<0?ooo`<00000103oool004d0oooo00D000000?ooo`000000 oooo000000090?ooo`040000003oool0oooo000000X0oooo00@000000?ooo`3oool000002`3oool0 10000000oooo0?ooo`00000=0?ooo`030000003oool0oooo00P0oooo0`00000=0?ooo`800000303o ool00`000000oooo0?ooo`0;0?ooo`030000003oool0000000d0oooo00<000000?ooo`3oool02@3o ool010000000oooo0?ooo`00000<0?ooo`8000002`3oool3000000`0oooo00@000000?ooo`3oool0 0000103oool004`0oooo1P0000090?ooo`040000003oool0oooo000000X0oooo00@000000?ooo`3o ool000002`3oool010000000oooo0?ooo`00000:0?ooo`040000003oool0oooo000000X0oooo00<0 00000?ooo`3oool0303oool010000000oooo0?ooo`00000;0?ooo`030000003oool0oooo00/0oooo 00<000000?ooo`0000003P3oool00`000000oooo0?ooo`080?ooo`040000003oool0oooo000000h0 oooo00<000000?ooo`3oool0203oool00`000000oooo0?ooo`0<0?ooo`040000003oool0oooo0000 00@0oooo001L0?ooo`800000303oool2000000d0oooo0P00000<0?ooo`8000002`3oool4000000`0 oooo0P00000;0?ooo`8000003P3oool2000000/0oooo1000000;0?ooo`800000303oool3000000`0 oooo0`00000<0?ooo`8000001@3oool005/0oooo00D000000?ooo`000000oooo000000090?ooo`05 0000003oool000000?ooo`0000002P3oool01@000000oooo0000003oool0000000X0oooo0P00000< 0?ooo`8000003@3oool2000000`0oooo0P00000=0?ooo`800000303oool2000000`0oooo0P00000= 0?ooo`800000303oool2000000d0oooo0P0000050?ooo`00F`3oool01@000000oooo0000003oool0 000000T0oooo00D000000?ooo`000000oooo0000000:0?ooo`050000003oool000000?ooo`000000 2@3oool010000000oooo0?ooo`00000:0?ooo`040000003oool0oooo000000/0oooo00@000000?oo o`3oool000002P3oool010000000oooo0?ooo`00000;0?ooo`040000003oool0oooo000000X0oooo 00@000000?ooo`3oool000002P3oool010000000oooo0?ooo`00000;0?ooo`040000003oool0oooo 000000X0oooo00@000000?ooo`3oool000002`3oool010000000oooo0?ooo`0000040?ooo`00F`3o ool01@000000oooo0000003oool0000000T0oooo00D000000?ooo`000000oooo0000000:0?ooo`05 0000003oool000000?ooo`0000002@3oool010000000oooo0?ooo`00000:0?ooo`040000003oool0 oooo000000/0oooo00@000000?ooo`3oool000002P3oool010000000oooo0?ooo`00000;0?ooo`04 0000003oool0oooo000000X0oooo00@000000?ooo`3oool000002P3oool010000000oooo0?ooo`00 000;0?ooo`040000003oool0oooo000000X0oooo00@000000?ooo`3oool000002`3oool010000000 oooo0?ooo`0000040?ooo`00F`3oool01@000000oooo0000003oool0000000T0oooo00D000000?oo o`000000oooo0000000:0?ooo`050000003oool000000?ooo`0000002@3oool010000000oooo0?oo o`00000:0?ooo`040000003oool0oooo000000/0oooo00@000000?ooo`3oool000002P3oool01000 0000oooo0?ooo`00000;0?ooo`040000003oool0oooo000000X0oooo00@000000?ooo`3oool00000 2P3oool010000000oooo0?ooo`00000;0?ooo`040000003oool0oooo000000X0oooo00@000000?oo o`3oool000002`3oool010000000oooo0?ooo`0000040?ooo`00FP3oool6000000P0oooo1P000009 0?ooo`H000002@3oool010000000oooo0?ooo`00000:0?ooo`040000003oool0oooo000000/0oooo 00@000000?ooo`3oool000002P3oool010000000oooo0?ooo`00000;0?ooo`040000003oool0oooo 000000X0oooo00@000000?ooo`3oool000002P3oool010000000oooo0?ooo`00000;0?ooo`040000 003oool0oooo000000X0oooo00@000000?ooo`3oool000002`3oool010000000oooo0?ooo`000004 0?ooo`00Q`3oool2000000`0oooo0P00000=0?ooo`800000303oool2000000d0oooo0P00000<0?oo o`800000303oool2000000d0oooo0P00000<0?ooo`8000003@3oool2000000D0oooo00260?ooo`05 0000003oool000000?ooo`0000002@3oool01@000000oooo0000003oool0000000X0oooo00D00000 0?ooo`000000oooo000000090?ooo`050000003oool000000?ooo`0000002P3oool01@000000oooo 0000003oool0000000T0oooo00D000000?ooo`000000oooo000000090?ooo`050000003oool00000 0?ooo`0000002P3oool01@000000oooo0000003oool0000000T0oooo00D000000?ooo`000000oooo 0000000:0?ooo`050000003oool000000?ooo`0000000`3oool008H0oooo00D000000?ooo`000000 oooo000000090?ooo`050000003oool000000?ooo`0000002P3oool01@000000oooo0000003oool0 000000T0oooo00D000000?ooo`000000oooo0000000:0?ooo`050000003oool000000?ooo`000000 2@3oool01@000000oooo0000003oool0000000T0oooo00D000000?ooo`000000oooo0000000:0?oo o`050000003oool000000?ooo`0000002@3oool01@000000oooo0000003oool0000000X0oooo00D0 00000?ooo`000000oooo000000030?ooo`00QP3oool01@000000oooo0000003oool0000000T0oooo 00D000000?ooo`000000oooo0000000:0?ooo`050000003oool000000?ooo`0000002@3oool01@00 0000oooo0000003oool0000000X0oooo00D000000?ooo`000000oooo000000090?ooo`050000003o ool000000?ooo`0000002@3oool01@000000oooo0000003oool0000000X0oooo00D000000?ooo`00 0000oooo000000090?ooo`050000003oool000000?ooo`0000002P3oool01@000000oooo0000003o ool0000000<0oooo00260?ooo`050000003oool000000?ooo`0000002@3oool01@000000oooo0000 003oool0000000X0oooo00D000000?ooo`000000oooo000000090?ooo`050000003oool000000?oo o`0000002P3oool01@000000oooo0000003oool0000000T0oooo00D000000?ooo`000000oooo0000 00090?ooo`050000003oool000000?ooo`0000002P3oool01@000000oooo0000003oool0000000T0 oooo00D000000?ooo`000000oooo0000000:0?ooo`050000003oool000000?ooo`0000000`3oool0 08D0oooo1P0000080?ooo`H000002@3oool6000000P0oooo1P0000090?ooo`H00000203oool60000 00P0oooo1P0000090?ooo`H00000203oool6000000T0oooo1P0000030?ooo`00o`3ooolA0?ooo`00 o`3ooolA0?ooo`00o`3ooolA0?ooo`00o`3ooolA0?ooo`00o`3ooolA0?ooo`00o`3ooolA0?ooo`00 o`3ooolA0?ooo`00o`3ooolA0?ooo`00o`3ooolA0?ooo`00o`3ooolA0?ooo`00o`3ooolA0?ooo`00 o`3ooolA0?ooo`00o`3ooolA0?ooo`00o`3ooolA0?ooo`00o`3ooolA0?ooo`00o`3ooolA0?ooo`00 o`3ooolA0?ooo`00o`3ooolA0?ooo`00o`3ooolA0?ooo`00S03oool00`000000oooo0?ooo`060?oo o`030000003oool0oooo0200oooo0`00001E0?ooo`00R`3oool00`000000oooo0?ooo`080?ooo`03 0000003oool0oooo0200oooo00<000000?ooo`3oool0E03oool008X0oooo00<000000?ooo`3oool0 0`3oool3000000@0oooo00<000000?ooo`3oool01P3oool2000000030?ooo`00000000000080oooo 100000020?ooo`@000000P3oool500000080oooo00<000000?ooo`3oool00P3oool4000004d0oooo 002:0?ooo`030000003oool0oooo0080oooo00D000000?ooo`3oool0oooo000000030?ooo`030000 003oool0oooo00L0oooo00<000000?ooo`000000103oool00`000000oooo0?ooo`030?ooo`030000 003oool0oooo0080oooo00@000000?ooo`3oool000000`3oool00`000000oooo0?ooo`050?ooo`03 0000003oool0oooo04/0oooo002:0?ooo`030000003oool0oooo0080oooo00<000000?ooo`3oool0 1@3oool00`000000oooo0?ooo`070?ooo`<00000103oool00`000000oooo0?ooo`030?ooo`030000 003oool0oooo0080oooo100000020?ooo`030000003oool0000000<0oooo1000001=0?ooo`00RP3o ool00`000000oooo0?ooo`020?ooo`050000003oool0oooo0?ooo`0000000`3oool00`000000oooo 0?ooo`070?ooo`030000003oool0000000@0oooo0P0000040?ooo`8000001P3oool01P000000oooo 0?ooo`000000oooo000000<0oooo00<000000?ooo`3oool0CP3oool008/0oooo00<000000?ooo`3o ool00P3oool400000080oooo00<000000?ooo`3oool02@3oool00`000000oooo0?ooo`020?ooo`80 000000@0oooo000000000000oooo0P0000000`3oool00000000000020?ooo`<0000000@0oooo0000 00000000oooo0P0000020?ooo`@00000C@3oool008`0oooo00<000000?ooo`3oool01P3oool00`00 0000oooo0?ooo`090?ooo`800000K@3oool00?l0oooo4@3oool00?l0oooo4@3oool00?l0oooo4@3o ool00001\ \>"], ImageRangeCache->{{{0, 271.25}, {284.875, 0}} -> {-5.08884, -1.12455, 0.0694989, 0.0103692}}] }, Open ]], Cell[BoxData[ \( (*\ Display\ Selected\ Eigengenes\ *) \)], "Input", PageBreakAbove->False, PageBreakBelow->False, GroupPageBreakWithin->False, FontColor->RGBColor[0, 0, 1]], Cell[BoxData[ \(\(g3 = Show[{p4, p3, p2}, \n\t\tDisplayFunction -> Identity]; \)\)], "Input", PageBreakAbove->False, PageBreakBelow->False, GroupPageBreakWithin->False], Cell[BoxData[ \( (*\ Display\ Eigengenes, \ Fractions\ and\ Selected\ Eigengenes\ *) \)], "Input", PageBreakAbove->True, PageBreakBelow->False, FontColor->RGBColor[0, 0, 1]], Cell[CellGroupData[{ Cell[BoxData[ \(\(Show[GraphicsArray[{g1, g2, g3}], \n\tGraphicsSpacing -> \(-0.125\)]; \)\)], "Input", PageBreakAbove->False, PageBreakBelow->False], Cell[GraphicsData["PostScript", "\<\ %! %%Creator: Mathematica %%AspectRatio: .38182 MathPictureStart /Mabs { Mgmatrix idtransform Mtmatrix dtransform } bind def /Mabsadd { Mabs 3 -1 roll add 3 1 roll add exch } bind def %% Graphics %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10 scalefont setfont % Scaling calculations 0.0238095 0.31746 0.00909091 0.31746 [ [ 0 0 0 0 ] [ 1 .38182 0 0 ] ] MathScale % Start of Graphics 1 setlinecap 1 setlinejoin newpath 0 0 m 1 0 L 1 .38182 L 0 .38182 L closepath clip newpath % Start of sub-graphic p 0.0238095 0.00909091 0.37013 0.372727 MathSubStart %% Graphics %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10 scalefont setfont % Scaling calculations 0.171115 0.0561029 0.04573 0.0592285 [ [.14117 .07534 -12 -4.5 ] [.14117 .07534 0 4.5 ] [.14117 .13457 -12 -4.5 ] [.14117 .13457 0 4.5 ] [.14117 .1938 -12 -4.5 ] [.14117 .1938 0 4.5 ] [.14117 .25303 -12 -4.5 ] [.14117 .25303 0 4.5 ] [.14117 .31226 -12 -4.5 ] [.14117 .31226 0 4.5 ] [.14117 .37149 -6 -4.5 ] [.14117 .37149 0 4.5 ] [.14117 .43072 -6 -4.5 ] [.14117 .43072 0 4.5 ] [.14117 .48994 -6 -4.5 ] [.14117 .48994 0 4.5 ] [.14117 .54917 -6 -4.5 ] [.14117 .54917 0 4.5 ] [.14117 .6084 -6 -4.5 ] [.14117 .6084 0 4.5 ] [.14117 .66763 -6 -4.5 ] [.14117 .66763 0 4.5 ] [.14117 .72686 -6 -4.5 ] [.14117 .72686 0 4.5 ] [.14117 .78609 -6 -4.5 ] [.14117 .78609 0 4.5 ] [.14117 .84532 -6 -4.5 ] [.14117 .84532 0 4.5 ] [.02381 .46033 -6 -32 ] [.02381 .46033 6 32 ] [.19917 1.01315 -6.1875 -20.125 ] [.19917 1.01315 6.1875 20.125 ] [.25527 1.01315 -6.1875 -20.125 ] [.25527 1.01315 6.1875 20.125 ] [.31137 1.01315 -6.1875 -20.125 ] [.31137 1.01315 6.1875 20.125 ] [.36747 1.01315 -6.1875 -20.125 ] [.36747 1.01315 6.1875 20.125 ] [.42358 1.01315 -6.1875 -20.125 ] [.42358 1.01315 6.1875 20.125 ] [.47968 1.01315 -6.1875 -20.125 ] [.47968 1.01315 6.1875 20.125 ] [.53578 1.01315 -6.1875 -20.125 ] [.53578 1.01315 6.1875 20.125 ] [.59189 1.01315 -6.1875 -20.125 ] [.59189 1.01315 6.1875 20.125 ] [.64799 1.01315 -6.1875 -20.125 ] [.64799 1.01315 6.1875 20.125 ] [.70409 1.01315 -6.1875 -20.125 ] [.70409 1.01315 6.1875 20.125 ] [.76019 1.01315 -6.1875 -20.125 ] [.76019 1.01315 6.1875 20.125 ] [.8163 1.01315 -6.1875 -20.125 ] [.8163 1.01315 6.1875 20.125 ] [.8724 1.01315 -6.1875 -20.125 ] [.8724 1.01315 6.1875 20.125 ] [.9285 1.01315 -6.1875 -20.125 ] [.9285 1.01315 6.1875 20.125 ] [.56383 1.025 -32 0 ] [.56383 1.025 32 39.625 ] [ 0 0 0 0 ] [ 1 1.05 0 0 ] ] MathScale % Start of Graphics 1 setlinecap 1 setlinejoin newpath % Start of colorimage (RGB) p .17111 .04573 translate .78544 .8292 scale 42 string 14 14 8 [14 0 0 14 0 0] { \tcurrentfile \t1 index \treadhexstring \tpop } false 3 Mcolorimage 1300000006000B00000000004D000000B000390000DD000000FF00FF00000027004F00007B0000\ 00A500 0005000300001500002D0000002B00F4000000FF00FF000000970000FF00090000EA0000008400\ 002300 000B00000900002200004300FF000000FF00940000FF00004F000000FF00110000003000003700\ 6B0000 000F00030000002600002700006600760000FF0000007A0000F30000FD0000A500FF000000A600\ 850000 001500000000002300370000009100790000CF000072000000180000FF00500000008400FF0000\ 00FF00 000F001400004E0000008300FF000000320000870000FF005F0000003200000B00FF0000480000\ 00FF00 050000160000A8000000FF00E00000FD00000024001D000000510000150000FF0000B300D10000\ E70000 000000002B00FF0000003C0000DE00003E008C0000D00000DB000059000000EA0013000000AA00\ 00FE00 2F0000A3000000FF005D00003F0000610000360000B40000DD00008E000000FF00140000001900\ 009400 000A0000FF00AE0000FF0000670000004D0000760000720000250000470000FF001F0000DC0000\ B50000 00EF00FF0000950000830000004700009600006A00007600006700005F00007600003000310000\ 360000 700000360000660000EA0000FF0000FC000085000000360000AE0000650017000000FF0000FF00\ 00C700 FF00007B00000A000000370000910000A700006E00007100004900007A00005900001500170000\ 000F00 DB0000E40000B00000C80000CF0000D00000B10000C40000C20000B90000E30000EE0000B90000\ D60000 pop P % End of image 0 g .25 Mabswid [ ] 0 setdash .15148 .025 m .97619 .025 L s .15148 .07534 m .15663 .07534 L s [(14)] .14117 .07534 1 0 Mshowa .15148 .13457 m .15663 .13457 L s [(13)] .14117 .13457 1 0 Mshowa .15148 .1938 m .15663 .1938 L s [(12)] .14117 .1938 1 0 Mshowa .15148 .25303 m .15663 .25303 L s [(11)] .14117 .25303 1 0 Mshowa .15148 .31226 m .15663 .31226 L s [(10)] .14117 .31226 1 0 Mshowa .15148 .37149 m .15663 .37149 L s [(9)] .14117 .37149 1 0 Mshowa .15148 .43072 m .15663 .43072 L s [(8)] .14117 .43072 1 0 Mshowa .15148 .48994 m .15663 .48994 L s [(7)] .14117 .48994 1 0 Mshowa .15148 .54917 m .15663 .54917 L s [(6)] .14117 .54917 1 0 Mshowa .15148 .6084 m .15663 .6084 L s [(5)] .14117 .6084 1 0 Mshowa .15148 .66763 m .15663 .66763 L s [(4)] .14117 .66763 1 0 Mshowa .15148 .72686 m .15663 .72686 L s [(3)] .14117 .72686 1 0 Mshowa .15148 .78609 m .15663 .78609 L s [(2)] .14117 .78609 1 0 Mshowa .15148 .84532 m .15663 .84532 L s [(1)] .14117 .84532 1 0 Mshowa .15148 .025 m .15148 .89566 L s gsave .02381 .46033 -93 -10 Mabsadd m 1 1 Mabs scale currentpoint translate 93 10 translate 90 rotate -93 -10 translate 0 20 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.000000 moveto 558.000000 16.000000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.000000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (Eigengenes) show 123.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .19917 .89022 m .19917 .89566 L s gsave .19917 1.01315 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (0) show 81.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .25527 .89022 m .25527 .89566 L s gsave .25527 1.01315 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (30) show 87.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .31137 .89022 m .31137 .89566 L s gsave .31137 1.01315 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (60) show 87.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .36747 .89022 m .36747 .89566 L s gsave .36747 1.01315 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (90) show 87.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .42358 .89022 m .42358 .89566 L s gsave .42358 1.01315 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (120) show 93.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .47968 .89022 m .47968 .89566 L s gsave .47968 1.01315 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (150) show 93.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .53578 .89022 m .53578 .89566 L s gsave .53578 1.01315 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (180) show 93.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .59189 .89022 m .59189 .89566 L s gsave .59189 1.01315 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (210) show 93.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .64799 .89022 m .64799 .89566 L s gsave .64799 1.01315 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (240) show 93.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .70409 .89022 m .70409 .89566 L s gsave .70409 1.01315 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (270) show 93.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .76019 .89022 m .76019 .89566 L s gsave .76019 1.01315 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (300) show 93.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .8163 .89022 m .8163 .89566 L s gsave .8163 1.01315 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (330) show 93.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .8724 .89022 m .8724 .89566 L s gsave .8724 1.01315 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (360) show 93.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .9285 .89022 m .9285 .89566 L s gsave .9285 1.01315 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (390) show 93.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .15148 .89566 m .97619 .89566 L s gsave .56383 1.025 -93 -4 Mabsadd m 1 1 Mabs scale currentpoint translate 0 47.625 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 43.625000 moveto 558.000000 43.625000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 43.625000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto %%IncludeResource: font Math2Mono %%IncludeFont: Math2Mono /Math2Mono findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 63.000000 13.000000 moveto (H) show 69.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (a) show %%IncludeResource: font Math2Mono %%IncludeFont: Math2Mono /Math2Mono findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 75.000000 13.000000 moveto (L) show 87.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (Arrays) show 123.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 90.000000 26.500000 moveto 0.000000 0.000000 rmoveto 96.000000 26.500000 moveto 0.000000 0.000000 rmoveto 90.000000 40.000000 moveto 0.000000 0.000000 rmoveto 96.000000 40.000000 moveto 0.000000 0.000000 rmoveto 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Math2Mono %%+ font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Math2Mono %%+ Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Math2Mono %%+ font Courier grestore .97619 .025 m .97619 .89566 L s 0 0 m 1 0 L 1 1.05 L 0 1.05 L closepath clip newpath MathSubEnd P % End of sub-graphic % Start of sub-graphic p 0.32684 0.00909091 0.67316 0.372727 MathSubStart %% Graphics %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10 scalefont setfont % Scaling calculations 0.0355673 0.940529 -0.00760102 0.0794877 [ [.02381 .07189 -12 -4.5 ] [.02381 .07189 0 4.5 ] [.02381 .15137 -12 -4.5 ] [.02381 .15137 0 4.5 ] [.02381 .23086 -12 -4.5 ] [.02381 .23086 0 4.5 ] [.02381 .31035 -12 -4.5 ] [.02381 .31035 0 4.5 ] [.02381 .38984 -12 -4.5 ] [.02381 .38984 0 4.5 ] [.02381 .46933 -6 -4.5 ] [.02381 .46933 0 4.5 ] [.02381 .54881 -6 -4.5 ] [.02381 .54881 0 4.5 ] [.02381 .6283 -6 -4.5 ] [.02381 .6283 0 4.5 ] [.02381 .70779 -6 -4.5 ] [.02381 .70779 0 4.5 ] [.02381 .78728 -6 -4.5 ] [.02381 .78728 0 4.5 ] [.02381 .86676 -6 -4.5 ] [.02381 .86676 0 4.5 ] [.02381 .94625 -6 -4.5 ] [.02381 .94625 0 4.5 ] [.02381 1.02574 -6 -4.5 ] [.02381 1.02574 0 4.5 ] [.02381 1.10523 -6 -4.5 ] [.02381 1.10523 0 4.5 ] [.03557 1.30196 -6 -20 ] [.03557 1.30196 6 20 ] [.22367 1.30196 -6 -20 ] [.22367 1.30196 6 20 ] [.41178 1.30196 -6 -20 ] [.41178 1.30196 6 20 ] [.59988 1.30196 -6 -20 ] [.59988 1.30196 6 20 ] [.78799 1.30196 -6 -20 ] [.78799 1.30196 6 20 ] [.9761 1.30196 -6 -20 ] [.9761 1.30196 6 20 ] [.50588 1.31786 -86 0 ] [.50588 1.31786 86 39.3125 ] [ 0 0 0 0 ] [ 1 1.35 0 0 ] ] MathScale % Start of Graphics 1 setlinecap 1 setlinejoin newpath 1 0 0 r .03557 .04009 m .03557 .10368 L .03616 .10368 L .03616 .04009 L F 0 g .5 Mabswid [ ] 0 setdash .03557 .04009 m .03557 .10368 L .03616 .10368 L .03616 .04009 L .03557 .04009 L s 1 0 0 r .03557 .11958 m .03557 .18317 L .03624 .18317 L .03624 .11958 L F 0 g .03557 .11958 m .03557 .18317 L .03624 .18317 L .03624 .11958 L .03557 .11958 L s 1 0 0 r .03557 .19907 m .03557 .26266 L .03635 .26266 L .03635 .19907 L F 0 g .03557 .19907 m .03557 .26266 L .03635 .26266 L .03635 .19907 L .03557 .19907 L s 1 0 0 r .03557 .27855 m .03557 .34215 L .03657 .34215 L .03657 .27855 L F 0 g .03557 .27855 m .03557 .34215 L .03657 .34215 L .03657 .27855 L .03557 .27855 L s 1 0 0 r .03557 .35804 m .03557 .42163 L .03672 .42163 L .03672 .35804 L F 0 g .03557 .35804 m .03557 .42163 L .03672 .42163 L .03672 .35804 L .03557 .35804 L s 1 0 0 r .03557 .43753 m .03557 .50112 L .03676 .50112 L .03676 .43753 L F 0 g .03557 .43753 m .03557 .50112 L .03676 .50112 L .03676 .43753 L .03557 .43753 L s 1 0 0 r .03557 .51702 m .03557 .58061 L .037 .58061 L .037 .51702 L F 0 g .03557 .51702 m .03557 .58061 L .037 .58061 L .037 .51702 L .03557 .51702 L s 1 0 0 r .03557 .59651 m .03557 .6601 L .03739 .6601 L .03739 .59651 L F 0 g .03557 .59651 m .03557 .6601 L .03739 .6601 L .03739 .59651 L .03557 .59651 L s 1 0 0 r .03557 .67599 m .03557 .73958 L .03814 .73958 L .03814 .67599 L F 0 g .03557 .67599 m .03557 .73958 L .03814 .73958 L .03814 .67599 L .03557 .67599 L s 1 0 0 r .03557 .75548 m .03557 .81907 L .03893 .81907 L .03893 .75548 L F 0 g .03557 .75548 m .03557 .81907 L .03893 .81907 L .03893 .75548 L .03557 .75548 L s 1 0 0 r .03557 .83497 m .03557 .89856 L .0416 .89856 L .0416 .83497 L F 0 g .03557 .83497 m .03557 .89856 L .0416 .89856 L .0416 .83497 L .03557 .83497 L s 1 0 0 r .03557 .91446 m .03557 .97805 L .04774 .97805 L .04774 .91446 L F 0 g .03557 .91446 m .03557 .97805 L .04774 .97805 L .04774 .91446 L .03557 .91446 L s 1 0 0 r .03557 .99394 m .03557 1.05753 L .06487 1.05753 L .06487 .99394 L F 0 g .03557 .99394 m .03557 1.05753 L .06487 1.05753 L .06487 .99394 L .03557 .99394 L s 1 0 0 r .03557 1.07343 m .03557 1.13702 L .914 1.13702 L .914 1.07343 L F 0 g .03557 1.07343 m .03557 1.13702 L .914 1.13702 L .914 1.07343 L .03557 1.07343 L s .25 Mabswid .03557 .03214 m .03557 1.14497 L s .22367 .03214 m .22367 1.14497 L s .41178 .03214 m .41178 1.14497 L s .59988 .03214 m .59988 1.14497 L s .78799 .03214 m .78799 1.14497 L s .9761 .03214 m .9761 1.14497 L s .03557 .03214 m .97619 .03214 L s .03557 .07189 m .04145 .07189 L s [(14)] .02381 .07189 1 0 Mshowa .03557 .15137 m .04145 .15137 L s [(13)] .02381 .15137 1 0 Mshowa .03557 .23086 m .04145 .23086 L s [(12)] .02381 .23086 1 0 Mshowa .03557 .31035 m .04145 .31035 L s [(11)] .02381 .31035 1 0 Mshowa .03557 .38984 m .04145 .38984 L s [(10)] .02381 .38984 1 0 Mshowa .03557 .46933 m .04145 .46933 L s [(9)] .02381 .46933 1 0 Mshowa .03557 .54881 m .04145 .54881 L s [(8)] .02381 .54881 1 0 Mshowa .03557 .6283 m .04145 .6283 L s [(7)] .02381 .6283 1 0 Mshowa .03557 .70779 m .04145 .70779 L s [(6)] .02381 .70779 1 0 Mshowa .03557 .78728 m .04145 .78728 L s [(5)] .02381 .78728 1 0 Mshowa .03557 .86676 m .04145 .86676 L s [(4)] .02381 .86676 1 0 Mshowa .03557 .94625 m .04145 .94625 L s [(3)] .02381 .94625 1 0 Mshowa .03557 1.02574 m .04145 1.02574 L s [(2)] .02381 1.02574 1 0 Mshowa .03557 1.10523 m .04145 1.10523 L s [(1)] .02381 1.10523 1 0 Mshowa .03557 .03214 m .03557 1.14497 L s .03557 1.13802 m .03557 1.14497 L s gsave .03557 1.30196 -81 -10 Mabsadd m 1 1 Mabs scale currentpoint translate 81 10 translate 90 rotate -81 -10 translate 0 20 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.000000 moveto 558.000000 16.000000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.000000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (0) show 99.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .22367 1.13802 m .22367 1.14497 L s gsave .22367 1.30196 -81 -10 Mabsadd m 1 1 Mabs scale currentpoint translate 81 10 translate 90 rotate -81 -10 translate 0 20 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.000000 moveto 558.000000 16.000000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.000000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (0.2) show 99.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .41178 1.13802 m .41178 1.14497 L s gsave .41178 1.30196 -81 -10 Mabsadd m 1 1 Mabs scale currentpoint translate 81 10 translate 90 rotate -81 -10 translate 0 20 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.000000 moveto 558.000000 16.000000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.000000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (0.4) show 99.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .59988 1.13802 m .59988 1.14497 L s gsave .59988 1.30196 -81 -10 Mabsadd m 1 1 Mabs scale currentpoint translate 81 10 translate 90 rotate -81 -10 translate 0 20 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.000000 moveto 558.000000 16.000000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.000000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (0.6) show 99.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .78799 1.13802 m .78799 1.14497 L s gsave .78799 1.30196 -81 -10 Mabsadd m 1 1 Mabs scale currentpoint translate 81 10 translate 90 rotate -81 -10 translate 0 20 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.000000 moveto 558.000000 16.000000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.000000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (0.8) show 99.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .9761 1.13802 m .9761 1.14497 L s gsave .9761 1.30196 -81 -10 Mabsadd m 1 1 Mabs scale currentpoint translate 81 10 translate 90 rotate -81 -10 translate 0 20 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.000000 moveto 558.000000 16.000000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.000000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (1.) show 99.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .03557 1.14497 m .97619 1.14497 L s gsave .50588 1.31786 -147 -4 Mabsadd m 1 1 Mabs scale currentpoint translate 0 47.3125 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 43.312500 moveto 558.000000 43.312500 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 43.312500 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto %%IncludeResource: font Math2Mono %%IncludeFont: Math2Mono /Math2Mono findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 63.000000 13.000000 moveto (H) show 69.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (b) show %%IncludeResource: font Math2Mono %%IncludeFont: Math2Mono /Math2Mono findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 75.000000 13.000000 moveto (L) show 87.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (Eigenexpression) show 183.000000 13.000000 moveto (Fraction) show 231.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 123.000000 26.312500 moveto 0.000000 0.000000 rmoveto 123.000000 26.312500 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (d) show 135.000000 26.312500 moveto %%IncludeResource: font Math1Mono %%IncludeFont: Math1Mono /Math1Mono findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (=) show 147.000000 26.312500 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (0.14) show 171.000000 26.312500 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 144.000000 39.687500 moveto 0.000000 0.000000 rmoveto 150.000000 39.687500 moveto 0.000000 0.000000 rmoveto 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Math1Mono %%+ font Math2Mono %%+ font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Math1Mono %%+ Math2Mono %%+ Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Math1Mono %%+ font Math2Mono %%+ font Courier grestore .97619 .03214 m .97619 1.14497 L s 1 1 .8 r .12962 .04009 m .12962 .99394 L .95729 .99394 L .95729 .04009 L F % Start of sub-graphic p 0.12962 0.0400916 0.957286 0.993945 MathSubStart %% Graphics %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10 scalefont setfont % Scaling calculations 0.0355673 23.5132 -0.010834 0.0811919 [ [.02381 .07036 -12 -4.5 ] [.02381 .07036 0 4.5 ] [.02381 .15155 -12 -4.5 ] [.02381 .15155 0 4.5 ] [.02381 .23274 -12 -4.5 ] [.02381 .23274 0 4.5 ] [.02381 .31393 -12 -4.5 ] [.02381 .31393 0 4.5 ] [.02381 .39513 -12 -4.5 ] [.02381 .39513 0 4.5 ] [.02381 .47632 -6 -4.5 ] [.02381 .47632 0 4.5 ] [.02381 .55751 -6 -4.5 ] [.02381 .55751 0 4.5 ] [.02381 .6387 -6 -4.5 ] [.02381 .6387 0 4.5 ] [.02381 .71989 -6 -4.5 ] [.02381 .71989 0 4.5 ] [.02381 .80108 -6 -4.5 ] [.02381 .80108 0 4.5 ] [.02381 .88228 -6 -4.5 ] [.02381 .88228 0 4.5 ] [.02381 .96347 -6 -4.5 ] [.02381 .96347 0 4.5 ] [.02381 1.04466 -6 -4.5 ] [.02381 1.04466 0 4.5 ] [.03557 1.22024 -6 -14 ] [.03557 1.22024 6 14 ] [.2707 1.22024 -4.5 -12 ] [.2707 1.22024 4.5 12 ] [.50583 1.22024 -4.5 -12 ] [.50583 1.22024 4.5 12 ] [.74096 1.22024 -4.5 -12 ] [.74096 1.22024 4.5 12 ] [.9761 1.22024 -4.5 -12 ] [.9761 1.22024 4.5 12 ] [ 0 0 0 0 ] [ 1 1.25 0 0 ] ] MathScale % Start of Graphics 1 setlinecap 1 setlinejoin newpath 1 0 0 r .03557 .03788 m .03557 .10283 L .05037 .10283 L .05037 .03788 L F 0 g .5 Mabswid [ ] 0 setdash .03557 .03788 m .03557 .10283 L .05037 .10283 L .05037 .03788 L .03557 .03788 L s 1 0 0 r .03557 .11907 m .03557 .18403 L .05233 .18403 L .05233 .11907 L F 0 g .03557 .11907 m .03557 .18403 L .05233 .18403 L .05233 .11907 L .03557 .11907 L s 1 0 0 r .03557 .20026 m .03557 .26522 L .05519 .26522 L .05519 .20026 L F 0 g .03557 .20026 m .03557 .26522 L .05519 .26522 L .05519 .20026 L .03557 .20026 L s 1 0 0 r .03557 .28146 m .03557 .34641 L .06075 .34641 L .06075 .28146 L F 0 g .03557 .28146 m .03557 .34641 L .06075 .34641 L .06075 .28146 L .03557 .28146 L s 1 0 0 r .03557 .36265 m .03557 .4276 L .06428 .4276 L .06428 .36265 L F 0 g .03557 .36265 m .03557 .4276 L .06428 .4276 L .06428 .36265 L .03557 .36265 L s 1 0 0 r .03557 .44384 m .03557 .50879 L .06537 .50879 L .06537 .44384 L F 0 g .03557 .44384 m .03557 .50879 L .06537 .50879 L .06537 .44384 L .03557 .44384 L s 1 0 0 r .03557 .52503 m .03557 .58999 L .07139 .58999 L .07139 .52503 L F 0 g .03557 .52503 m .03557 .58999 L .07139 .58999 L .07139 .52503 L .03557 .52503 L s 1 0 0 r .03557 .60622 m .03557 .67118 L .08109 .67118 L .08109 .60622 L F 0 g .03557 .60622 m .03557 .67118 L .08109 .67118 L .08109 .60622 L .03557 .60622 L s 1 0 0 r .03557 .68742 m .03557 .75237 L .09994 .75237 L .09994 .68742 L F 0 g .03557 .68742 m .03557 .75237 L .09994 .75237 L .09994 .68742 L .03557 .68742 L s 1 0 0 r .03557 .76861 m .03557 .83356 L .11965 .83356 L .11965 .76861 L F 0 g .03557 .76861 m .03557 .83356 L .11965 .83356 L .11965 .76861 L .03557 .76861 L s 1 0 0 r .03557 .8498 m .03557 .91475 L .18633 .91475 L .18633 .8498 L F 0 g .03557 .8498 m .03557 .91475 L .18633 .91475 L .18633 .8498 L .03557 .8498 L s 1 0 0 r .03557 .93099 m .03557 .99595 L .3398 .99595 L .3398 .93099 L F 0 g .03557 .93099 m .03557 .99595 L .3398 .99595 L .3398 .93099 L .03557 .93099 L s 1 0 0 r .03557 1.01218 m .03557 1.07714 L .7682 1.07714 L .7682 1.01218 L F 0 g .03557 1.01218 m .03557 1.07714 L .7682 1.07714 L .7682 1.01218 L .03557 1.01218 L s .25 Mabswid .03557 .02976 m .03557 1.08526 L s .2707 .02976 m .2707 1.08526 L s .50583 .02976 m .50583 1.08526 L s .74096 .02976 m .74096 1.08526 L s .9761 .02976 m .9761 1.08526 L s .03557 .02976 m .97619 .02976 L s .03557 .07036 m .04145 .07036 L s [(14)] .02381 .07036 1 0 Mshowa .03557 .15155 m .04145 .15155 L s [(13)] .02381 .15155 1 0 Mshowa .03557 .23274 m .04145 .23274 L s [(12)] .02381 .23274 1 0 Mshowa .03557 .31393 m .04145 .31393 L s [(11)] .02381 .31393 1 0 Mshowa .03557 .39513 m .04145 .39513 L s [(10)] .02381 .39513 1 0 Mshowa .03557 .47632 m .04145 .47632 L s [(9)] .02381 .47632 1 0 Mshowa .03557 .55751 m .04145 .55751 L s [(8)] .02381 .55751 1 0 Mshowa .03557 .6387 m .04145 .6387 L s [(7)] .02381 .6387 1 0 Mshowa .03557 .71989 m .04145 .71989 L s [(6)] .02381 .71989 1 0 Mshowa .03557 .80108 m .04145 .80108 L s [(5)] .02381 .80108 1 0 Mshowa .03557 .88228 m .04145 .88228 L s [(4)] .02381 .88228 1 0 Mshowa .03557 .96347 m .04145 .96347 L s [(3)] .02381 .96347 1 0 Mshowa .03557 1.04466 m .04145 1.04466 L s [(2)] .02381 1.04466 1 0 Mshowa .03557 .02976 m .03557 1.08526 L s .03557 1.07866 m .03557 1.08526 L s gsave .03557 1.22024 -75 -10 Mabsadd m 1 1 Mabs scale currentpoint translate 75 10 translate 90 rotate -75 -10 translate 0 20 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.000000 moveto 558.000000 16.000000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.000000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (0) show 87.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .2707 1.07866 m .2707 1.08526 L s [(0.01)] .2707 1.22024 0 0 90 Mrotshowa .50583 1.07866 m .50583 1.08526 L s [(0.02)] .50583 1.22024 0 0 90 Mrotshowa .74096 1.07866 m .74096 1.08526 L s [(0.03)] .74096 1.22024 0 0 90 Mrotshowa .9761 1.07866 m .9761 1.08526 L s [(0.04)] .9761 1.22024 0 0 90 Mrotshowa .03557 1.08526 m .97619 1.08526 L s .97619 .02976 m .97619 1.08526 L s 0 0 m 1 0 L 1 1.25 L 0 1.25 L closepath clip newpath MathSubEnd P % End of sub-graphic 0 0 m 1 0 L 1 1.35 L 0 1.35 L closepath clip newpath MathSubEnd P % End of sub-graphic % Start of sub-graphic p 0.62987 0.00909091 0.97619 0.372727 MathSubStart %% Graphics %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10 scalefont setfont % Scaling calculations 0.251266 0.0544033 0.407866 0.364634 [ [.7409 .57195 -43.0625 -15.5938 ] [.7409 .57195 43.0625 15.5938 ] [.2243 .04323 -12 -4.5 ] [.2243 .04323 0 4.5 ] [.2243 .22555 -24 -4.5 ] [.2243 .22555 0 4.5 ] [.2243 .40787 -6 -4.5 ] [.2243 .40787 0 4.5 ] [.2243 .59018 -18 -4.5 ] [.2243 .59018 0 4.5 ] [.2243 .7725 -6 -4.5 ] [.2243 .7725 0 4.5 ] [.02381 .40787 -13.0625 -50 ] [.02381 .40787 13.0625 50 ] [.25127 .89373 -6.1875 -20.125 ] [.25127 .89373 6.1875 20.125 ] [.30567 .89373 -6.1875 -20.125 ] [.30567 .89373 6.1875 20.125 ] [.36007 .89373 -6.1875 -20.125 ] [.36007 .89373 6.1875 20.125 ] [.41448 .89373 -6.1875 -20.125 ] [.41448 .89373 6.1875 20.125 ] [.46888 .89373 -6.1875 -20.125 ] [.46888 .89373 6.1875 20.125 ] [.52328 .89373 -6.1875 -20.125 ] [.52328 .89373 6.1875 20.125 ] [.57769 .89373 -6.1875 -20.125 ] [.57769 .89373 6.1875 20.125 ] [.63209 .89373 -6.1875 -20.125 ] [.63209 .89373 6.1875 20.125 ] [.68649 .89373 -6.1875 -20.125 ] [.68649 .89373 6.1875 20.125 ] [.7409 .89373 -6.1875 -20.125 ] [.7409 .89373 6.1875 20.125 ] [.7953 .89373 -6.1875 -20.125 ] [.7953 .89373 6.1875 20.125 ] [.8497 .89373 -6.1875 -20.125 ] [.8497 .89373 6.1875 20.125 ] [.90411 .89373 -6.1875 -20.125 ] [.90411 .89373 6.1875 20.125 ] [.95851 .89373 -6.1875 -20.125 ] [.95851 .89373 6.1875 20.125 ] [.60489 1.025 -32 0 ] [.60489 1.025 32 12.625 ] [.7409 .15262 -43.0625 -15.5938 ] [.7409 .15262 43.0625 15.5938 ] [.2243 .04323 -12 -4.5 ] [.2243 .04323 0 4.5 ] [.2243 .22555 -24 -4.5 ] [.2243 .22555 0 4.5 ] [.2243 .40787 -6 -4.5 ] [.2243 .40787 0 4.5 ] [.2243 .59018 -18 -4.5 ] [.2243 .59018 0 4.5 ] [.2243 .7725 -6 -4.5 ] [.2243 .7725 0 4.5 ] [.02381 .40787 -13.0625 -50 ] [.02381 .40787 13.0625 50 ] [.25127 .89373 -6.1875 -20.125 ] [.25127 .89373 6.1875 20.125 ] [.30567 .89373 -6.1875 -20.125 ] [.30567 .89373 6.1875 20.125 ] [.36007 .89373 -6.1875 -20.125 ] [.36007 .89373 6.1875 20.125 ] [.41448 .89373 -6.1875 -20.125 ] [.41448 .89373 6.1875 20.125 ] [.46888 .89373 -6.1875 -20.125 ] [.46888 .89373 6.1875 20.125 ] [.52328 .89373 -6.1875 -20.125 ] [.52328 .89373 6.1875 20.125 ] [.57769 .89373 -6.1875 -20.125 ] [.57769 .89373 6.1875 20.125 ] [.63209 .89373 -6.1875 -20.125 ] [.63209 .89373 6.1875 20.125 ] [.68649 .89373 -6.1875 -20.125 ] [.68649 .89373 6.1875 20.125 ] [.7409 .89373 -6.1875 -20.125 ] [.7409 .89373 6.1875 20.125 ] [.7953 .89373 -6.1875 -20.125 ] [.7953 .89373 6.1875 20.125 ] [.8497 .89373 -6.1875 -20.125 ] [.8497 .89373 6.1875 20.125 ] [.90411 .89373 -6.1875 -20.125 ] [.90411 .89373 6.1875 20.125 ] [.95851 .89373 -6.1875 -20.125 ] [.95851 .89373 6.1875 20.125 ] [.60489 1.025 -32 0 ] [.60489 1.025 32 12.625 ] [.7409 .69957 -43.0625 -15.5938 ] [.7409 .69957 43.0625 15.5938 ] [.2243 .04323 -12 -4.5 ] [.2243 .04323 0 4.5 ] [.2243 .22555 -24 -4.5 ] [.2243 .22555 0 4.5 ] [.2243 .40787 -6 -4.5 ] [.2243 .40787 0 4.5 ] [.2243 .59018 -18 -4.5 ] [.2243 .59018 0 4.5 ] [.2243 .7725 -6 -4.5 ] [.2243 .7725 0 4.5 ] [.02381 .40787 -13.0625 -50 ] [.02381 .40787 13.0625 50 ] [.25127 .89373 -6.1875 -20.125 ] [.25127 .89373 6.1875 20.125 ] [.30567 .89373 -6.1875 -20.125 ] [.30567 .89373 6.1875 20.125 ] [.36007 .89373 -6.1875 -20.125 ] [.36007 .89373 6.1875 20.125 ] [.41448 .89373 -6.1875 -20.125 ] [.41448 .89373 6.1875 20.125 ] [.46888 .89373 -6.1875 -20.125 ] [.46888 .89373 6.1875 20.125 ] [.52328 .89373 -6.1875 -20.125 ] [.52328 .89373 6.1875 20.125 ] [.57769 .89373 -6.1875 -20.125 ] [.57769 .89373 6.1875 20.125 ] [.63209 .89373 -6.1875 -20.125 ] [.63209 .89373 6.1875 20.125 ] [.68649 .89373 -6.1875 -20.125 ] [.68649 .89373 6.1875 20.125 ] [.7409 .89373 -6.1875 -20.125 ] [.7409 .89373 6.1875 20.125 ] [.7953 .89373 -6.1875 -20.125 ] [.7953 .89373 6.1875 20.125 ] [.8497 .89373 -6.1875 -20.125 ] [.8497 .89373 6.1875 20.125 ] [.90411 .89373 -6.1875 -20.125 ] [.90411 .89373 6.1875 20.125 ] [.95851 .89373 -6.1875 -20.125 ] [.95851 .89373 6.1875 20.125 ] [.60489 1.025 -32 0 ] [.60489 1.025 32 12.625 ] [ 0 0 0 0 ] [ 1 1.05 0 0 ] ] MathScale % Start of Graphics 1 setlinecap 1 setlinejoin newpath 0 .5 0 r .022 w .25127 .29399 Mdot .30567 .70732 Mdot .36007 .47874 Mdot .41448 .47011 Mdot .46888 .37395 Mdot .52328 .33658 Mdot .57769 .35708 Mdot .63209 .35148 Mdot .68649 .35868 Mdot .7409 .3624 Mdot .7953 .35147 Mdot .8497 .38468 Mdot .90411 .43149 Mdot .95851 .43365 Mdot .5 Mabswid [ ] 0 setdash .25127 .29399 m .30567 .70732 L .36007 .47874 L .41448 .47011 L .46888 .37395 L .52328 .33658 L .57769 .35708 L .63209 .35148 L .68649 .35868 L .7409 .3624 L .7953 .35147 L .8497 .38468 L .90411 .43149 L .95851 .43365 L s [ .03 .02 ] 0 setdash .25127 .50851 m .25214 .5085 L .25293 .50849 L .25385 .50848 L .25472 .50846 L .25626 .50841 L .25793 .50833 L .25977 .50822 L .26173 .50807 L .26523 .50773 L .26885 .50728 L .27224 .50676 L .27996 .50525 L .28783 .50324 L .29503 .50099 L .31125 .49455 L .34073 .47835 L .3691 .45822 L .39928 .43333 L .42834 .40763 L .45922 .38038 L .48897 .35604 L .5176 .336 L .53211 .32754 L .54805 .31979 L .56321 .31405 L .57 .31202 L .57737 .31022 L .5814 .30941 L .58513 .30877 L .58863 .30828 L .59249 .30784 L .59414 .30769 L .59593 .30755 L .59748 .30745 L .59917 .30736 L .60097 .30729 L .60195 .30726 L .60287 .30724 L .60373 .30723 L .60451 .30723 L .60541 .30723 L .60627 .30723 L .60712 .30725 L .60804 .30727 L .60891 .30729 L .6097 .30732 L .61164 .30741 L .61348 .30752 L .61714 .30782 L Mistroke .62113 .30827 L .62824 .30938 L .63483 .31077 L .6501 .31524 L .66393 .32076 L .69372 .33697 L .72239 .35726 L .75287 .38238 L .78224 .40835 L .81047 .43331 L .84053 .45811 L .86946 .47862 L .8842 .48736 L .90022 .49531 L .91562 .50129 L .92296 .50353 L .92985 .50526 L .93641 .50657 L .94348 .50761 L .9473 .50801 L .94923 .50816 L .95133 .5083 L .95313 .50839 L .95413 .50843 L .95505 .50846 L .9559 .50848 L .95683 .50849 L .9577 .5085 L .95851 .50851 L Mfstroke gsave .7409 .57195 -104.062 -19.5938 Mabsadd m 1 1 Mabs scale currentpoint translate 0 39.1875 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 35.187500 moveto 558.000000 35.187500 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 35.187500 lineto closepath clip newpath 63.000000 23.812500 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.500008 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 0.000000 0.500008 0.000000 setrgbcolor %%IncludeResource: font Math2Mono %%IncludeFont: Math2Mono /Math2Mono findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.500008 0.000000 setrgbcolor 63.000000 22.812500 moveto ($) show 72.750000 22.812500 moveto (%) show 75.375000 22.812500 moveto (%) show 78.000000 22.812500 moveto (%) show 80.625000 22.812500 moveto (%) show 83.250000 22.812500 moveto (%) show 83.750000 22.812500 moveto (%) show 77.125000 17.875000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.500008 0.000000 setrgbcolor (1) show %%IncludeResource: font Math1Mono %%IncludeFont: Math1Mono /Math1Mono findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.500008 0.000000 setrgbcolor 75.812500 23.812500 moveto (\\200) show 77.687500 23.812500 moveto (\\200) show 79.562500 23.812500 moveto (\\200) show 81.437500 23.812500 moveto (\\200) show 82.625000 23.812500 moveto (\\200) show 77.125000 30.062500 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.500008 0.000000 setrgbcolor (T) show 88.312500 23.812500 moveto (cos) show %%IncludeResource: font Math2Mono %%IncludeFont: Math2Mono /Math2Mono findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.500008 0.000000 setrgbcolor 106.312500 23.812500 moveto (H) show 115.375000 17.875000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.500008 0.000000 setrgbcolor (2) show 121.375000 17.875000 moveto %%IncludeResource: font Math1Mono %%IncludeFont: Math1Mono /Math1Mono findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.500008 0.000000 setrgbcolor ( ) show 124.000000 17.875000 moveto %%IncludeResource: font Math1Mono %%IncludeFont: Math1Mono /Math1Mono findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.500008 0.000000 setrgbcolor (p) show %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.500008 0.000000 setrgbcolor (t) show %%IncludeResource: font Math1Mono %%IncludeFont: Math1Mono /Math1Mono findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.500008 0.000000 setrgbcolor 114.062500 23.812500 moveto (\\200) show 115.937500 23.812500 moveto (\\200) show 117.812500 23.812500 moveto (\\200) show 119.687500 23.812500 moveto (\\200) show 121.562500 23.812500 moveto (\\200) show 123.437500 23.812500 moveto (\\200) show 125.312500 23.812500 moveto (\\200) show 127.187500 23.812500 moveto (\\200) show 129.062500 23.812500 moveto (\\200) show 130.937500 23.812500 moveto (\\200) show 132.812500 23.812500 moveto (\\200) show 134.687500 23.812500 moveto (\\200) show 135.500000 23.812500 moveto (\\200) show 122.687500 30.062500 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.500008 0.000000 setrgbcolor (T) show %%IncludeResource: font Math2Mono %%IncludeFont: Math2Mono /Math2Mono findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.500008 0.000000 setrgbcolor 139.125000 23.812500 moveto (L) show 145.125000 23.812500 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.500008 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Math1Mono %%+ font Math2Mono %%+ font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Math1Mono %%+ Math2Mono %%+ Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Math1Mono %%+ font Math2Mono %%+ font Courier grestore 0 g .25 Mabswid [ ] 0 setdash .23359 .40787 m .97619 .40787 L s .23359 .025 m .97619 .025 L s .23359 .04323 m .23823 .04323 L s [(-1)] .2243 .04323 1 0 Mshowa .23359 .22555 m .23823 .22555 L s [(-0.5)] .2243 .22555 1 0 Mshowa .23359 .40787 m .23823 .40787 L s [(0)] .2243 .40787 1 0 Mshowa .23359 .59018 m .23823 .59018 L s [(0.5)] .2243 .59018 1 0 Mshowa .23359 .7725 m .23823 .7725 L s [(1)] .2243 .7725 1 0 Mshowa .23359 .025 m .23359 .79073 L s gsave .02381 .40787 -111 -17.0625 Mabsadd m 1 1 Mabs scale currentpoint translate 111 17.0625 translate 90 rotate -111 -17.0625 translate 0 34.125 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 30.125000 moveto 558.000000 30.125000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 30.125000 lineto closepath clip newpath 108.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 114.000000 13.000000 moveto 0.000000 0.000000 rmoveto 63.000000 26.812500 moveto 0.000000 0.000000 rmoveto 63.000000 26.812500 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (Expression) show 129.000000 26.812500 moveto (Level) show 159.000000 26.812500 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .25127 .78299 m .25127 .79073 L s gsave .25127 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (0) show 81.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .30567 .78299 m .30567 .79073 L s gsave .30567 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (30) show 87.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .36007 .78299 m .36007 .79073 L s gsave .36007 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (60) show 87.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .41448 .78299 m .41448 .79073 L s gsave .41448 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (90) show 87.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .46888 .78299 m .46888 .79073 L s gsave .46888 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (120) show 93.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .52328 .78299 m .52328 .79073 L s gsave .52328 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (150) show 93.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .57769 .78299 m .57769 .79073 L s gsave .57769 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (180) show 93.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .63209 .78299 m .63209 .79073 L s gsave .63209 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (210) show 93.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .68649 .78299 m .68649 .79073 L s gsave .68649 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (240) show 93.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .7409 .78299 m .7409 .79073 L s gsave .7409 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (270) show 93.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .7953 .78299 m .7953 .79073 L s gsave .7953 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (300) show 93.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .8497 .78299 m .8497 .79073 L s gsave .8497 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (330) show 93.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .90411 .78299 m .90411 .79073 L s gsave .90411 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (360) show 93.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .95851 .78299 m .95851 .79073 L s gsave .95851 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (390) show 93.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .23359 .79073 m .97619 .79073 L s gsave .60489 1.025 -93 -4 Mabsadd m 1 1 Mabs scale currentpoint translate 0 20.625 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.625000 moveto 558.000000 16.625000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.625000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto %%IncludeResource: font Math2Mono %%IncludeFont: Math2Mono /Math2Mono findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 63.000000 13.000000 moveto (H) show 69.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (c) show %%IncludeResource: font Math2Mono %%IncludeFont: Math2Mono /Math2Mono findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 75.000000 13.000000 moveto (L) show 87.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (Arrays) show 123.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Math2Mono %%+ font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Math2Mono %%+ Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Math2Mono %%+ font Courier grestore .97619 .025 m .97619 .79073 L s 0 0 1 r .022 w .25127 .46144 Mdot .30567 .43368 Mdot .36007 .45643 Mdot .41448 .51941 Mdot .46888 .56358 Mdot .52328 .52769 Mdot .57769 .47115 Mdot .63209 .38184 Mdot .68649 .32485 Mdot .7409 .35969 Mdot .7953 .41919 Mdot .8497 .23613 Mdot .90411 .25437 Mdot .95851 .31331 Mdot .5 Mabswid .25127 .46144 m .30567 .43368 L .36007 .45643 L .41448 .51941 L .46888 .56358 L .52328 .52769 L .57769 .47115 L .63209 .38184 L .68649 .32485 L .7409 .35969 L .7953 .41919 L .8497 .23613 L .90411 .25437 L .95851 .31331 L s [ .03 .02 ] 0 setdash .25127 .40787 m .27996 .44372 L .31125 .48011 L .34063 .50928 L .36889 .53087 L .38343 .53903 L .39151 .54264 L .39898 .54535 L .40656 .54748 L .41056 .54835 L .4148 .54908 L .41657 .54933 L .41847 .54956 L .42012 .54972 L .42191 .54986 L .423 .54993 L .42401 .54998 L .42498 .55002 L .42547 .55004 L .42601 .55005 L .42653 .55006 L .42702 .55007 L .42797 .55007 L .42884 .55007 L .42975 .55006 L .43066 .55004 L .43117 .55002 L .43164 .55 L .43344 .54991 L .43506 .5498 L .43679 .54965 L .44038 .54923 L .44434 .54859 L .45136 .54704 L .45795 .54509 L .47294 .53893 L .48668 .53123 L .51611 .50876 L .54441 .48065 L .57453 .44576 L .60352 .40959 L .63434 .37108 L .66403 .33654 L .69259 .30794 L .70706 .29579 L .72298 .28457 L .7381 .27619 L .75224 .2705 L .75997 .2683 L .76378 .26746 L Mistroke .76731 .26682 L .7705 .26636 L .77389 .266 L .77583 .26585 L .77679 .26579 L .77766 .26575 L .77844 .26572 L .7793 .26569 L .78016 .26567 L .78107 .26566 L .78205 .26566 L .78294 .26567 L .78341 .26568 L .78393 .26569 L .78498 .26572 L .78589 .26576 L .78688 .26581 L .78867 .26593 L .79043 .26609 L .79228 .26629 L .79559 .26674 L .79944 .26742 L .80302 .2682 L .81113 .27049 L .81897 .27338 L .82635 .2767 L .84016 .28441 L .86877 .30612 L .89919 .33635 L .92849 .37039 L .95667 .40554 L .95851 .40787 L Mfstroke gsave .7409 .15262 -104.062 -19.5938 Mabsadd m 1 1 Mabs scale currentpoint translate 0 39.1875 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 35.187500 moveto 558.000000 35.187500 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 35.187500 lineto closepath clip newpath 63.000000 23.812500 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 1.000000 setrgbcolor 0.000000 0.000000 rmoveto 0.000000 0.000000 1.000000 setrgbcolor %%IncludeResource: font Math2Mono %%IncludeFont: Math2Mono /Math2Mono findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 1.000000 setrgbcolor 63.000000 22.812500 moveto ($) show 72.750000 22.812500 moveto (%) show 75.375000 22.812500 moveto (%) show 78.000000 22.812500 moveto (%) show 80.625000 22.812500 moveto (%) show 83.250000 22.812500 moveto (%) show 83.750000 22.812500 moveto (%) show 77.125000 17.875000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 1.000000 setrgbcolor (2) show %%IncludeResource: font Math1Mono %%IncludeFont: Math1Mono /Math1Mono findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 1.000000 setrgbcolor 75.812500 23.812500 moveto (\\200) show 77.687500 23.812500 moveto (\\200) show 79.562500 23.812500 moveto (\\200) show 81.437500 23.812500 moveto (\\200) show 82.625000 23.812500 moveto (\\200) show 77.125000 30.062500 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 1.000000 setrgbcolor (T) show 88.312500 23.812500 moveto (sin) show %%IncludeResource: font Math2Mono %%IncludeFont: Math2Mono /Math2Mono findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 1.000000 setrgbcolor 106.312500 23.812500 moveto (H) show 115.375000 17.875000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 1.000000 setrgbcolor (2) show 121.375000 17.875000 moveto %%IncludeResource: font Math1Mono %%IncludeFont: Math1Mono /Math1Mono findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 1.000000 setrgbcolor ( ) show 124.000000 17.875000 moveto %%IncludeResource: font Math1Mono %%IncludeFont: Math1Mono /Math1Mono findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 1.000000 setrgbcolor (p) show %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 1.000000 setrgbcolor (t) show %%IncludeResource: font Math1Mono %%IncludeFont: Math1Mono /Math1Mono findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 1.000000 setrgbcolor 114.062500 23.812500 moveto (\\200) show 115.937500 23.812500 moveto (\\200) show 117.812500 23.812500 moveto (\\200) show 119.687500 23.812500 moveto (\\200) show 121.562500 23.812500 moveto (\\200) show 123.437500 23.812500 moveto (\\200) show 125.312500 23.812500 moveto (\\200) show 127.187500 23.812500 moveto (\\200) show 129.062500 23.812500 moveto (\\200) show 130.937500 23.812500 moveto (\\200) show 132.812500 23.812500 moveto (\\200) show 134.687500 23.812500 moveto (\\200) show 135.500000 23.812500 moveto (\\200) show 122.687500 30.062500 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 1.000000 setrgbcolor (T) show %%IncludeResource: font Math2Mono %%IncludeFont: Math2Mono /Math2Mono findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 1.000000 setrgbcolor 139.125000 23.812500 moveto (L) show 145.125000 23.812500 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 1.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Math1Mono %%+ font Math2Mono %%+ font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Math1Mono %%+ Math2Mono %%+ Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Math1Mono %%+ font Math2Mono %%+ font Courier grestore 0 g .25 Mabswid [ ] 0 setdash .23359 .40787 m .97619 .40787 L s .23359 .025 m .97619 .025 L s .23359 .04323 m .23823 .04323 L s [(-1)] .2243 .04323 1 0 Mshowa .23359 .22555 m .23823 .22555 L s [(-0.5)] .2243 .22555 1 0 Mshowa .23359 .40787 m .23823 .40787 L s [(0)] .2243 .40787 1 0 Mshowa .23359 .59018 m .23823 .59018 L s [(0.5)] .2243 .59018 1 0 Mshowa .23359 .7725 m .23823 .7725 L s [(1)] .2243 .7725 1 0 Mshowa .23359 .025 m .23359 .79073 L s gsave .02381 .40787 -111 -17.0625 Mabsadd m 1 1 Mabs scale currentpoint translate 111 17.0625 translate 90 rotate -111 -17.0625 translate 0 34.125 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 30.125000 moveto 558.000000 30.125000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 30.125000 lineto closepath clip newpath 108.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 114.000000 13.000000 moveto 0.000000 0.000000 rmoveto 63.000000 26.812500 moveto 0.000000 0.000000 rmoveto 63.000000 26.812500 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (Expression) show 129.000000 26.812500 moveto (Level) show 159.000000 26.812500 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .25127 .78299 m .25127 .79073 L s gsave .25127 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (0) show 81.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .30567 .78299 m .30567 .79073 L s gsave .30567 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (30) show 87.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .36007 .78299 m .36007 .79073 L s gsave .36007 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (60) show 87.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .41448 .78299 m .41448 .79073 L s gsave .41448 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (90) show 87.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .46888 .78299 m .46888 .79073 L s gsave .46888 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (120) show 93.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .52328 .78299 m .52328 .79073 L s gsave .52328 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (150) show 93.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .57769 .78299 m .57769 .79073 L s gsave .57769 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (180) show 93.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .63209 .78299 m .63209 .79073 L s gsave .63209 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (210) show 93.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .68649 .78299 m .68649 .79073 L s gsave .68649 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (240) show 93.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .7409 .78299 m .7409 .79073 L s gsave .7409 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (270) show 93.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .7953 .78299 m .7953 .79073 L s gsave .7953 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (300) show 93.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .8497 .78299 m .8497 .79073 L s gsave .8497 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (330) show 93.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .90411 .78299 m .90411 .79073 L s gsave .90411 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (360) show 93.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .95851 .78299 m .95851 .79073 L s gsave .95851 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (390) show 93.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .23359 .79073 m .97619 .79073 L s gsave .60489 1.025 -93 -4 Mabsadd m 1 1 Mabs scale currentpoint translate 0 20.625 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.625000 moveto 558.000000 16.625000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.625000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto %%IncludeResource: font Math2Mono %%IncludeFont: Math2Mono /Math2Mono findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 63.000000 13.000000 moveto (H) show 69.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (c) show %%IncludeResource: font Math2Mono %%IncludeFont: Math2Mono /Math2Mono findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 75.000000 13.000000 moveto (L) show 87.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (Arrays) show 123.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Math2Mono %%+ font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Math2Mono %%+ Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Math2Mono %%+ font Courier grestore .97619 .025 m .97619 .79073 L s 1 0 0 r .022 w .25127 .73253 Mdot .30567 .46628 Mdot .36007 .41283 Mdot .41448 .38151 Mdot .46888 .33876 Mdot .52328 .32831 Mdot .57769 .3553 Mdot .63209 .35406 Mdot .68649 .37298 Mdot .7409 .34986 Mdot .7953 .3656 Mdot .8497 .39743 Mdot .90411 .41892 Mdot .95851 .40038 Mdot .5 Mabswid .25127 .73253 m .30567 .46628 L .36007 .41283 L .41448 .38151 L .46888 .33876 L .52328 .32831 L .57769 .3553 L .63209 .35406 L .68649 .37298 L .7409 .34986 L .7953 .3656 L .8497 .39743 L .90411 .41892 L .95851 .40038 L s [ .03 .02 ] 0 setdash .25127 .50851 m .25214 .5085 L .25293 .50849 L .25385 .50848 L .25472 .50846 L .25626 .50841 L .25793 .50833 L .25977 .50822 L .26173 .50807 L .26523 .50773 L .26885 .50728 L .27224 .50676 L .27996 .50525 L .28783 .50324 L .29503 .50099 L .31125 .49455 L .34073 .47835 L .3691 .45822 L .39928 .43333 L .42834 .40763 L .45922 .38038 L .48897 .35604 L .5176 .336 L .53211 .32754 L .54805 .31979 L .56321 .31405 L .57 .31202 L .57737 .31022 L .5814 .30941 L .58513 .30877 L .58863 .30828 L .59249 .30784 L .59414 .30769 L .59593 .30755 L .59748 .30745 L .59917 .30736 L .60097 .30729 L .60195 .30726 L .60287 .30724 L .60373 .30723 L .60451 .30723 L .60541 .30723 L .60627 .30723 L .60712 .30725 L .60804 .30727 L .60891 .30729 L .6097 .30732 L .61164 .30741 L .61348 .30752 L .61714 .30782 L Mistroke .62113 .30827 L .62824 .30938 L .63483 .31077 L .6501 .31524 L .66393 .32076 L .69372 .33697 L .72239 .35726 L .75287 .38238 L .78224 .40835 L .81047 .43331 L .84053 .45811 L .86946 .47862 L .8842 .48736 L .90022 .49531 L .91562 .50129 L .92296 .50353 L .92985 .50526 L .93641 .50657 L .94348 .50761 L .9473 .50801 L .94923 .50816 L .95133 .5083 L .95313 .50839 L .95413 .50843 L .95505 .50846 L .9559 .50848 L .95683 .50849 L .9577 .5085 L .95851 .50851 L Mfstroke gsave .7409 .69957 -104.062 -19.5938 Mabsadd m 1 1 Mabs scale currentpoint translate 0 39.1875 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 35.187500 moveto 558.000000 35.187500 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 35.187500 lineto closepath clip newpath 63.000000 23.812500 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 1.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 0.000000 0.000000 setrgbcolor %%IncludeResource: font Math2Mono %%IncludeFont: Math2Mono /Math2Mono findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 1.000000 0.000000 0.000000 setrgbcolor 63.000000 22.812500 moveto ($) show 72.750000 22.812500 moveto (%) show 75.375000 22.812500 moveto (%) show 78.000000 22.812500 moveto (%) show 80.625000 22.812500 moveto (%) show 83.250000 22.812500 moveto (%) show 83.750000 22.812500 moveto (%) show 77.125000 17.875000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 1.000000 0.000000 0.000000 setrgbcolor (1) show %%IncludeResource: font Math1Mono %%IncludeFont: Math1Mono /Math1Mono findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 1.000000 0.000000 0.000000 setrgbcolor 75.812500 23.812500 moveto (\\200) show 77.687500 23.812500 moveto (\\200) show 79.562500 23.812500 moveto (\\200) show 81.437500 23.812500 moveto (\\200) show 82.625000 23.812500 moveto (\\200) show 77.125000 30.062500 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 1.000000 0.000000 0.000000 setrgbcolor (T) show 88.312500 23.812500 moveto (cos) show %%IncludeResource: font Math2Mono %%IncludeFont: Math2Mono /Math2Mono findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 1.000000 0.000000 0.000000 setrgbcolor 106.312500 23.812500 moveto (H) show 115.375000 17.875000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 1.000000 0.000000 0.000000 setrgbcolor (2) show 121.375000 17.875000 moveto %%IncludeResource: font Math1Mono %%IncludeFont: Math1Mono /Math1Mono findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 1.000000 0.000000 0.000000 setrgbcolor ( ) show 124.000000 17.875000 moveto %%IncludeResource: font Math1Mono %%IncludeFont: Math1Mono /Math1Mono findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 1.000000 0.000000 0.000000 setrgbcolor (p) show %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 1.000000 0.000000 0.000000 setrgbcolor (t) show %%IncludeResource: font Math1Mono %%IncludeFont: Math1Mono /Math1Mono findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 1.000000 0.000000 0.000000 setrgbcolor 114.062500 23.812500 moveto (\\200) show 115.937500 23.812500 moveto (\\200) show 117.812500 23.812500 moveto (\\200) show 119.687500 23.812500 moveto (\\200) show 121.562500 23.812500 moveto (\\200) show 123.437500 23.812500 moveto (\\200) show 125.312500 23.812500 moveto (\\200) show 127.187500 23.812500 moveto (\\200) show 129.062500 23.812500 moveto (\\200) show 130.937500 23.812500 moveto (\\200) show 132.812500 23.812500 moveto (\\200) show 134.687500 23.812500 moveto (\\200) show 135.500000 23.812500 moveto (\\200) show 122.687500 30.062500 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 1.000000 0.000000 0.000000 setrgbcolor (T) show %%IncludeResource: font Math2Mono %%IncludeFont: Math2Mono /Math2Mono findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 1.000000 0.000000 0.000000 setrgbcolor 139.125000 23.812500 moveto (L) show 145.125000 23.812500 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 1.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Math1Mono %%+ font Math2Mono %%+ font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Math1Mono %%+ Math2Mono %%+ Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Math1Mono %%+ font Math2Mono %%+ font Courier grestore 0 g .25 Mabswid [ ] 0 setdash .23359 .40787 m .97619 .40787 L s .23359 .025 m .97619 .025 L s .23359 .04323 m .23823 .04323 L s [(-1)] .2243 .04323 1 0 Mshowa .23359 .22555 m .23823 .22555 L s [(-0.5)] .2243 .22555 1 0 Mshowa .23359 .40787 m .23823 .40787 L s [(0)] .2243 .40787 1 0 Mshowa .23359 .59018 m .23823 .59018 L s [(0.5)] .2243 .59018 1 0 Mshowa .23359 .7725 m .23823 .7725 L s [(1)] .2243 .7725 1 0 Mshowa .23359 .025 m .23359 .79073 L s gsave .02381 .40787 -111 -17.0625 Mabsadd m 1 1 Mabs scale currentpoint translate 111 17.0625 translate 90 rotate -111 -17.0625 translate 0 34.125 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 30.125000 moveto 558.000000 30.125000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 30.125000 lineto closepath clip newpath 108.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 114.000000 13.000000 moveto 0.000000 0.000000 rmoveto 63.000000 26.812500 moveto 0.000000 0.000000 rmoveto 63.000000 26.812500 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (Expression) show 129.000000 26.812500 moveto (Level) show 159.000000 26.812500 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .25127 .78299 m .25127 .79073 L s gsave .25127 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (0) show 81.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .30567 .78299 m .30567 .79073 L s gsave .30567 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (30) show 87.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .36007 .78299 m .36007 .79073 L s gsave .36007 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (60) show 87.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .41448 .78299 m .41448 .79073 L s gsave .41448 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (90) show 87.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .46888 .78299 m .46888 .79073 L s gsave .46888 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (120) show 93.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .52328 .78299 m .52328 .79073 L s gsave .52328 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (150) show 93.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .57769 .78299 m .57769 .79073 L s gsave .57769 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (180) show 93.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .63209 .78299 m .63209 .79073 L s gsave .63209 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (210) show 93.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .68649 .78299 m .68649 .79073 L s gsave .68649 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (240) show 93.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .7409 .78299 m .7409 .79073 L s gsave .7409 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (270) show 93.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .7953 .78299 m .7953 .79073 L s gsave .7953 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (300) show 93.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .8497 .78299 m .8497 .79073 L s gsave .8497 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (330) show 93.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .90411 .78299 m .90411 .79073 L s gsave .90411 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (360) show 93.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .95851 .78299 m .95851 .79073 L s gsave .95851 .89373 -81.125 -10.1875 Mabsadd m 1 1 Mabs scale currentpoint translate 81.125 10.1875 translate 90 rotate -81.125 -10.1875 translate 0 20.375 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.375000 moveto 558.000000 16.375000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.375000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (e_) show 75.125000 13.000000 moveto (390) show 93.125000 13.000000 moveto (m) show 99.250000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Courier grestore .23359 .79073 m .97619 .79073 L s gsave .60489 1.025 -93 -4 Mabsadd m 1 1 Mabs scale currentpoint translate 0 20.625 translate 1 -1 scale gsave 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth gsave newpath 61.000000 16.625000 moveto 558.000000 16.625000 lineto 558.000000 4.000000 lineto 61.000000 4.000000 lineto 61.000000 16.625000 lineto closepath clip newpath 63.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto %%IncludeResource: font Math2Mono %%IncludeFont: Math2Mono /Math2Mono findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 63.000000 13.000000 moveto (H) show 69.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (c) show %%IncludeResource: font Math2Mono %%IncludeFont: Math2Mono /Math2Mono findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 75.000000 13.000000 moveto (L) show 87.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor (Arrays) show 123.000000 13.000000 moveto %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10.000000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000000 0.000000 0.000000 setrgbcolor 0.000000 0.000000 rmoveto 0.000000 0.000000 0.000000 setrgbcolor 1.000000 setlinewidth grestore grestore %%DocumentNeededResources: font Math2Mono %%+ font Courier %%DocumentSuppliedResources: %%DocumentNeededFonts: Math2Mono %%+ Courier %%DocumentSuppliedFonts: %%DocumentFonts: font Math2Mono %%+ font Courier grestore .97619 .025 m .97619 .79073 L s 0 0 m 1 0 L 1 1.05 L 0 1.05 L closepath clip newpath MathSubEnd P % End of sub-graphic % End of Graphics MathPictureEnd \ \>"], "Graphics", PageBreakAbove->Automatic, PageBreakBelow->False, ImageSize->{749.562, 286.125}, ImageMargins->{{0, 0}, {0, 0}}, ImageRegion->{{0, 1}, {0, 1}}, ImageCache->GraphicsData["Bitmap", "\<\ CF5dJ6E]HGAYHf4PAg9QL6QYHg@003@3M000<003o00d0o`003@009`0=04l000`0N`003@00Y@050?ooo`030000003oool0oooo01L0 oooo0`0000040?ooo`<000000`3oool00`000000oooo0?ooo`0=0?oooa80ooo`3oool500000080oooo00<000000?ooo`3oool0103oool200000;P0 oooo00<000000?ooo`3oool05`3oool004D0oooo00@000000?ooo`3oool0oooo3@0C000<000600d0 2`003@00000=04d000`00;003@0i000=0=d000`00?l03@3o000=000W00d0C`00301k000=002U00D0 oooo00<000000?ooo`3oool0603oool00`000000oooo0?ooo`020?ooo`@000000`3oool2000000h0 oooo4P3ool`00`000000o`000000000K0?ooc0030000003ool`0ooo<01/0ooo<00<000000?ooc03o ol`06`3ool`00`000000ooo<0?ooc00J0?ooc0030000003ool`0ooo<00H0ooo<103oool00`000000 oooo0?ooo`120?ooo`030000003oool0oooo00@0oooo00<000000?ooo`3oool0]`3oool00`000000 oooo0?ooo`0G0?ooo`00A@3oool010000000oooo0?ooo`3oool=01<000`000H03@0;000=000000d0 C@003000/00=03T000d0g@003000o`0=0?l000d002L03@1?000<07/000d00:D01@3oool00`000000 oooo0?ooo`0H0?ooo`030000003oool0oooo0080oooo00<000000?ooo`000000103oool00`000000 oooo0?ooo`0=0?ooo`H0ooo<0`0000040?ooc0<000000P3ool`00`000000o`000000000K0?ooc003 0000003ool`0ooo<01/0ooo<00<000000?ooc03ool`06`3ool`00`000000ooo<0?ooc00J0?ooc003 0000003ool`0ooo<00H0ooo<103oool00`000000oooo0?ooo`120?ooo`030000003oool0oooo00@0 oooo00<000000?ooo`3oool0]`3oool00`000000oooo0?ooo`0G0?ooo`00>03oool3000000@0oooo 0`0000030?ooo`040000003oool0oooo0?ooo`d04`0030001P0=00/000d000003@1=000<002`00d0 >@003@3M000<003o00d0o`003@009`0=04l000`0N`003@00Y@050?ooo`030000003oool0oooo01P0 oooo00<000000?ooo`3oool00P3oool00`000000oooo000000040?ooo`030000003oool0oooo00d0 oooo1`3ool`00`000000ooo<0?ooc0040?ooc0070000003ool`0ooo<0?ooc0000000o`000000000K 0?ooc0030000003ool`0ooo<01/0ooo<00<000000?ooc03ool`06`3ool`00`000000ooo<0?ooc00J 0?ooc0030000003ool`0ooo<00H0ooo<103oool00`000000oooo0?ooo`110?ooo`8000001P3oool0 0`000000oooo0?ooo`2g0?ooo`030000003oool0oooo01L0oooo000i0?ooo`030000003oool0oooo 00@0oooo00<000000?ooo`3oool00P3oool010000000oooo0?ooo`3oool=01<000`000H03@0;000= 000000d0C@003000/00=03T000d0g@003000o`0=0?l000d002L03@1?000<07/000d00:D01@3oool0 0`000000oooo0?ooo`0G0?ooo`8000001@3oool2000000@0oooo00<000000?ooo`3oool03@3oool7 0?ooc0030000003ool`0ooo<0080ooo<100000020?ooc0<000006`3ool`00`000000ooo<0?ooc00K 0?ooc0030000003ool`0ooo<01/0ooo<00<000000?ooc03ool`06P3ool`00`000000ooo<0?ooc006 0?ooc0@0oooo00<000000?ooo`3oool0B@3oool00`000000oooo0?ooo`2g0?ooo`030000003oool0 oooo01L0oooo000i0?ooo`030000003oool0oooo0080oooo100000030?ooo`8000000P3oool=01<0 00`000H03@0;000=000000d0C@003000/00=03T000d0g@003000o`0=0?l000d002L03@1?000<07/0 00d00:D01@3oool00`000000oooo0?ooo`0T0?ooo`030000003oool0oooo00d0oooo1`3ool`00`00 0000ooo<0?ooc0020?ooc0030000003ool`0000000<0ooo<00<000000?l0000000006`3ool`00`00 0000ooo<0?ooc00K0?ooc0030000003ool`0ooo<01/0ooo<00<000000?ooc03ool`06P3ool`00`00 0000ooo<0?ooc0060?ooc0@0oooo00<000000?ooo`3oool0B@3oool00`000000oooo0?ooo`2g0?oo o`030000003oool0oooo01L0oooo000i0?ooo`030000003oool0oooo0080oooo00<000000?ooo`00 0000103oool010000000oooo0?ooo`3oool=01<000`000H03@0;000=000000d0C@003000/00=03T0 00d0g@003000o`0=0?l000d002L03@1?000<07/000d00:D01@3oool00`000000oooo0?ooo`0T0?oo o`030000003oool0oooo00d0oooo1`3ool`00`000000ooo<0?ooc0020?ooc0030000003ool`00000 00<0ooo<00<000000?l0000000006`3ool`00`000000ooo<0?ooc00K0?ooc0030000003ool`0ooo< 01/0ooo<00<000000?ooc03ool`06P3ool`00`000000ooo<0?ooc0060?ooc0@0oooo00<000000?oo o`3oool0B@3oool00`000000oooo0?ooo`2g0?ooo`030000003oool0oooo01L0oooo000i0?ooo`03 0000003oool0oooo0080oooo00<000000?ooo`000000103oool010000000oooo0?ooo`3oool=01<0 00`000H03@0;000=000000d0C@003000/00=03T000d0g@003000o`0=0?l000d002L03@1?000<07/0 00d00:D01@3oool00`000000oooo0?ooo`0T0?ooo`030000003oool0oooo00d0oooo1P3ool`20000 00D0ooo<0P0000030?ooc0030000003o0000000001/0ooo<00<000000?ooc03ool`06`3ool`00`00 0000ooo<0?ooc00K0?ooc0030000003ool`0ooo<01X0ooo<00<000000?ooc03ool`01P3ool`40?oo o`030000003oool0oooo04T0oooo00<000000?ooo`3oool0]`3oool00`000000oooo0?ooo`0G0?oo o`00>03oool2000000D0oooo0P0000040?ooo`040000003oool0oooo0?ooo`d04`0030001P0=00/0 00d000003@1=000<002`00d0>@003@3M000<003o00d0o`003@009`0=04l000`0N`003@00Y@050?oo o`030000003oool0oooo02@0oooo00<000000?ooo`3oool03@3ooolB0?ooc0<000006`3ool`00`00 0000ooo<0?ooc00K0?ooc0030000003ool`0ooo<01/0ooo<00<000000?ooc03ool`06P3ool`00`00 0000ooo<0?ooc0060?ooc0@0oooo00<000000?ooo`3oool0B@3oool00`000000oooo0?ooo`2g0?oo o`030000003oool0oooo01L0oooo00150?ooo`040000003oool0oooo0?ooo`d04`0030001P0=00/0 00d000003@1=000<002`00d0>@003@3M000<003o00d0o`003@009`0=04l000`0N`003@00Y@050?oo o`030000003oool0oooo02@0oooo00<000000?ooo`3oool03@3ooolB0?ooc0030000003ool`0ooo< 01/0ooo<00<000000?ooc03ool`06`3ool`00`000000ooo<0?ooc00K0?ooc0030000003ool`0ooo< 01X0ooo<00<000000?ooc03ool`01P3ool`40?ooo`030000003oool0oooo04T0oooo00<000000?oo o`3oool0]`3oool00`000000oooo0?ooo`0G0?ooo`00A@3oool010000000oooo0?ooo`3oool=01<0 00`000H03@0;000=000000d0C@003000/00=03T000d0g@003000o`0=0?l000d002L03@1?000<07/0 00d00:D01@3oool00`000000oooo0?ooo`0T0?ooo`030000003oool0oooo00d0oooo4P3ool`40000 01X0ooo<00<000000?ooc03ool`06`3ool`00`000000ooo<0?ooc00K0?ooc0030000003ool`0ooo< 01X0ooo<00<000000?ooc03ool`01P3ool`40?ooo`030000003oool0oooo04T0oooo00<000000?oo o`3oool0]`3oool00`000000oooo0?ooo`0G0?ooo`00A@3oool010000000oooo0?ooo`3oool=01<0 00`000H03@0;000=000000d0C@003000/00=03T000d0g@003000o`0=0?l000d002L03@1?000<07/0 00d00:D01@3oool00`000000oooo0?ooo`0T0?ooo`030000003oool0oooo00d0oooo4P3ool`01000 0000o`000?l00000000J0?ooc0030000003ool`0ooo<01/0ooo<00<000000?ooc03ool`06`3ool`0 0`000000ooo<0?ooc00J0?ooc0030000003ool`0ooo<00H0ooo<103oool00`000000oooo0?ooo`19 0?ooo`030000003oool0oooo0;L0oooo00<000000?ooo`3oool05`3oool004D0oooo00@000000?oo o`3oool0oooo3@001@0<00<000d05@003@0]000=000[00`0m0003@00o`0=0?l000`009L03@00o`0= 00T000d0jP003000Q00=000S00D0oooo00<000000?ooo`3oool0903oool00`000000oooo0?ooo`0= 0?ooo`H0ooo<0`0000030?ooc0<000000`3ool`010000000o`000?l00000000J0?ooc0030000003o ol`0ooo<01/0ooo<00<000000?ooc03ool`06`3ool`00`000000ooo<0?ooc00J0?ooc0030000003o ol`0ooo<00H0ooo<103oool00`000000oooo0?ooo`190?ooo`030000003oool0oooo0;L0oooo00<0 00000?ooo`3oool05`3oool004D0oooo00@000000?ooo`3oool0oooo3@001@0<00<000d05@003@0] 000=000[00`0m0003@00o`0=0?l000`009L03@00o`0=00T000d0jP003000Q00=000S00D0oooo00<0 00000?ooo`3oool05`3oool3000000<0oooo0`0000040?ooo`030000003oool0oooo00d0oooo1`3o ol`00`000000ooo<0?ooc0050?ooc0040000003ool`0ooo<00000080o`0000<000000?ooc03ool`0 603ool`00`000000ooo<0?ooc00K0?ooc0030000003ool`0ooo<01/0ooo<00<000000?ooc03ool`0 6P3ool`00`000000ooo<0?ooc0060?ooc0@0oooo00<000000?ooo`3oool0B@3oool00`000000oooo 0?ooo`2g0?ooo`030000003oool0oooo01L0oooo00150?ooo`040000003oool0oooo0?ooo`d000D0 3003000=01D000d0;@003@00:`0<0?@000d00?l03@3o000<002G00d00?l03@09000=0>X000`008@0 3@008`050?ooo`030000003oool0oooo01P0oooo00<000000?ooo`3oool01@3oool01@000000oooo 0?ooo`3oool0000000l0oooo1`3ool`00`000000ooo<0?ooc0050?ooc0030000003ool`0ooo<0080 000000<0o`000000003ool`06@3ool`00`000000ooo<0?ooc00K0?ooc0030000003ool`0ooo<01/0 ooo<00<000000?ooc03ool`06P3ool`00`000000ooo<0?ooc0060?ooc0@0oooo00<000000?ooo`3o ool0B@3oool00`000000oooo0?ooo`1H0?ooo`030000o`3oool0oooo05`0oooo00<000000?ooo`3o ool05`3oool004D0oooo00@000000?ooo`3oool0oooo3@001@0<00<000d05@003@0]000=000[00`0 m0003@00o`0=0?l000`009L03@00o`0=00T000d0jP003000Q00=000S00D0oooo00<000000?ooo`3o ool0603oool00`000000oooo0?ooo`050?ooo`040000003oool0oooo0?ooo`8000003P3oool70?oo c0030000003ool`0ooo<00<0ooo<0P0000030?ooc0040000003o0000o`00000001X0ooo<00<00000 0?ooc03ool`06`3ool`00`000000ooo<0?ooc00K0?ooc0030000003ool`0ooo<01X0ooo<00<00000 0?ooc03ool`01P3ool`40?ooo`030000003oool0oooo04T0oooo00<000000?ooo`3oool0F03oool0 0`000?l0oooo0?ooo`1L0?ooo`030000003oool0oooo01L0oooo00150?ooo`040000003oool0oooo 0?ooo`d000D03003000=01D000d0;@003@00:`0<0?@000d00?l03@3o000<002G00d00?l03@09000= 0>X000`008@03@008`050?ooo`030000003oool0oooo01P0oooo00<000000?ooo`3oool00`3oool2 000000@0oooo00<000000?ooo`3oool03@3oool70?ooc0030000003ool`0ooo<00D0ooo<00@00000 0?ooc03ool`000000P3o00000`000000ooo<0?ooc00H0?ooc0030000003ool`0ooo<01/0ooo<00<0 00000?ooc03ool`06`3ool`00`000000ooo<0?ooc00J0?ooc0030000003ool`0ooo<00H0ooo<103o ool00`000000oooo0?ooo`190?ooo`030000003oool0oooo05L0oooo0P000?mN0?ooo`030000003o ool0oooo01L0oooo000h0?ooo`<000000`3oool3000000@0oooo00@000000?ooo`3oool0oooo3@00 1@0<00<000d05@003@0]000=000[00`0m0003@00o`0=0?l000`009L03@00o`0=00T000d0jP003000 Q00=000S00D0oooo00<000000?ooo`3oool0603oool00`000000oooo0?ooo`050?ooo`050000003o ool0oooo0?ooo`0000003`3oool60?ooc0800000103ool`3000000<0ooo<00@000000?l0003o0000 00006P3ool`00`000000ooo<0?ooc00K0?ooc0030000003ool`0ooo<01/0ooo<00<000000?ooc03o ol`06P3ool`00`000000ooo<0?ooc0060?ooc0@0oooo00<000000?ooo`3oool0B@3oool00`000000 oooo0?ooo`1G0?ooo`80003oGP3oool00`000000oooo0?ooo`0G0?ooo`00>@3oool00`000000oooo 0?ooo`050?ooo`050000003oool0oooo0?ooo`0000000`3oool=000500`00`003@0E000=02d000d0 02/0303d000=003o00d0o`003000U`0=003o00d02@003@3Z000<002400d002<01@3oool00`000000 oooo0?ooo`0G0?ooo`800000103oool3000000@0oooo00<000000?ooo`3oool03@3ooolB0?ooc004 0000003o0000o`00000001X0ooo<00<000000?ooc03ool`06`3ool`00`000000ooo<0?ooc00K0?oo c0030000003ool`0ooo<01X0ooo<00<000000?ooc03ool`01P3ool`40?ooo`030000003oool0oooo 04T0oooo00<000000?ooo`3oool0E`3oool20000o`X0oooo0`000?l[0?ooo`<0003o8`3oool00`00 0000oooo0?ooo`0G0?ooo`00>@3oool00`000000oooo0?ooo`050?ooo`040000003oool0oooo0?oo o`8000000P3oool=000500`00`003@0E000=02d000d002/0303d000=003o00d0o`003000U`0=003o 00d02@003@3Z000<002400d002<01@3oool00`000000oooo0?ooo`0T0?ooo`030000003oool0oooo 00d0oooo4P3ool`4000001X0ooo<00<000000?ooc03ool`06`3ool`00`000000ooo<0?ooc00K0?oo c0030000003ool`0ooo<01X0ooo<00<000000?ooc03ool`01P3ool`40?ooo`030000003oool0oooo 04T0oooo00<000000?ooo`3oool0EP3oool00`000?l0oooo0000o`0;0?ooo`030000o`3oool0oooo 02/0oooo00<0003o0?ooo`3oool08P3oool00`000000oooo0?ooo`0G0?ooo`00>@3oool00`000000 oooo0?ooo`030?ooo`800000103oool010000000oooo0?ooo`3oool=000500`00`003@0E000=02d0 00d002/0303d000=003o00d0o`003000U`0=003o00d02@003@3Z000<002400d002<01@3oool00`00 0000oooo0?ooo`0T0?ooo`030000003oool0oooo00d0oooo4P3ool`00`000000ooo<0?ooc00K0?oo c0030000003ool`0ooo<01/0ooo<00<000000?ooc03ool`06`3ool`00`000000ooo<0?ooc00J0?oo c0030000003ool`0ooo<00H0ooo<103oool00`000000oooo0?ooo`190?ooo`030000003oool0oooo 05H0oooo00<0003o0?ooo`000?l02`3oool00`000?l0oooo0?ooo`0[0?ooo`030000o`3oool0oooo 0280oooo00<000000?ooo`3oool05`3oool003T0oooo00<000000?ooo`3oool01@3oool01@000000 oooo0?ooo`3oool0000000<0oooo3@001@0<00<000d05@003@0]000=000[00`0m0003@00o`0=0?l0 00`009L03@00o`0=00T000d0jP003000Q00=000S00D0oooo00<000000?ooo`3oool0903oool00`00 0000oooo0?ooo`0=0?oooa80ooo<1000000J0?ooc0030000003ool`0ooo<01/0ooo<00<000000?oo c03ool`06`3ool`00`000000ooo<0?ooc00J0?ooc0030000003ool`0ooo<00H0ooo<103oool00`00 0000oooo0?ooo`190?ooo`030000003oool0oooo05<0oooo00@0003o0?ooo`000?l0003o0P3oool0 0`000?l0oooo0?ooo`060?ooo`050000o`3oool0003o0?ooo`000?l0:@3oool01@000?l0oooo0000 o`3oool0003o0280oooo00<000000?ooo`3oool05`3oool003P0oooo0P0000040?ooo`<00000103o ool010000000oooo0?ooo`3oool=000500`00`003@0E000=02d000d002/0303d000=003o00d0o`00 3000U`0=003o00d02@003@3Z000<002400d002<01@3oool00`000000oooo0?ooo`0T0?ooo`030000 003oool0oooo00d0oooo4P3ool`010000000o`000?l00000000J0?ooc0030000003ool`0ooo<01/0 ooo<00<000000?ooc03ool`06`3ool`00`000000ooo<0?ooc00J0?ooc0030000003ool`0ooo<00H0 ooo<103oool00`000000oooo0?ooo`190?ooo`030000003oool0oooo05@0oooo0P000?l30?ooo`03 0000o`3oool0oooo00H0oooo00D0003o0?ooo`000?l0oooo0000o`0K0?ooo`030000o`3oool0oooo 00/0oooo00D0003o0?ooo`000?l0oooo0000o`0;0?ooo`030000o`3oool0oooo01@0oooo00<00000 0?ooo`3oool05`3oool004D0oooo00@000000?ooo`3oool0oooo3@001@0<00<000d05@003@0]000= 000[00`0m0003@00o`0=0?l000`009L03@00o`0=00T000d0jP003000Q00=000S00D0oooo00<00000 0?ooo`3oool0903oool00`000000oooo0?ooo`0=0?ooo`H0ooo<0`0000030?ooc0@000000P3ool`0 10000000o`000?l00000000J0?ooc0030000003ool`0ooo<01/0ooo<00<000000?ooc03ool`06`3o ol`00`000000ooo<0?ooc00J0?ooc0030000003ool`0ooo<00H0ooo<103oool00`000000oooo0?oo o`190?ooo`030000003oool0oooo05D0oooo00D0003o0?ooo`3oool0oooo0000o`080?ooo`D0003o 6P3oool00`000?l0oooo0?ooo`0<0?ooo`D0003o303oool00`000?l0oooo0?ooo`0C0?ooo`030000 003oool0oooo01L0oooo00150?ooo`040000003oool0oooo0?ooo`d000D03003000=01D000d0;@00 3@00:`0<0?@000d00?l03@3o000<002G00d00?l03@09000=0>X000`008@03@008`050?ooo`030000 003oool0oooo02@0oooo00<000000?ooo`3oool03@3oool70?ooc0030000003ool`0ooo<00<0ooo< 00<000000?ooc03ool`00P3ool`010000000o`000?l00000000J0?ooc0030000003ool`0ooo<01/0 ooo<00<000000?ooc03ool`06`3ool`00`000000ooo<0?ooc00J0?ooc0030000003ool`0ooo<00H0 ooo<103oool00`000000oooo0?ooo`190?ooo`030000003oool0oooo05T0oooo00<0003o0?ooo`3o ool04@3oool40000o`80oooo1@000?l0103oool0003o0000o`3oool20000o`80oooo00<0003o0?oo o`3oool07`3oool00`000?l0oooo0?ooo`0B0?ooo`030000003oool0oooo01L0oooo00150?ooo`04 0000003oool0oooo0?ooo`d000D03003000=01D000d0;@003@00:`0<0?@000d00?l03@3o000<002G 00d00?l03@09000=0>X000`008@03@008`050?ooo`030000003oool0oooo02@0oooo00<000000?oo o`3oool03@3oool70?ooc0030000003ool`0ooo<00@0ooo<00@000000?ooc03ool`0ooo<0P000000 0`3o000000000?ooc00I0?ooc0030000003ool`0ooo<01/0ooo<00<000000?ooc03ool`06`3ool`0 0`000000ooo<0?ooc00J0?ooc0030000003ool`0ooo<00H0ooo<103oool00`000000oooo0?ooo`19 0?ooo`030000003oool0oooo05T0oooo00<0003o0?ooo`3oool0503oool00`000?l0oooo0?ooo`02 0?ooo`050000o`3oool0oooo0?ooo`000?l00P3oool01@000?l0oooo0?ooo`3oool0003o0240oooo 00<0003o0?ooo`3oool04P3oool00`000000oooo0?ooo`0G0?ooo`00A@3oool010000000oooo0?oo o`3oool=000;00`000T03@008P0=001300d0o`003000o`0=09@000d0o`00301?000=003o00d04@00 3@00<00<000g00d0J`001@3oool00`000000oooo0?ooo`0T0?ooo`030000003oool0oooo00d0oooo 1`3ool`00`000000ooo<0?ooc0050?ooc0040000003ool`0ooo<00000080o`0000<000000?ooc03o ol`0603ool`00`000000ooo<0?ooc00K0?ooc0030000003ool`0ooo<01/0ooo<00<000000?ooc03o ol`06P3ool`00`000000ooo<0?ooc0060?ooc0@0oooo00<000000?ooo`3oool0B@3oool00`000000 oooo0?ooo`1I0?ooo`030000o`3oool0oooo00@0oooo2@000?l40?ooo`@0003o103oool01@000?l0 oooo0?ooo`3oool0003o0080oooo00D0003o0?ooo`3oool0oooo0000o`050?oooaP0003o103oool0 0`000?l0oooo0?ooo`0B0?ooo`030000003oool0oooo01L0oooo00150?ooo`040000003oool0oooo 0?ooo`d000/030002@0=000R00d004<03@3o000<003o00d0U0003@3o000<04l000d00?l03@0A000= 000`00`003L03@1[00050?ooo`030000003oool0oooo01L0oooo0`0000030?ooo`@000000`3oool0 0`000000oooo0?ooo`0=0?ooo`L0ooo<00<000000?ooc03ool`00P3ool`010000000ooo<0?ooc000 00020?ooc0040000003o0000o`00000001X0ooo<00<000000?ooc03ool`06`3ool`00`000000ooo< 0?ooc00K0?ooc0030000003ool`0ooo<01X0ooo<00<000000?ooc03ool`01P3ool`40?ooo`030000 003oool0oooo04T0oooo00<000000?ooo`3oool0FP3oool00`000?l0oooo0?ooo`0@0?ooo`030000 o`3oool0oooo00D0oooo00D0003o0?ooo`3oool0oooo0000o`020?ooo`050000o`3oool0oooo0?oo o`000?l08@3oool00`000?l0oooo0?ooo`0B0?ooo`030000003oool0oooo01L0oooo00150?ooo`04 0000003oool0oooo0?ooo`d000/030002@0=000R00d004<03@3o000<003o00d0U0003@3o000<04l0 00d00?l03@0A000=000`00`003L03@1[00050?ooo`030000003oool0oooo01P0oooo00<000000?oo o`3oool00`3oool00`000000oooo0?ooo`030?ooo`030000003oool0oooo00d0oooo1P3ool`20000 00D0ooo<0P0000030?ooc0040000003o0000o`00000001X0ooo<00<000000?ooc03ool`06`3ool`0 0`000000ooo<0?ooc00K0?ooc0030000003ool`0ooo<01X0ooo<00<000000?ooc03ool`01P3ool`4 0?ooo`030000003oool0oooo04T0oooo00<000000?ooo`3oool0FP3oool00`000?l0oooo0?ooo`0@ 0?ooo`@0003o0`3oool20000o`80oooo1@000?l40?ooo`030000o`3oool0oooo01d0oooo00<0003o 0?ooo`3oool04`3oool00`000000oooo0?ooo`0G0?ooo`00A@3oool010000000oooo0?ooo`3oool= 000;00`000T03@008P0=001300d0o`003000o`0=09@000d0o`00301?000=003o00d04@003@00<00< 000g00d0J`001@3oool00`000000oooo0?ooo`0H0?ooo`030000003oool0oooo00@0oooo00<00000 0?ooo`3oool00P3oool2000000h0oooo4P3ool`4000001X0ooo<00<000000?ooc03ool`06`3ool`0 0`000000ooo<0?ooc00K0?ooc0030000003ool`0ooo<01X0ooo<00<000000?ooc03ool`01P3ool`4 0?ooo`030000003oool0oooo04T0oooo00<000000?ooo`3oool0FP3oool00`000?l0oooo0?ooo`0U 0?ooo`030000o`3oool0oooo01/0oooo00<0003o0?ooo`3oool0503oool00`000000oooo0?ooo`0G 0?ooo`00>03oool3000000<0oooo100000030?ooo`040000003oool0oooo0?ooo`d000/030002@0= 000R00d004<03@3o000<003o00d0U0003@3o000<04l000d00?l03@0A000=000`00`003L03@1[0005 0?ooo`030000003oool0oooo01P0oooo00<000000?ooo`3oool01@3oool01@000000oooo0?ooo`3o ool0000000l0oooo4P3ool`00`000000ooo<0?ooc00K0?ooc0030000003ool`0ooo<01/0ooo<00<0 00000?ooc03ool`06`3ool`00`000000ooo<0?ooc00J0?ooc0030000003ool`0ooo<00H0ooo<103o ool00`000000oooo0?ooo`190?ooo`030000003oool0oooo05X0oooo00<0003o0?ooo`3oool01@3o ool40000o`l0oooo00<0003o0?ooo`3oool04@3oool40000o`<0oooo00<0003o0?ooo`3oool00P3o ool00`000?l0oooo0?ooo`030000oa`0oooo00<000000?ooo`3oool05`3oool003T0oooo00<00000 0?ooo`3oool00`3oool00`000000oooo0?ooo`030?ooo`040000003oool0oooo0?ooo`d000/03000 2@0=000R00d004<03@3o000<003o00d0U0003@3o000<04l000d00?l03@0A000=000`00`003L03@1[ 00050?ooo`030000003oool0oooo01P0oooo00<000000?ooo`3oool00P3oool010000000oooo0?oo o`0000030?ooo`030000003oool0oooo00d0oooo4P3ool`5000001T0ooo<00<000000?ooc03ool`0 6`3ool`00`000000ooo<0?ooc00K0?ooc0030000003ool`0ooo<01X0ooo<00<000000?ooc03ool`0 1P3ool`40?ooo`030000003oool0oooo04T0oooo00<000000?ooo`3oool0FP3oool00`000?l0oooo 0?ooo`060?ooo`030000o`3oool0oooo02@0oooo00<0003o0?ooo`3oool0103oool010000?l0oooo 0?ooo`000?l30?ooo`040000o`3oool0oooo0000oa/0oooo00<000000?ooo`3oool05`3oool003T0 oooo00<000000?ooo`3oool0103oool00`000000oooo0?ooo`020?ooo`8000000P3oool=000;00`0 00T03@008P0=001300d0o`003000o`0=09@000d0o`00301?000=003o00d04@003@00<00<000g00d0 J`001@3oool00`000000oooo0?ooo`0G0?ooo`8000001@3oool2000000@0oooo00<000000?ooo`3o ool03@3ooolB0?ooc0050000003o0000o`000?l0000000006@3ool`00`000000ooo<0?ooc00K0?oo c0030000003ool`0ooo<01/0ooo<00<000000?ooc03ool`06P3ool`00`000000ooo<0?ooc0060?oo c0@0oooo00<000000?ooo`3oool0B@3oool00`000000oooo0?ooo`1J0?ooo`030000o`3oool0oooo 00L0oooo00<0003o0?ooo`3oool0903oool00`000?l0oooo0?ooo`040?ooo`030000o`3oool0003o 00<0oooo00<0003o0?ooo`3oool0703oool00`000000oooo0?ooo`0G0?ooo`00>@3oool00`000000 oooo0?ooo`050?ooo`050000003oool0oooo0?ooo`0000000`3oool=000;00`000T03@008P0=0013 00d0o`003000o`0=09@000d0o`00301?000=003o00d04@003@00<00<000g00d0J`001@3oool00`00 0000oooo0?ooo`0T0?ooo`030000003oool0oooo00d0oooo1P3ool`3000000<0ooo<0`0000030?oo c0050000003o0000o`000?l0000000006@3ool`00`000000ooo<0?ooc00K0?ooc0030000003ool`0 ooo<01/0ooo<00<000000?ooc03ool`06P3ool`00`000000ooo<0?ooc0060?ooc0@0oooo00<00000 0?ooo`3oool0B@3oool00`000000oooo0?ooo`1K0?ooo`030000o`3oool0oooo00L0oooo00<0003o 0?ooo`3oool0903oool00`000?l0oooo0?ooo`030?ooo`030000o`3oool0003o00<0oooo00<0003o 0?ooo`3oool0703oool00`000000oooo0?ooo`0G0?ooo`00>@3oool00`000000oooo0?ooo`020?oo o`040000003oool0oooo000000<0oooo00@000000?ooo`3oool0oooo3@002`0<000900d002803@00 @`0=0?l000`00?l03@2D000=0?l000`0C`003@00o`0=014000d003003000=`0=06/000D0oooo00<0 00000?ooo`3oool0903oool00`000000oooo0?ooo`0=0?ooo`L0ooo<00<000000?ooc03ool`00`3o ol`00`000000ooo<0?ooc0020?ooc0050000003o0000o`000?l0000000006@3ool`00`000000ooo< 0?ooc00K0?ooc0030000003ool`0ooo<01/0ooo<00<000000?ooc03ool`06P3ool`00`000000ooo< 0?ooc0060?ooc0@0oooo00<000000?ooo`3oool0B@3oool00`000000oooo0?ooo`1K0?ooo`030000 o`3oool0oooo00@0oooo00@0003o0?ooo`3oool0003o8`3oool010000?l0oooo0?ooo`000?l40?oo o`D0003o00<0oooo0000o`000?l00P000?lL0?ooo`030000003oool0oooo01L0oooo000h0?ooo`80 00001@3oool2000000@0oooo00@000000?ooo`3oool0oooo3@002`0<000900d002803@00@`0=0?l0 00`00?l03@2D000=0?l000`0C`003@00o`0=014000d003003000=`0=06/000D0oooo00<000000?oo o`3oool0903oool00`000000oooo0?ooo`0=0?ooo`L0ooo<00<000000?ooc03ool`00`3ool`00`00 0000ooo<0?ooc0020?ooc08000000P3o00000`000000ooo<0?ooc00G0?ooc0030000003ool`0ooo< 01/0ooo<00<000000?ooc03ool`06`3ool`00`000000ooo<0?ooc00J0?ooc0030000003ool`0ooo< 00H0ooo<103oool00`000000oooo0?ooo`190?ooo`030000003oool0oooo05/0oooo00<0003o0?oo o`3oool01@3oool20000obD0oooo0P000?l<0?ooo`030000o`3oool0oooo01`0oooo00<000000?oo o`3oool05`3oool004D0oooo00@000000?ooo`3oool0oooo3@002`0<000900d002803@00@`0=0?l0 00`00?l03@2D000=0?l000`0C`003@00o`0=014000d003003000=`0=06/000D0oooo00<000000?oo o`3oool0903oool00`000000oooo0?ooo`0=0?ooo`L0ooo<00<000000?ooc03ool`00`3ool`00`00 0000ooo<0?ooc0020?ooc0050000003o0000o`000?l0000000006@3ool`00`000000ooo<0?ooc00K 0?ooc0030000003ool`0ooo<01/0ooo<00<000000?ooc03ool`06P3ool`00`000000ooo<0?ooc006 0?ooc0@0oooo00<000000?ooo`3oool0B@3oool00`000000oooo0?ooo`1K0?ooo`030000o`3oool0 oooo03X0oooo00<0003o0?ooo`3oool0703oool00`000000oooo0?ooo`0G0?ooo`00A@3oool01000 0000oooo0?ooo`3oool=000;00`000T03@008P0=001300d0o`003000o`0=09@000d0o`00301?000= 003o00d04@003@00<00<000g00d0J`001@3oool00`000000oooo0?ooo`0T0?ooo`030000003oool0 oooo00d0oooo1`3ool`00`000000ooo<0?ooc0030?ooc0030000003ool`0ooo<0080ooo<00D00000 0?l0003o0000o`000000000I0?ooc0030000003ool`0ooo<01/0ooo<00<000000?ooc03ool`06`3o ol`00`000000ooo<0?ooc00J0?ooc0030000003ool`0ooo<00H0ooo<103oool00`000000oooo0?oo o`190?ooo`030000003oool0oooo05/0oooo00<0003o0?ooo`3oool0F@3oool00`000000oooo0?oo o`0G0?ooo`00A@3oool010000000oooo0?ooo`3oool=000;00`000T03@008P0=001300d0o`003000 o`0=09@000d0o`00301?000=003o00d04@003@00<00<000g00d0J`001@3oool00`000000oooo0?oo o`0T0?ooo`030000003oool0oooo00d0oooo1P3ool`2000000@0ooo<0P0000040?ooc0050000003o 0000o`000?l0000000006@3ool`00`000000ooo<0?ooc00K0?ooc0030000003ool`0ooo<01/0ooo< 00<000000?ooc03ool`06P3ool`00`000000ooo<0?ooc0060?ooc0@0oooo00<000000?ooo`3oool0 B@3oool00`000000oooo0?ooo`1K0?ooo`030000o`3oool0oooo05T0oooo00<000000?ooo`3oool0 5`3oool004D0oooo00@000000?ooo`3oool0oooo3@003`0<00<000d002H03@009`0=001V00`0MP00 3@3o000=001j00`00?<03@00o@0=002U00d0o`003000YP0=08D000D0oooo00<000000?ooo`3oool0 903oool00`000000oooo0?ooo`0=0?oooa80ooo<1@00000I0?ooc0030000003ool`0ooo<01/0ooo< 00<000000?ooc03ool`06`3ool`00`000000ooo<0?ooc00J0?ooc0030000003ool`0ooo<00H0ooo< 103oool00`000000oooo0?ooo`190?ooo`030000003oool0oooo05`0oooo00<0003o0?ooo`3oool0 F03oool00`000000oooo0?ooo`0G0?ooo`00A@3oool010000000oooo0?ooo`3oool=000?00`00`00 3@009P0=000W00d006H0301f000=0?l000d007X03000l`0=003m00d00:D03@3o000<002V00d0Q@00 1@3oool00`000000oooo0?ooo`0T0?ooo`030000003oool0oooo00d0oooo4P3ool`00`000000ooo< 0?ooc00K0?ooc0030000003ool`0ooo<01/0ooo<00<000000?ooc03ool`06`3ool`00`000000ooo< 0?ooc00J0?ooc0030000003ool`0ooo<00H0ooo<103oool00`000000oooo0?ooo`190?ooo`030000 003oool0oooo05`0oooo00<0003o0?ooo`3oool0F03oool00`000000oooo0?ooo`0G0?ooo`00A@3o ool010000000oooo0?ooo`3oool=000?00`00`003@009P0=000W00d006H0301f000=0?l000d007X0 3000l`0=003m00d00:D03@3o000<002V00d0Q@001@3oool00`000000oooo0?ooo`0G0?ooo`<00000 0`3oool3000000@0oooo00<000000?ooo`3oool03@3ooolB0?ooc0D000006@3ool`00`000000ooo< 0?ooc00K0?ooc0030000003ool`0ooo<01/0ooo<00<000000?ooc03ool`06P3ool`00`000000ooo< 0?ooc0060?ooc0@0oooo00<000000?ooo`3oool0B@3oool00`000000oooo0?ooo`1L0?ooo`l0003o C03oool00`000000oooo0?ooo`0G0?ooo`00A@3oool010000000oooo0?ooo`3oool=000?00`00`00 3@009P0=000W00d006H0301f000=0?l000d007X03000l`0=003m00d00:D03@3o000<002V00d0Q@00 1@3oool00`000000oooo0?ooo`0H0?ooo`030000003oool0oooo00<0oooo00<000000?ooo`3oool0 0`3oool00`000000oooo0?ooo`0=0?oooa80ooo<00D000000?l0003o0000o`000000000I0?ooc003 0000003ool`0ooo<01/0ooo<00<000000?ooc03ool`06`3ool`00`000000ooo<0?ooc00J0?ooc003 0000003ool`0ooo<00H0ooo<103oool00`000000oooo0?ooo`190?ooo`030000003oool0oooo0;L0 oooo00<000000?ooo`3oool05`3oool003P0oooo0`0000030?ooo`<00000103oool010000000oooo 0?ooo`3oool=000?00`00`003@009P0=000W00d006H0301f000=0?l000d007X03000l`0=003m00d0 0:D03@3o000<002V00d0Q@001@3oool00`000000oooo0?ooo`0H0?ooo`030000003oool0oooo00<0 oooo00<000000?ooo`3oool00`3oool2000000h0oooo1P3ool`3000000@0ooo<0P0000030?ooc005 0000003o0000o`000?l0000000006@3ool`00`000000ooo<0?ooc00K0?ooc0030000003ool`0ooo< 01/0ooo<00<000000?ooc03ool`06P3ool`00`000000ooo<0?ooc0060?ooc0@0oooo00<000000?oo o`3oool0=P3oool2000000@0oooo0P0000030?ooo`<000001@3oool00`000000oooo0?ooo`2g0?oo o`030000003oool0oooo01L0oooo000i0?ooo`030000003oool0oooo00<0oooo00<000000?ooo`3o ool00`3oool010000000oooo0?ooo`3oool=000?00`00`003@009P0=000W00d006H0301f000=0?l0 00d007X03000l`0=003m00d00:D03@3o000<002V00d0Q@001@3oool00`000000oooo0?ooo`0H0?oo o`030000003oool0oooo00<0oooo00<000000?ooo`3oool00`3oool00`000000oooo0?ooo`0=0?oo o`L0ooo<00<000000?ooc03ool`00P3ool`010000000ooo<0?ooc00000020?ooc0050000003o0000 o`000?l0000000006@3ool`00`000000ooo<0?ooc00K0?ooc0030000003ool`0ooo<01/0ooo<00<0 00000?ooc03ool`06P3ool`00`000000ooo<0?ooc0060?ooc0@0oooo00<000000?ooo`3oool07P3o ool500000180oooo00@000000?ooo`3oool000000`3oool2000000H0oooo00<000000?ooo`3oool0 0P3oool00`000000oooo0?ooo`2g0?ooo`030000003oool0oooo01L0oooo000i0?ooo`030000003o ool0oooo00<0oooo00<000000?ooo`3oool00`3oool200000080oooo3@003`0<00<000d002H03@00 9`0=001V00`0MP003@3o000=001j00`00?<03@00o@0=002U00d0o`003000YP0=08D000D0oooo00<0 00000?ooo`3oool0603oool00`000000oooo0?ooo`030?ooo`030000003oool0oooo00<0oooo00<0 00000?ooo`3oool03@3oool70?ooc0030000003ool`0ooo<0080ooo<00@000000?ooc03ool`00000 0P3ool`200000080o`0000<000000?ooc03ool`05`3ool`00`000000ooo<0?ooc00K0?ooc0030000 003ool`0ooo<01/0ooo<00<000000?ooc03ool`06P3ool`00`000000ooo<0?ooc0060?ooc0@0oooo 00<000000?ooo`3oool07`3oool00`000000oooo0?ooo`0=0?ooo`D0000000D0oooo0000003oool0 oooo0000000;0?ooo`030000003oool0oooo0080oooo0P00002h0?ooo`030000003oool0oooo01L0 oooo000i0?ooo`030000003oool0oooo00<0oooo00<000000?ooo`3oool00`3oool010000000oooo 0?ooo`3oool=000?00`00`003@009P0=000W00d006H0301f000=0?l000d007X03000l`0=003m00d0 0:D03@3o000<002V00d0Q@001@3oool00`000000oooo0?ooo`0G0?ooo`800000103oool2000000D0 oooo00<000000?ooo`3oool03@3oool70?ooc0030000003ool`0ooo<0080ooo<00@000000?ooc03o ol`000000P3ool`01@000000o`000?l0003o0000000001T0ooo<00<000000?ooc03ool`06`3ool`0 0`000000ooo<0?ooc00K0?ooc0030000003ool`0ooo<01X0ooo<00<000000?ooc03ool`01P3ool`4 0?ooo`030000003oool0oooo01l0oooo00<000000?ooo`3oool04`3oool010000000oooo0?ooo`00 00080?ooo`<000001@3oool00`000000oooo0?ooo`2F0?ooo`<0003o7P3oool00`000000oooo0?oo o`0G0?ooo`00>@3oool00`000000oooo0?ooo`030?ooo`030000003oool0oooo00<0oooo00@00000 0?ooo`3oool0oooo3@003`0<00<000d002H03@009`0=001V00`0MP003@3o000=001j00`00?<03@00 o@0=002U00d0o`003000YP0=08D000D0oooo00<000000?ooo`3oool0903oool00`000000oooo0?oo o`0=0?ooo`L0ooo<00<000000?ooc03ool`00P3ool`010000000ooo<0?ooc00000020?ooc0050000 003o0000o`000?l0000000006@3ool`00`000000ooo<0?ooc00K0?ooc0030000003ool`0ooo<01/0 ooo<00<000000?ooc03ool`06P3ool`00`000000ooo<0?ooc0060?ooc0@0oooo00<000000?ooo`3o ool07`3oool3000001<0oooo00@000000?ooo`3oool00000203oool00`000000oooo0?ooo`050?oo o`030000003oool0oooo09D0oooo1@000?lM0?ooo`030000003oool0oooo01L0oooo000h0?ooo`80 0000103oool2000000D0oooo00@000000?ooo`3oool0oooo3@003`0<00<000d002H03@009`0=001V 00`0MP003@3o000=001j00`00?<03@00o@0=002U00d0o`003000YP0=08D000D0oooo00<000000?oo o`3oool0903oool00`000000oooo0?ooo`0=0?ooo`H0ooo<0P0000050?ooc08000000`3ool`01@00 0000o`000?l0003o0000000001T0ooo<00<000000?ooc03ool`06`3ool`00`000000ooo<0?ooc00K 0?ooc0030000003ool`0ooo<01X0ooo<00<000000?ooc03ool`01P3ool`40?ooo`030000003oool0 oooo01l0oooo00<000000?ooo`3oool0503oool2000000T0oooo100000040?ooo`030000003oool0 oooo09D0oooo1@000?lM0?ooo`030000003oool0oooo01L0oooo00150?ooo`040000003oool0oooo 0?ooo`d000l03003000=000V00d002L03@00IP0<07H000d0o`003@00NP0<003c00d00?d03@00Y@0= 0?l000`00:H03@2500050?ooo`030000003oool0oooo02@0oooo00<000000?ooo`3oool03@3ooolB 0?ooc0D000006@3ool`00`000000ooo<0?ooc00K0?ooc0030000003ool`0ooo<01/0ooo<00<00000 0?ooc03ool`06P3ool`00`000000ooo<0?ooc0060?ooc0@0oooo00<000000?ooo`3oool07P3oool5 000002H0oooo00<000000?ooo`3oool0U@3oool80000oaX0oooo00<000000?ooo`3oool05`3oool0 04D0oooo00@000000?ooo`3oool0oooo3@003`0<00<000d002H03@009`0=001V00`0MP003@3o000= 001j00`00?<03@00o@0=002U00d0o`003000YP0=08D000D0oooo00<000000?ooo`3oool0903oool0 0`000000oooo0?ooo`0=0?oooa80ooo<00<000000?ooc03ool`06`3ool`00`000000ooo<0?ooc00K 0?ooc0030000003ool`0ooo<01/0ooo<00<000000?ooc03ool`06P3ool`00`000000ooo<0?ooc006 0?ooc0@0oooo00<000000?ooo`3oool07P3oool2000000030?ooo`000000000002H0oooo00<00000 0?ooo`3oool0UP3oool30000o`@0oooo0`000?lG0?ooo`030000003oool0oooo01L0oooo00150?oo o`040000003oool0oooo0?ooo`d000l03003000=000V00d002L03@00IP0<07H000d0o`003@00NP0< 003c00d00?d03@00Y@0=0?l000`00:H03@2500050?ooo`030000003oool0oooo02@0oooo00<00000 0?ooo`3oool03@3ooolB0?ooc0D000006@3ool`00`000000ooo<0?ooc00K0?ooc0030000003ool`0 ooo<01/0ooo<00<000000?ooc03ool`06P3ool`00`000000ooo<0?ooc0060?ooc0@0oooo00<00000 0?ooo`3oool07`3oool00`000000oooo0000000W0?ooo`030000003oool0oooo09L0oooo00<0003o 0?ooo`3oool01P3oool20000o`80oooo0`000?l@0?ooo`030000003oool0oooo01L0oooo00150?oo o`040000003oool0oooo0?ooo`d000l03003000=000V00d002L03@00IP0<07H000d0o`003@00NP0< 003c00d00?d03@00Y@0=0?l000`00:H03@2500050?ooo`030000003oool0oooo02@0oooo00<00000 0?ooo`3oool03@3ooolB0?ooc0050000003o0000o`000?l0000000006@3ool`00`000000ooo<0?oo c00K0?ooc0030000003ool`0ooo<01/0ooo<00<000000?ooc03ool`06P3ool`00`000000ooo<0?oo c0060?ooc0@0oooo00<000000?ooo`3oool0803oool00`000000oooo0?ooo`0V0?ooo`030000003o ool0oooo09L0oooo00<0003o0?ooo`3oool0203oool60000o`l0oooo00<000000?ooo`3oool05`3o ool004D0oooo00@000000?ooo`3oool0oooo3@005@0<000000d002<03@0g000=002A00`0N@003@3? 000=078000`001P03@00o`0=050000d008@0303o000=003o00D0oooo00<000000?ooo`3oool0903o ool00`000000oooo0?ooo`0=0?ooo``0ooo<0`0000030?ooc0050000003o0000o`000?l000000000 6@3ool`00`000000ooo<0?ooc00K0?ooc0030000003ool`0ooo<01/0ooo<00<000000?ooc03ool`0 6P3ool`00`000000ooo<0?ooc0060?ooc0@0oooo00<000000?ooo`3oool07`3oool00`000000oooo 0000000W0?ooo`030000003oool0oooo09L0oooo00<0003o0?ooo`3oool02@3oool50000o`l0oooo 00<000000?ooo`3oool05`3oool004D0oooo00@000000?ooo`3oool0oooo3@005@0<000000d002<0 3@0g000=002A00`0N@003@3?000=078000`001P03@00o`0=050000d008@0303o000=003o00D0oooo 00<000000?ooo`3oool0903oool00`000000oooo0?ooo`0=0?ooo`l0ooo<00@000000?ooc03ool`0 00000`3o00000`000000ooo<0?ooc00G0?ooc0030000003ool`0ooo<01/0ooo<00<000000?ooc03o ol`06`3ool`00`000000ooo<0?ooc00J0?ooc0030000003ool`0ooo<00H0ooo<103oool00`000000 oooo0?ooo`0N0?ooo`D000009P3oool00`000000oooo0?ooo`2F0?ooo`030000o`3oool0oooo00X0 oooo1@000?l?0?ooo`030000003oool0oooo01L0oooo00150?ooo`040000003oool0oooo0?ooo`d0 01D03000000=000S00d0=`003@00T@0<07T000d0c`003@1b000<000H00d00?l03@1@000=002400`0 o`003@00o`050?ooo`030000003oool0oooo01L0oooo0`0000040?ooo`800000103oool00`000000 oooo0?ooo`0=0?ooo`d0ooo<0`0000020?ooc08000000P3o00000`000000ooo<0?ooc00G0?ooc003 0000003ool`0ooo<01/0ooo<00<000000?ooc03ool`06`3ool`00`000000ooo<0?ooc00J0?ooc003 0000003ool`0ooo<00H0ooo<103oool00`000000oooo0?ooo`0O0?ooo`030000003oool0oooo02L0 oooo00<000000?ooo`3oool0UP3oool00`000?l0oooo0?ooo`0;0?ooo`<0003o403oool00`000000 oooo0?ooo`0G0?ooo`00A@3oool010000000oooo0?ooo`3oool=000E00`000003@008`0=03L000d0 0940301i000=00?ooo`030000o`3oool0oooo00d0oooo00<000000?ooo`3oool05`3oool003P0oooo0`000004 0?ooo`800000103oool010000000oooo0?ooo`3oool=000E00`000003@008`0=03L000d00940301i 000=0@3oool00`000000oooo0?ooo`020?ooo`040000003oool0oooo000000<0oooo0P0000020?oo o`d001D03000000=000S00d0=`003@00T@0<07T000d0c`003@1b000<000H00d00?l03@1@000=0024 00`0o`003@00o`050?ooo`030000003oool0oooo01P0oooo00<000000?ooo`3oool00P3oool01000 0000oooo0?ooo`0000030?ooo`030000003oool0oooo00d0oooo4P3ool`01@000000o`000?l0003o 0000000001T0ooo<00<000000?ooc03ool`06`3ool`00`000000ooo<0?ooc00K0?ooc0030000003o ol`0ooo<01X0ooo<00<000000?ooc03ool`01P3ool`40?ooo`030000003oool0oooo01l0oooo00D0 00000?ooo`3oool0oooo0000000U0?ooo`030000003oool0oooo0980oooo10000?lD0?ooo`030000 o`3oool0oooo00X0oooo00<000000?ooo`3oool05`3oool003T0oooo00<000000?ooo`3oool00P3o ool010000000oooo0?ooo`0000030?ooo`040000003oool0oooo0?ooo`d001D03000000=000S00d0 =`003@00T@0<07T000d0c`003@1b000<000H00d00?l03@1@000=002400`0o`003@00o`050?ooo`03 0000003oool0oooo01L0oooo0P0000050?ooo`800000103oool00`000000oooo0?ooo`0=0?oooa80 ooo<1@00000I0?ooc0030000003ool`0ooo<01/0ooo<00<000000?ooc03ool`06`3ool`00`000000 ooo<0?ooc00J0?ooc0030000003ool`0ooo<00H0ooo<103oool00`000000oooo0?ooo`0N0?ooo`D0 00009P3oool00`000000oooo0?ooo`1g0?ooo`<0003o6P3oool20000oaD0oooo00<0003o0?ooo`3o ool02@3oool00`000000oooo0?ooo`0G0?ooo`00>@3oool00`000000oooo0?ooo`020?ooo`040000 003oool0oooo000000<0oooo00@000000?ooo`3oool0oooo3@005@0<000000d002<03@0g000=002A 00`0N@003@3?000=078000`001P03@00o`0=050000d008@0303o000=003o00D0oooo00<000000?oo o`3oool0903oool00`000000oooo0?ooo`0=0?oooa80ooo<00<000000?ooc03ool`06`3ool`00`00 0000ooo<0?ooc00K0?ooc0030000003ool`0ooo<01/0ooo<00<000000?ooc03ool`06P3ool`00`00 0000ooo<0?ooc0060?ooc0@0oooo00<000000?ooo`3oool0B@3oool00`000000oooo0?ooo`03001o 07<0oooo00<0003o0?ooo`3oool06`3oool00`000?l0oooo0000o`0E0?ooo`030000o`3oool0oooo 00P0oooo00<000000?ooo`3oool05`3oool003P0oooo0P0000050?ooo`800000103oool010000000 oooo0?ooo`3oool=000E00`000003@008`0=03L000d00940301i000=00?ooo`D0003o00<0oooo0000003oool0603oool002h0oooo00<000000?ooo`3oool03@3oool3 000000@0oooo00@000000?ooo`3oool0oooo3@003`0<01@000d0CP003@00P`0=0?l000`003803@00 Q`0=003o00`0G`003@000?ooo`<000000`3oool200000080oooo3@003`0<01@000d0CP003@00P`0=0?l000`00380 3@00Q`0=003o00`0G`003@00000=002300d0o`0030000?ooc0050000003ool`0ooo<0?oo c00000001@3o00000`000000ooo<0?ooc00E0?ooc0030000003ool`0ooo<01/0ooo<00<000000?oo c03ool`06`3ool`00`000000ooo<0?ooc00J0?ooc0030000003ool`0ooo<00H0ooo<103oool00`00 0000oooo0?ooo`0O0?ooo`030000003oool0oooo02L0oooo00<000000?ooo`3oool00`3oool00`00 O`00oooo0?ooo`0^0?ooo`030?l0003oool0oooo00L0oooo00<0o`00001o003oool03@3oool3001o 00D0o`00203oool00`00O`00o`000?l000030?l0008007l000@0003o0?ooo`3oool0003o0`3oool3 001o00T0oooo00<0003o0?l0003o00000`3o00090?ooo`D007l00P3oool00`000?l0oooo0?ooo`0E 0?ooo`030000o`3oool0oooo00d0oooo00<000000?ooo`3oool05`3oool002`0oooo00D000000?oo o`3oool0oooo0000000D0?ooo`040000003oool0oooo0?ooo`d000l0300D000=04h000d008<03@3o 000<000b00d008L03@00o`0<05l000d003803@002`0=0?l000`0B0003@00o`050?ooo`030000003o ool0oooo02@0oooo00<000000?ooo`3oool03@3oool?0?ooc0040000003ool`0ooo<000000D0o`00 00<000000?ooc03ool`05@3ool`00`000000ooo<0?ooc00K0?ooc0030000003ool`0ooo<01/0ooo< 00<000000?ooc03ool`06P3ool`00`000000ooo<0?ooc0060?ooc0@0oooo00<000000?ooo`3oool0 7`3oool4000002H0oooo00<000000?ooo`3oool00`3oool00`00O`00oooo0?ooo`0/0?ooo`80o`00 2@3oool00`3o000007l00?ooo`0A0?oooa<0o`0000D0oooo0000o`00O`0007l00000o`08001o00P0 oooo2@3o00000`3oool007l0001o0008001o0080oooo00<0003o0?ooo`3oool05P3oool00`000?l0 oooo0?ooo`0<0?ooo`030000003oool0oooo01L0oooo000]0?ooo`D000004`3oool010000000oooo 0?ooo`3oool=000?00`050003@1>000=002300d0o`0030000?ooo`030000o`3o ool0003o00<0oooo0`3o0000103oool0o`000?l0003o00020?ooo`80o`001P3oool01@00O`00o`00 0000o`000?l007l000T0oooo1@3o00000`3oool0003o0?ooo`02001o02D0oooo00<000000?ooo`3o ool05`3oool002`0oooo00<000000?ooo`3oool05P3oool010000000oooo0?ooo`3oool=00D000`0 5P003@2X000=003o00d0h000303m000=000T00d07@003000D@0=000E00d00?l03@00/`0<0=4000d0 i`001@3oool00`000000oooo0?ooo`0T0?ooo`030000003oool0oooo00d0oooo4P3ool`:000001@0 ooo<00<000000?ooc03ool`06`3ool`00`000000ooo<0?ooc00K0?ooc0030000003ool`0ooo<01X0 ooo<00<000000?ooc03ool`01P3ool`40?ooo`030000003oool0oooo01l0oooo1000000V0?ooo`03 0000003oool0oooo00<0oooo00<007l00?ooo`3oool09`3oool00`3o0000oooo0?ooo`060?ooo`D0 07l09`3oool00`000?l0oooo0000o`070?ooo`H0o`002@3oool01000O`00o`00001o00000?l90?oo o`H0o`0000@0003o0?ooo`3oool0oooo0P00O`0S0?ooo`030000003oool0oooo01L0oooo000/0?oo o`D00000503oool010000000oooo0?ooo`3oool=00D000`05P003@2X000=003o00d0h000303m000= 000T00d07@003000D@0=000E00d00?l03@00/`0<0=4000d0i`001@3oool00`000000oooo0?ooo`0N 0?ooo`800000103oool00`000000oooo0?ooo`0=0?oooa80ooo<00<000000?l0003o00001P3o0000 0`000000ooo<0?ooc00B0?ooc0030000003ool`0ooo<01/0ooo<00<000000?ooc03ool`06`3ool`0 0`000000ooo<0?ooc00J0?ooc0030000003ool`0ooo<00H0ooo<103oool00`000000oooo0?ooo`0O 0?ooo`030000003oool0oooo02L0oooo00<000000?ooo`3oool0103oool00`00O`00oooo0?ooo`0R 0?ooo`@0o`002@3oool5001o02D0oooo10000?l80?ooo`D0o`00303oool00`3o0000oooo0000o`09 0?ooo`<0o`0000<0oooo0000o`3o00001@3oool00`00O`00oooo0?ooo`0P0?ooo`030000003oool0 oooo01L0oooo000/0?ooo`050000003oool0oooo0?ooo`0000003P3oool2000000@0oooo00@00000 0?ooo`3oool0oooo3@05000<01H000d0Z0003@00o`0=0>0000`0o@003@00900=01d000`005403@00 5@0=003o00d00;<0303A000=0>L000D0oooo00<000000?ooo`3oool07@3oool010000000oooo0?oo o`0000030?ooo`030000003oool0oooo00d0oooo3@3ool`2000000<0ooo<00<000000?l0003o0000 1P3o00000`000000ooo<0?ooc00B0?ooc0030000003ool`0ooo<01/0ooo<00<000000?ooc03ool`0 6`3ool`00`000000ooo<0?ooc00J0?ooc0030000003ool`0ooo<00H0ooo<103oool00`000000oooo 0?ooo`0O0?ooo`@000009P3oool00`000000oooo0?ooo`040?ooo`03001o003oool0oooo0240oooo 1@3o00080?ooo`80o`001000O`0T0?ooo`D0003o203oool50?l000d0oooo00<0o`000?ooo`000?l0 303oool010000?l0oooo0?l0003o00040?ooo`@007l0503oool00`000?l0oooo0?ooo`070?ooo`03 0000003oool0oooo01L0oooo000]0?ooo`<000003P3oool010000000oooo0?ooo`0000030?ooo`04 0000003oool0oooo0?ooo`d01@00300F000=0:P000d00?l03@3P000<0?d000d002@03@0M000<001A 00d001D03@00o`0=002c00`0d@003@3W00050?ooo`030000003oool0oooo01d0oooo00@000000?oo o`3oool000000`3oool2000000h0oooo303ool`010000000ooo<0?ooc00000020?ooc0030000003o 0000o`0000H0o`0000<000000?ooc03ool`04P3ool`00`000000ooo<0?ooc00K0?ooc0030000003o ol`0ooo<01/0ooo<00<000000?ooc03ool`06P3ool`00`000000ooo<0?ooc0060?ooc0@0oooo00<0 00000?ooo`3oool0B@3oool00`000000oooo0?ooo`040?ooo`03001o003oool0oooo0240oooo1@3o 00070?ooo`030?l0003oool0oooo00<007l09@3oool50000o`T0oooo0`3o000A0?ooo`030000o`3o ool0oooo00T0oooo00@0003o0?ooo`3oool0oooo0P3o00020?ooo`D007l04`3oool00`000?l0oooo 0?ooo`070?ooo`030000003oool0oooo01L0oooo000n0?ooo`040000003oool0oooo000000<0oooo 0P0000020?ooo`d01@00300F000=0:P000d00?l03@3P000<0?d000d002@03@0M000<001A00d001D0 3@00o`0=002c00`0d@003@3W00050?ooo`030000003oool0oooo01h0oooo0P0000040?ooo`030000 003oool0oooo00d0oooo303ool`010000000ooo<0?ooc00000020?ooc08000001`3o00000`000000 ooo<0?ooc00B0?ooc0030000003ool`0ooo<01/0ooo<00<000000?ooc03ool`06`3ool`00`000000 ooo<0?ooc00J0?ooc0030000003ool`0ooo<00H0ooo<103oool00`000000oooo0?ooo`0O0?ooo`D0 00009@3oool00`000000oooo0?ooo`040?ooo`03001o003oool0oooo0200oooo1P3o00060?ooo`05 0?l0003oool0oooo0?ooo`00O`009P3oool60000oah0oooo00<0003o0?ooo`3oool0203oool00`00 0?l0oooo0?ooo`030?ooo`80o`001@00O`0D0?ooo`030000o`3oool0oooo00H0oooo00<000000?oo o`3oool05`3oool002`0oooo0P0000000`3oool000000000000>0?ooo`800000103oool010000000 oooo0?ooo`3oool=00D000`05P003@2X000=003o00d0h000303m000=000T00d07@003000D@0=000E 00d00?l03@00/`0<0=4000d0i`001@3oool00`000000oooo0?ooo`0M0?ooo`040000003oool0oooo 000000<0oooo00<000000?ooo`3oool03@3oool<0?ooc0<000000`3ool`00`000000o`000?l00006 0?l000030000003ool`0ooo<0180ooo<00<000000?ooc03ool`06`3ool`00`000000ooo<0?ooc00K 0?ooc0030000003ool`0ooo<01X0ooo<00<000000?ooc03ool`01P3ool`40?ooo`030000003oool0 oooo0240oooo00<000000?ooo`3oool09@3oool00`000000oooo0?ooo`040?ooo`03001o003oool0 oooo01l0oooo00<0o`000?ooo`3oool00`3o00060?ooo`050?l0003oool0oooo0?ooo`00O`009`3o ool00`000?l0oooo0000o`020000oal0oooo0P3o00080?ooo`030000o`3oool0oooo00H0oooo103o 0002001o01@0oooo00<0003o0?ooo`3oool01@3oool00`000000oooo0?ooo`0G0?ooo`00;03oool0 10000000oooo0?ooo`00000>0?ooo`040000003oool0oooo000000<0oooo00@000000?ooo`3oool0 oooo3@05000<01H000d0Z0003@00o`0=0>0000`0o@003@00900=01d000`005403@005@0=003o00d0 0;<0303A000=0>L000D0oooo00<000000?ooo`3oool07P3oool2000000@0oooo00<000000?ooo`3o ool03@3oool<0?ooc0030000003ool`0ooo<00<0ooo<00<000000?l0003o00001P3o00000`000000 ooo<0?ooc00B0?ooc0030000003ool`0ooo<01/0ooo<00<000000?ooc03ool`06`3ool`00`000000 ooo<0?ooc00J0?ooc0030000003ool`0ooo<00H0ooo<103oool00`000000oooo0?ooo`0Q0?ooo`03 0000003oool0oooo02D0oooo00<000000?ooo`3oool0103oool00`00O`00oooo0?ooo`0M0?ooo`80 o`002`3oool01@3o0000oooo0?ooo`3oool007l002L0oooo00<0003o0?ooo`000?l0903oool00`3o 0000oooo0?ooo`050?ooo`030000o`3oool0oooo00H0oooo1@3o00000`3oool007l00?ooo`0C0?oo o`030000o`3oool0o`000080o`000P3oool00`000000oooo0?ooo`0G0?ooo`00;03oool010000000 oooo0?ooo`00000?0?ooo`800000103oool010000000oooo0?ooo`3oool=00D000`05P003@2X000= 003o00d0h000303m000=000T00d07@003000D@0=000E00d00?l03@00/`0<0=4000d0i`001@3oool0 0`000000oooo0?ooo`0T0?ooo`030000003oool0oooo00d0oooo3@3ool`300000080ooo<00<00000 0?l0003o00001P3o00000`000000ooo<0?ooc00B0?ooc0030000003ool`0ooo<01/0ooo<00<00000 0?ooc03ool`06`3ool`00`000000ooo<0?ooc00J0?ooc0030000003ool`0ooo<00H0ooo<103oool0 0`000000oooo0?ooo`0Q0?ooo`030000003oool0oooo01h0oooo0P0000050?ooo`030000003oool0 oooo00@0oooo00<007l00?ooo`3oool06`3oool20?l000`0oooo00<0o`000?ooo`3oool00P3oool0 0`00O`00oooo0?ooo`0T0?ooo`040000o`3oool0oooo0000obD0oooo00<0o`000?ooo`3oool0103o ool00`000?l0oooo0?ooo`060?ooo`D0o`000P3oool00`00O`00oooo0?ooo`0B0?ooo`D0o`0000<0 oooo0000003oool0603oool002`0oooo00@000000?ooo`3oool000005@3oool010000000oooo0?oo o`3oool=00D000`05P003@2X000=003o00d0h000303m000=000T00d07@003000D@0=000E00d00?l0 3@00/`0<0=4000d0i`001@3oool00`000000oooo0?ooo`0T0?ooo`030000003oool0oooo00d0oooo 4P3ool`:000001@0ooo<00<000000?ooc03ool`06`3ool`00`000000ooo<0?ooc00K0?ooc0030000 003ool`0ooo<01X0ooo<00<000000?ooc03ool`01P3ool`40?ooo`030000003oool0oooo0200oooo 0P00000O0?ooo`040000003oool0oooo000000@0oooo00<000000?ooo`3oool01@3oool00`00O`00 oooo0?ooo`0H0?ooo`80o`004P3oool00`00O`00oooo0?ooo`0U0?ooo`030000o`3oool0003o02L0 oooo00<0o`000?ooo`3oool00P3oool00`000?l0oooo0?ooo`070?ooo`P0o`0000<007l00?ooo`3o ool03`3oool70?l000030?ooo`000000oooo01P0oooo000[0?ooo`D000005@3oool010000000oooo 0?ooo`3oool=00D000`05P003@2X000=003o00d0h000303m000=000T00d07@003000D@0=000E00d0 0?l03@00/`0<0=4000d0i`001@3oool00`000000oooo0?ooo`0T0?ooo`030000003oool0oooo00d0 oooo4P3ool`00`000000ooo<0?ooc00K0?ooc0030000003ool`0ooo<01/0ooo<00<000000?ooc03o ol`06`3ool`00`000000ooo<0?ooc00J0?ooc0030000003ool`0ooo<00H0ooo<103oool00`000000 oooo0?ooo`110?ooo`040000003oool0oooo000000@0oooo^`00000I0?ooo`00<03oool00`000000 oooo0?ooo`0B0?ooo`040000003oool0oooo0?ooo`d01@00300F000=0:P000d00?l03@3P000<0?d0 00d002@03@0M000<001A00d001D03@00o`0=002c00`0d@003@3W00050?ooo`030000003oool0oooo 02@0oooo00<000000?ooo`3oool03@3ooolB0?ooc0`000004P3ool`00`000000ooo<0?ooc00K0?oo c0030000003ool`0ooo<01/0ooo<00<000000?ooc03ool`06P3ool`00`000000ooo<0?ooc0060?oo c0@0oooo00<000000?ooo`3oool0803oool3000001h0oooo00@000000?ooo`3oool00000103oool0 0`000000oooo0?ooo`050?ooo`03001o003oool0oooo0180oooo1@3o000=0?ooo`030?l0003oool0 oooo00@0oooo00<007l00?ooo`3oool0903oool010000?l0oooo0?ooo`000?lZ0?ooo`040?l00000 0?l0003o0000oa@0oooo0P3o00020?ooo`<0o`000P3oool30?l000H0oooo0`3o00020?ooo`030000 003oool0oooo01L0oooo000]0?ooo`@00000503oool010000000oooo0?ooo`3oool=000000`002/0 3@3o000=000l00d00=h03000?P0=08`000d0d000303K000=05T000d00>X03@0C000<002Z00d00?h0 1@3oool00`000000oooo0?ooo`0T0?ooo`030000003oool0oooo00d0oooo4P3ool`00`000000o`00 0?l000080?l000030000003ool`0ooo<0100ooo<00<000000?ooc03ool`06`3ool`00`000000ooo< 0?ooc00K0?ooc0030000003ool`0ooo<01X0ooo<00<000000?ooc03ool`01P3ool`40?ooo`030000 003oool0oooo01l0oooo00D000000?ooo`3oool0oooo0000000M0?ooo`040000003oool0oooo0000 00@0oooo00<000000?ooo`3oool01@3oool00`00O`00oooo0?ooo`0B0?ooo`D0o`00303oool00`3o 0000oooo0?ooo`040?ooo`03001o003oool0oooo02L0oooo00<0003o0?ooo`3oool0:@3oool50000 oa@0oooo00<007l00?l0003o00001@3o000>0?ooo`030000003oool0oooo01L0oooo000/0?ooo`05 0000003oool0oooo0?ooo`000000503oool010000000oooo0?ooo`3oool=000000`002/03@3o000= 000l00d00=h03000?P0=08`000d0d000303K000=05T000d00>X03@0C000<002Z00d00?h01@3oool0 0`000000oooo0?ooo`0T0?ooo`030000003oool0oooo00d0oooo303ool`3000000<0ooo<00<00000 0?l0003o0000203o00000`000000ooo<0?ooc00@0?ooc0030000003ool`0ooo<01/0ooo<00<00000 0?ooc03ool`06`3ool`00`000000ooo<0?ooc00J0?ooc0030000003ool`0ooo<00H0ooo<103oool0 0`000000oooo0?ooo`0O0?ooo`050000003oool0oooo0?ooo`0000007P3oool2000000D0oooo00<0 00000?ooo`3oool01@3oool00`00O`00oooo0?ooo`0B0?ooo`D0o`002`3oool00`3o0000oooo0?oo o`050?ooo`03001o003oool0oooo02L0oooo00<0003o0?ooo`3oool0:@3oool50000oaD0oooo00<0 07l00?l0003o00000`3o000?0?ooo`030000003oool0oooo01L0oooo000/0?ooo`050000003oool0 oooo0?ooo`000000503oool010000000oooo0?ooo`3oool=000000`002/03@3o000=000l00d00=h0 3000?P0=08`000d0d000303K000=05T000d00>X03@0C000<002Z00d00?h01@3oool00`000000oooo 0?ooo`0T0?ooo`030000003oool0oooo00d0oooo3`3ool`010000000ooo<0?ooc000000:0?l00003 0000003ool`0ooo<0100ooo<00<000000?ooc03ool`06`3ool`00`000000ooo<0?ooc00K0?ooc003 0000003ool`0ooo<01X0ooo<00<000000?ooc03ool`01P3ool`40?ooo`030000003oool0oooo01l0 oooo00D000000?ooo`3oool0oooo0000000U0?ooo`030000003oool0oooo00@0oooo00<0003o001o 003oool04`3oool40?l000/0oooo00<0o`000?ooo`3oool01@3oool00`00O`00oooo0?ooo`0W0?oo o`030000o`3oool0oooo02X0oooo1@000?lF0?ooo`D0o`003`3oool00`000000oooo0?ooo`0G0?oo o`00;03oool01@000000oooo0?ooo`3oool0000001@0oooo00@000000?ooo`3oool0oooo3@00000< 000[00d0o`003@00?00=003N00`003h03@2<000=0=0000`0f`003@1I000=003Z00d04`003000ZP0= 003n00D0oooo00<000000?ooo`3oool0903oool00`000000oooo0?ooo`0=0?ooo`l0ooo<00<00000 0?ooc03ool`00P0000090?l000030000003ool`0ooo<0100ooo<00<000000?ooc03ool`06`3ool`0 0`000000ooo<0?ooc00K0?ooc0030000003ool`0ooo<01X0ooo<00<000000?ooc03ool`01P3ool`4 0?ooo`030000003oool0oooo0200oooo0`00000V0?ooo`030000003oool0oooo00@0oooo00<0003o 001o003oool01P3oool30000o`T0oooo00<0o`000?ooo`3oool0303oool00`3o0000oooo0?ooo`06 0?ooo`03001o003oool0oooo02<0oooo00@0003o0?ooo`3oool0003o;P3oool20000o`80o`005`3o ool30?l000/0oooo0`00O`020?ooo`030000003oool0oooo01L0oooo000]0?ooo`D000003@3oool0 0`000000oooo0?ooo`030?ooo`040000003oool0oooo0?ooo`d000003000:`0=0?l000d003`03@00 gP0<000n00d0S0003@3@000<0=/000d0F@003@00jP0=01<000`00:X03@00oP050?ooo`030000003o ool0oooo01h0oooo00<000000?ooo`3oool00`3oool00`000000oooo0?ooo`0=0?ooo``0ooo<0`00 00030?ooc0030000003o0000o`0000P0o`0000<000000?ooc03ool`0403ool`00`000000ooo<0?oo c00K0?ooc0030000003ool`0ooo<01/0ooo<00<000000?ooc03ool`06P3ool`00`000000ooo<0?oo c0060?ooc0@0oooo00<000000?ooo`3oool0B@3oool00`000000oooo0?ooo`050?ooo`030000o`00 O`00oooo00@0oooo1@000?l70?ooo`030?l0003oool0oooo00`0oooo00<0o`000?ooo`3oool01P3o ool00`00O`00oooo0?ooo`0S0?ooo`050000o`3oool0oooo0?ooo`000?l0X03@0C000<002Z00d00?h01@3oool00`000000oooo 0?ooo`0M0?ooo`@000000`3oool00`000000oooo0?ooo`0=0?oooa80ooo<00<000000?ooc03ool`0 6`3ool`00`000000ooo<0?ooc00K0?ooc0030000003ool`0ooo<01/0ooo<00<000000?ooc03ool`0 6P3ool`00`000000ooo<0?ooc0060?ooc0@0oooo00<000000?ooo`3oool07P3oool5000002H0oooo 00<000000?ooo`3oool01P3oool20000o`/0oooo00<0o`000?ooo`3oool00P3oool20000o`040?oo o`000?l0003o0000o`<0oooo00<0o`000?ooo`3oool02@3oool00`00O`00oooo0?ooo`0V0?ooo`03 0000o`3oool0oooo05h0oooo00<000000?ooo`3oool05`3oool002d0oooo0`00000E0?ooo`040000 003oool0oooo0?ooo`d000003000:`0=0?l000d003`03@00gP0<000n00d0S0003@3@000<0=/000d0 F@003@00jP0=01<000`00:X03@00oP050?ooo`030000003oool0oooo02@0oooo00<000000?ooo`3o ool03@3ooolB0?ooc1D000002@3ool`00`000000ooo<0?ooc00K0?ooc0030000003ool`0ooo<01/0 ooo<00<000000?ooc03ool`06P3ool`00`000000ooo<0?ooc0060?ooc0@0oooo00<000000?ooo`3o ool0B@3oool00`000000oooo0?ooo`030000o`040?ooo`000?l0003o001o00/0oooo00<0o`000?oo o`3oool01@3oool50000o`030?ooo`3o0000oooo00/0oooo00<007l00?ooo`3oool09P3oool00`00 0?l0oooo0?ooo`1N0?ooo`030000003oool0oooo01L0oooo00150?ooo`040000003oool0oooo0?oo o`d000003000:`0=0?l000d003`03@00gP0<000n00d0S0003@3@000<0=/000d0F@003@00jP0=01<0 00`00:X03@00oP050?ooo`030000003oool0oooo02@0oooo00<000000?ooo`3oool03@3ooolB0?oo c0030000003o0000o`000140o`0000<000000?ooc03ool`01`3ool`00`000000ooo<0?ooc00K0?oo c0030000003ool`0ooo<01/0ooo<00<000000?ooc03ool`06P3ool`00`000000ooo<0?ooc0060?oo c0@0oooo00<000000?ooo`3oool0B@3oool00`000000oooo0000o`040000o`80oooo00<007l00?oo o`3oool00`3oool01P000?l0o`000?l0003o0000oooo0?l000P0oooo10000?l20?l000`0oooo00<0 07l00?ooo`3oool09P3oool00`000?l0oooo0?ooo`0m0?ooo`80o`00803oool00`000000oooo0?oo o`0G0?ooo`00;03oool2000000030?ooo`000000000001@0oooo00@000000?ooo`3oool0oooo3@00 000<000[00d0o`003@00?00=003N00`003h03@2<000=0=0000`0f`003@1I000=003Z00d04`003000 ZP0=003n00D0oooo00<000000?ooo`3oool0903oool00`000000oooo0?ooo`0=0?ooo`d0ooo<0`00 00020?ooc0030000003o0000o`000140o`0000<000000?ooc03ool`01`3ool`00`000000ooo<0?oo c00K0?ooc0030000003ool`0ooo<01/0ooo<00<000000?ooc03ool`06P3ool`00`000000ooo<0?oo c0060?ooc0@0oooo00<000000?ooo`3oool0B@3oool00`000000oooo0000o`040000o`<0oooo00<0 07l00?ooo`3oool00P3oool50?l000T0oooo0`000?l00`3o0000003o0?ooo`090?ooo`<007l08`3o ool00`000?l0oooo0?ooo`030?ooo`030000o`3oool0oooo03l0oooo00<0o`000?ooo`3oool07@3o ool00`000000oooo0?ooo`0G0?ooo`00;03oool010000000oooo0?ooo`00000E0?ooo`040000003o ool0oooo0?ooo`d0;`00302S000=003o00d0G@003@0o000<064000d0=P003@2d000<0=d000d0SP00 3@00o`0=01@000`001T03@00U0050?ooo`030000003oool0oooo02@0oooo00<000000?ooo`3oool0 3@3oool>0?ooc0050000003ool`0ooo<0?ooc00000004`3o00000`000000ooo<0?ooc0070?ooc003 0000003ool`0ooo<01/0ooo<00<000000?ooc03ool`06`3ool`00`000000ooo<0?ooc00J0?ooc003 0000003ool`0ooo<00H0ooo<103oool00`000000oooo0?ooo`190?ooo`030000003oool0003o00@0 003o0`3oool00`00O`00oooo0?ooo`020?ooo`D0o`002P3oool30000o`X0oooo1@00O`0R0?ooo`03 0000o`3oool0oooo00<0003o@`3oool20?l001d0oooo00<000000?ooo`3oool05`3oool002`0oooo 00@000000?ooo`3oool000005@3oool010000000oooo0?ooo`3oool=02l000`0X`003@00o`0=05d0 00d0?`00301Q000=03H000d0]000303M000=08h000d00?l03@0D000<000I00d009@01@3oool00`00 0000oooo0?ooo`0T0?ooo`030000003oool0oooo00d0oooo303ool`400000080ooo<0P00000B0?l0 00030000003ool`0ooo<00L0ooo<00<000000?ooc03ool`06`3ool`00`000000ooo<0?ooc00K0?oo c0030000003ool`0ooo<01X0ooo<00<000000?ooc03ool`01P3ool`40?ooo`030000003oool0oooo 04T0oooo00<000000?ooo`3oool00`000?l40?ooo`03001o003oool0oooo0080oooo1@3o000:0?oo o`<007l000<0003o0?ooo`3oool01P3oool6001o0240oooo00<0003o0?ooo`3oool01@000?m40?oo o`030?l0003oool0oooo01X0oooo00<000000?ooo`3oool05`3oool002`0oooo00@000000?ooo`3o ool000005@3oool010000000oooo0?ooo`3oool=02l000`0X`003@00o`0=05d000d0?`00301Q000= 03H000d0]000303M000=08h000d00?l03@0D000<000I00d009@01@3oool00`000000oooo0?ooo`0T 0?ooo`030000003oool0oooo00d0oooo303ool`00`000000ooo<000000030?ooc0030000003o0000 o`000140o`0000<000000?ooc03ool`01`3ool`00`000000ooo<0?ooc00K0?ooc0030000003ool`0 ooo<01/0ooo<00<000000?ooc03ool`06P3ool`00`000000ooo<0?ooc0060?ooc0@0oooo00<00000 0?ooo`3oool0B@3oool00`000000oooo0?ooo`070?ooo`03001o003oool0oooo00<0oooo0`3o0009 0?ooo`030?l00000O`0007l000<007l000<0003o001o0000O`001@00O`000`3oool007l0001o0003 001o0200oooo00@0003o0?ooo`3oool0oooo1@000?m50?ooo`030?l0003oool0oooo01T0oooo00<0 00000?ooo`3oool05`3oool002/0oooo1@00000E0?ooo`040000003oool0oooo0?ooo`d0;`00302S 000=003o00d0G@003@0o000<064000d0=P003@2d000<0=d000d0SP003@00o`0=01@000`001T03@00 U0050?ooo`030000003oool0oooo02@0oooo00<000000?ooo`3oool03@3oool<0?ooc0030000003o ol`0000000<0ooo<00<000000?l0003o00004@3o00000`000000ooo<0?ooc0070?ooc0030000003o ol`0ooo<01/0ooo<00<000000?ooc03ool`06`3ool`00`000000ooo<0?ooc00J0?ooc0030000003o ol`0ooo<00H0ooo<103oool00`000000oooo0?ooo`190?ooo`030000003oool0oooo00L0oooo00<0 07l00?ooo`3oool0103oool00`3o0000003o0?ooo`060?ooo`80o`0000<0oooo001o0000O`001000 O`000`000?l0oooo0?ooo`060?ooo`<007l0803oool00`000?l0oooo0?ooo`020?ooo`D0003oH@3o ool00`000000oooo0?ooo`0G0?ooo`00?`3oool2000000@0oooo00@000000?ooo`3oool0oooo3@0_ 000<0:<000d00?l03@1M000=03l000`0H@003@0f000=0;@000`0g@003@2>000=003o00d050003000 6@0=002D00D0oooo00<000000?ooo`3oool0903oool00`000000oooo0?ooo`0=0?ooo`d0ooo<0P00 00030?ooc0030000003o0000o`000140o`0000<000000?ooc03ool`01`3ool`00`000000ooo<0?oo c00K0?ooc0030000003ool`0ooo<01/0ooo<00<000000?ooc03ool`06P3ool`00`000000ooo<0?oo c0060?ooc0@0oooo00<000000?ooo`3oool07P3oool5000002H0oooo00<000000?ooo`3oool01`3o ool00`00O`00oooo0?ooo`040?ooo`030?l0003oool0003o00@0oooo0P3o00030?ooo`D007l00P3o ool00`000?l0oooo0?ooo`0V0?ooo`80003o103oool00`000?l0oooo0000o`020000of80oooo00<0 00000?ooo`3oool05`3oool002d0oooo1000000=0?ooo`040000003oool0oooo000000<0oooo00@0 00000?ooo`3oool0oooo3@0_000<0:<000d00?l03@1M000=03l000`0H@003@0f000=0;@000`0g@00 3@2>000=003o00d0500030006@0=002D00D0oooo00<000000?ooo`3oool07P3oool2000000@0oooo 00<000000?ooo`3oool03@3ooolB0?ooc1D000002@3ool`00`000000ooo<0?ooc00K0?ooc0030000 003ool`0ooo<01/0ooo<00<000000?ooc03ool`06P3ool`00`000000ooo<0?ooc0060?ooc0@0oooo 00<000000?ooo`3oool07`3oool010000000oooo0?ooo`00000V0?ooo`030000003oool0oooo00L0 oooo00<007l00?ooo`3oool0103oool00`3o0000oooo0?ooo`020?ooo`80o`001P3oool3001o00@0 oooo00<0003o0?ooo`3oool0903oool00`000?l0oooo0?ooo`030?ooo`030000o`3oool0oooo04d0 oooo0`3o000E0?ooo`030000003oool0oooo01L0oooo000/0?ooo`030000003oool0oooo00l0oooo 00@000000?ooo`3oool000000`3oool200000080oooo3@0_000<0:<000d00?l03@1M000=03l000`0 H@003@0f000=0;@000`0g@003@2>000=003o00d0500030006@0=002D00D0oooo00<000000?ooo`3o ool07@3oool010000000oooo0?ooo`0000030?ooo`030000003oool0oooo00d0oooo4P3ool`00`00 0000ooo<0?ooc00K0?ooc0030000003ool`0ooo<01/0ooo<00<000000?ooc03ool`06`3ool`00`00 0000ooo<0?ooc00J0?ooc0030000003ool`0ooo<00H0ooo<103oool00`000000oooo0?ooo`0O0?oo o`040000003oool0oooo000002H0oooo00<000000?ooo`3oool0203oool00`00O`00oooo0?ooo`03 0?ooo`050?l0003oool0oooo0?ooo`3o0000203oool00`00O`00oooo0?ooo`050?ooo`030000o`3o ool0oooo02P0oooo00<0003o0?ooo`3oool0D@3oool20?l001<0oooo00<000000?ooo`3oool05`3o ool002`0oooo1@00000=0?ooo`<00000103oool010000000oooo0?ooo`3oool=02l000`0X`003@00 o`0=05d000d0?`00301Q000=03H000d0]000303M000=08h000d00?l03@0D000<000I00d009@01@3o ool00`000000oooo0?ooo`0M0?ooo`040000003oool0oooo000000<0oooo0P00000>0?oooa80ooo< :000000D0?ooc0030000003ool`0ooo<01/0ooo<00<000000?ooc03ool`06P3ool`00`000000ooo< 0?ooc0060?ooc0@0oooo00<000000?ooo`3oool07`3oool00`000000oooo0?ooo`0W0?ooo`030000 003oool0oooo00P0oooo00<007l00?ooo`3oool00`3oool00`3o0000oooo0?ooo`030?ooo`030000 o`3oool0oooo00@0oooo00<007l00?ooo`3oool01P3oool00`000?l0oooo0?ooo`0V0?ooo`030000 o`3oool0oooo05@0oooo0P3o000A0?ooo`030000003oool0oooo01L0oooo000/0?ooo`050000003o ool0oooo0?ooo`0000003@3oool00`000000oooo0?ooo`040?ooo`040000003oool0oooo0?ooo`d0 ;`00302S000=003o00d0G@003@0o000<064000d0=P003@2d000<0=d000d0SP003@00o`0=01@000`0 01T03@00U0050?ooo`030000003oool0oooo01d0oooo0`0000040?ooo`030000003oool0oooo00d0 oooo4P3ool`00`000000o`000?l0000K0?l000030000003o0000o`0000H0o`0000<000000?ooc03o ol`04P3ool`00`000000ooo<0?ooc00K0?ooc0030000003ool`0ooo<01X0ooo<00<000000?ooc03o ol`01P3ool`40?ooo`030000003oool0oooo01l0oooo00<000000?ooo`3oool09`3oool00`000000 oooo0?ooo`080?ooo`03001o003oool0oooo0080oooo0P3o00060?ooo`030000o`3oool0oooo00<0 oooo00<007l00?ooo`3oool01`3oool00`000?l0oooo0?ooo`0N0?ooo`030000o`3oool0oooo00<0 oooo00<0003o0?ooo`3oool0E`3oool00`3o0000oooo0?ooo`0>0?ooo`030000003oool0oooo01L0 oooo000]0?ooo`<000003`3oool3000000<0oooo00@000000?ooo`3oool0oooo3@0_000<0:<000d0 0?l03@1M000=03l000`0H@003@0f000=0;@000`0g@003@2>000=003o00d0500030006@0=002D00D0 oooo00<000000?ooo`3oool07@3oool00`000000oooo0?ooo`040?ooo`030000003oool0oooo00d0 oooo303ool`3000000<0ooo<00<000000?l0003o00006`3o00000`000000o`000?l000060?l00003 0000003ool`0ooo<0180ooo<00<000000?ooc03ool`06`3ool`00`000000ooo<0?ooc00J0?ooc003 0000003ool`0ooo<00H0ooo<103oool00`000000oooo0?ooo`0N0?ooo`<00000:03oool00`000000 oooo0?ooo`080?ooo`03001o003o0000o`0000<0o`00203oool00`000?l0oooo0?ooo`020?ooo`03 001o003oool0oooo00P0oooo00<0003o0?ooo`3oool07@3oool00`000?l0oooo0?ooo`020?ooo`03 0000o`3oool0oooo06T0oooo00<000000?ooo`3oool05`3oool004D0oooo00@000000?ooo`3oool0 oooo3@0_000<0:<000d00?l03@1M000=03l000`0H@003@0f000=0;@000`0g@003@2>000=003o00d0 500030006@0=002D00D0oooo00<000000?ooo`3oool07P3oool3000000<0oooo00<000000?ooo`3o ool03@3oool?0?ooc0040000003ool`0ooo<000001d0o`0000<000000?l0003o00001P3o00000`00 0000ooo<0?ooc00B0?ooc0030000003ool`0ooo<01/0ooo<00<000000?ooc03ool`06P3ool`00`00 0000ooo<0?ooc0060?ooc0@0oooo00<000000?ooo`3oool0803oool4000002D0oooo00<000000?oo o`3oool01P3oool30?l000@0oooo00<0o`000?ooo`3oool01`3oool01@000?l0oooo0?ooo`3oool0 07l000/0oooo00<0003o0?ooo`3oool06`3oool00`000?l0oooo0?ooo`020?ooo`030000o`3oool0 oooo05h0oooo1@3o00070?ooo`030000003oool0oooo01L0oooo000/0?ooo`@000005@3oool01000 0000oooo0?ooo`3oool=02l000`0X`003@00o`0=05d000d0?`00301Q000=03H000d0]000303M000= 08h000d00?l03@0D000<000I00d009@01@3oool00`000000oooo0?ooo`0T0?ooo`030000003oool0 oooo00d0oooo3`3ool`00`000000ooo<0?ooc002000001`0o`0000<000000?l0003o00001P3o0000 0`000000ooo<0?ooc00B0?ooc0030000003ool`0ooo<01/0ooo<00<000000?ooc03ool`06P3ool`0 0`000000ooo<0?ooc0060?ooc0@0oooo00<000000?ooo`3oool07`3oool00`000000oooo0?ooo`0W 0?ooo`050000003oool0oooo0?ooo`3o00001P3oool00`00O`00oooo0?ooo`020?ooo`030?l0003o ool0oooo00P0oooo00<0003o0?ooo`00O`003@3oool00`000?l0oooo0?ooo`0H0?ooo`80003o103o ool00`000?l0oooo0?ooo`1T0?ooo`<0o`00103oool00`000000oooo0?ooo`0G0?ooo`00;`3oool0 0`000000oooo0?ooo`0C0?ooo`040000003oool0oooo0?ooo`d0;`00302S000=003o00d0G@003@0o 000<064000d0=P003@2d000<0=d000d0SP003@00o`0=01@000`001T03@00U0050?ooo`030000003o ool0oooo02@0oooo00<000000?ooo`3oool03@3oool=0?ooc08000000`3ool`00`000000o`000?l0 000K0?l000030000003o0000o`0000H0o`0000<000000?ooc03ool`04P3ool`00`000000ooo<0?oo c00K0?ooc0030000003ool`0ooo<01X0ooo<00<000000?ooc03ool`01P3ool`40?ooo`030000003o ool0oooo01l0oooo1@00000U0?ooo`030000003oool0oooo00P0oooo00<007l00?ooo`3oool00P3o ool00`3o0000oooo0?ooo`090?ooo`030000o`00O`00oooo00d0oooo0`000?lE0?ooo`80003o1@3o ool00`000?l0oooo0?ooo`1/0?ooo`030000003oool0oooo01L0oooo000/0?ooo`@000005@3oool0 10000000oooo0?ooo`3oool=02l000`0X`003@00o`0=05d000d0?`00301Q000=03H000d0]000303M 000=08h000d00?l03@0D000<000I00d009@01@3oool00`000000oooo0?ooo`0T0?ooo`030000003o ool0oooo00d0oooo3`3ool`010000000ooo<0?ooc000000M0?l000030000003o0000o`0000H0o`00 00<000000?ooc03ool`04P3ool`00`000000ooo<0?ooc00K0?ooc0030000003ool`0ooo<01X0ooo< 00<000000?ooc03ool`01P3ool`40?ooo`030000003oool0oooo01l0oooo00D000000?ooo`3oool0 oooo0000000U0?ooo`030000003oool0oooo00P0oooo00D007l00?ooo`3oool0oooo0?l0000=0?oo o`030000o`3oool0oooo00/0oooo1@000?lC0?ooo`030000o`3oool0oooo00@0oooo00<0003o0?oo o`3oool03P3oool00`00P000oooo0?ooo`1L0?ooo`030000003oool0oooo01L0oooo000/0?ooo`03 0000003oool0oooo01H0oooo00@000000?ooo`3oool0oooo3@002P0<003o00d0[P003@3o000=06L0 00`004d03@00MP0=001b00`002D03@00A`0=003o00d07`00303L000=0;D000D0oooo00<000000?oo o`3oool0903oool00`000000oooo0?ooo`0=0?ooo``0ooo<0`0000030?ooc0030000003o0000o`00 01/0o`0000<000000?l0003o00001P3o00000`000000ooo<0?ooc00B0?ooc0030000003ool`0ooo< 01/0ooo<00<000000?ooc03ool`06P3ool`00`000000ooo<0?ooc0060?ooc0@0oooo00<000000?oo o`3oool0803oool3000002H0oooo00<000000?ooo`3oool02@3oool01000O`00oooo0?ooo`3o000= 0?ooo`03001o003oool0oooo00/0oooo1@000?lG0?ooo`<0003o4@3oool00`00P000oooo0?ooo`1L 0?ooo`030000003oool0oooo01L0oooo000/0?ooo`@000005@3oool010000000oooo0?ooo`3oool= 000:00`00?l03@2^000=0?l000d0I`003000C@0=001f00d0078030009@0=001700d00?l03@0O000< 0=`000d0]@001@3oool00`000000oooo0?ooo`0T0?ooo`8000003P3ooolB0?ooc2P00000503ool`0 0`000000ooo<0?ooc00K0?ooc0030000003ool`0ooo<01X0ooo<00<000000?ooc03ool`01P3ool`4 0?ooo`030000003oool0oooo04T0oooo00<000000?ooo`3oool02@3oool01000O`00oooo0?ooo`3o 000<0?ooo`03001o003oool0oooo00`0oooo1P000?lE0?ooo`D0003o3`3oool2002005h0oooo00<0 00000?ooo`3oool05`3oool004D0oooo00@000000?ooo`3oool0oooo3@002P0<003o00d0[P003@3o 000=06L000`004d03@00MP0=001b00`002D03@00A`0=003o00d07`00303L000=0;D000D0oooo00<0 00000?ooo`3oool0903oool2000000h0oooo4P3ool`00`000000ooo<0?ooc00K0?ooc0030000003o ol`0ooo<01/0ooo<00<000000?ooc03ool`06`3ool`00`000000ooo<0?ooc00J0?ooc0030000003o ol`0ooo<00H0ooo<103oool00`000000oooo0?ooo`0P0?ooo`8000009`3oool00`000000oooo0?oo o`090?ooo`04001o003oool0oooo0?l000`0oooo00<007l00?ooo`3oool00P3oool30000o`P0oooo 0`000?l20?ooo`030000o`3oool0oooo00X0oooo0P000?l60?ooo`D0003o3`3oool2002005h0oooo 00<000000?ooo`3oool05`3oool004D0oooo00@000000?ooo`3oool0oooo3@002P0<003o00d0[P00 3@3o000=06L000`004d03@00MP0=001b00`002D03@00A`0=003o00d07`00303L000=0;D000D0oooo 00<000000?ooo`3oool0903oool2000000h0oooo4P3oolaN000001T0ooo<00<000000?ooc03ool`0 1P3ool`40?ooo`030000003oool0oooo0200oooo0P00000W0?ooo`030000003oool0oooo00T0oooo 00@007l00?ooo`3oool0o`00303oool00`00O`00oooo0?ooo`050?ooo`030000o`3oool0oooo00/0 oooo00<0003o0?ooo`3oool0203oool00`000?l0oooo0?ooo`050?ooo`H0003o3`3oool2002000X0 oooo0`00P00[0?ooo`<008008`3oool00`000000oooo0?ooo`0G0?ooo`00?P3oool3000000@0oooo 00@000000?ooo`3oool0oooo3@002P0<003o00d0[P003@3o000=06L000`004d03@00MP0=001b00`0 02D03@00A`0=003o00d07`00303L000=0;D000D0oooo00<000000?ooo`3oool0903oool2000000h0 oooo4P3ool`00`000000o`000?l0000K0?l000030000003o0000o`0001/0o`0000<000000?l0003o 00006`3o000010000000o`000?l00000000I0?ooc0030000003ool`0ooo<00H0ooo<103oool00`00 0000oooo0?ooo`0O0?ooo`040000003oool00000000002H0oooo00<000000?ooo`3oool02@3oool0 0`00O`00oooo0?l0000=0?ooo`03001o003oool0oooo00H0oooo0P000?l<0?ooo`030000o`3oool0 oooo00D0oooo0P000?l60?ooo`80003o0P3oool30000o`l0oooo00<008000?ooo`00P0002`3oool0 0`00P000oooo0?ooo`0[0?ooo`030020003oool0oooo0280oooo00<000000?ooo`3oool05`3oool0 0440oooo00D000000?ooo`3oool0oooo000000030?ooo`d000X03000o`0=0:h000d0o`003@1W000< 001=00d007H03@00LP0<000U00d004L03@00o`0=01l000`0g0003@2e00050?ooo`030000003oool0 oooo01d0oooo0`0000040?ooo`8000003P3oool<0?ooc0@000000P3ool`00`000000o`000?l0000K 0?l000030000003o0000o`0001/0o`0000<000000?l0003o00006`3o000010000000o`000?l00000 000I0?ooc0030000003ool`0ooo<00H0ooo<103oool00`000000oooo0?ooo`0O0?ooo`040000003o ool0oooo000002H0oooo00<000000?ooo`3oool02@3oool00`00O`00oooo0?l0000=0?ooo`03001o 003oool0oooo00P0oooo00<0003o0?ooo`3oool02P3oool20000o`<0oooo0P000?l70?ooo`030000 o`3oool0oooo01@0oooo00<008000?ooo`00P0002`3oool00`00P000oooo0?ooo`0[0?ooo`030020 003oool0oooo0280oooo00<000000?ooo`3oool05`3oool00440oooo00@000000?ooo`3oool0oooo 0P0000020?ooo`d000X03000o`0=0:h000d0o`003@1W000<001=00d007H03@00LP0<000U00d004L0 3@00o`0=01l000`0g0003@2e00050?ooo`030000003oool0oooo0200oooo00@000000?ooo`3oool0 oooo0P00000>0?ooo`d0ooo<00<000000?ooc03ool`00P3ool`00`000000o`000?l0000K0?l00003 0000003o0000o`0001/0o`0000<000000?l0003o00006`3o000010000000o`000?l00000000I0?oo c0030000003ool`0ooo<00H0ooo<103oool00`000000oooo0?ooo`0N0?ooo`8000000P3oool20000 02D0oooo00<000000?ooo`3oool02@3oool00`00O`00oooo0?l0000<0?ooo`03001o003oool0oooo 01P0oooo00<0003o0?ooo`000?l0203oool00`000?l0oooo0?ooo`0B0?ooo`040020003oool00800 00200080oooo00<008000?ooo`3oool01P3oool01@00P000oooo0020003oool0080002T0oooo00D0 08000?ooo`00P000oooo0020000R0?ooo`030000003oool0oooo01L0oooo000n0?ooo`<00000103o ool010000000oooo0?ooo`3oool=000:00`00?l03@2^000=0?l000d0I`003000C@0=001f00d00780 30009@0=001700d00?l03@0O000<0=`000d0]@001@3oool00`000000oooo0?ooo`0P0?ooo`040000 003oool0oooo0?ooo`8000003P3oool>0?ooc0040000003ool`0ooo<0?ooc0800000703o00000`00 0000o`000?l0000K0?l000030000003o0000o`0001/0o`0000@000000?l0003o000000006@3ool`0 0`000000ooo<0?ooc0060?ooc0@0oooo00<000000?ooo`3oool0B@3oool00`000000oooo0?ooo`0: 0?ooo`03001o003o0000oooo00/0oooo00<007l00?ooo`3oool03P3oool90000o`80oooo00<0003o 0?ooo`3oool01P3oool00`000?l0oooo0?ooo`0D0?ooo`8008000`3oool00`00P000oooo0?ooo`06 0?ooo`050020003oool008000?ooo`00P0006`3oool00`00P000oooo0?ooo`0;0?ooo`050020003o ool008000?ooo`00P0002`3oool00`00P000oooo0?ooo`0D0?ooo`030000003oool0oooo01L0oooo 000n0?ooo`030000003oool0oooo00@0oooo00@000000?ooo`3oool0oooo3@002P0<003o00d0[P00 3@3o000=06L000`004d03@00MP0=001b00`002D03@00A`0=003o00d07`00303L000=0;D000D0oooo 00<000000?ooo`3oool07@3oool3000000@0oooo0P00000>0?ooo`l0ooo<00@000000?ooc03ool`0 00007@3o00000`000000o`000?l0000K0?l000030000003o0000o`0001/0o`0000@000000?l0003o 000000006@3ool`00`000000ooo<0?ooc0060?ooc0@0oooo00<000000?ooo`3oool0803oool40000 02D0oooo00<000000?ooo`3oool02P3oool00`00O`00o`000?ooo`0;0?ooo`03001o003oool0oooo 01X0oooo00<0003o0?ooo`3oool00`3oool20000oaP0oooo00D008000?ooo`3oool0oooo00200008 0?ooo`D008006P3oool00`00P000oooo0?ooo`0<0?ooo`D00800303oool00`00P000oooo0?ooo`0C 0?ooo`030000003oool0oooo01L0oooo000n0?ooo`@000000`3oool010000000oooo0?ooo`3oool= 000:00`00?l03@2^000=0?l000d0I`003000C@0=001f00d0078030009@0=001700d00?l03@0O000< 0=`000d0]@001@3oool00`000000oooo0?ooo`0M0?ooo`030000003oool0oooo00@0oooo0P00000> 0?ooo``0ooo<00@000000?ooc03ool`000000P3ool`00`000000o`000?l0000K0?l000030000003o 0000o`0001/0o`0000<000000?l0003o00006`3o000010000000o`000?l00000000I0?ooc0030000 003ool`0ooo<00H0ooo<103oool00`000000oooo0?ooo`0O0?ooo`030000003oool0oooo02L0oooo 00<000000?ooo`3oool02P3oool00`3o0000oooo0?ooo`0;0?ooo`03001o003oool0oooo01/0oooo 1@000?lN0?ooo`030020003oool0oooo0180oooo0`00P0030?ooo`<008000P3oool4002000<0oooo 00<008000?ooo`3oool07`3oool00`00P000oooo0?ooo`0B0?ooo`030000003oool0oooo01L0oooo 00150?ooo`040000003oool0oooo0?ooo`d000X03000o`0=0:h000d0o`003@1W000<001=00d007H0 3@00LP0<000U00d004L03@00o`0=01l000`0g0003@2e00050?ooo`030000003oool0oooo01d0oooo 100000030?ooo`8000003P3oool=0?ooc08000000`3ool`00`000000o`000?l0000K0?l000030000 003o0000o`0001/0o`0000<000000?l0003o00006`3o000010000000o`000?l00000000I0?ooc003 0000003ool`0ooo<00H0ooo<103oool00`000000oooo0?ooo`0O0?ooo`D000009@3oool00`000000 oooo0?ooo`0:0?ooo`030?l0003oool0oooo00X0oooo00<007l00?ooo`3oool0703oool50000oah0 oooo00<008000?ooo`3oool04@3oool01`00P000oooo0?ooo`3oool008000?ooo`00P0000`3oool0 0`00P000oooo0?ooo`020?ooo`050020003oool0oooo0?ooo`00P0008@3oool00`00P000oooo0?oo o`0B0?ooo`030000003oool0oooo01L0oooo00150?ooo`040000003oool0oooo0?ooo`d000X03000 o`0=0:h000d0o`003@1W000<001=00d007H03@00LP0<000U00d004L03@00o`0=01l000`0g0003@2e 00050?ooo`030000003oool0oooo02@0oooo0P00000>0?oooa80ooo0?oo oa80oool0303o000=09D000d0P`003@00A`0<002F00d006X03@00 MP0<001W00d005l03@00MP0=000`00`0<@003@0f00050?ooo`030000003oool0oooo02@0oooo00<0 00000?ooo`3oool03@3ooonB0?ooc0@0oooo00<000000?ooo`3oool07`3oool5000002D0oooo00<0 00000?ooo`3oool02@3oool00`3o000007l00?ooo`0;0?ooo`03001o003oool0oooo0400oooo00<0 08000?ooo`3oool09@3oool00`00P000oooo0?ooo`0K0?ooo`030020003oool0oooo01@0oooo00<0 00000?ooo`3oool05`3oool004D0oooo00@000000?ooo`3oool0oooo3@00k`0<0?l000d0U@003@23 000=001700`009H03@00JP0=001f00`006L03@00G`0=001f00d00300300a000=03H000D0oooo00<0 00000?ooo`3oool0903oool2000000h0ooooTP3ool`40?ooo`030000003oool0oooo0240oooo00<0 00000?ooo`3oool04P3oool2000000@0oooo0P0000030?ooo`<000001@3oool00`000000oooo0?oo o`090?ooo`030?l0003oool007l000X0oooo00<007l00?ooo`3oool0@@3oool00`00P000oooo0?oo o`050?ooo`<00800903oool4002000<0oooo00<008000?ooo`3oool00P3oool00`00P000oooo0?oo o`03002001`0oooo00<000000?ooo`3oool05`3oool004D0oooo00@000000?ooo`3oool0oooo3@00 k`0<0?l000d0U@003@23000=001700`009H03@00JP0=001f00`006L03@00G`0=001f00d00300300a 000=03H000D0oooo00<000000?ooo`3oool0903oool2000000h0ooooTP3ool`40?ooo`030000003o ool0oooo0240oooo00<000000?ooo`3oool04@3oool010000000oooo0?ooo`0000030?ooo`800000 1P3oool00`000000oooo0?ooo`020?ooo`030000003oool0oooo00T0oooo00<0o`000?ooo`00O`00 2P3oool00`00O`00oooo0?ooo`110?ooo`030020003oool0oooo00H0oooo00<008000?ooo`3oool0 903oool00`00P000oooo0?ooo`040?ooo`040020003oool0oooo002000<0oooo00@008000?ooo`3o ool008006`3oool00`000000oooo0?ooo`0G0?ooo`00?`3oool3000000<0oooo00@000000?ooo`3o ool0oooo3@00k`0<0?l000d0U@003@23000=001700`009H03@00JP0=001f00`006L03@00G`0=001f 00d00300300a000=03H000D0oooo00<000000?ooo`3oool0903oool2000000h0ooooTP3ool`40?oo o`030000003oool0oooo0240oooo00<000000?ooo`3oool04@3oool010000000oooo0?ooo`00000; 0?ooo`030000003oool0oooo0080oooo0P00000:0?ooo`030?l0003oool007l000X0oooo00<007l0 0?ooo`3oool0@@3oool00`00P000oooo0?ooo`060?ooo`030020003oool0oooo02D0oooo00<00800 0?ooo`3oool0103oool00`00P000oooo002000030?ooo`030020003oool0oooo01`0oooo00<00000 0?ooo`3oool05`3oool00400oooo00<000000?ooo`3oool00P3oool010000000oooo0?ooo`3oool= 003_00`0o`003@2E000=08<000d004L03000UP0=001Z00d007H03000I`0=001O00d007H03@00<00< 034000d0=P001@3oool00`000000oooo0?ooo`0T0?ooo`8000003P3ooolG0?ooc08000005P3ool`2 000001`0ooo<0P00000L0?ooc08000006`3ool`2000000P0ooo<103oool00`000000oooo0?ooo`0Q 0?ooo`030000003oool0oooo0140oooo00@000000?ooo`3oool00000203oool3000000D0oooo00<0 00000?ooo`3oool0203oool0103o0000oooo0?ooo`00O`0:0?ooo`03001o003oool0oooo0480oooo 00<008000?ooo`3oool01@3oool00`00P000oooo0?ooo`0V0?ooo`030020003oool0oooo00<0oooo 00<008000?ooo`00P0000`3oool00`00P000oooo0?ooo`0L0?ooo`030000003oool0oooo01L0oooo 000n0?ooo`@000000`3oool200000080oooo3@00k`0<0?l000d0U@003@23000=001700`009H03@00 JP0=001f00`006L03@00G`0=001f00d00300300a000=03H000D0oooo00<000000?ooo`3oool07P3o ool3000000<0oooo0P00000>0?oooaH0ooo<00@000000?ooc03ool`00000503ool`010000000ooo< 0?ooc000000J0?ooc0040000003ool`0ooo<000001X0ooo<00@000000?ooc03ool`000006@3ool`0 10000000ooo<0?ooc00000070?ooc0@0oooo00<000000?ooo`3oool08@3oool00`000000oooo0?oo o`0A0?ooo`040000003oool0oooo000000P0oooo00<000000?ooo`3oool01@3oool00`000000oooo 0?ooo`080?ooo`040?l0003oool0oooo001o00T0oooo00<007l00?ooo`3oool0@`3oool00`00P000 oooo0?ooo`050?ooo`030020003oool0oooo02<0oooo00@008000?ooo`3oool00800103oool50020 00030?ooo`00P000080000800800703oool00`000000oooo0?ooo`0G0?ooo`00?P3oool00`000000 oooo000000040?ooo`040000003oool0oooo0?ooo`d00>l0303o000=09D000d0P`003@00A`0<002F 00d006X03@00MP0<001W00d005l03@00MP0=000`00`0<@003@0f00050?ooo`030000003oool0oooo 01l0oooo00<000000?ooo`3oool00P3oool2000000h0oooo5P3ool`010000000ooo<0?ooc000000D 0?ooc0040000003ool`0ooo<000001X0ooo<00@000000?ooc03ool`000006P3ool`010000000ooo< 0?ooc000000I0?ooc0040000003ool`0ooo<000000L0ooo<103oool00`000000oooo0?ooo`0O0?oo o`<00000503oool2000000T0oooo100000040?ooo`030000003oool0oooo00P0oooo00@0o`000?oo o`3oool007l02@3oool00`00O`00oooo0?ooo`130?ooo`030020003oool0oooo00@0oooo0P00P00V 0?ooo`800800303oool00`00P000oooo0?ooo`0L0?ooo`030000003oool0oooo01L0oooo000n0?oo o`030000003oool0000000@0oooo00@000000?ooo`3oool0oooo3@00k`0<0?l000d0U@003@23000= 001700`009H03@00JP0=001f00`006L03@00G`0=001f00d00300300a000=03H000D0oooo00<00000 0?ooo`3oool07@3oool4000000<0oooo0P00000>0?oooaH0ooo<00@000000?ooc03ool`00000503o ol`010000000ooo<0?ooc000000J0?ooc0040000003ool`0ooo<000001X0ooo<00@000000?ooc03o ol`000006@3ool`010000000ooo<0?ooc00000070?ooc0@0oooo00<000000?ooo`3oool0B@3oool0 0`000000oooo0?ooo`080?ooo`040?l0003oool0oooo001o00T0oooo00<007l00?ooo`3oool0@`3o ool00`00P000oooo0?ooo`0j0?ooo`030020003oool0oooo01`0oooo00<000000?ooo`3oool05`3o ool003l0oooo0P0000040?ooo`040000003oool0oooo0?ooo`d00>l0303o000=09D000d0P`003@00 A`0<002F00d006X03@00MP0<001W00d005l03@00MP0=000`00`0<@003@0f00050?ooo`030000003o ool0oooo01d0oooo00<000000?ooo`000000103oool2000000h0oooo5P3ool`010000000ooo<0?oo c000000D0?ooc0040000003ool`0ooo<000001X0ooo<00@000000?ooc03ool`000006P3ool`01000 0000ooo<0?ooc000000I0?ooc0040000003ool`0ooo<000000L0ooo<103oool00`000000oooo0?oo o`190?ooo`030000003oool0oooo00P0oooo00D0o`000?ooo`3oool0oooo001o00080?ooo`03001o 003oool0oooo04<0oooo00<008000?ooo`3oool0F@3oool00`000000oooo0?ooo`0G0?ooo`00A@3o ool010000000oooo0?ooo`3oool=003_00`0o`003@2E000=08<000d004L03000UP0=001Z00d007H0 3000I`0=001O00d007H03@00<00<034000d0=P001@3oool00`000000oooo0?ooo`0M0?ooo`030000 003oool0000000@0oooo0P00000>0?oooaL0ooo<0P00000F0?ooc0800000703ool`2000001`0ooo< 0P00000K0?ooc0800000203ool`40?ooo`030000003oool0oooo04T0oooo00<000000?ooo`3oool0 1`3oool00`3o0000oooo0?ooo`020?ooo`03001o003oool0oooo00D0oooo00<007l00?ooo`3oool0 A03oool00`00P000oooo0?ooo`1I0?ooo`030000003oool0oooo01L0oooo00150?ooo`040000003o ool0oooo0?ooo`d00>l0303o000=09D000d0P`003@00A`0<002F00d006X03@00MP0<001W00d005l0 3@00MP0=000`00`0<@003@0f00050?ooo`030000003oool0oooo01h0oooo0P0000040?ooo`800000 3P3oool_0?ooc0800000703ool`2000001`0ooo<0P00000K0?ooc0800000203ool`40?ooo`030000 003oool0oooo04T0oooo00<000000?ooo`3oool01`3oool00`3o0000oooo0?ooo`020?ooo`03001o 003oool0oooo00D0oooo00<007l00?ooo`3oool0A@3oool00`00P000oooo0?ooo`1H0?ooo`030000 003oool0oooo01L0oooo00150?ooo`040000003oool0oooo0?ooo`d00>l0303o000=09D000d0P`00 3@00A`0<002F00d006X03@00MP0<001W00d005l03@00MP0=000`00`0<@003@0f00050?ooo`030000 003oool0oooo02@0oooo0P00000>0?ooobl0ooo<0P00000L0?ooc0800000703ool`2000001/0ooo< 0P0000080?ooc0@0oooo00<000000?ooo`3oool0B@3oool00`000000oooo0?ooo`070?ooo`030?l0 003oool0oooo0080oooo00<007l00?ooo`3oool01@3oool00`00O`00oooo0?ooo`150?ooo`030020 003oool0oooo05P0oooo00<000000?ooo`3oool05`3oool004D0oooo00@000000?ooo`3oool0oooo 3@00k`0<0?l000d0U@003@23000=001700`009H03@00JP0=001f00`006L03@00G`0=001f00d00300 300a000=03H000D0oooo00<000000?ooo`3oool0903oool2000000h0ooooTP3ool`40?ooo`030000 003oool0oooo04T0oooo00<000000?ooo`3oool01`3oool00`3o0000oooo0?ooo`020?ooo`03001o 003oool0oooo00D0oooo00<007l00?ooo`3oool0A@3oool?002004`0oooo00<000000?ooo`3oool0 5`3oool004D0oooo00@000000?ooo`3oool0oooo3@1`000<03H000d0IP003@3Z000=0?l000`0o000 3@25000=000f00`00:h03@00I@0=01L001T00?l03@00a`050?ooo`030000003oool0oooo02@0oooo 0P00000>0?oooi80ooo<103oool00`000000oooo0?ooo`190?ooo`030000003oool0oooo00L0oooo 00<0o`000?ooo`3oool00P3oool00`00O`00oooo0?ooo`050?ooo`03001o003oool0oooo0:00oooo 00<000000?ooo`3oool05`3oool004D0oooo00@000000?ooo`3oool0oooo3@1`000<03H000d0IP00 3@3Z000=0?l000`0o0003@25000=000f00`00:h03@00I@0=01L001T00?l03@00a`050?ooo`030000 003oool0oooo02@0oooo00<000000?ooo`3oool03@3ooonB0?ooc0@0oooo00<000000?ooo`3oool0 B@3oool00`000000oooo0?ooo`060?ooo`030?l0003oool0oooo00<0oooo00<007l00?ooo`3oool0 103oool00`00O`00oooo0?ooo`2Q0?ooo`030000003oool0oooo01L0oooo00150?ooo`040000003o ool0oooo0?ooo`d0L000300f000=06H000d0jP003@3o000<0?`000d0Q@003@00=P0<002^00d006D0 3@0G000I003o00d00X000d0o`00303l000=08D0 00d003H03000[P0=001U00d05`006@00o`0=003700D0oooo00<000000?ooo`3oool07@3oool30000 00@0oooo00<000000?l0000000003@3oool_0?ooc0030000003ool`0ooo<01`0ooo<00<000000?oo c03ool`0703ool`00`000000ooo<0?ooc00G0?ooc0@000001`3ool`40?ooo`030000003oool0oooo 04T0oooo00<000000?ooo`3oool0103oool00`3o0000oooo0?ooo`070?ooo`04001o003oool0oooo 001o0440oooo00@0o`000?ooo`3o0000o`000P3oool00`3o0000oooo0?ooo`060?ooo`050?l0003o ool0o`000?ooo`3o0000:@3oool01@3o0000oooo0?l0003oool0o`000280oooo00<000000?ooo`3o ool05`3oool004D0oooo00@000000?ooo`3oool0oooo3@1`000<03H000d0IP003@3Z000=0?l000`0 o0003@25000=000f00`00:h03@00I@0=01L001T00?l03@00a`050?ooo`030000003oool0oooo02@0 oooo00<000000?l0000000003@3oool_0?ooc0030000003ool`0ooo<01d0ooo<00<000000?ooc03o ol`06@3ool`2000001X0ooo<00<000000?ooc0000000203ool`40?ooo`030000003oool0oooo04T0 oooo00<000000?ooo`3oool0103oool00`3o0000oooo0?ooo`070?ooo`04001o003oool0oooo001o 0480oooo0P3o00030?ooo`030?l0003oool0oooo00H0oooo00D0o`000?ooo`3o0000oooo0?l0000K 0?ooo`030?l0003oool0oooo00/0oooo00D0o`000?ooo`3o0000oooo0?l0000;0?ooo`030?l0003o ool0oooo01@0oooo00<000000?ooo`3oool05`3oool004D0oooo00@000000?ooo`3oool0oooo3@3o 000<07/000d02P003@00=`0=002A00`00:L03@00KP0=001a00`004T03@00NP0=001I00d001D0300G 000=000?00D0oooo00<000000?ooo`3oool0903oool00`000000o`000000000=0?ooobl0ooo<00<0 00000?ooc03ool`06P3ool`010000000ooo<0?ooc000000M0?ooc0030000003ool`0ooo<01L0ooo< 00<000000?ooc0000000203ool`40?ooo`030000003oool0oooo04T0oooo00<000000?ooo`3oool0 103oool00`3o0000oooo0?ooo`070?ooo`04001o003oool0oooo001o04<0oooo00D0o`000?ooo`3o ool0oooo0?l000080?ooo`D0o`006P3oool00`3o0000oooo0?ooo`0<0?ooo`D0o`00303oool00`3o 0000oooo0?ooo`0C0?ooo`030000003oool0oooo01L0oooo00150?ooo`040000003oool0oooo0?oo o`d0o`00301k000=00X000d003L03@00T@0<002W00d006h03@00L@0<001900d007X03@00F@0=000E 00`05`003@003`050?ooo`030000003oool0oooo02@0oooo0`00000=0?ooobh0ooo<0P00000M0?oo c08000006`3ool`3000001/0ooo<0P0000080?ooc0@0oooo00<000000?ooo`3oool0B@3oool00`00 0000oooo0?ooo`040?ooo`030?l0003oool0oooo00L0oooo00<007l00?ooo`00O`00B03oool00`3o 0000oooo0?ooo`0B0?ooo`<0o`000`3oool30?l00080oooo103o00030?ooo`030?l0003oool0oooo 01l0oooo00<0o`000?ooo`3oool04P3oool00`000000oooo0?ooo`0G0?ooo`00A@3oool010000000 oooo0?ooo`3oool=0?l000`0N`003@0:000=000g00d009403000Y`0=001^00d007403000B@0=001j 00d005T03@005@0<01L000d000l01@3oool00`000000oooo0?ooo`0T0?ooo`030000003oool0oooo 00d0ooooTP3ool`40?ooo`030000003oool0oooo04T0oooo00<000000?ooo`3oool00`3oool00`3o 0000oooo0?ooo`080?ooo`03001o003oool007l004P0oooo00<0o`000?ooo`3oool04@3oool01`3o 0000oooo0?ooo`3oool0o`000?ooo`3o00000`3oool00`3o0000oooo0?ooo`020?ooo`050?l0003o ool0oooo0?ooo`3o00008@3oool00`3o0000oooo0?ooo`0B0?ooo`030000003oool0oooo01L0oooo 00150?ooo`040000003oool0oooo0?ooo`d0o`00301k000=00X000d003L03@00T@0<002W00d006h0 3@00L@0<001900d007X03@00F@0=000E00`05`003@003`050?ooo`030000003oool0oooo02@0oooo 1P00000:0?oooi80ooo<103oool00`000000oooo0?ooo`190?ooo`030000003oool0oooo00<0oooo 00<0o`000?ooo`3oool0203oool00`00O`00oooo001o00180?ooo`030?l0003oool0oooo00@0oooo 2@3o00040?ooo`030?l0003oool0oooo00<0oooo00H0o`000?ooo`3oool0oooo0?l0003oool40?l0 00<0oooo00<0o`000?ooo`3oool00`3ooolH0?l000@0oooo00<0o`000?ooo`3oool04P3oool00`00 0000oooo0?ooo`0G0?ooo`00?P3oool4000000<0oooo00@000000?ooo`3oool0oooo3@3o000<07/0 00d02P003@00=`0=002A00`00:L03@00KP0=001a00`004T03@00NP0=001I00d001D0300G000=000? 00D0oooo00<000000?ooo`3oool0903oool00`000000o`000?l000020?l000030000003oool0oooo 01T0oooo00<000000?ooo`3oool07P3oool00`000000oooo0?ooo`0N0?ooo`030000003oool0oooo 01l0oooo00<000000?ooo`3oool07P3oool00`000000oooo0?ooo`190?ooo`030000003oool0oooo 00<0oooo00<0o`000?ooo`3oool02@3oool2001o04T0oooo00<0o`000?ooo`3oool0403oool01`3o 0000oooo0?ooo`3oool0o`000?ooo`3o00000`3oool00`3o0000oooo0?l000060?ooo`030?l0003o ool0oooo01l0oooo00<0o`000?ooo`3oool04P3oool00`000000oooo0?ooo`0G0?ooo`00?`3oool0 0`000000oooo0?ooo`030?ooo`040000003oool0oooo0?ooo`d0o`00301k000=00X000d003L03@00 T@0<002W00d006h03@00L@0<001900d007X03@00F@0=000E00`05`003@003`050?ooo`030000003o ool0oooo02@0oooo00<000000?l0003o00000P3o00000`000000oooo0?ooo`0I0?ooo`030000003o ool0oooo01h0oooo00<000000?ooo`3oool07P3oool00`000000oooo0?ooo`0O0?ooo`030000003o ool0oooo01h0oooo00<000000?ooo`3oool0B@3oool00`000000oooo0?ooo`030?ooo`030?l0003o ool0oooo00L0oooo1000O`190?ooo`030?l0003oool0oooo0140oooo103o00020?ooo`<0o`000P3o ool40?l000@0oooo00<0o`000?ooo`3oool07@3oool00`3o0000oooo0?ooo`0C0?ooo`030000003o ool0oooo01L0oooo00100?ooo`030000003oool0oooo0080oooo0P0000020?ooo`d0o`00301k000= 00X000d003L03@00T@0<002W00d006h03@00L@0<001900d007X03@00F@0=000E00`05`003@003`05 0?ooo`030000003oool0oooo02@0oooo00<000000?l0003o00000P3o00000`000000oooo0?ooo`0I 0?ooo`030000003oool0oooo01h0oooo00<000000?ooo`3oool07P3oool00`000000oooo0?ooo`0O 0?ooo`030000003oool0oooo01h0oooo00<000000?ooo`3oool0B@3oool00`000000oooo0?ooo`03 0?ooo`030?l0003oool0oooo00H0oooo1@00O`190?ooo`030?l0003oool0oooo02D0oooo00<0o`00 0?ooo`3oool06`3oool00`3o0000oooo0?ooo`0D0?ooo`030000003oool0oooo01L0oooo00110?oo o`050000003oool0oooo0?ooo`0000000`3oool=0?l000`0N`003@0:000=000g00d009403000Y`0= 001^00d007403000B@0=001j00d005T03@005@0<01L000d000l01@3oool00`000000oooo0?ooo`0M 0?ooo`@000000`3oool00`000000o`000?l000020?l000030000003oool0oooo01T0oooo00<00000 0?ooo`3oool07P3oool00`000000oooo0?ooo`0N0?ooo`030000003oool0oooo01l0oooo00<00000 0?ooo`3oool07P3oool00`000000oooo0?ooo`190?ooo`030000003oool0oooo0080oooo00<0o`00 0?ooo`3oool01`3oool5001o04T0oooo00<0o`000?ooo`3oool01@3oool30?l002@0oooo103o0003 0?ooo`030?l0003oool0oooo0080oooo00<0o`000?ooo`3oool00`3o000L0?ooo`030000003oool0 oooo01L0oooo000n0?ooo`040000003oool0oooo000000<0oooo00@000000?ooo`3oool0oooo3@3o 000<07/000d02P003@00=`0=002A00`00:L03@00KP0=001a00`004T03@00NP0=001I00d001D0300G 000=000?00D0oooo00<000000?ooo`3oool07P3oool00`000000oooo0?ooo`030?ooo`030000003o 0000o`000080o`0000<000000?ooo`3oool06@3oool00`000000oooo0?ooo`0N0?ooo`030000003o ool0oooo01h0oooo00<000000?ooo`3oool07`3oool00`000000oooo0?ooo`0N0?ooo`030000003o ool0oooo04T0oooo00<000000?ooo`3oool00P3oool00`3o0000oooo0?ooo`070?ooo`D007l0B@3o ool00`3o0000oooo0?ooo`060?ooo`030?l0003oool0oooo02@0oooo00<0o`000?ooo`3oool0103o ool0103o0000oooo0?ooo`3o00030?ooo`040?l0003oool0oooo0?l001/0oooo00<000000?ooo`3o ool05`3oool003l0oooo0P0000040?ooo`040000003oool0oooo0?ooo`d0o`00301k000=00X000d0 03L03@00T@0<002W00d006h03@00L@0<001900d007X03@00F@0=000E00`05`003@003`050?ooo`03 0000003oool0oooo01l0oooo00<000000?ooo`3oool00P3oool2000000<0o`0000<000000?ooo`3o ool06@3oool00`000000oooo0?ooo`0N0?ooo`030000003oool0oooo01h0oooo00<000000?ooo`3o ool07`3oool00`000000oooo0?ooo`0N0?ooo`030000003oool0oooo04T0oooo00<000000?ooo`3o ool00P3oool00`3o0000oooo0?ooo`080?ooo`<007l0BP3oool00`3o0000oooo0?ooo`060?ooo`03 0?l0003oool0oooo02D0oooo00<0o`000?ooo`3oool0103oool00`3o0000oooo0?l000030?ooo`03 0?l0003oool0oooo01`0oooo00<000000?ooo`3oool05`3oool004D0oooo00@000000?ooo`3oool0 oooo3@3o000<07/000d02P003@00=`0=002A00`00:L03@00KP0=001a00`004T03@00NP0=001I00d0 01D0300G000=000?00D0oooo00<000000?ooo`3oool0803oool01@000000oooo0?ooo`3oool00000 00@0o`0000<000000?ooo`3oool06@3oool00`000000oooo0?ooo`0N0?ooo`030000003oool0oooo 01h0oooo00<000000?ooo`3oool07`3oool00`000000oooo0?ooo`0N0?ooo`030000003oool0oooo 04T0oooo00<000000?ooo`3oool00P3oool00`3o0000oooo0?ooo`1F0?ooo`030?l0003oool0oooo 00D