refactored tptp lex;
authorsultana
Wed, 04 Apr 2012 16:29:16 +0100
changeset 4821626c4e431ef05
parent 48215 15e579392a68
child 48217 5a1ff6bcf3dc
refactored tptp lex;
src/HOL/TPTP/TPTP_Parser/tptp.lex
src/HOL/TPTP/TPTP_Parser/tptp.yacc
src/HOL/TPTP/TPTP_Parser/tptp_lexyacc.ML
     1.1 --- a/src/HOL/TPTP/TPTP_Parser/tptp.lex	Wed Apr 04 16:29:16 2012 +0100
     1.2 +++ b/src/HOL/TPTP/TPTP_Parser/tptp.lex	Wed Apr 04 16:29:16 2012 +0100
     1.3 @@ -3,8 +3,8 @@
     1.4  
     1.5   Notes:
     1.6   * Omit %full in definitions to restrict alphabet to ascii.
     1.7 - * Could include %posarg to ensure that start counting character positions from
     1.8 -   0, but it would punish performance.
     1.9 + * Could include %posarg to ensure that we'd start counting character positions
    1.10 +   from 0, but it would punish performance.
    1.11   * %s AF F COMMENT; -- could improve by making stateful.
    1.12  
    1.13   Acknowledgements:
    1.14 @@ -52,55 +52,55 @@
    1.15  %header (functor TPTPLexFun(structure Tokens: TPTP_TOKENS));
    1.16  %arg (file_name:string);
    1.17  
    1.18 -printable_char            = .;
    1.19 -viewable_char             = [.\n];
    1.20 +percentage_sign           = "%";
    1.21 +double_quote              = ["];
    1.22 +do_char                   = ([^"]|[\\]["\\]);
    1.23 +single_quote              = ['];
    1.24 +sq_char                   = ([\040-\041\043-\126]|[\\]['\\]);
    1.25 +sign                      = [+-];
    1.26 +dot                       = [.];
    1.27 +exponent                  = [Ee];
    1.28 +slash                     = [/];
    1.29 +zero_numeric              = [0];
    1.30 +non_zero_numeric          = [1-9];
    1.31  numeric                   = [0-9];
    1.32  lower_alpha               = [a-z];
    1.33  upper_alpha               = [A-Z];
    1.34  alpha_numeric             = ({lower_alpha}|{upper_alpha}|{numeric}|_);
    1.35 -zero_numeric              = [0];
    1.36 -non_zero_numeric          = [1-9];
    1.37 -slash                     = [/];
    1.38 -exponent                  = [Ee];
    1.39 -dot                       = [.];
    1.40 -any_char                  = [^\n];
    1.41  dollar                    = \$;
    1.42 +printable_char            = .;
    1.43 +viewable_char             = [.\n];
    1.44 +
    1.45 +dot_decimal               = {dot}{numeric}+;
    1.46 +
    1.47  ddollar                   = \$\$;
    1.48  unsigned_integer          = {numeric}+;
    1.49 -sign                      = [+-];
    1.50  divide                    = [/];
    1.51  
    1.52  signed_integer            = {sign}{unsigned_integer};
    1.53 -dot_decimal               = {dot}{numeric}+;
    1.54  exp_suffix                = {exponent}({signed_integer}|{unsigned_integer});
    1.55  real                      = ({signed_integer}|{unsigned_integer}){dot_decimal}{exp_suffix}?;
    1.56 -upper_word                = {upper_alpha}{alpha_numeric}*;
    1.57  rational                  = ({signed_integer}|{unsigned_integer}){divide}{unsigned_integer};
    1.58  
    1.59 -percentage_sign           = "%";
    1.60 +lower_word                = {lower_alpha}{alpha_numeric}*;
    1.61 +upper_word                = {upper_alpha}{alpha_numeric}*;
    1.62 +dollar_dollar_word        = {ddollar}{lower_word};
    1.63 +dollar_word               = {dollar}{lower_word};
    1.64  
    1.65 -sq_char                   = ([\040-\041\043-\126]|[\\]['\\]);
    1.66 +distinct_object           = {double_quote}{do_char}+{double_quote};
    1.67  
    1.68  ws                        = ([\ ]|[\t]);
    1.69 -eol                       = ("\013\010"|"\010"|"\013");
    1.70 -
    1.71 -single_quote              = ['];
    1.72  single_quoted             = {single_quote}({alpha_numeric}|{sq_char}|{ws})+{single_quote};
    1.73  
    1.74 -lower_word                = {lower_alpha}{alpha_numeric}*;
    1.75 -atomic_system_word        = {ddollar}{lower_word};
    1.76 -atomic_defined_word       = {dollar}{lower_word};
    1.77 -
    1.78  system_comment_one        = [%][\ ]*{ddollar}[_]*;
    1.79  system_comment_multi      = [/][\*][\ ]*(ddollar)([^\*]*[\*][\*]*[^/\*])*[^\*]*[\*][\*]*[/];
    1.80  system_comment            = (system_comment_one)|(system_comment_multi);
    1.81 -comment_one               = {percentage_sign}[^\n]*;
    1.82 -comment_multi             = [/][\*]([^\*]*[\*]+[^/\*])*[^\*]*[\*]+[/];
    1.83 -comment                   = ({comment_one}|{comment_multi})+;
    1.84  
    1.85 -do_char                   = ([^"]|[\\]["\\]);
    1.86 -double_quote              = ["];
    1.87 -distinct_object           = {double_quote}{do_char}+{double_quote};
    1.88 +comment_line              = {percentage_sign}[^\n]*;
    1.89 +comment_block             = [/][\*]([^\*]*[\*]+[^/\*])*[^\*]*[\*]+[/];
    1.90 +comment                   = ({comment_line}|{comment_block})+;
    1.91 +
    1.92 +eol                       = ("\013\010"|"\010"|"\013");
    1.93  
    1.94  %%
    1.95  
    1.96 @@ -175,9 +175,9 @@
    1.97  "$let_ft"        => (col:=yypos-(!eolpos); T.LET_FT(!linep,!col));
    1.98  "$let_tt"        => (col:=yypos-(!eolpos); T.LET_TT(!linep,!col));
    1.99  
   1.100 -{lower_word}          => (col:=yypos-(!eolpos); T.LOWER_WORD(yytext,!linep,!col));
   1.101 -{atomic_system_word}  => (col:=yypos-(!eolpos); T.ATOMIC_SYSTEM_WORD(yytext,!linep,!col));
   1.102 -{atomic_defined_word} => (col:=yypos-(!eolpos); T.ATOMIC_DEFINED_WORD(yytext,!linep,!col));
   1.103 +{lower_word}   => (col:=yypos-(!eolpos); T.LOWER_WORD(yytext,!linep,!col));
   1.104 +{dollar_word}  => (col:=yypos-(!eolpos); T.DOLLAR_WORD(yytext,!linep,!col));
   1.105 +{dollar_dollar_word}  => (col:=yypos-(!eolpos); T.DOLLAR_DOLLAR_WORD(yytext,!linep,!col));
   1.106  
   1.107  "+"           => (col:=yypos-(!eolpos); T.PLUS(!linep,!col));
   1.108  "*"           => (col:=yypos-(!eolpos); T.TIMES(!linep,!col));
     2.1 --- a/src/HOL/TPTP/TPTP_Parser/tptp.yacc	Wed Apr 04 16:29:16 2012 +0100
     2.2 +++ b/src/HOL/TPTP/TPTP_Parser/tptp.yacc	Wed Apr 04 16:29:16 2012 +0100
     2.3 @@ -39,7 +39,7 @@
     2.4    | DUD | INDEF_CHOICE | DEFIN_CHOICE
     2.5    | OPERATOR_FORALL | OPERATOR_EXISTS
     2.6    | PLUS | TIMES | GENTZEN_ARROW | DEP_SUM | DEP_PROD
     2.7 -  | ATOMIC_DEFINED_WORD of string | ATOMIC_SYSTEM_WORD of string
     2.8 +  | DOLLAR_WORD of string | DOLLAR_DOLLAR_WORD of string
     2.9    | SUBTYPE | LET_TERM
    2.10    | THF | TFF | FOF | CNF
    2.11    | ITE_F | ITE_T
    2.12 @@ -191,6 +191,8 @@
    2.13    | tff_monotype of tptp_type
    2.14    | tff_type_arguments of tptp_type list
    2.15    | let_term of tptp_term
    2.16 +  | atomic_defined_word of string
    2.17 +  | atomic_system_word of string
    2.18  
    2.19  %pos int
    2.20  %eop EOF
    2.21 @@ -611,8 +613,8 @@
    2.22  
    2.23  (* Types for THF and TFF *)
    2.24  
    2.25 -defined_type : ATOMIC_DEFINED_WORD ((
    2.26 -  case ATOMIC_DEFINED_WORD of
    2.27 +defined_type : atomic_defined_word ((
    2.28 +  case atomic_defined_word of
    2.29      "$oType" => Type_Bool
    2.30    | "$o" => Type_Bool
    2.31    | "$iType" => Type_Ind
    2.32 @@ -624,7 +626,7 @@
    2.33    | thing => raise UNRECOGNISED_SYMBOL ("defined_type", thing)
    2.34  ))
    2.35  
    2.36 -system_type : ATOMIC_SYSTEM_WORD (( ATOMIC_SYSTEM_WORD ))
    2.37 +system_type : atomic_system_word (( atomic_system_word ))
    2.38  
    2.39  
    2.40  (* First-order atoms *)
    2.41 @@ -641,16 +643,16 @@
    2.42  defined_plain_formula : defined_plain_term (( Pred defined_plain_term ))
    2.43  
    2.44  (*FIXME not used*)
    2.45 -defined_prop : ATOMIC_DEFINED_WORD ((
    2.46 -  case ATOMIC_DEFINED_WORD of
    2.47 +defined_prop : atomic_defined_word ((
    2.48 +  case atomic_defined_word of
    2.49      "$true"  => "$true"
    2.50    | "$false" => "$false"
    2.51    | thing => raise UNRECOGNISED_SYMBOL ("defined_prop", thing)
    2.52  ))
    2.53  
    2.54  (*FIXME not used*)
    2.55 -defined_pred : ATOMIC_DEFINED_WORD ((
    2.56 -  case ATOMIC_DEFINED_WORD of
    2.57 +defined_pred : atomic_defined_word ((
    2.58 +  case atomic_defined_word of
    2.59      "$distinct"  => "$distinct"
    2.60    | "$ite_f" => "$ite_f"
    2.61    | "$less" => "$less"
    2.62 @@ -704,9 +706,9 @@
    2.63  
    2.64  defined_constant : defined_functor (( defined_functor ))
    2.65  
    2.66 -(*FIXME must the ones other than the first batch be included here?*)
    2.67 -defined_functor : ATOMIC_DEFINED_WORD ((
    2.68 -  case ATOMIC_DEFINED_WORD of
    2.69 +(*FIXME would be nicer to split these up*)
    2.70 +defined_functor : atomic_defined_word ((
    2.71 +  case atomic_defined_word of
    2.72      "$uminus" => Interpreted_ExtraLogic UMinus
    2.73    | "$sum" => Interpreted_ExtraLogic Sum
    2.74    | "$difference" => Interpreted_ExtraLogic Difference
    2.75 @@ -757,7 +759,7 @@
    2.76  
    2.77  system_constant : system_functor (( system_functor ))
    2.78  
    2.79 -system_functor : ATOMIC_SYSTEM_WORD (( System ATOMIC_SYSTEM_WORD ))
    2.80 +system_functor : atomic_system_word (( System atomic_system_word ))
    2.81  
    2.82  variable_ : UPPER_WORD  (( UPPER_WORD ))
    2.83  
    2.84 @@ -832,7 +834,6 @@
    2.85  name : atomic_word (( atomic_word ))
    2.86       | integer     (( integer ))
    2.87  
    2.88 -(*FIXME -- "THF" onwards*)
    2.89  atomic_word : LOWER_WORD    (( LOWER_WORD ))
    2.90              | SINGLE_QUOTED (( SINGLE_QUOTED ))
    2.91              | THF           (( "thf" ))
    2.92 @@ -841,7 +842,9 @@
    2.93              | CNF           (( "cnf" ))
    2.94              | INCLUDE       (( "include" ))
    2.95  
    2.96 -(*atomic_defined_word and atomic_system_word are picked up by lex*)
    2.97 +atomic_defined_word : DOLLAR_WORD (( DOLLAR_WORD ))
    2.98 +
    2.99 +atomic_system_word : DOLLAR_DOLLAR_WORD (( DOLLAR_DOLLAR_WORD ))
   2.100  
   2.101  integer: UNSIGNED_INTEGER (( UNSIGNED_INTEGER ))
   2.102         | SIGNED_INTEGER   (( SIGNED_INTEGER ))
     3.1 --- a/src/HOL/TPTP/TPTP_Parser/tptp_lexyacc.ML	Wed Apr 04 16:29:16 2012 +0100
     3.2 +++ b/src/HOL/TPTP/TPTP_Parser/tptp_lexyacc.ML	Wed Apr 04 16:29:16 2012 +0100
     3.3 @@ -25,8 +25,8 @@
     3.4  val THF:  'a * 'a -> (svalue,'a) token
     3.5  val LET_TERM:  'a * 'a -> (svalue,'a) token
     3.6  val SUBTYPE:  'a * 'a -> (svalue,'a) token
     3.7 -val ATOMIC_SYSTEM_WORD: (string) *  'a * 'a -> (svalue,'a) token
     3.8 -val ATOMIC_DEFINED_WORD: (string) *  'a * 'a -> (svalue,'a) token
     3.9 +val DOLLAR_DOLLAR_WORD: (string) *  'a * 'a -> (svalue,'a) token
    3.10 +val DOLLAR_WORD: (string) *  'a * 'a -> (svalue,'a) token
    3.11  val DEP_PROD:  'a * 'a -> (svalue,'a) token
    3.12  val DEP_SUM:  'a * 'a -> (svalue,'a) token
    3.13  val GENTZEN_ARROW:  'a * 'a -> (svalue,'a) token
    3.14 @@ -107,8 +107,8 @@
    3.15  
    3.16   Notes:
    3.17   * Omit %full in definitions to restrict alphabet to ascii.
    3.18 - * Could include %posarg to ensure that start counting character positions from
    3.19 -   0, but it would punish performance.
    3.20 + * Could include %posarg to ensure that we'd start counting character positions
    3.21 +   from 0, but it would punish performance.
    3.22   * %s AF F COMMENT; -- could improve by making stateful.
    3.23  
    3.24   Acknowledgements:
    3.25 @@ -1252,37 +1252,37 @@
    3.26  {fin = [(N 182)], trans = 100},
    3.27  {fin = [(N 182)], trans = 101},
    3.28  {fin = [], trans = 102},
    3.29 -{fin = [(N 298)], trans = 103},
    3.30 -{fin = [(N 298)], trans = 104},
    3.31 -{fin = [(N 298)], trans = 105},
    3.32 -{fin = [(N 211),(N 298)], trans = 103},
    3.33 -{fin = [(N 298)], trans = 107},
    3.34 -{fin = [(N 231),(N 298)], trans = 103},
    3.35 -{fin = [(N 298)], trans = 109},
    3.36 -{fin = [(N 298)], trans = 110},
    3.37 -{fin = [(N 298)], trans = 111},
    3.38 -{fin = [(N 298)], trans = 112},
    3.39 -{fin = [(N 298)], trans = 113},
    3.40 -{fin = [(N 277),(N 298)], trans = 103},
    3.41 -{fin = [(N 253),(N 298)], trans = 103},
    3.42 -{fin = [(N 298)], trans = 116},
    3.43 -{fin = [(N 269),(N 298)], trans = 103},
    3.44 -{fin = [(N 261),(N 298)], trans = 103},
    3.45 -{fin = [(N 298)], trans = 119},
    3.46 -{fin = [(N 298)], trans = 120},
    3.47 -{fin = [(N 298)], trans = 121},
    3.48 -{fin = [(N 298)], trans = 122},
    3.49 -{fin = [(N 245),(N 298)], trans = 103},
    3.50 -{fin = [(N 238),(N 298)], trans = 103},
    3.51 -{fin = [(N 298)], trans = 125},
    3.52 -{fin = [(N 298)], trans = 126},
    3.53 -{fin = [(N 226),(N 298)], trans = 103},
    3.54 -{fin = [(N 216),(N 298)], trans = 103},
    3.55 -{fin = [(N 298)], trans = 129},
    3.56 -{fin = [(N 298)], trans = 130},
    3.57 -{fin = [(N 221),(N 298)], trans = 103},
    3.58 +{fin = [(N 290)], trans = 103},
    3.59 +{fin = [(N 290)], trans = 104},
    3.60 +{fin = [(N 290)], trans = 105},
    3.61 +{fin = [(N 211),(N 290)], trans = 103},
    3.62 +{fin = [(N 290)], trans = 107},
    3.63 +{fin = [(N 231),(N 290)], trans = 103},
    3.64 +{fin = [(N 290)], trans = 109},
    3.65 +{fin = [(N 290)], trans = 110},
    3.66 +{fin = [(N 290)], trans = 111},
    3.67 +{fin = [(N 290)], trans = 112},
    3.68 +{fin = [(N 290)], trans = 113},
    3.69 +{fin = [(N 277),(N 290)], trans = 103},
    3.70 +{fin = [(N 253),(N 290)], trans = 103},
    3.71 +{fin = [(N 290)], trans = 116},
    3.72 +{fin = [(N 269),(N 290)], trans = 103},
    3.73 +{fin = [(N 261),(N 290)], trans = 103},
    3.74 +{fin = [(N 290)], trans = 119},
    3.75 +{fin = [(N 290)], trans = 120},
    3.76 +{fin = [(N 290)], trans = 121},
    3.77 +{fin = [(N 290)], trans = 122},
    3.78 +{fin = [(N 245),(N 290)], trans = 103},
    3.79 +{fin = [(N 238),(N 290)], trans = 103},
    3.80 +{fin = [(N 290)], trans = 125},
    3.81 +{fin = [(N 290)], trans = 126},
    3.82 +{fin = [(N 226),(N 290)], trans = 103},
    3.83 +{fin = [(N 216),(N 290)], trans = 103},
    3.84 +{fin = [(N 290)], trans = 129},
    3.85 +{fin = [(N 290)], trans = 130},
    3.86 +{fin = [(N 221),(N 290)], trans = 103},
    3.87  {fin = [], trans = 132},
    3.88 -{fin = [(N 291)], trans = 133},
    3.89 +{fin = [(N 298)], trans = 133},
    3.90  {fin = [], trans = 134},
    3.91  {fin = [], trans = 135},
    3.92  {fin = [], trans = 136},
    3.93 @@ -1371,8 +1371,8 @@
    3.94  | 277 => (col:=yypos-(!eolpos); T.LET_TT(!linep,!col))
    3.95  | 283 => let val yytext=yymktext() in col:=yypos-(!eolpos); T.LOWER_WORD(yytext,!linep,!col) end
    3.96  | 29 => (col:=yypos-(!eolpos); T.COMMA(!linep,!col))
    3.97 -| 291 => let val yytext=yymktext() in col:=yypos-(!eolpos); T.ATOMIC_SYSTEM_WORD(yytext,!linep,!col) end
    3.98 -| 298 => let val yytext=yymktext() in col:=yypos-(!eolpos); T.ATOMIC_DEFINED_WORD(yytext,!linep,!col) end
    3.99 +| 290 => let val yytext=yymktext() in col:=yypos-(!eolpos); T.DOLLAR_WORD(yytext,!linep,!col) end
   3.100 +| 298 => let val yytext=yymktext() in col:=yypos-(!eolpos); T.DOLLAR_DOLLAR_WORD(yytext,!linep,!col) end
   3.101  | 300 => (col:=yypos-(!eolpos); T.PLUS(!linep,!col))
   3.102  | 302 => (col:=yypos-(!eolpos); T.TIMES(!linep,!col))
   3.103  | 306 => (col:=yypos-(!eolpos); T.GENTZEN_ARROW(!linep,!col))
   3.104 @@ -1486,94 +1486,94 @@
   3.105  local open LrTable in 
   3.106  val table=let val actionRows =
   3.107  "\
   3.108 -\\001\000\001\000\050\002\002\000\050\002\004\000\067\002\005\000\050\002\
   3.109 -\\006\000\050\002\009\000\050\002\010\000\050\002\011\000\050\002\
   3.110 -\\012\000\050\002\019\000\050\002\020\000\050\002\021\000\050\002\
   3.111 -\\022\000\050\002\026\000\050\002\027\000\050\002\037\000\050\002\
   3.112 -\\059\000\050\002\060\000\050\002\000\000\
   3.113 -\\001\000\001\000\053\002\002\000\053\002\004\000\068\002\005\000\053\002\
   3.114 -\\006\000\053\002\009\000\053\002\010\000\053\002\011\000\053\002\
   3.115 -\\012\000\053\002\019\000\053\002\020\000\053\002\021\000\053\002\
   3.116 -\\022\000\053\002\026\000\053\002\027\000\053\002\037\000\053\002\
   3.117 -\\059\000\053\002\060\000\053\002\000\000\
   3.118 -\\001\000\001\000\217\002\005\000\217\002\006\000\232\002\010\000\217\002\
   3.119 -\\011\000\217\002\012\000\217\002\019\000\217\002\020\000\232\002\
   3.120 -\\021\000\217\002\022\000\217\002\026\000\217\002\027\000\217\002\
   3.121 -\\037\000\217\002\000\000\
   3.122 -\\001\000\001\000\220\002\005\000\220\002\006\000\243\002\010\000\220\002\
   3.123 -\\011\000\220\002\012\000\220\002\019\000\220\002\020\000\243\002\
   3.124 -\\021\000\220\002\022\000\220\002\026\000\220\002\027\000\220\002\
   3.125 -\\037\000\220\002\000\000\
   3.126 -\\001\000\001\000\227\002\005\000\227\002\006\000\234\002\010\000\227\002\
   3.127 -\\011\000\227\002\012\000\227\002\019\000\227\002\020\000\234\002\
   3.128 -\\021\000\227\002\022\000\227\002\026\000\227\002\027\000\227\002\
   3.129 -\\037\000\227\002\000\000\
   3.130 -\\001\000\001\000\237\002\004\000\128\002\005\000\237\002\006\000\237\002\
   3.131 -\\010\000\237\002\011\000\237\002\012\000\237\002\016\000\220\000\
   3.132 -\\019\000\237\002\020\000\237\002\021\000\237\002\022\000\237\002\
   3.133 -\\027\000\237\002\037\000\237\002\000\000\
   3.134 -\\001\000\001\000\250\002\004\000\129\002\005\000\250\002\006\000\250\002\
   3.135 -\\010\000\250\002\011\000\250\002\012\000\250\002\016\000\215\000\
   3.136 -\\019\000\250\002\020\000\250\002\021\000\250\002\022\000\250\002\
   3.137 -\\027\000\250\002\037\000\250\002\000\000\
   3.138 -\\001\000\001\000\209\000\003\000\208\000\006\000\207\000\007\000\122\000\
   3.139 -\\010\000\206\000\011\000\205\000\012\000\204\000\013\000\035\000\
   3.140 -\\015\000\203\000\016\000\202\000\019\000\201\000\020\000\200\000\
   3.141 -\\021\000\199\000\022\000\198\000\025\000\119\000\028\000\118\000\
   3.142 -\\037\000\197\000\044\000\099\000\045\000\098\000\046\000\034\000\
   3.143 -\\047\000\033\000\049\000\032\000\050\000\097\000\051\000\031\000\
   3.144 -\\053\000\096\000\055\000\196\000\056\000\195\000\057\000\194\000\
   3.145 -\\058\000\193\000\062\000\192\000\063\000\191\000\064\000\095\000\
   3.146 -\\065\000\094\000\068\000\030\000\069\000\029\000\070\000\028\000\
   3.147 -\\071\000\027\000\072\000\190\000\073\000\093\000\074\000\189\000\
   3.148 -\\076\000\092\000\077\000\091\000\000\000\
   3.149 -\\001\000\001\000\209\000\003\000\208\000\006\000\207\000\007\000\122\000\
   3.150 -\\010\000\206\000\011\000\205\000\012\000\204\000\013\000\035\000\
   3.151 -\\016\000\031\001\019\000\201\000\020\000\200\000\021\000\199\000\
   3.152 -\\022\000\198\000\025\000\119\000\026\000\030\001\028\000\118\000\
   3.153 -\\037\000\197\000\044\000\099\000\045\000\098\000\046\000\034\000\
   3.154 -\\047\000\033\000\049\000\032\000\050\000\097\000\051\000\031\000\
   3.155 -\\053\000\096\000\055\000\196\000\056\000\195\000\057\000\194\000\
   3.156 -\\058\000\193\000\062\000\192\000\063\000\191\000\064\000\095\000\
   3.157 -\\065\000\094\000\068\000\030\000\069\000\029\000\070\000\028\000\
   3.158 -\\071\000\027\000\072\000\190\000\073\000\093\000\074\000\189\000\
   3.159 -\\076\000\092\000\077\000\091\000\000\000\
   3.160 -\\001\000\001\000\209\000\003\000\208\000\006\000\207\000\007\000\122\000\
   3.161 -\\010\000\206\000\011\000\205\000\012\000\204\000\013\000\035\000\
   3.162 -\\016\000\031\001\019\000\201\000\020\000\200\000\021\000\199\000\
   3.163 -\\022\000\198\000\025\000\119\000\028\000\118\000\037\000\197\000\
   3.164 -\\044\000\099\000\045\000\098\000\046\000\034\000\047\000\033\000\
   3.165 -\\049\000\032\000\050\000\097\000\051\000\031\000\053\000\096\000\
   3.166 -\\055\000\196\000\056\000\195\000\057\000\194\000\058\000\193\000\
   3.167 -\\062\000\192\000\063\000\191\000\064\000\095\000\065\000\094\000\
   3.168 +\\001\000\001\000\052\002\002\000\052\002\004\000\069\002\005\000\052\002\
   3.169 +\\006\000\052\002\009\000\052\002\010\000\052\002\011\000\052\002\
   3.170 +\\012\000\052\002\019\000\052\002\020\000\052\002\021\000\052\002\
   3.171 +\\022\000\052\002\026\000\052\002\027\000\052\002\037\000\052\002\
   3.172 +\\059\000\052\002\060\000\052\002\000\000\
   3.173 +\\001\000\001\000\055\002\002\000\055\002\004\000\070\002\005\000\055\002\
   3.174 +\\006\000\055\002\009\000\055\002\010\000\055\002\011\000\055\002\
   3.175 +\\012\000\055\002\019\000\055\002\020\000\055\002\021\000\055\002\
   3.176 +\\022\000\055\002\026\000\055\002\027\000\055\002\037\000\055\002\
   3.177 +\\059\000\055\002\060\000\055\002\000\000\
   3.178 +\\001\000\001\000\219\002\005\000\219\002\006\000\234\002\010\000\219\002\
   3.179 +\\011\000\219\002\012\000\219\002\019\000\219\002\020\000\234\002\
   3.180 +\\021\000\219\002\022\000\219\002\026\000\219\002\027\000\219\002\
   3.181 +\\037\000\219\002\000\000\
   3.182 +\\001\000\001\000\222\002\005\000\222\002\006\000\245\002\010\000\222\002\
   3.183 +\\011\000\222\002\012\000\222\002\019\000\222\002\020\000\245\002\
   3.184 +\\021\000\222\002\022\000\222\002\026\000\222\002\027\000\222\002\
   3.185 +\\037\000\222\002\000\000\
   3.186 +\\001\000\001\000\229\002\005\000\229\002\006\000\236\002\010\000\229\002\
   3.187 +\\011\000\229\002\012\000\229\002\019\000\229\002\020\000\236\002\
   3.188 +\\021\000\229\002\022\000\229\002\026\000\229\002\027\000\229\002\
   3.189 +\\037\000\229\002\000\000\
   3.190 +\\001\000\001\000\239\002\004\000\130\002\005\000\239\002\006\000\239\002\
   3.191 +\\010\000\239\002\011\000\239\002\012\000\239\002\016\000\222\000\
   3.192 +\\019\000\239\002\020\000\239\002\021\000\239\002\022\000\239\002\
   3.193 +\\027\000\239\002\037\000\239\002\000\000\
   3.194 +\\001\000\001\000\252\002\004\000\131\002\005\000\252\002\006\000\252\002\
   3.195 +\\010\000\252\002\011\000\252\002\012\000\252\002\016\000\217\000\
   3.196 +\\019\000\252\002\020\000\252\002\021\000\252\002\022\000\252\002\
   3.197 +\\027\000\252\002\037\000\252\002\000\000\
   3.198 +\\001\000\001\000\211\000\003\000\210\000\006\000\209\000\007\000\124\000\
   3.199 +\\010\000\208\000\011\000\207\000\012\000\206\000\013\000\035\000\
   3.200 +\\015\000\205\000\016\000\204\000\019\000\203\000\020\000\202\000\
   3.201 +\\021\000\201\000\022\000\200\000\025\000\121\000\028\000\120\000\
   3.202 +\\037\000\199\000\044\000\101\000\045\000\100\000\046\000\034\000\
   3.203 +\\047\000\033\000\049\000\032\000\050\000\099\000\051\000\031\000\
   3.204 +\\053\000\098\000\055\000\198\000\056\000\197\000\057\000\196\000\
   3.205 +\\058\000\195\000\062\000\194\000\063\000\193\000\064\000\097\000\
   3.206 +\\065\000\096\000\068\000\030\000\069\000\029\000\070\000\028\000\
   3.207 +\\071\000\027\000\072\000\192\000\073\000\095\000\074\000\191\000\
   3.208 +\\076\000\094\000\077\000\093\000\000\000\
   3.209 +\\001\000\001\000\211\000\003\000\210\000\006\000\209\000\007\000\124\000\
   3.210 +\\010\000\208\000\011\000\207\000\012\000\206\000\013\000\035\000\
   3.211 +\\016\000\033\001\019\000\203\000\020\000\202\000\021\000\201\000\
   3.212 +\\022\000\200\000\025\000\121\000\026\000\032\001\028\000\120\000\
   3.213 +\\037\000\199\000\044\000\101\000\045\000\100\000\046\000\034\000\
   3.214 +\\047\000\033\000\049\000\032\000\050\000\099\000\051\000\031\000\
   3.215 +\\053\000\098\000\055\000\198\000\056\000\197\000\057\000\196\000\
   3.216 +\\058\000\195\000\062\000\194\000\063\000\193\000\064\000\097\000\
   3.217 +\\065\000\096\000\068\000\030\000\069\000\029\000\070\000\028\000\
   3.218 +\\071\000\027\000\072\000\192\000\073\000\095\000\074\000\191\000\
   3.219 +\\076\000\094\000\077\000\093\000\000\000\
   3.220 +\\001\000\001\000\211\000\003\000\210\000\006\000\209\000\007\000\124\000\
   3.221 +\\010\000\208\000\011\000\207\000\012\000\206\000\013\000\035\000\
   3.222 +\\016\000\033\001\019\000\203\000\020\000\202\000\021\000\201\000\
   3.223 +\\022\000\200\000\025\000\121\000\028\000\120\000\037\000\199\000\
   3.224 +\\044\000\101\000\045\000\100\000\046\000\034\000\047\000\033\000\
   3.225 +\\049\000\032\000\050\000\099\000\051\000\031\000\053\000\098\000\
   3.226 +\\055\000\198\000\056\000\197\000\057\000\196\000\058\000\195\000\
   3.227 +\\062\000\194\000\063\000\193\000\064\000\097\000\065\000\096\000\
   3.228  \\068\000\030\000\069\000\029\000\070\000\028\000\071\000\027\000\
   3.229 -\\072\000\190\000\073\000\093\000\074\000\189\000\076\000\092\000\
   3.230 -\\077\000\091\000\000\000\
   3.231 -\\001\000\001\000\209\000\003\000\208\000\006\000\207\000\007\000\122\000\
   3.232 -\\010\000\206\000\011\000\205\000\012\000\204\000\013\000\035\000\
   3.233 -\\016\000\108\001\019\000\201\000\020\000\200\000\021\000\199\000\
   3.234 -\\022\000\198\000\025\000\119\000\028\000\118\000\037\000\197\000\
   3.235 -\\044\000\099\000\045\000\098\000\046\000\034\000\047\000\033\000\
   3.236 -\\049\000\032\000\050\000\097\000\051\000\031\000\053\000\096\000\
   3.237 -\\055\000\196\000\056\000\195\000\057\000\194\000\058\000\193\000\
   3.238 -\\062\000\192\000\063\000\191\000\064\000\095\000\065\000\094\000\
   3.239 +\\072\000\192\000\073\000\095\000\074\000\191\000\076\000\094\000\
   3.240 +\\077\000\093\000\000\000\
   3.241 +\\001\000\001\000\211\000\003\000\210\000\006\000\209\000\007\000\124\000\
   3.242 +\\010\000\208\000\011\000\207\000\012\000\206\000\013\000\035\000\
   3.243 +\\016\000\110\001\019\000\203\000\020\000\202\000\021\000\201\000\
   3.244 +\\022\000\200\000\025\000\121\000\028\000\120\000\037\000\199\000\
   3.245 +\\044\000\101\000\045\000\100\000\046\000\034\000\047\000\033\000\
   3.246 +\\049\000\032\000\050\000\099\000\051\000\031\000\053\000\098\000\
   3.247 +\\055\000\198\000\056\000\197\000\057\000\196\000\058\000\195\000\
   3.248 +\\062\000\194\000\063\000\193\000\064\000\097\000\065\000\096\000\
   3.249  \\068\000\030\000\069\000\029\000\070\000\028\000\071\000\027\000\
   3.250 -\\072\000\190\000\073\000\093\000\074\000\189\000\076\000\092\000\
   3.251 -\\077\000\091\000\000\000\
   3.252 -\\001\000\001\000\013\001\002\000\012\001\005\000\032\002\006\000\207\000\
   3.253 -\\009\000\071\002\010\000\206\000\011\000\205\000\012\000\204\000\
   3.254 -\\019\000\201\000\020\000\200\000\021\000\199\000\022\000\198\000\
   3.255 -\\026\000\032\002\027\000\032\002\037\000\011\001\059\000\071\002\
   3.256 -\\060\000\071\002\000\000\
   3.257 -\\001\000\003\000\208\000\007\000\122\000\025\000\119\000\055\000\196\000\
   3.258 -\\056\000\195\000\062\000\192\000\063\000\191\000\000\000\
   3.259 -\\001\000\004\000\248\000\000\000\
   3.260 -\\001\000\004\000\014\001\000\000\
   3.261 -\\001\000\004\000\203\001\000\000\
   3.262 -\\001\000\004\000\215\001\000\000\
   3.263 -\\001\000\004\000\222\001\000\000\
   3.264 -\\001\000\004\000\253\001\000\000\
   3.265 -\\001\000\005\000\130\002\009\000\137\002\027\000\130\002\000\000\
   3.266 +\\072\000\192\000\073\000\095\000\074\000\191\000\076\000\094\000\
   3.267 +\\077\000\093\000\000\000\
   3.268 +\\001\000\001\000\015\001\002\000\014\001\005\000\034\002\006\000\209\000\
   3.269 +\\009\000\073\002\010\000\208\000\011\000\207\000\012\000\206\000\
   3.270 +\\019\000\203\000\020\000\202\000\021\000\201\000\022\000\200\000\
   3.271 +\\026\000\034\002\027\000\034\002\037\000\013\001\059\000\073\002\
   3.272 +\\060\000\073\002\000\000\
   3.273 +\\001\000\003\000\210\000\007\000\124\000\025\000\121\000\055\000\198\000\
   3.274 +\\056\000\197\000\062\000\194\000\063\000\193\000\000\000\
   3.275 +\\001\000\004\000\250\000\000\000\
   3.276 +\\001\000\004\000\016\001\000\000\
   3.277 +\\001\000\004\000\205\001\000\000\
   3.278 +\\001\000\004\000\217\001\000\000\
   3.279 +\\001\000\004\000\224\001\000\000\
   3.280 +\\001\000\004\000\255\001\000\000\
   3.281 +\\001\000\005\000\132\002\009\000\139\002\027\000\132\002\000\000\
   3.282  \\001\000\005\000\041\000\000\000\
   3.283  \\001\000\005\000\042\000\000\000\
   3.284  \\001\000\005\000\043\000\000\000\
   3.285 @@ -1582,203 +1582,201 @@
   3.286  \\001\000\005\000\055\000\000\000\
   3.287  \\001\000\005\000\056\000\000\000\
   3.288  \\001\000\005\000\057\000\000\000\
   3.289 -\\001\000\005\000\156\001\000\000\
   3.290 -\\001\000\005\000\157\001\000\000\
   3.291  \\001\000\005\000\158\001\000\000\
   3.292 -\\001\000\005\000\175\001\000\000\
   3.293 -\\001\000\005\000\176\001\000\000\
   3.294 +\\001\000\005\000\159\001\000\000\
   3.295 +\\001\000\005\000\160\001\000\000\
   3.296  \\001\000\005\000\177\001\000\000\
   3.297 -\\001\000\005\000\185\001\000\000\
   3.298 -\\001\000\005\000\186\001\000\000\
   3.299 -\\001\000\005\000\236\001\000\000\
   3.300 -\\001\000\005\000\247\001\000\000\
   3.301 -\\001\000\005\000\250\001\000\000\
   3.302 -\\001\000\006\000\207\000\000\000\
   3.303 -\\001\000\006\000\207\000\020\000\200\000\000\000\
   3.304 -\\001\000\007\000\122\000\013\000\035\000\015\000\121\000\016\000\120\000\
   3.305 -\\025\000\119\000\028\000\118\000\044\000\099\000\045\000\098\000\
   3.306 -\\046\000\034\000\047\000\033\000\049\000\032\000\050\000\097\000\
   3.307 -\\051\000\031\000\053\000\096\000\064\000\095\000\065\000\094\000\
   3.308 +\\001\000\005\000\178\001\000\000\
   3.309 +\\001\000\005\000\179\001\000\000\
   3.310 +\\001\000\005\000\187\001\000\000\
   3.311 +\\001\000\005\000\188\001\000\000\
   3.312 +\\001\000\005\000\238\001\000\000\
   3.313 +\\001\000\005\000\249\001\000\000\
   3.314 +\\001\000\005\000\252\001\000\000\
   3.315 +\\001\000\006\000\209\000\000\000\
   3.316 +\\001\000\006\000\209\000\020\000\202\000\000\000\
   3.317 +\\001\000\007\000\124\000\013\000\035\000\015\000\123\000\016\000\122\000\
   3.318 +\\025\000\121\000\028\000\120\000\044\000\101\000\045\000\100\000\
   3.319 +\\046\000\034\000\047\000\033\000\049\000\032\000\050\000\099\000\
   3.320 +\\051\000\031\000\053\000\098\000\064\000\097\000\065\000\096\000\
   3.321  \\068\000\030\000\069\000\029\000\070\000\028\000\071\000\027\000\
   3.322 -\\073\000\093\000\076\000\092\000\077\000\091\000\000\000\
   3.323 -\\001\000\007\000\122\000\013\000\035\000\015\000\149\000\016\000\148\000\
   3.324 -\\025\000\119\000\028\000\118\000\044\000\099\000\045\000\098\000\
   3.325 -\\046\000\034\000\047\000\033\000\049\000\032\000\050\000\097\000\
   3.326 -\\051\000\031\000\053\000\096\000\064\000\095\000\065\000\094\000\
   3.327 +\\073\000\095\000\076\000\094\000\077\000\093\000\000\000\
   3.328 +\\001\000\007\000\124\000\013\000\035\000\015\000\151\000\016\000\150\000\
   3.329 +\\025\000\121\000\028\000\120\000\044\000\101\000\045\000\100\000\
   3.330 +\\046\000\034\000\047\000\033\000\049\000\032\000\050\000\099\000\
   3.331 +\\051\000\031\000\053\000\098\000\064\000\097\000\065\000\096\000\
   3.332  \\068\000\030\000\069\000\029\000\070\000\028\000\071\000\027\000\
   3.333 -\\072\000\147\000\073\000\093\000\074\000\146\000\075\000\145\000\
   3.334 -\\076\000\092\000\077\000\091\000\000\000\
   3.335 -\\001\000\007\000\122\000\013\000\035\000\016\000\236\000\025\000\119\000\
   3.336 -\\026\000\241\000\028\000\118\000\044\000\099\000\045\000\098\000\
   3.337 -\\046\000\034\000\047\000\033\000\049\000\032\000\050\000\097\000\
   3.338 -\\051\000\031\000\053\000\096\000\064\000\095\000\065\000\094\000\
   3.339 +\\072\000\149\000\073\000\095\000\074\000\148\000\075\000\147\000\
   3.340 +\\076\000\094\000\077\000\093\000\000\000\
   3.341 +\\001\000\007\000\124\000\013\000\035\000\016\000\238\000\025\000\121\000\
   3.342 +\\026\000\243\000\028\000\120\000\044\000\101\000\045\000\100\000\
   3.343 +\\046\000\034\000\047\000\033\000\049\000\032\000\050\000\099\000\
   3.344 +\\051\000\031\000\053\000\098\000\064\000\097\000\065\000\096\000\
   3.345  \\068\000\030\000\069\000\029\000\070\000\028\000\071\000\027\000\
   3.346 -\\073\000\093\000\076\000\092\000\077\000\091\000\000\000\
   3.347 -\\001\000\007\000\122\000\013\000\035\000\016\000\236\000\025\000\119\000\
   3.348 -\\028\000\118\000\044\000\099\000\045\000\098\000\046\000\034\000\
   3.349 -\\047\000\033\000\049\000\032\000\050\000\097\000\051\000\031\000\
   3.350 -\\053\000\096\000\064\000\095\000\065\000\094\000\068\000\030\000\
   3.351 -\\069\000\029\000\070\000\028\000\071\000\027\000\073\000\093\000\
   3.352 -\\076\000\092\000\077\000\091\000\000\000\
   3.353 -\\001\000\007\000\122\000\013\000\035\000\016\000\252\000\025\000\119\000\
   3.354 -\\026\000\005\001\028\000\118\000\044\000\099\000\045\000\098\000\
   3.355 -\\046\000\034\000\047\000\033\000\049\000\032\000\050\000\097\000\
   3.356 -\\051\000\031\000\053\000\096\000\064\000\095\000\065\000\094\000\
   3.357 +\\073\000\095\000\076\000\094\000\077\000\093\000\000\000\
   3.358 +\\001\000\007\000\124\000\013\000\035\000\016\000\238\000\025\000\121\000\
   3.359 +\\028\000\120\000\044\000\101\000\045\000\100\000\046\000\034\000\
   3.360 +\\047\000\033\000\049\000\032\000\050\000\099\000\051\000\031\000\
   3.361 +\\053\000\098\000\064\000\097\000\065\000\096\000\068\000\030\000\
   3.362 +\\069\000\029\000\070\000\028\000\071\000\027\000\073\000\095\000\
   3.363 +\\076\000\094\000\077\000\093\000\000\000\
   3.364 +\\001\000\007\000\124\000\013\000\035\000\016\000\254\000\025\000\121\000\
   3.365 +\\026\000\007\001\028\000\120\000\044\000\101\000\045\000\100\000\
   3.366 +\\046\000\034\000\047\000\033\000\049\000\032\000\050\000\099\000\
   3.367 +\\051\000\031\000\053\000\098\000\064\000\097\000\065\000\096\000\
   3.368  \\068\000\030\000\069\000\029\000\070\000\028\000\071\000\027\000\
   3.369 -\\072\000\147\000\073\000\093\000\074\000\146\000\075\000\145\000\
   3.370 -\\076\000\092\000\077\000\091\000\000\000\
   3.371 -\\001\000\007\000\122\000\013\000\035\000\016\000\252\000\025\000\119\000\
   3.372 -\\028\000\118\000\044\000\099\000\045\000\098\000\046\000\034\000\
   3.373 -\\047\000\033\000\049\000\032\000\050\000\097\000\051\000\031\000\
   3.374 -\\053\000\096\000\064\000\095\000\065\000\094\000\068\000\030\000\
   3.375 -\\069\000\029\000\070\000\028\000\071\000\027\000\072\000\147\000\
   3.376 -\\073\000\093\000\074\000\146\000\075\000\145\000\076\000\092\000\
   3.377 -\\077\000\091\000\000\000\
   3.378 -\\001\000\007\000\122\000\025\000\119\000\000\000\
   3.379 -\\001\000\009\000\138\002\027\000\149\002\060\000\149\002\000\000\
   3.380 -\\001\000\009\000\017\001\059\000\016\001\060\000\015\001\000\000\
   3.381 -\\001\000\009\000\164\001\000\000\
   3.382 -\\001\000\013\000\035\000\015\000\048\001\026\000\151\001\039\000\047\001\
   3.383 -\\040\000\046\001\041\000\045\001\042\000\044\001\043\000\043\001\
   3.384 -\\044\000\099\000\045\000\098\000\046\000\034\000\047\000\033\000\
   3.385 -\\049\000\032\000\050\000\097\000\051\000\031\000\053\000\042\001\
   3.386 +\\072\000\149\000\073\000\095\000\074\000\148\000\075\000\147\000\
   3.387 +\\076\000\094\000\077\000\093\000\000\000\
   3.388 +\\001\000\007\000\124\000\013\000\035\000\016\000\254\000\025\000\121\000\
   3.389 +\\028\000\120\000\044\000\101\000\045\000\100\000\046\000\034\000\
   3.390 +\\047\000\033\000\049\000\032\000\050\000\099\000\051\000\031\000\
   3.391 +\\053\000\098\000\064\000\097\000\065\000\096\000\068\000\030\000\
   3.392 +\\069\000\029\000\070\000\028\000\071\000\027\000\072\000\149\000\
   3.393 +\\073\000\095\000\074\000\148\000\075\000\147\000\076\000\094\000\
   3.394 +\\077\000\093\000\000\000\
   3.395 +\\001\000\007\000\124\000\025\000\121\000\000\000\
   3.396 +\\001\000\009\000\140\002\027\000\151\002\060\000\151\002\000\000\
   3.397 +\\001\000\009\000\019\001\059\000\018\001\060\000\017\001\000\000\
   3.398 +\\001\000\009\000\166\001\000\000\
   3.399 +\\001\000\013\000\035\000\015\000\050\001\026\000\153\001\039\000\049\001\
   3.400 +\\040\000\048\001\041\000\047\001\042\000\046\001\043\000\045\001\
   3.401 +\\044\000\101\000\045\000\100\000\046\000\034\000\047\000\033\000\
   3.402 +\\049\000\032\000\050\000\099\000\051\000\031\000\053\000\044\001\
   3.403  \\068\000\030\000\069\000\029\000\070\000\028\000\071\000\027\000\000\000\
   3.404 -\\001\000\013\000\035\000\015\000\048\001\039\000\047\001\040\000\046\001\
   3.405 -\\041\000\045\001\042\000\044\001\043\000\043\001\044\000\099\000\
   3.406 -\\045\000\098\000\046\000\034\000\047\000\033\000\049\000\032\000\
   3.407 -\\050\000\097\000\051\000\031\000\053\000\042\001\068\000\030\000\
   3.408 +\\001\000\013\000\035\000\015\000\050\001\039\000\049\001\040\000\048\001\
   3.409 +\\041\000\047\001\042\000\046\001\043\000\045\001\044\000\101\000\
   3.410 +\\045\000\100\000\046\000\034\000\047\000\033\000\049\000\032\000\
   3.411 +\\050\000\099\000\051\000\031\000\053\000\044\001\068\000\030\000\
   3.412  \\069\000\029\000\070\000\028\000\071\000\027\000\000\000\
   3.413 -\\001\000\013\000\035\000\016\000\101\000\028\000\100\000\044\000\099\000\
   3.414 -\\045\000\098\000\046\000\034\000\047\000\033\000\049\000\032\000\
   3.415 -\\050\000\097\000\051\000\031\000\053\000\096\000\064\000\095\000\
   3.416 -\\065\000\094\000\068\000\030\000\069\000\029\000\070\000\028\000\
   3.417 -\\071\000\027\000\073\000\093\000\076\000\092\000\077\000\091\000\000\000\
   3.418 -\\001\000\013\000\035\000\016\000\091\001\049\000\032\000\050\000\097\000\
   3.419 -\\051\000\031\000\063\000\090\001\064\000\089\001\068\000\030\000\
   3.420 +\\001\000\013\000\035\000\016\000\103\000\028\000\102\000\044\000\101\000\
   3.421 +\\045\000\100\000\046\000\034\000\047\000\033\000\049\000\032\000\
   3.422 +\\050\000\099\000\051\000\031\000\053\000\098\000\064\000\097\000\
   3.423 +\\065\000\096\000\068\000\030\000\069\000\029\000\070\000\028\000\
   3.424 +\\071\000\027\000\073\000\095\000\076\000\094\000\077\000\093\000\000\000\
   3.425 +\\001\000\013\000\035\000\016\000\093\001\049\000\032\000\050\000\099\000\
   3.426 +\\051\000\031\000\063\000\092\001\064\000\097\000\068\000\030\000\
   3.427  \\069\000\029\000\070\000\028\000\071\000\027\000\000\000\
   3.428 -\\001\000\013\000\035\000\016\000\171\001\049\000\032\000\050\000\097\000\
   3.429 -\\051\000\031\000\063\000\090\001\064\000\089\001\068\000\030\000\
   3.430 +\\001\000\013\000\035\000\016\000\173\001\049\000\032\000\050\000\099\000\
   3.431 +\\051\000\031\000\063\000\092\001\064\000\097\000\068\000\030\000\
   3.432  \\069\000\029\000\070\000\028\000\071\000\027\000\000\000\
   3.433 -\\001\000\013\000\035\000\016\000\003\002\049\000\032\000\050\000\097\000\
   3.434 -\\051\000\031\000\064\000\089\001\068\000\030\000\069\000\029\000\
   3.435 +\\001\000\013\000\035\000\016\000\005\002\049\000\032\000\050\000\099\000\
   3.436 +\\051\000\031\000\064\000\097\000\068\000\030\000\069\000\029\000\
   3.437  \\070\000\028\000\071\000\027\000\000\000\
   3.438 -\\001\000\013\000\035\000\016\000\008\002\049\000\032\000\050\000\097\000\
   3.439 -\\051\000\031\000\064\000\089\001\068\000\030\000\069\000\029\000\
   3.440 +\\001\000\013\000\035\000\016\000\010\002\049\000\032\000\050\000\099\000\
   3.441 +\\051\000\031\000\064\000\097\000\068\000\030\000\069\000\029\000\
   3.442  \\070\000\028\000\071\000\027\000\000\000\
   3.443 -\\001\000\013\000\035\000\016\000\010\002\049\000\032\000\050\000\097\000\
   3.444 -\\051\000\031\000\064\000\089\001\068\000\030\000\069\000\029\000\
   3.445 +\\001\000\013\000\035\000\016\000\012\002\049\000\032\000\050\000\099\000\
   3.446 +\\051\000\031\000\064\000\097\000\068\000\030\000\069\000\029\000\
   3.447  \\070\000\028\000\071\000\027\000\000\000\
   3.448 -\\001\000\013\000\035\000\028\000\100\000\044\000\099\000\045\000\098\000\
   3.449 -\\046\000\034\000\047\000\033\000\049\000\032\000\050\000\097\000\
   3.450 -\\051\000\031\000\053\000\096\000\064\000\095\000\065\000\094\000\
   3.451 +\\001\000\013\000\035\000\028\000\102\000\044\000\101\000\045\000\100\000\
   3.452 +\\046\000\034\000\047\000\033\000\049\000\032\000\050\000\099\000\
   3.453 +\\051\000\031\000\053\000\098\000\064\000\097\000\065\000\096\000\
   3.454  \\068\000\030\000\069\000\029\000\070\000\028\000\071\000\027\000\
   3.455 -\\073\000\093\000\076\000\092\000\077\000\091\000\000\000\
   3.456 -\\001\000\013\000\035\000\044\000\099\000\045\000\098\000\046\000\034\000\
   3.457 -\\047\000\033\000\049\000\032\000\050\000\097\000\051\000\031\000\
   3.458 -\\053\000\096\000\064\000\095\000\065\000\094\000\068\000\030\000\
   3.459 -\\069\000\029\000\070\000\028\000\071\000\027\000\073\000\093\000\
   3.460 -\\076\000\092\000\077\000\091\000\000\000\
   3.461 +\\073\000\095\000\076\000\094\000\077\000\093\000\000\000\
   3.462 +\\001\000\013\000\035\000\044\000\101\000\045\000\100\000\046\000\034\000\
   3.463 +\\047\000\033\000\049\000\032\000\050\000\099\000\051\000\031\000\
   3.464 +\\053\000\098\000\064\000\097\000\065\000\096\000\068\000\030\000\
   3.465 +\\069\000\029\000\070\000\028\000\071\000\027\000\073\000\095\000\
   3.466 +\\076\000\094\000\077\000\093\000\000\000\
   3.467  \\001\000\013\000\035\000\046\000\034\000\047\000\033\000\049\000\032\000\
   3.468  \\051\000\031\000\068\000\030\000\069\000\029\000\070\000\028\000\
   3.469  \\071\000\027\000\000\000\
   3.470 -\\001\000\013\000\035\000\049\000\032\000\050\000\097\000\051\000\031\000\
   3.471 -\\064\000\089\001\068\000\030\000\069\000\029\000\070\000\028\000\
   3.472 +\\001\000\013\000\035\000\049\000\032\000\050\000\099\000\051\000\031\000\
   3.473 +\\064\000\097\000\068\000\030\000\069\000\029\000\070\000\028\000\
   3.474  \\071\000\027\000\000\000\
   3.475  \\001\000\013\000\035\000\049\000\032\000\051\000\031\000\068\000\030\000\
   3.476  \\069\000\029\000\070\000\028\000\071\000\027\000\000\000\
   3.477  \\001\000\015\000\053\000\000\000\
   3.478 -\\001\000\015\000\121\000\000\000\
   3.479 -\\001\000\015\000\149\000\000\000\
   3.480 -\\001\000\015\000\203\000\000\000\
   3.481 -\\001\000\015\000\234\000\000\000\
   3.482 -\\001\000\015\000\250\000\000\000\
   3.483 -\\001\000\015\000\021\001\000\000\
   3.484 -\\001\000\015\000\048\001\000\000\
   3.485 -\\001\000\015\000\166\001\000\000\
   3.486 +\\001\000\015\000\123\000\000\000\
   3.487 +\\001\000\015\000\151\000\000\000\
   3.488 +\\001\000\015\000\205\000\000\000\
   3.489 +\\001\000\015\000\236\000\000\000\
   3.490 +\\001\000\015\000\252\000\000\000\
   3.491 +\\001\000\015\000\023\001\000\000\
   3.492 +\\001\000\015\000\050\001\000\000\
   3.493 +\\001\000\015\000\168\001\000\000\
   3.494  \\001\000\016\000\018\000\000\000\
   3.495  \\001\000\016\000\019\000\000\000\
   3.496  \\001\000\016\000\020\000\000\000\
   3.497  \\001\000\016\000\021\000\000\000\
   3.498  \\001\000\016\000\023\000\000\000\
   3.499 -\\001\000\016\000\221\000\000\000\
   3.500 -\\001\000\016\000\222\000\000\000\
   3.501  \\001\000\016\000\223\000\000\000\
   3.502 -\\001\000\016\000\253\000\000\000\
   3.503 -\\001\000\016\000\254\000\000\000\
   3.504 +\\001\000\016\000\224\000\000\000\
   3.505 +\\001\000\016\000\225\000\000\000\
   3.506  \\001\000\016\000\255\000\000\000\
   3.507 -\\001\000\016\000\024\001\000\000\
   3.508 -\\001\000\016\000\025\001\000\000\
   3.509 -\\001\000\016\000\144\001\000\000\
   3.510 -\\001\000\016\000\145\001\000\000\
   3.511 +\\001\000\016\000\000\001\000\000\
   3.512 +\\001\000\016\000\001\001\000\000\
   3.513 +\\001\000\016\000\026\001\000\000\
   3.514 +\\001\000\016\000\027\001\000\000\
   3.515  \\001\000\016\000\146\001\000\000\
   3.516  \\001\000\016\000\147\001\000\000\
   3.517  \\001\000\016\000\148\001\000\000\
   3.518 +\\001\000\016\000\149\001\000\000\
   3.519 +\\001\000\016\000\150\001\000\000\
   3.520  \\001\000\023\000\058\000\000\000\
   3.521 -\\001\000\023\000\139\001\000\000\
   3.522 -\\001\000\023\000\159\001\000\000\
   3.523 -\\001\000\023\000\163\001\000\000\
   3.524 -\\001\000\023\000\179\001\000\000\
   3.525 -\\001\000\026\000\210\000\000\000\
   3.526 -\\001\000\026\000\074\001\000\000\
   3.527 -\\001\000\026\000\104\001\000\000\
   3.528 -\\001\000\026\000\138\001\000\000\
   3.529 -\\001\000\026\000\160\001\000\000\
   3.530 -\\001\000\026\000\172\001\000\000\
   3.531 -\\001\000\026\000\181\001\000\000\
   3.532 -\\001\000\026\000\198\001\000\000\
   3.533 -\\001\000\026\000\240\001\000\000\
   3.534 +\\001\000\023\000\141\001\000\000\
   3.535 +\\001\000\023\000\161\001\000\000\
   3.536 +\\001\000\023\000\165\001\000\000\
   3.537 +\\001\000\023\000\181\001\000\000\
   3.538 +\\001\000\026\000\212\000\000\000\
   3.539 +\\001\000\026\000\076\001\000\000\
   3.540 +\\001\000\026\000\106\001\000\000\
   3.541 +\\001\000\026\000\140\001\000\000\
   3.542 +\\001\000\026\000\162\001\000\000\
   3.543 +\\001\000\026\000\174\001\000\000\
   3.544 +\\001\000\026\000\183\001\000\000\
   3.545 +\\001\000\026\000\200\001\000\000\
   3.546 +\\001\000\026\000\242\001\000\000\
   3.547  \\001\000\027\000\052\000\000\000\
   3.548 -\\001\000\027\000\033\001\000\000\
   3.549 -\\001\000\027\000\061\001\037\000\214\000\000\000\
   3.550 -\\001\000\027\000\062\001\000\000\
   3.551 -\\001\000\027\000\071\001\000\000\
   3.552 -\\001\000\027\000\072\001\000\000\
   3.553 -\\001\000\027\000\075\001\000\000\
   3.554 -\\001\000\027\000\100\001\000\000\
   3.555 -\\001\000\027\000\101\001\000\000\
   3.556 +\\001\000\027\000\035\001\000\000\
   3.557 +\\001\000\027\000\063\001\037\000\216\000\000\000\
   3.558 +\\001\000\027\000\064\001\000\000\
   3.559 +\\001\000\027\000\073\001\000\000\
   3.560 +\\001\000\027\000\074\001\000\000\
   3.561 +\\001\000\027\000\077\001\000\000\
   3.562  \\001\000\027\000\102\001\000\000\
   3.563 -\\001\000\027\000\105\001\000\000\
   3.564 -\\001\000\027\000\135\001\000\000\
   3.565 -\\001\000\027\000\136\001\000\000\
   3.566 -\\001\000\027\000\152\001\000\000\
   3.567 +\\001\000\027\000\103\001\000\000\
   3.568 +\\001\000\027\000\104\001\000\000\
   3.569 +\\001\000\027\000\107\001\000\000\
   3.570 +\\001\000\027\000\137\001\000\000\
   3.571 +\\001\000\027\000\138\001\000\000\
   3.572  \\001\000\027\000\154\001\000\000\
   3.573 -\\001\000\027\000\155\001\000\000\
   3.574 -\\001\000\027\000\184\001\000\000\
   3.575 -\\001\000\027\000\209\001\000\000\
   3.576 +\\001\000\027\000\156\001\000\000\
   3.577 +\\001\000\027\000\157\001\000\000\
   3.578 +\\001\000\027\000\186\001\000\000\
   3.579  \\001\000\027\000\211\001\000\000\
   3.580 -\\001\000\027\000\213\001\060\000\212\001\000\000\
   3.581 -\\001\000\027\000\221\001\000\000\
   3.582 -\\001\000\027\000\227\001\000\000\
   3.583 -\\001\000\027\000\228\001\000\000\
   3.584 +\\001\000\027\000\213\001\000\000\
   3.585 +\\001\000\027\000\215\001\060\000\214\001\000\000\
   3.586 +\\001\000\027\000\223\001\000\000\
   3.587  \\001\000\027\000\229\001\000\000\
   3.588  \\001\000\027\000\230\001\000\000\
   3.589  \\001\000\027\000\231\001\000\000\
   3.590  \\001\000\027\000\232\001\000\000\
   3.591 +\\001\000\027\000\233\001\000\000\
   3.592  \\001\000\027\000\234\001\000\000\
   3.593 -\\001\000\027\000\235\001\000\000\
   3.594 -\\001\000\027\000\238\001\000\000\
   3.595 -\\001\000\027\000\243\001\060\000\212\001\000\000\
   3.596 -\\001\000\027\000\245\001\000\000\
   3.597 -\\001\000\027\000\246\001\000\000\
   3.598 -\\001\000\027\000\249\001\000\000\
   3.599 -\\001\000\027\000\000\002\000\000\
   3.600 -\\001\000\027\000\004\002\000\000\
   3.601 -\\001\000\027\000\005\002\000\000\
   3.602 -\\001\000\027\000\009\002\000\000\
   3.603 +\\001\000\027\000\236\001\000\000\
   3.604 +\\001\000\027\000\237\001\000\000\
   3.605 +\\001\000\027\000\240\001\000\000\
   3.606 +\\001\000\027\000\245\001\060\000\214\001\000\000\
   3.607 +\\001\000\027\000\247\001\000\000\
   3.608 +\\001\000\027\000\248\001\000\000\
   3.609 +\\001\000\027\000\251\001\000\000\
   3.610 +\\001\000\027\000\002\002\000\000\
   3.611 +\\001\000\027\000\006\002\000\000\
   3.612 +\\001\000\027\000\007\002\000\000\
   3.613 +\\001\000\027\000\011\002\000\000\
   3.614  \\001\000\038\000\000\000\000\000\
   3.615  \\001\000\049\000\040\000\000\000\
   3.616 -\\001\000\050\000\097\000\000\000\
   3.617 +\\001\000\050\000\099\000\000\000\
   3.618  \\001\000\051\000\048\000\000\000\
   3.619 -\\001\000\061\000\233\000\000\000\
   3.620 -\\001\000\061\000\249\000\000\000\
   3.621 -\\001\000\061\000\020\001\000\000\
   3.622 -\\012\002\000\000\
   3.623 -\\013\002\000\000\
   3.624 +\\001\000\061\000\235\000\000\000\
   3.625 +\\001\000\061\000\251\000\000\000\
   3.626 +\\001\000\061\000\022\001\000\000\
   3.627  \\014\002\000\000\
   3.628 -\\015\002\013\000\016\000\052\000\015\000\068\000\014\000\069\000\013\000\
   3.629 +\\015\002\000\000\
   3.630 +\\016\002\000\000\
   3.631 +\\017\002\013\000\016\000\052\000\015\000\068\000\014\000\069\000\013\000\
   3.632  \\070\000\012\000\071\000\011\000\000\000\
   3.633 -\\016\002\000\000\
   3.634 -\\017\002\000\000\
   3.635  \\018\002\000\000\
   3.636  \\019\002\000\000\
   3.637  \\020\002\000\000\
   3.638 @@ -1788,22 +1786,22 @@
   3.639  \\024\002\000\000\
   3.640  \\025\002\000\000\
   3.641  \\026\002\000\000\
   3.642 -\\027\002\005\000\213\000\000\000\
   3.643 +\\027\002\000\000\
   3.644  \\028\002\000\000\
   3.645 -\\029\002\000\000\
   3.646 +\\029\002\005\000\215\000\000\000\
   3.647  \\030\002\000\000\
   3.648  \\031\002\000\000\
   3.649 +\\032\002\000\000\
   3.650  \\033\002\000\000\
   3.651 -\\034\002\000\000\
   3.652  \\035\002\000\000\
   3.653  \\036\002\000\000\
   3.654  \\037\002\000\000\
   3.655  \\038\002\000\000\
   3.656 -\\039\002\037\000\007\001\000\000\
   3.657 -\\040\002\001\000\008\001\000\000\
   3.658 -\\041\002\002\000\009\001\000\000\
   3.659 -\\042\002\000\000\
   3.660 -\\043\002\000\000\
   3.661 +\\039\002\000\000\
   3.662 +\\040\002\000\000\
   3.663 +\\041\002\037\000\009\001\000\000\
   3.664 +\\042\002\001\000\010\001\000\000\
   3.665 +\\043\002\002\000\011\001\000\000\
   3.666  \\044\002\000\000\
   3.667  \\045\002\000\000\
   3.668  \\046\002\000\000\
   3.669 @@ -1815,27 +1813,27 @@
   3.670  \\052\002\000\000\
   3.671  \\053\002\000\000\
   3.672  \\054\002\000\000\
   3.673 -\\055\002\005\000\182\001\000\000\
   3.674 +\\055\002\000\000\
   3.675  \\056\002\000\000\
   3.676 -\\057\002\000\000\
   3.677 -\\058\002\004\000\183\001\000\000\
   3.678 +\\057\002\005\000\184\001\000\000\
   3.679 +\\058\002\000\000\
   3.680  \\059\002\000\000\
   3.681 -\\060\002\000\000\
   3.682 +\\060\002\004\000\185\001\000\000\
   3.683  \\061\002\000\000\
   3.684  \\062\002\000\000\
   3.685  \\063\002\000\000\
   3.686  \\064\002\000\000\
   3.687  \\065\002\000\000\
   3.688  \\066\002\000\000\
   3.689 -\\069\002\000\000\
   3.690 -\\070\002\000\000\
   3.691 +\\067\002\000\000\
   3.692 +\\068\002\000\000\
   3.693  \\071\002\000\000\
   3.694  \\072\002\000\000\
   3.695 -\\073\002\060\000\018\001\000\000\
   3.696 -\\074\002\059\000\019\001\000\000\
   3.697 -\\075\002\009\000\017\001\000\000\
   3.698 -\\076\002\000\000\
   3.699 -\\077\002\000\000\
   3.700 +\\073\002\000\000\
   3.701 +\\074\002\000\000\
   3.702 +\\075\002\060\000\020\001\000\000\
   3.703 +\\076\002\059\000\021\001\000\000\
   3.704 +\\077\002\009\000\019\001\000\000\
   3.705  \\078\002\000\000\
   3.706  \\079\002\000\000\
   3.707  \\080\002\000\000\
   3.708 @@ -1843,21 +1841,21 @@
   3.709  \\082\002\000\000\
   3.710  \\083\002\000\000\
   3.711  \\084\002\000\000\
   3.712 -\\085\002\005\000\137\001\000\000\
   3.713 +\\085\002\000\000\
   3.714  \\086\002\000\000\
   3.715 -\\087\002\000\000\
   3.716 +\\087\002\005\000\139\001\000\000\
   3.717  \\088\002\000\000\
   3.718  \\089\002\000\000\
   3.719  \\090\002\000\000\
   3.720 -\\091\002\001\000\247\000\010\000\206\000\011\000\205\000\012\000\204\000\
   3.721 -\\019\000\201\000\021\000\199\000\022\000\198\000\037\000\246\000\000\000\
   3.722 +\\091\002\000\000\
   3.723  \\092\002\000\000\
   3.724 -\\093\002\000\000\
   3.725 +\\093\002\001\000\249\000\010\000\208\000\011\000\207\000\012\000\206\000\
   3.726 +\\019\000\203\000\021\000\201\000\022\000\200\000\037\000\248\000\000\000\
   3.727  \\094\002\000\000\
   3.728 -\\095\002\037\000\243\000\000\000\
   3.729 -\\096\002\001\000\244\000\000\000\
   3.730 -\\097\002\000\000\
   3.731 -\\098\002\000\000\
   3.732 +\\095\002\000\000\
   3.733 +\\096\002\000\000\
   3.734 +\\097\002\037\000\245\000\000\000\
   3.735 +\\098\002\001\000\246\000\000\000\
   3.736  \\099\002\000\000\
   3.737  \\100\002\000\000\
   3.738  \\101\002\000\000\
   3.739 @@ -1867,12 +1865,12 @@
   3.740  \\105\002\000\000\
   3.741  \\106\002\000\000\
   3.742  \\107\002\000\000\
   3.743 -\\108\002\005\000\173\001\000\000\
   3.744 +\\108\002\000\000\
   3.745  \\109\002\000\000\
   3.746 -\\110\002\000\000\
   3.747 -\\111\002\004\000\174\001\000\000\
   3.748 +\\110\002\005\000\175\001\000\000\
   3.749 +\\111\002\000\000\
   3.750  \\112\002\000\000\
   3.751 -\\113\002\000\000\
   3.752 +\\113\002\004\000\176\001\000\000\
   3.753  \\114\002\000\000\
   3.754  \\115\002\000\000\
   3.755  \\116\002\000\000\
   3.756 @@ -1884,40 +1882,40 @@
   3.757  \\122\002\000\000\
   3.758  \\123\002\000\000\
   3.759  \\124\002\000\000\
   3.760 -\\125\002\005\000\103\001\000\000\
   3.761 +\\125\002\000\000\
   3.762  \\126\002\000\000\
   3.763 -\\127\002\000\000\
   3.764 -\\131\002\000\000\
   3.765 -\\132\002\000\000\
   3.766 +\\127\002\005\000\105\001\000\000\
   3.767 +\\128\002\000\000\
   3.768 +\\129\002\000\000\
   3.769  \\133\002\000\000\
   3.770  \\134\002\000\000\
   3.771  \\135\002\000\000\
   3.772  \\136\002\000\000\
   3.773  \\137\002\000\000\
   3.774 -\\137\002\060\000\210\001\000\000\
   3.775  \\138\002\000\000\
   3.776 -\\139\002\016\000\165\001\000\000\
   3.777 +\\139\002\000\000\
   3.778 +\\139\002\060\000\212\001\000\000\
   3.779  \\140\002\000\000\
   3.780 -\\141\002\000\000\
   3.781 +\\141\002\016\000\167\001\000\000\
   3.782  \\142\002\000\000\
   3.783 -\\143\002\005\000\239\001\000\000\
   3.784 +\\143\002\000\000\
   3.785  \\144\002\000\000\
   3.786 -\\145\002\000\000\
   3.787 +\\145\002\005\000\241\001\000\000\
   3.788  \\146\002\000\000\
   3.789  \\147\002\000\000\
   3.790  \\148\002\000\000\
   3.791 +\\149\002\000\000\
   3.792  \\150\002\000\000\
   3.793 -\\151\002\000\000\
   3.794  \\152\002\000\000\
   3.795 -\\153\002\001\000\232\000\010\000\206\000\011\000\205\000\012\000\204\000\
   3.796 -\\019\000\201\000\021\000\199\000\022\000\198\000\037\000\231\000\000\000\
   3.797 +\\153\002\000\000\
   3.798  \\154\002\000\000\
   3.799 -\\155\002\000\000\
   3.800 +\\155\002\001\000\234\000\010\000\208\000\011\000\207\000\012\000\206\000\
   3.801 +\\019\000\203\000\021\000\201\000\022\000\200\000\037\000\233\000\000\000\
   3.802  \\156\002\000\000\
   3.803 -\\157\002\037\000\228\000\000\000\
   3.804 -\\158\002\001\000\229\000\000\000\
   3.805 -\\159\002\000\000\
   3.806 -\\160\002\000\000\
   3.807 +\\157\002\000\000\
   3.808 +\\158\002\000\000\
   3.809 +\\159\002\037\000\230\000\000\000\
   3.810 +\\160\002\001\000\231\000\000\000\
   3.811  \\161\002\000\000\
   3.812  \\162\002\000\000\
   3.813  \\163\002\000\000\
   3.814 @@ -1925,28 +1923,28 @@
   3.815  \\165\002\000\000\
   3.816  \\166\002\000\000\
   3.817  \\167\002\000\000\
   3.818 -\\168\002\005\000\161\001\000\000\
   3.819 +\\168\002\000\000\
   3.820  \\169\002\000\000\
   3.821 -\\170\002\000\000\
   3.822 +\\170\002\005\000\163\001\000\000\
   3.823  \\171\002\000\000\
   3.824  \\172\002\000\000\
   3.825  \\173\002\000\000\
   3.826  \\174\002\000\000\
   3.827  \\175\002\000\000\
   3.828 -\\176\002\005\000\073\001\000\000\
   3.829 +\\176\002\000\000\
   3.830  \\177\002\000\000\
   3.831 -\\178\002\000\000\
   3.832 -\\179\002\037\000\214\000\000\000\
   3.833 +\\178\002\005\000\075\001\000\000\
   3.834 +\\179\002\000\000\
   3.835  \\180\002\000\000\
   3.836 -\\181\002\000\000\
   3.837 +\\181\002\037\000\216\000\000\000\
   3.838  \\182\002\000\000\
   3.839  \\183\002\000\000\
   3.840  \\184\002\000\000\
   3.841  \\185\002\000\000\
   3.842  \\186\002\000\000\
   3.843 -\\187\002\016\000\022\001\000\000\
   3.844 +\\187\002\000\000\
   3.845  \\188\002\000\000\
   3.846 -\\189\002\000\000\
   3.847 +\\189\002\016\000\024\001\000\000\
   3.848  \\190\002\000\000\
   3.849  \\191\002\000\000\
   3.850  \\192\002\000\000\
   3.851 @@ -1970,61 +1968,61 @@
   3.852  \\210\002\000\000\
   3.853  \\211\002\000\000\
   3.854  \\212\002\000\000\
   3.855 +\\213\002\000\000\
   3.856  \\214\002\000\000\
   3.857 -\\215\002\000\000\
   3.858  \\216\002\000\000\
   3.859 +\\217\002\000\000\
   3.860  \\218\002\000\000\
   3.861 -\\219\002\000\000\
   3.862 -\\223\002\000\000\
   3.863 -\\224\002\000\000\
   3.864 +\\220\002\000\000\
   3.865 +\\221\002\000\000\
   3.866  \\225\002\000\000\
   3.867  \\226\002\000\000\
   3.868 +\\227\002\000\000\
   3.869  \\228\002\000\000\
   3.870 -\\229\002\000\000\
   3.871  \\230\002\000\000\
   3.872  \\231\002\000\000\
   3.873  \\232\002\000\000\
   3.874  \\233\002\000\000\
   3.875  \\234\002\000\000\
   3.876  \\235\002\000\000\
   3.877 -\\235\002\066\000\023\001\000\000\
   3.878  \\236\002\000\000\
   3.879  \\237\002\000\000\
   3.880 -\\237\002\016\000\220\000\000\000\
   3.881 +\\237\002\066\000\025\001\000\000\
   3.882  \\238\002\000\000\
   3.883  \\239\002\000\000\
   3.884 +\\239\002\016\000\222\000\000\000\
   3.885  \\240\002\000\000\
   3.886  \\241\002\000\000\
   3.887  \\242\002\000\000\
   3.888  \\243\002\000\000\
   3.889  \\244\002\000\000\
   3.890  \\245\002\000\000\
   3.891 -\\246\002\016\000\216\000\000\000\
   3.892 +\\246\002\000\000\
   3.893  \\247\002\000\000\
   3.894 -\\248\002\000\000\
   3.895 +\\248\002\016\000\218\000\000\000\
   3.896  \\249\002\000\000\
   3.897 -\\250\002\016\000\215\000\000\000\
   3.898 +\\250\002\000\000\
   3.899  \\251\002\000\000\
   3.900 -\\252\002\000\000\
   3.901 -\\253\002\005\000\153\001\000\000\
   3.902 +\\252\002\016\000\217\000\000\000\
   3.903 +\\253\002\000\000\
   3.904  \\254\002\000\000\
   3.905 -\\255\002\000\000\
   3.906 +\\255\002\005\000\155\001\000\000\
   3.907  \\000\003\000\000\
   3.908  \\001\003\000\000\
   3.909  \\002\003\000\000\
   3.910 -\\003\003\005\000\143\001\000\000\
   3.911 +\\003\003\000\000\
   3.912  \\004\003\000\000\
   3.913 -\\005\003\000\000\
   3.914 +\\005\003\005\000\145\001\000\000\
   3.915  \\006\003\000\000\
   3.916 -\\007\003\005\000\046\000\000\000\
   3.917 +\\007\003\000\000\
   3.918  \\008\003\000\000\
   3.919 -\\009\003\005\000\211\000\000\000\
   3.920 -\\010\003\004\000\140\001\000\000\
   3.921 -\\011\003\000\000\
   3.922 -\\012\003\000\000\
   3.923 -\\013\003\016\000\141\001\000\000\
   3.924 +\\009\003\005\000\046\000\000\000\
   3.925 +\\010\003\000\000\
   3.926 +\\011\003\005\000\213\000\000\000\
   3.927 +\\012\003\004\000\142\001\000\000\
   3.928 +\\013\003\000\000\
   3.929  \\014\003\000\000\
   3.930 -\\015\003\000\000\
   3.931 +\\015\003\016\000\143\001\000\000\
   3.932  \\016\003\000\000\
   3.933  \\017\003\000\000\
   3.934  \\018\003\000\000\
   3.935 @@ -2037,9 +2035,9 @@
   3.936  \\025\003\000\000\
   3.937  \\026\003\000\000\
   3.938  \\027\003\000\000\
   3.939 -\\028\003\005\000\197\001\000\000\
   3.940 +\\028\003\000\000\
   3.941  \\029\003\000\000\
   3.942 -\\030\003\000\000\
   3.943 +\\030\003\005\000\199\001\000\000\
   3.944  \\031\003\000\000\
   3.945  \\032\003\000\000\
   3.946  \\033\003\000\000\
   3.947 @@ -2053,6 +2051,10 @@
   3.948  \\041\003\000\000\
   3.949  \\042\003\000\000\
   3.950  \\043\003\000\000\
   3.951 +\\044\003\000\000\
   3.952 +\\045\003\000\000\
   3.953 +\\046\003\000\000\
   3.954 +\\047\003\000\000\
   3.955  \"
   3.956  val actionRowNumbers =
   3.957  "\153\000\150\000\153\000\155\000\
   3.958 @@ -2062,135 +2064,135 @@
   3.959  \\061\000\061\000\061\000\061\000\
   3.960  \\152\000\144\000\158\001\157\001\
   3.961  \\020\000\164\001\163\001\162\001\
   3.962 -\\161\001\159\001\160\001\166\001\
   3.963 -\\167\001\165\001\021\000\022\000\
   3.964 -\\023\000\135\001\171\001\146\000\
   3.965 +\\161\001\159\001\160\001\168\001\
   3.966 +\\169\001\165\001\021\000\022\000\
   3.967 +\\023\000\135\001\173\001\146\000\
   3.968  \\146\000\146\000\146\000\105\000\
   3.969  \\064\000\024\000\166\000\025\000\
   3.970  \\026\000\027\000\091\000\061\000\
   3.971  \\053\000\041\000\042\000\007\000\
   3.972 -\\133\001\096\000\137\001\101\001\
   3.973 -\\165\000\055\001\056\001\060\001\
   3.974 -\\058\001\089\001\090\001\092\001\
   3.975 -\\093\001\091\001\100\001\098\001\
   3.976 -\\002\000\105\001\103\001\111\001\
   3.977 -\\112\001\003\000\116\001\004\000\
   3.978 -\\120\001\122\001\118\001\040\000\
   3.979 -\\109\001\168\001\113\001\099\001\
   3.980 -\\110\001\078\000\079\000\080\000\
   3.981 -\\123\001\119\001\114\001\124\001\
   3.982 -\\170\001\169\001\060\000\059\000\
   3.983 -\\165\000\026\001\028\001\030\001\
   3.984 -\\031\001\033\001\034\001\029\001\
   3.985 -\\039\001\040\001\027\001\147\000\
   3.986 -\\047\001\068\000\044\000\041\001\
   3.987 -\\087\001\078\001\041\000\043\000\
   3.988 -\\077\001\240\000\165\000\222\000\
   3.989 -\\225\000\227\000\228\000\230\000\
   3.990 -\\231\000\226\000\236\000\237\000\
   3.991 -\\223\000\013\000\239\000\224\000\
   3.992 -\\148\000\249\000\069\000\046\000\
   3.993 -\\238\000\006\000\005\000\081\000\
   3.994 -\\082\000\083\000\042\000\045\000\
   3.995 -\\165\000\167\000\169\000\172\000\
   3.996 -\\173\000\176\000\177\000\178\000\
   3.997 -\\011\000\185\000\186\000\170\000\
   3.998 -\\014\000\171\000\049\000\174\000\
   3.999 -\\207\000\208\000\209\000\000\000\
  3.1000 -\\189\000\188\000\168\000\149\000\
  3.1001 -\\199\000\070\000\061\001\063\001\
  3.1002 -\\065\001\073\001\062\001\074\001\
  3.1003 -\\072\001\071\001\102\001\106\001\
  3.1004 -\\115\001\104\001\198\000\084\000\
  3.1005 -\\085\000\067\001\068\001\076\001\
  3.1006 -\\075\001\070\001\069\001\085\001\
  3.1007 -\\083\001\082\001\097\001\084\001\
  3.1008 -\\007\000\008\000\080\001\079\001\
  3.1009 -\\081\001\096\001\066\001\086\001\
  3.1010 -\\134\001\061\000\106\000\052\000\
  3.1011 -\\059\000\060\000\060\000\060\000\
  3.1012 -\\060\000\095\001\060\000\047\000\
  3.1013 -\\047\000\046\000\059\001\039\000\
  3.1014 -\\107\000\108\000\044\000\044\000\
  3.1015 -\\044\000\044\000\044\000\065\000\
  3.1016 -\\145\000\046\001\044\000\109\000\
  3.1017 -\\110\000\052\001\097\000\050\001\
  3.1018 -\\111\000\046\000\046\000\046\000\
  3.1019 -\\046\000\046\000\054\000\066\000\
  3.1020 -\\145\000\248\000\046\000\047\000\
  3.1021 -\\047\000\046\000\112\000\113\000\
  3.1022 -\\114\000\004\001\098\000\001\001\
  3.1023 -\\115\000\010\000\010\000\010\000\
  3.1024 +\\133\001\096\000\137\001\123\001\
  3.1025 +\\119\001\101\001\165\000\055\001\
  3.1026 +\\056\001\060\001\058\001\089\001\
  3.1027 +\\090\001\092\001\093\001\091\001\
  3.1028 +\\100\001\098\001\002\000\105\001\
  3.1029 +\\103\001\111\001\112\001\003\000\
  3.1030 +\\116\001\004\000\120\001\122\001\
  3.1031 +\\118\001\040\000\109\001\170\001\
  3.1032 +\\113\001\099\001\110\001\078\000\
  3.1033 +\\079\000\080\000\167\001\166\001\
  3.1034 +\\114\001\124\001\172\001\171\001\
  3.1035 +\\060\000\059\000\165\000\026\001\
  3.1036 +\\028\001\030\001\031\001\033\001\
  3.1037 +\\034\001\029\001\039\001\040\001\
  3.1038 +\\027\001\147\000\047\001\068\000\
  3.1039 +\\044\000\041\001\087\001\078\001\
  3.1040 +\\041\000\043\000\077\001\240\000\
  3.1041 +\\165\000\222\000\225\000\227\000\
  3.1042 +\\228\000\230\000\231\000\226\000\
  3.1043 +\\236\000\237\000\223\000\013\000\
  3.1044 +\\239\000\224\000\148\000\249\000\
  3.1045 +\\069\000\046\000\238\000\006\000\
  3.1046 +\\005\000\081\000\082\000\083\000\
  3.1047 +\\042\000\045\000\165\000\167\000\
  3.1048 +\\169\000\172\000\173\000\176\000\
  3.1049 +\\177\000\178\000\011\000\185\000\
  3.1050 +\\186\000\170\000\014\000\171\000\
  3.1051 +\\049\000\174\000\207\000\208\000\
  3.1052 +\\209\000\000\000\189\000\188\000\
  3.1053 +\\168\000\149\000\199\000\070\000\
  3.1054 +\\061\001\063\001\065\001\073\001\
  3.1055 +\\062\001\074\001\072\001\071\001\
  3.1056 +\\102\001\106\001\115\001\104\001\
  3.1057 +\\198\000\084\000\085\000\067\001\
  3.1058 +\\068\001\076\001\075\001\070\001\
  3.1059 +\\069\001\085\001\083\001\082\001\
  3.1060 +\\097\001\084\001\007\000\008\000\
  3.1061 +\\080\001\079\001\081\001\096\001\
  3.1062 +\\066\001\086\001\134\001\061\000\
  3.1063 +\\106\000\052\000\059\000\060\000\
  3.1064 +\\060\000\060\000\060\000\095\001\
  3.1065 +\\060\000\047\000\047\000\046\000\
  3.1066 +\\059\001\039\000\107\000\108\000\
  3.1067 +\\044\000\044\000\044\000\044\000\
  3.1068 +\\044\000\065\000\145\000\046\001\
  3.1069 +\\044\000\109\000\110\000\052\001\
  3.1070 +\\097\000\050\001\111\000\046\000\
  3.1071 +\\046\000\046\000\046\000\046\000\
  3.1072 +\\054\000\066\000\145\000\248\000\
  3.1073 +\\046\000\047\000\047\000\046\000\
  3.1074 +\\112\000\113\000\114\000\004\001\
  3.1075 +\\098\000\001\001\115\000\010\000\
  3.1076  \\010\000\010\000\010\000\010\000\
  3.1077 -\\009\000\010\000\010\000\010\000\
  3.1078 -\\010\000\010\000\067\000\145\000\
  3.1079 -\\009\000\063\000\012\000\009\000\
  3.1080 -\\116\000\117\000\220\000\099\000\
  3.1081 -\\218\000\009\000\136\001\092\000\
  3.1082 -\\142\001\146\001\144\001\143\001\
  3.1083 -\\138\001\141\001\131\001\140\001\
  3.1084 -\\145\001\086\000\087\000\088\000\
  3.1085 -\\089\000\090\000\051\000\057\001\
  3.1086 -\\118\000\125\001\119\000\094\001\
  3.1087 -\\064\001\120\000\028\000\253\000\
  3.1088 -\\029\000\254\000\030\000\054\001\
  3.1089 -\\093\000\036\001\038\001\032\001\
  3.1090 -\\035\001\037\001\048\001\100\000\
  3.1091 -\\044\001\042\001\049\001\044\000\
  3.1092 -\\051\001\094\000\233\000\235\000\
  3.1093 -\\229\000\232\000\234\000\008\001\
  3.1094 -\\005\001\050\000\019\000\007\001\
  3.1095 -\\017\001\019\001\016\001\088\001\
  3.1096 -\\072\000\055\000\255\000\101\000\
  3.1097 -\\243\000\245\000\246\000\031\000\
  3.1098 -\\032\000\033\000\241\000\006\001\
  3.1099 -\\000\001\046\000\002\001\095\000\
  3.1100 -\\180\000\187\000\009\000\182\000\
  3.1101 -\\184\000\175\000\179\000\183\000\
  3.1102 -\\181\000\205\000\203\000\206\000\
  3.1103 -\\212\000\214\000\210\000\211\000\
  3.1104 -\\213\000\215\000\216\000\102\000\
  3.1105 -\\192\000\194\000\195\000\121\000\
  3.1106 -\\204\000\108\001\034\000\202\000\
  3.1107 -\\035\000\001\000\217\000\009\000\
  3.1108 -\\219\000\163\000\052\000\052\000\
  3.1109 -\\164\000\071\000\042\000\060\000\
  3.1110 -\\053\000\041\000\007\000\156\001\
  3.1111 -\\103\000\154\001\121\001\060\000\
  3.1112 -\\117\001\107\001\060\000\060\000\
  3.1113 -\\060\000\162\000\015\000\145\000\
  3.1114 -\\053\001\161\000\062\000\062\000\
  3.1115 -\\145\000\122\000\014\001\123\000\
  3.1116 -\\124\000\055\000\016\000\145\000\
  3.1117 -\\062\000\042\000\042\000\046\000\
  3.1118 -\\003\001\160\000\125\000\017\000\
  3.1119 -\\145\000\009\000\197\000\007\000\
  3.1120 -\\009\000\221\000\139\001\126\000\
  3.1121 -\\130\001\132\001\127\000\128\000\
  3.1122 -\\129\000\130\000\131\000\052\000\
  3.1123 -\\153\001\126\001\132\000\133\000\
  3.1124 -\\036\000\044\000\045\001\022\001\
  3.1125 -\\134\000\020\001\104\000\010\001\
  3.1126 -\\062\000\023\001\062\000\015\001\
  3.1127 -\\135\000\046\000\244\000\247\000\
  3.1128 -\\136\000\137\000\037\000\190\000\
  3.1129 -\\010\000\193\000\196\000\138\000\
  3.1130 -\\038\000\147\001\149\001\152\001\
  3.1131 -\\151\001\150\001\148\001\155\001\
  3.1132 -\\129\001\128\001\060\000\043\001\
  3.1133 -\\018\001\062\000\018\000\024\001\
  3.1134 -\\025\001\048\000\242\000\252\000\
  3.1135 -\\251\000\046\000\191\000\201\000\
  3.1136 -\\009\000\139\000\021\001\056\000\
  3.1137 -\\140\000\141\000\127\001\009\001\
  3.1138 -\\011\001\057\000\250\000\200\000\
  3.1139 -\\013\001\142\000\058\000\012\001\
  3.1140 -\\058\000\143\000"
  3.1141 +\\010\000\010\000\009\000\010\000\
  3.1142 +\\010\000\010\000\010\000\010\000\
  3.1143 +\\067\000\145\000\009\000\063\000\
  3.1144 +\\012\000\009\000\116\000\117\000\
  3.1145 +\\220\000\099\000\218\000\009\000\
  3.1146 +\\136\001\092\000\142\001\146\001\
  3.1147 +\\144\001\143\001\138\001\141\001\
  3.1148 +\\131\001\140\001\145\001\086\000\
  3.1149 +\\087\000\088\000\089\000\090\000\
  3.1150 +\\051\000\057\001\118\000\125\001\
  3.1151 +\\119\000\094\001\064\001\120\000\
  3.1152 +\\028\000\253\000\029\000\254\000\
  3.1153 +\\030\000\054\001\093\000\036\001\
  3.1154 +\\038\001\032\001\035\001\037\001\
  3.1155 +\\048\001\100\000\044\001\042\001\
  3.1156 +\\049\001\044\000\051\001\094\000\
  3.1157 +\\233\000\235\000\229\000\232\000\
  3.1158 +\\234\000\088\001\008\001\005\001\
  3.1159 +\\050\000\019\000\007\001\017\001\
  3.1160 +\\019\001\016\001\072\000\055\000\
  3.1161 +\\255\000\101\000\243\000\245\000\
  3.1162 +\\246\000\031\000\032\000\033\000\
  3.1163 +\\241\000\006\001\000\001\046\000\
  3.1164 +\\002\001\095\000\180\000\187\000\
  3.1165 +\\009\000\182\000\184\000\175\000\
  3.1166 +\\179\000\183\000\181\000\205\000\
  3.1167 +\\203\000\206\000\212\000\214\000\
  3.1168 +\\210\000\211\000\213\000\215\000\
  3.1169 +\\216\000\102\000\192\000\194\000\
  3.1170 +\\195\000\121\000\204\000\108\001\
  3.1171 +\\034\000\202\000\035\000\001\000\
  3.1172 +\\217\000\009\000\219\000\163\000\
  3.1173 +\\052\000\052\000\164\000\071\000\
  3.1174 +\\042\000\060\000\053\000\041\000\
  3.1175 +\\007\000\156\001\103\000\154\001\
  3.1176 +\\121\001\060\000\117\001\107\001\
  3.1177 +\\060\000\060\000\060\000\162\000\
  3.1178 +\\015\000\145\000\053\001\161\000\
  3.1179 +\\062\000\062\000\145\000\122\000\
  3.1180 +\\014\001\123\000\124\000\055\000\
  3.1181 +\\016\000\145\000\062\000\042\000\
  3.1182 +\\042\000\046\000\003\001\160\000\
  3.1183 +\\125\000\017\000\145\000\009\000\
  3.1184 +\\197\000\007\000\009\000\221\000\
  3.1185 +\\139\001\126\000\130\001\132\001\
  3.1186 +\\127\000\128\000\129\000\130\000\
  3.1187 +\\131\000\052\000\153\001\126\001\
  3.1188 +\\132\000\133\000\036\000\044\000\
  3.1189 +\\045\001\022\001\134\000\020\001\
  3.1190 +\\104\000\010\001\062\000\023\001\
  3.1191 +\\062\000\015\001\135\000\046\000\
  3.1192 +\\244\000\247\000\136\000\137\000\
  3.1193 +\\037\000\190\000\010\000\193\000\
  3.1194 +\\196\000\138\000\038\000\147\001\
  3.1195 +\\149\001\152\001\151\001\150\001\
  3.1196 +\\148\001\155\001\129\001\128\001\
  3.1197 +\\060\000\043\001\018\001\062\000\
  3.1198 +\\018\000\024\001\025\001\048\000\
  3.1199 +\\242\000\252\000\251\000\046\000\
  3.1200 +\\191\000\201\000\009\000\139\000\
  3.1201 +\\021\001\056\000\140\000\141\000\
  3.1202 +\\127\001\009\001\011\001\057\000\
  3.1203 +\\250\000\200\000\013\001\142\000\
  3.1204 +\\058\000\012\001\058\000\143\000"
  3.1205  val gotoT =
  3.1206  "\
  3.1207  \\128\000\008\000\129\000\007\000\130\000\006\000\131\000\005\000\
  3.1208  \\132\000\004\000\133\000\003\000\134\000\002\000\135\000\001\000\
  3.1209 -\\136\000\009\002\000\000\
  3.1210 +\\136\000\011\002\000\000\
  3.1211  \\000\000\
  3.1212  \\128\000\008\000\129\000\007\000\130\000\006\000\131\000\005\000\
  3.1213  \\132\000\004\000\133\000\003\000\134\000\002\000\135\000\015\000\000\000\
  3.1214 @@ -2244,1140 +2246,1191 @@
  3.1215  \\000\000\
  3.1216  \\000\000\
  3.1217  \\002\000\058\000\003\000\057\000\009\000\023\000\014\000\022\000\000\000\
  3.1218 -\\009\000\088\000\011\000\087\000\012\000\086\000\014\000\085\000\
  3.1219 -\\019\000\084\000\020\000\083\000\022\000\082\000\023\000\081\000\
  3.1220 -\\024\000\080\000\025\000\079\000\026\000\078\000\027\000\077\000\
  3.1221 -\\028\000\076\000\029\000\075\000\030\000\074\000\031\000\073\000\
  3.1222 -\\032\000\072\000\033\000\071\000\034\000\070\000\035\000\069\000\
  3.1223 -\\039\000\068\000\042\000\067\000\043\000\066\000\044\000\065\000\
  3.1224 -\\045\000\064\000\055\000\063\000\057\000\062\000\058\000\061\000\
  3.1225 -\\059\000\060\000\144\000\059\000\000\000\
  3.1226 -\\009\000\088\000\011\000\087\000\012\000\086\000\014\000\085\000\
  3.1227 -\\019\000\084\000\020\000\083\000\022\000\082\000\023\000\081\000\
  3.1228 -\\024\000\080\000\025\000\079\000\026\000\078\000\027\000\077\000\
  3.1229 -\\028\000\076\000\029\000\075\000\030\000\074\000\031\000\073\000\
  3.1230 -\\032\000\072\000\033\000\071\000\034\000\070\000\035\000\069\000\
  3.1231 -\\039\000\068\000\042\000\067\000\043\000\066\000\044\000\065\000\
  3.1232 -\\045\000\115\000\046\000\114\000\051\000\113\000\055\000\112\000\
  3.1233 -\\061\000\111\000\062\000\110\000\063\000\109\000\065\000\108\000\
  3.1234 -\\066\000\107\000\067\000\106\000\068\000\105\000\069\000\104\000\
  3.1235 -\\070\000\103\000\071\000\102\000\072\000\101\000\073\000\100\000\
  3.1236 -\\144\000\059\000\000\000\
  3.1237 -\\009\000\088\000\011\000\087\000\012\000\086\000\014\000\085\000\
  3.1238 -\\019\000\142\000\020\000\083\000\022\000\082\000\023\000\141\000\
  3.1239 -\\024\000\080\000\025\000\079\000\026\000\078\000\027\000\077\000\
  3.1240 -\\028\000\076\000\029\000\075\000\030\000\074\000\031\000\073\000\
  3.1241 -\\032\000\072\000\033\000\071\000\034\000\070\000\035\000\069\000\
  3.1242 -\\039\000\068\000\042\000\067\000\043\000\066\000\044\000\065\000\
  3.1243 -\\045\000\140\000\046\000\139\000\051\000\138\000\055\000\137\000\
  3.1244 -\\074\000\136\000\076\000\135\000\077\000\134\000\083\000\133\000\
  3.1245 -\\084\000\132\000\085\000\131\000\089\000\130\000\090\000\129\000\
  3.1246 -\\091\000\128\000\092\000\127\000\093\000\126\000\094\000\125\000\
  3.1247 -\\095\000\124\000\096\000\123\000\097\000\122\000\138\000\121\000\
  3.1248 -\\144\000\059\000\000\000\
  3.1249 -\\009\000\088\000\011\000\087\000\012\000\086\000\014\000\085\000\
  3.1250 -\\019\000\084\000\020\000\186\000\022\000\082\000\023\000\081\000\
  3.1251 -\\024\000\080\000\025\000\185\000\026\000\078\000\027\000\184\000\
  3.1252 -\\028\000\076\000\029\000\075\000\030\000\074\000\031\000\183\000\
  3.1253 -\\032\000\182\000\033\000\071\000\034\000\070\000\036\000\181\000\
  3.1254 -\\037\000\180\000\046\000\179\000\049\000\178\000\050\000\177\000\
  3.1255 -\\051\000\176\000\052\000\175\000\053\000\174\000\054\000\173\000\
  3.1256 -\\056\000\172\000\098\000\171\000\100\000\170\000\101\000\169\000\
  3.1257 -\\102\000\168\000\103\000\167\000\104\000\166\000\105\000\165\000\
  3.1258 -\\106\000\164\000\107\000\163\000\108\000\162\000\110\000\161\000\
  3.1259 -\\111\000\160\000\112\000\159\000\113\000\158\000\117\000\157\000\
  3.1260 -\\118\000\156\000\119\000\155\000\120\000\154\000\121\000\153\000\
  3.1261 -\\122\000\152\000\123\000\151\000\124\000\150\000\125\000\149\000\
  3.1262 -\\126\000\148\000\144\000\059\000\000\000\
  3.1263 -\\000\000\
  3.1264 -\\000\000\
  3.1265 -\\000\000\
  3.1266 -\\000\000\
  3.1267 -\\001\000\210\000\000\000\
  3.1268 -\\000\000\
  3.1269 -\\000\000\
  3.1270 -\\000\000\
  3.1271 -\\000\000\
  3.1272 -\\000\000\
  3.1273 -\\000\000\
  3.1274 -\\000\000\
  3.1275 -\\000\000\
  3.1276 -\\000\000\
  3.1277 -\\000\000\
  3.1278 -\\000\000\
  3.1279 -\\000\000\
  3.1280 -\\000\000\
  3.1281 -\\000\000\
  3.1282 -\\000\000\
  3.1283 -\\000\000\
  3.1284 -\\000\000\
  3.1285 -\\000\000\
  3.1286 -\\000\000\
  3.1287 -\\000\000\
  3.1288 -\\000\000\
  3.1289 -\\000\000\
  3.1290 -\\036\000\217\000\037\000\216\000\038\000\215\000\000\000\
  3.1291 -\\000\000\
  3.1292 -\\000\000\
  3.1293 -\\000\000\
  3.1294 -\\000\000\
  3.1295 -\\000\000\
  3.1296 -\\000\000\
  3.1297 -\\000\000\
  3.1298 -\\000\000\
  3.1299 -\\000\000\
  3.1300 -\\000\000\
  3.1301 -\\000\000\
  3.1302 -\\000\000\
  3.1303 -\\000\000\
  3.1304 -\\000\000\
  3.1305 -\\009\000\088\000\011\000\087\000\012\000\086\000\014\000\085\000\
  3.1306 -\\019\000\084\000\020\000\223\000\022\000\082\000\023\000\081\000\
  3.1307 -\\024\000\080\000\025\000\079\000\026\000\078\000\027\000\077\000\
  3.1308 -\\028\000\076\000\029\000\075\000\030\000\074\000\031\000\073\000\
  3.1309 -\\032\000\072\000\033\000\071\000\034\000\070\000\035\000\069\000\
  3.1310 -\\039\000\068\000\042\000\067\000\043\000\066\000\044\000\065\000\
  3.1311 -\\045\000\222\000\144\000\059\000\000\000\
  3.1312 -\\009\000\088\000\011\000\087\000\012\000\086\000\014\000\085\000\
  3.1313 -\\019\000\084\000\020\000\083\000\022\000\082\000\023\000\081\000\
  3.1314 -\\024\000\080\000\025\000\079\000\026\000\078\000\027\000\077\000\
  3.1315 -\\028\000\076\000\029\000\075\000\030\000\074\000\031\000\073\000\
  3.1316 -\\032\000\072\000\033\000\071\000\034\000\070\000\035\000\069\000\
  3.1317 -\\039\000\068\000\042\000\067\000\043\000\066\000\044\000\065\000\
  3.1318 -\\045\000\064\000\055\000\063\000\057\000\062\000\058\000\224\000\
  3.1319 -\\144\000\059\000\000\000\
  3.1320 -\\001\000\225\000\000\000\
  3.1321 -\\000\000\
  3.1322 -\\000\000\
  3.1323 -\\000\000\
  3.1324 -\\000\000\
  3.1325 -\\000\000\
  3.1326 -\\000\000\
  3.1327 -\\050\000\228\000\000\000\
  3.1328 -\\000\000\
  3.1329 -\\000\000\
  3.1330 -\\000\000\
  3.1331 -\\000\000\
  3.1332 -\\000\000\
  3.1333 -\\000\000\
  3.1334 -\\009\000\088\000\011\000\087\000\012\000\086\000\014\000\085\000\
  3.1335 -\\019\000\084\000\020\000\083\000\022\000\082\000\023\000\081\000\
  3.1336 -\\024\000\080\000\025\000\079\000\026\000\078\000\027\000\077\000\
  3.1337 -\\028\000\076\000\029\000\075\000\030\000\074\000\031\000\073\000\
  3.1338 -\\032\000\072\000\033\000\071\000\034\000\070\000\035\000\069\000\
  3.1339 -\\039\000\068\000\042\000\067\000\043\000\066\000\044\000\065\000\
  3.1340 -\\045\000\115\000\046\000\114\000\051\000\113\000\055\000\112\000\
  3.1341 -\\063\000\109\000\065\000\108\000\066\000\233\000\144\000\059\000\000\000\
  3.1342 -\\000\000\
  3.1343 -\\000\000\
  3.1344 -\\000\000\
  3.1345 -\\009\000\088\000\011\000\087\000\012\000\086\000\014\000\085\000\
  3.1346 -\\019\000\084\000\020\000\083\000\022\000\082\000\023\000\081\000\
  3.1347 -\\024\000\080\000\025\000\079\000\026\000\078\000\027\000\077\000\
  3.1348 -\\028\000\076\000\029\000\075\000\030\000\074\000\031\000\073\000\
  3.1349 -\\032\000\072\000\033\000\071\000\034\000\070\000\035\000\069\000\
  3.1350 -\\039\000\068\000\042\000\067\000\043\000\066\000\044\000\065\000\
  3.1351 -\\045\000\115\000\046\000\114\000\051\000\113\000\055\000\112\000\
  3.1352 -\\061\000\111\000\062\000\236\000\063\000\109\000\065\000\108\000\
  3.1353 -\\066\000\107\000\067\000\106\000\068\000\105\000\069\000\104\000\
  3.1354 -\\070\000\103\000\071\000\102\000\072\000\235\000\144\000\059\000\000\000\
  3.1355 -\\009\000\088\000\011\000\087\000\012\000\086\000\014\000\085\000\
  3.1356 -\\019\000\084\000\020\000\083\000\022\000\082\000\023\000\081\000\
  3.1357 -\\024\000\080\000\025\000\079\000\026\000\078\000\027\000\077\000\
  3.1358 -\\028\000\076\000\029\000\075\000\030\000\074\000\031\000\073\000\
  3.1359 -\\032\000\072\000\033\000\071\000\034\000\070\000\035\000\069\000\
  3.1360 -\\039\000\068\000\042\000\067\000\043\000\066\000\044\000\065\000\
  3.1361 -\\045\000\115\000\046\000\114\000\051\000\113\000\055\000\112\000\
  3.1362 -\\060\000\238\000\063\000\109\000\065\000\108\000\066\000\107\000\
  3.1363 -\\067\000\106\000\068\000\105\000\069\000\104\000\070\000\103\000\
  3.1364 -\\071\000\102\000\072\000\237\000\144\000\059\000\000\000\
  3.1365 -\\000\000\
  3.1366 -\\000\000\
  3.1367 -\\001\000\240\000\000\000\
  3.1368 -\\000\000\
  3.1369 -\\000\000\
  3.1370 -\\000\000\
  3.1371 -\\000\000\
  3.1372 -\\000\000\
  3.1373 -\\000\000\
  3.1374 -\\050\000\243\000\000\000\
  3.1375 -\\000\000\
  3.1376 -\\000\000\
  3.1377 -\\000\000\
  3.1378 -\\000\000\
  3.1379 -\\000\000\
  3.1380 -\\000\000\
  3.1381 -\\000\000\
  3.1382 -\\000\000\
  3.1383 -\\000\000\
  3.1384 -\\009\000\088\000\011\000\087\000\012\000\086\000\014\000\085\000\
  3.1385 -\\019\000\084\000\020\000\083\000\022\000\082\000\023\000\081\000\
  3.1386 -\\024\000\080\000\025\000\079\000\026\000\078\000\027\000\077\000\
  3.1387 -\\028\000\076\000\029\000\075\000\030\000\074\000\031\000\073\000\
  3.1388 -\\032\000\072\000\033\000\071\000\034\000\070\000\035\000\069\000\
  3.1389 -\\039\000\068\000\042\000\067\000\043\000\066\000\044\000\065\000\
  3.1390 -\\045\000\140\000\046\000\139\000\051\000\138\000\055\000\137\000\
  3.1391 -\\077\000\134\000\085\000\131\000\089\000\130\000\090\000\249\000\
  3.1392 -\\138\000\121\000\144\000\059\000\000\000\
  3.1393 -\\000\000\
  3.1394 -\\000\000\
  3.1395 -\\000\000\
  3.1396 -\\000\000\
  3.1397 -\\000\000\
  3.1398 -\\000\000\
  3.1399 -\\009\000\088\000\011\000\087\000\012\000\086\000\014\000\085\000\
  3.1400 -\\019\000\142\000\020\000\083\000\022\000\082\000\023\000\141\000\
  3.1401 -\\024\000\080\000\025\000\079\000\026\000\078\000\027\000\077\000\
  3.1402 -\\028\000\076\000\029\000\075\000\030\000\074\000\031\000\073\000\
  3.1403 -\\032\000\072\000\033\000\071\000\034\000\070\000\035\000\069\000\
  3.1404 -\\039\000\068\000\042\000\067\000\043\000\066\000\044\000\065\000\
  3.1405 -\\045\000\140\000\046\000\139\000\051\000\138\000\055\000\137\000\
  3.1406 -\\074\000\136\000\076\000\000\001\077\000\134\000\083\000\133\000\
  3.1407 -\\084\000\255\000\085\000\131\000\089\000\130\000\090\000\129\000\
  3.1408 -\\091\000\128\000\092\000\127\000\093\000\126\000\094\000\125\000\
  3.1409 -\\095\000\124\000\096\000\254\000\138\000\121\000\144\000\059\000\000\000\
  3.1410 -\\009\000\088\000\011\000\087\000\012\000\086\000\014\000\085\000\
  3.1411 -\\019\000\084\000\020\000\083\000\022\000\082\000\023\000\081\000\
  3.1412 -\\024\000\080\000\025\000\079\000\026\000\078\000\027\000\077\000\
  3.1413 -\\028\000\076\000\029\000\075\000\030\000\074\000\031\000\073\000\
  3.1414 -\\032\000\072\000\033\000\071\000\034\000\070\000\035\000\069\000\
  3.1415 -\\039\000\068\000\042\000\067\000\043\000\066\000\044\000\065\000\
  3.1416 -\\045\000\140\000\046\000\139\000\051\000\138\000\055\000\137\000\
  3.1417 -\\075\000\002\001\077\000\134\000\085\000\131\000\089\000\130\000\
  3.1418 -\\090\000\129\000\091\000\128\000\092\000\127\000\093\000\126\000\
  3.1419 -\\094\000\125\000\095\000\124\000\096\000\001\001\138\000\121\000\
  3.1420 -\\144\000\059\000\000\000\
  3.1421 -\\001\000\004\001\000\000\
  3.1422 -\\000\000\
  3.1423 -\\000\000\
  3.1424 -\\000\000\
  3.1425 -\\000\000\
  3.1426 -\\000\000\
  3.1427 -\\000\000\
  3.1428 -\\000\000\
  3.1429 -\\036\000\181\000\037\000\180\000\050\000\177\000\053\000\008\001\000\000\
  3.1430 -\\000\000\
  3.1431 -\\000\000\
  3.1432 -\\000\000\
  3.1433 -\\000\000\
  3.1434 -\\000\000\
  3.1435 -\\000\000\
  3.1436 -\\000\000\
  3.1437 -\\000\000\
  3.1438 -\\000\000\
  3.1439 -\\000\000\
  3.1440 -\\000\000\
  3.1441 -\\000\000\
  3.1442 -\\000\000\
  3.1443 -\\000\000\
  3.1444 -\\000\000\
  3.1445 -\\000\000\
  3.1446 -\\000\000\
  3.1447 -\\000\000\
  3.1448 -\\000\000\
  3.1449 -\\000\000\
  3.1450 -\\000\000\
  3.1451 -\\000\000\
  3.1452 -\\000\000\
  3.1453 -\\000\000\
  3.1454 -\\000\000\
  3.1455 -\\000\000\
  3.1456 -\\000\000\
  3.1457 -\\000\000\
  3.1458 -\\000\000\
  3.1459 -\\000\000\
  3.1460 -\\000\000\
  3.1461 -\\000\000\
  3.1462 -\\000\000\
  3.1463 -\\000\000\
  3.1464 -\\000\000\
  3.1465 -\\000\000\
  3.1466 -\\000\000\
  3.1467 -\\000\000\
  3.1468 -\\000\000\
  3.1469 -\\000\000\
  3.1470 -\\000\000\
  3.1471 -\\000\000\
  3.1472 -\\000\000\
  3.1473 -\\009\000\088\000\011\000\087\000\012\000\086\000\014\000\085\000\
  3.1474 -\\019\000\084\000\020\000\186\000\022\000\082\000\023\000\081\000\
  3.1475 -\\024\000\080\000\025\000\185\000\026\000\078\000\027\000\184\000\
  3.1476 -\\028\000\076\000\029\000\075\000\030\000\074\000\031\000\183\000\
  3.1477 -\\032\000\182\000\033\000\071\000\034\000\070\000\036\000\181\000\
  3.1478 -\\037\000\180\000\046\000\179\000\049\000\178\000\050\000\177\000\
  3.1479 -\\051\000\176\000\052\000\175\000\053\000\174\000\054\000\173\000\
  3.1480 -\\056\000\172\000\098\000\171\000\100\000\025\001\101\000\169\000\
  3.1481 -\\102\000\168\000\103\000\167\000\104\000\166\000\105\000\165\000\
  3.1482 -\\106\000\164\000\107\000\163\000\108\000\162\000\110\000\161\000\
  3.1483 -\\111\000\160\000\112\000\159\000\113\000\158\000\117\000\157\000\
  3.1484 -\\118\000\156\000\119\000\155\000\120\000\154\000\121\000\153\000\
  3.1485 -\\122\000\152\000\123\000\151\000\124\000\150\000\125\000\024\001\
  3.1486 -\\144\000\059\000\000\000\
  3.1487 -\\009\000\088\000\011\000\087\000\012\000\086\000\014\000\085\000\
  3.1488 -\\019\000\084\000\020\000\186\000\022\000\082\000\023\000\081\000\
  3.1489 -\\024\000\080\000\025\000\185\000\026\000\078\000\027\000\184\000\
  3.1490 -\\028\000\076\000\029\000\075\000\030\000\074\000\031\000\183\000\
  3.1491 -\\032\000\182\000\033\000\071\000\034\000\070\000\036\000\181\000\
  3.1492 -\\037\000\180\000\046\000\179\000\049\000\178\000\050\000\177\000\
  3.1493 -\\051\000\176\000\052\000\175\000\053\000\174\000\054\000\173\000\
  3.1494 -\\056\000\172\000\099\000\027\001\101\000\169\000\102\000\168\000\
  3.1495 -\\103\000\167\000\104\000\166\000\105\000\165\000\106\000\164\000\
  3.1496 -\\107\000\163\000\108\000\162\000\110\000\161\000\111\000\160\000\
  3.1497 -\\112\000\159\000\113\000\158\000\117\000\157\000\118\000\156\000\
  3.1498 -\\119\000\155\000\120\000\154\000\121\000\153\000\122\000\152\000\
  3.1499 -\\123\000\151\000\124\000\150\000\125\000\026\001\144\000\059\000\000\000\
  3.1500 -\\000\000\
  3.1501 -\\000\000\
  3.1502 -\\000\000\
  3.1503 -\\000\000\
  3.1504 -\\000\000\
  3.1505 -\\000\000\
  3.1506 -\\000\000\
  3.1507 -\\002\000\058\000\003\000\030\001\009\000\023\000\014\000\022\000\000\000\
  3.1508 -\\000\000\
  3.1509 -\\006\000\039\001\008\000\038\001\009\000\037\001\010\000\036\001\
  3.1510 -\\011\000\035\001\012\000\034\001\013\000\033\001\014\000\085\000\
  3.1511 -\\016\000\032\001\000\000\
  3.1512 -\\009\000\088\000\011\000\087\000\012\000\086\000\014\000\085\000\
  3.1513 -\\019\000\084\000\020\000\083\000\022\000\082\000\023\000\081\000\
  3.1514 -\\024\000\080\000\025\000\079\000\026\000\078\000\027\000\077\000\
  3.1515 -\\028\000\076\000\029\000\075\000\030\000\074\000\031\000\073\000\
  3.1516 -\\032\000\072\000\033\000\071\000\034\000\070\000\035\000\069\000\
  3.1517 -\\039\000\068\000\042\000\067\000\043\000\066\000\044\000\065\000\
  3.1518 -\\045\000\064\000\055\000\063\000\057\000\047\001\144\000\059\000\000\000\
  3.1519 -\\009\000\088\000\011\000\087\000\012\000\086\000\014\000\085\000\
  3.1520 -\\019\000\084\000\020\000\049\001\021\000\048\001\022\000\082\000\
  3.1521 -\\023\000\081\000\024\000\080\000\025\000\185\000\026\000\078\000\
  3.1522 -\\027\000\184\000\028\000\076\000\029\000\075\000\030\000\074\000\
  3.1523 -\\031\000\073\000\032\000\182\000\033\000\071\000\034\000\070\000\
  3.1524 -\\144\000\059\000\000\000\
  3.1525 -\\009\000\088\000\011\000\087\000\012\000\086\000\014\000\085\000\
  3.1526 -\\019\000\084\000\020\000\049\001\021\000\050\001\022\000\082\000\
  3.1527 -\\023\000\081\000\024\000\080\000\025\000\185\000\026\000\078\000\
  3.1528 -\\027\000\184\000\028\000\076\000\029\000\075\000\030\000\074\000\
  3.1529 -\\031\000\073\000\032\000\182\000\033\000\071\000\034\000\070\000\
  3.1530 -\\144\000\059\000\000\000\
  3.1531 -\\009\000\088\000\011\000\087\000\012\000\086\000\014\000\085\000\
  3.1532 -\\019\000\084\000\020\000\051\001\022\000\082\000\023\000\081\000\
  3.1533 -\\024\000\080\000\025\000\185\000\026\000\078\000\027\000\184\000\
  3.1534 -\\028\000\076\000\029\000\075\000\030\000\074\000\031\000\073\000\
  3.1535 -\\032\000\182\000\033\000\071\000\034\000\070\000\144\000\059\000\000\000\
  3.1536 -\\009\000\088\000\011\000\087\000\012\000\086\000\014\000\085\000\
  3.1537 -\\019\000\084\000\020\000\052\001\022\000\082\000\023\000\081\000\
  3.1538 -\\024\000\080\000\025\000\185\000\026\000\078\000\027\000\184\000\
  3.1539 -\\028\000\076\000\029\000\075\000\030\000\074\000\031\000\073\000\
  3.1540 -\\032\000\182\000\033\000\071\000\034\000\070\000\144\000\059\000\000\000\
  3.1541 -\\000\000\
  3.1542 -\\009\000\088\000\011\000\087\000\012\000\086\000\014\000\085\000\
  3.1543 -\\019\000\084\000\020\000\049\001\021\000\053\001\022\000\082\000\
  3.1544 -\\023\000\081\000\024\000\080\000\025\000\185\000\026\000\078\000\
  3.1545 -\\027\000\184\000\028\000\076\000\029\000\075\000\030\000\074\000\
  3.1546 -\\031\000\073\000\032\000\182\000\033\000\071\000\034\000\070\000\
  3.1547 -\\144\000\059\000\000\000\
  3.1548 -\\051\000\138\000\089\000\055\001\139\000\054\001\000\000\
  3.1549 -\\051\000\138\000\089\000\057\001\140\000\056\001\000\000\
  3.1550 -\\009\000\088\000\011\000\087\000\012\000\086\000\014\000\085\000\
  3.1551 -\\019\000\084\000\020\000\083\000\022\000\082\000\023\000\081\000\
  3.1552 -\\024\000\080\000\025\000\079\000\026\000\078\000\027\000\077\000\
  3.1553 -\\028\000\076\000\029\000\075\000\030\000\074\000\031\000\073\000\
  3.1554 -\\032\000\072\000\033\000\071\000\034\000\070\000\035\000\069\000\
  3.1555 -\\039\000\068\000\042\000\067\000\043\000\066\000\044\000\065\000\
  3.1556 -\\045\000\140\000\046\000\139\000\051\000\138\000\055\000\137\000\
  3.1557 -\\077\000\134\000\085\000\131\000\089\000\130\000\090\000\129\000\
  3.1558 -\\091\000\128\000\092\000\127\000\093\000\126\000\094\000\125\000\
  3.1559 -\\095\000\124\000\096\000\058\001\138\000\121\000\144\000\059\000\000\000\
  3.1560 -\\000\000\
  3.1561 -\\036\000\217\000\038\000\215\000\000\000\
  3.1562 -\\000\000\
  3.1563 -\\000\000\
  3.1564 -\\009\000\088\000\011\000\087\000\012\000\086\000\014\000\085\000\
  3.1565 -\\019\000\084\000\020\000\083\000\022\000\082\000\023\000\081\000\
  3.1566 -\\024\000\080\000\025\000\079\000\026\000\078\000\027\000\077\000\
  3.1567 -\\028\000\076\000\029\000\075\000\030\000\074\000\031\000\073\000\
  3.1568 -\\032\000\072\000\033\000\071\000\034\000\070\000\035\000\069\000\
  3.1569 -\\039\000\068\000\042\000\067\000\043\000\066\000\044\000\065\000\
  3.1570 -\\045\000\115\000\046\000\114\000\051\000\113\000\055\000\112\000\
  3.1571 -\\063\000\109\000\065\000\108\000\066\000\061\001\144\000\059\000\000\000\
  3.1572 -\\009\000\088\000\011\000\087\000\012\000\086\000\014\000\085\000\
  3.1573 -\\019\000\084\000\020\000\083\000\022\000\082\000\023\000\081\000\
  3.1574 -\\024\000\080\000\025\000\079\000\026\000\078\000\027\000\077\000\
  3.1575 -\\028\000\076\000\029\000\075\000\030\000\074\000\031\000\073\000\
  3.1576 -\\032\000\072\000\033\000\071\000\034\000\070\000\035\000\069\000\
  3.1577 -\\039\000\068\000\042\000\067\000\043\000\066\000\044\000\065\000\
  3.1578 -\\045\000\115\000\046\000\114\000\051\000\113\000\055\000\112\000\
  3.1579 -\\063\000\109\000\065\000\108\000\066\000\062\001\144\000\059\000\000\000\
  3.1580 -\\009\000\088\000\011\000\087\000\012\000\086\000\014\000\085\000\
  3.1581 -\\019\000\084\000\020\000\083\000\022\000\082\000\023\000\081\000\
  3.1582 -\\024\000\080\000\025\000\079\000\026\000\078\000\027\000\077\000\
  3.1583 -\\028\000\076\000\029\000\075\000\030\000\074\000\031\000\073\000\
  3.1584 -\\032\000\072\000\033\000\071\000\034\000\070\000\035\000\069\000\
  3.1585 -\\039\000\068\000\042\000\067\000\043\000\066\000\044\000\065\000\
  3.1586 -\\045\000\115\000\046\000\114\000\051\000\113\000\055\000\112\000\
  3.1587 -\\063\000\109\000\065\000\108\000\066\000\063\001\144\000\059\000\000\000\
  3.1588 -\\009\000\088\000\011\000\087\000\012\000\086\000\014\000\085\000\
  3.1589 -\\019\000\084\000\020\000\083\000\022\000\082\000\023\000\081\000\
  3.1590 -\\024\000\080\000\025\000\079\000\026\000\078\000\027\000\077\000\
  3.1591 -\\028\000\076\000\029\000\075\000\030\000\074\000\031\000\073\000\
  3.1592 -\\032\000\072\000\033\000\071\000\034\000\070\000\035\000\069\000\
  3.1593 -\\039\000\068\000\042\000\067\000\043\000\066\000\044\000\065\000\
  3.1594 -\\045\000\115\000\046\000\114\000\051\000\113\000\055\000\112\000\
  3.1595 -\\063\000\109\000\065\000\108\000\066\000\064\001\144\000\059\000\000\000\
  3.1596 -\\009\000\088\000\011\000\087\000\012\000\086\000\014\000\085\000\
  3.1597 -\\019\000\084\000\020\000\083\000\022\000\082\000\023\000\081\000\
  3.1598 -\\024\000\080\000\025\000\079\000\026\000\078\000\027\000\077\000\
  3.1599 -\\028\000\076\000\029\000\075\000\030\000\074\000\031\000\073\000\
  3.1600 -\\032\000\072\000\033\000\071\000\034\000\070\000\035\000\069\000\
  3.1601 -\\039\000\068\000\042\000\067\000\043\000\066\000\044\000\065\000\
  3.1602 -\\045\000\115\000\046\000\114\000\051\000\113\000\055\000\112\000\
  3.1603 -\\063\000\109\000\065\000\108\000\066\000\065\001\144\000\059\000\000\000\
  3.1604 -\\061\000\066\001\000\000\
  3.1605 -\\011\000\068\001\064\000\067\001\000\000\
  3.1606 -\\000\000\
  3.1607 -\\009\000\088\000\011\000\087\000\012\000\086\000\014\000\085\000\
  3.1608 -\\019\000\084\000\020\000\083\000\022\000\082\000\023\000\081\000\
  3.1609 -\\024\000\080\000\025\000\079\000\026\000\078\000\027\000\077\000\
  3.1610 -\\028\000\076\000\029\000\075\000\030\000\074\000\031\000\073\000\
  3.1611 -\\032\000\072\000\033\000\071\000\034\000\070\000\035\000\069\000\
  3.1612 -\\039\000\068\000\042\000\067\000\043\000\066\000\044\000\065\000\
  3.1613 -\\045\000\115\000\046\000\114\000\051\000\113\000\055\000\112\000\
  3.1614 -\\063\000\109\000\065\000\108\000\066\000\107\000\067\000\106\000\
  3.1615 -\\068\000\105\000\069\000\104\000\070\000\103\000\071\000\102\000\
  3.1616 -\\072\000\235\000\144\000\059\000\000\000\
  3.1617 -\\000\000\
  3.1618 -\\000\000\
  3.1619 -\\000\000\
  3.1620 -\\000\000\
  3.1621 -\\000\000\
  3.1622 -\\000\000\
  3.1623 -\\009\000\088\000\011\000\087\000\012\000\086\000\014\000\085\000\
  3.1624 -\\019\000\084\000\020\000\083\000\022\000\082\000\023\000\081\000\
  3.1625 -\\024\000\080\000\025\000\079\000\026\000\078\000\027\000\077\000\
  3.1626 -\\028\000\076\000\029\000\075\000\030\000\074\000\031\000\073\000\
  3.1627 -\\032\000\072\000\033\000\071\000\034\000\070\000\035\000\069\000\
  3.1628 -\\039\000\068\000\042\000\067\000\043\000\066\000\044\000\065\000\
  3.1629 -\\045\000\140\000\046\000\139\000\051\000\138\000\055\000\137\000\
  3.1630 -\\077\000\134\000\085\000\131\000\089\000\130\000\090\000\074\001\
  3.1631 -\\138\000\121\000\144\000\059\000\000\000\
  3.1632 -\\009\000\088\000\011\000\087\000\012\000\086\000\014\000\085\000\
  3.1633 -\\019\000\084\000\020\000\083\000\022\000\082\000\023\000\081\000\
  3.1634 -\\024\000\080\000\025\000\079\000\026\000\078\000\027\000\077\000\
  3.1635 -\\028\000\076\000\029\000\075\000\030\000\074\000\031\000\073\000\
  3.1636 -\\032\000\072\000\033\000\071\000\034\000\070\000\035\000\069\000\
  3.1637 -\\039\000\068\000\042\000\067\000\043\000\066\000\044\000\065\000\
  3.1638 -\\045\000\140\000\046\000\139\000\051\000\138\000\055\000\137\000\
  3.1639 -\\077\000\134\000\085\000\131\000\089\000\130\000\090\000\075\001\
  3.1640 -\\138\000\121\000\144\000\059\000\000\000\
  3.1641 -\\009\000\088\000\011\000\087\000\012\000\086\000\014\000\085\000\
  3.1642 -\\019\000\084\000\020\000\083\000\022\000\082\000\023\000\081\000\
  3.1643 -\\024\000\080\000\025\000\079\000\026\000\078\000\027\000\077\000\
  3.1644 -\\028\000\076\000\029\000\075\000\030\000\074\000\031\000\073\000\
  3.1645 -\\032\000\072\000\033\000\071\000\034\000\070\000\035\000\069\000\
  3.1646 -\\039\000\068\000\042\000\067\000\043\000\066\000\044\000\065\000\
  3.1647 -\\045\000\140\000\046\000\139\000\051\000\138\000\055\000\137\000\
  3.1648 -\\077\000\134\000\085\000\131\000\089\000\130\000\090\000\076\001\
  3.1649 -\\138\000\121\000\144\000\059\000\000\000\
  3.1650 -\\009\000\088\000\011\000\087\000\012\000\086\000\014\000\085\000\
  3.1651 -\\019\000\084\000\020\000\083\000\022\000\082\000\023\000\081\000\
  3.1652 -\\024\000\080\000\025\000\079\000\026\000\078\000\027\000\077\000\
  3.1653 -\\028\000\076\000\029\000\075\000\030\000\074\000\031\000\073\000\
  3.1654 -\\032\000\072\000\033\000\071\000\034\000\070\000\035\000\069\000\
  3.1655 -\\039\000\068\000\042\000\067\000\043\000\066\000\044\000\065\000\
  3.1656 -\\045\000\140\000\046\000\139\000\051\000\138\000\055\000\137\000\
  3.1657 -\\077\000\134\000\085\000\131\000\089\000\130\000\090\000\077\001\
  3.1658 -\\138\000\121\000\144\000\059\000\000\000\
  3.1659 -\\009\000\088\000\011\000\087\000\012\000\086\000\014\000\085\000\
  3.1660 -\\019\000\084\000\020\000\083\000\022\000\082\000\023\000\081\000\
  3.1661 -\\024\000\080\000\025\000\079\000\026\000\078\000\027\000\077\000\
  3.1662 -\\028\000\076\000\029\000\075\000\030\000\074\000\031\000\073\000\
  3.1663 -\\032\000\072\000\033\000\071\000\034\000\070\000\035\000\069\000\
  3.1664 -\\039\000\068\000\042\000\067\000\043\000\066\000\044\000\065\000\
  3.1665 -\\045\000\140\000\046\000\139\000\051\000\138\000\055\000\137\000\
  3.1666 -\\077\000\134\000\085\000\131\000\089\000\130\000\090\000\078\001\
  3.1667 -\\138\000\121\000\144\000\059\000\000\000\
  3.1668 -\\009\000\086\001\011\000\085\001\047\000\084\001\079\000\083\001\
  3.1669 -\\080\000\082\001\081\000\081\001\082\000\080\001\141\000\079\001\000\000\
  3.1670 -\\074\000\090\001\000\000\
  3.1671 -\\011\000\094\001\086\000\093\001\087\000\092\001\088\000\091\001\000\000\
  3.1672 -\\000\000\
  3.1673 -\\009\000\088\000\011\000\087\000\012\000\086\000\014\000\085\000\
  3.1674 -\\019\000\084\000\020\000\083\000\022\000\082\000\023\000\081\000\
  3.1675 -\\024\000\080\000\025\000\079\000\026\000\078\000\027\000\077\000\
  3.1676 -\\028\000\076\000\029\000\075\000\030\000\074\000\031\000\073\000\
  3.1677 -\\032\000\072\000\033\000\071\000\034\000\070\000\035\000\069\000\
  3.1678 -\\039\000\068\000\042\000\067\000\043\000\066\000\044\000\065\000\
  3.1679 -\\045\000\140\000\046\000\139\000\051\000\138\000\055\000\137\000\
  3.1680 -\\077\000\134\000\085\000\131\000\089\000\130\000\090\000\129\000\
  3.1681 -\\091\000\128\000\092\000\127\000\093\000\126\000\094\000\125\000\
  3.1682 -\\095\000\124\000\096\000\254\000\138\000\121\000\144\000\059\000\000\000\
  3.1683 -\\051\000\138\000\089\000\057\001\140\000\095\001\000\000\
  3.1684 -\\051\000\138\000\089\000\055\001\139\000\096\001\000\000\
  3.1685 -\\009\000\088\000\011\000\087\000\012\000\086\000\014\000\085\000\
  3.1686 -\\019\000\084\000\020\000\083\000\022\000\082\000\023\000\081\000\
  3.1687 -\\024\000\080\000\025\000\079\000\026\000\078\000\027\000\077\000\
  3.1688 -\\028\000\076\000\029\000\075\000\030\000\074\000\031\000\073\000\
  3.1689 -\\032\000\072\000\033\000\071\000\034\000\070\000\035\000\069\000\
  3.1690 -\\039\000\068\000\042\000\067\000\043\000\066\000\044\000\065\000\
  3.1691 -\\045\000\140\000\046\000\139\000\051\000\138\000\055\000\137\000\
  3.1692 -\\077\000\134\000\085\000\131\000\089\000\130\000\090\000\129\000\
  3.1693 -\\091\000\128\000\092\000\127\000\093\000\126\000\094\000\125\000\
  3.1694 -\\095\000\124\000\096\000\097\001\138\000\121\000\144\000\059\000\000\000\
  3.1695 -\\000\000\
  3.1696 -\\000\000\
  3.1697 -\\000\000\
  3.1698 -\\000\000\
  3.1699 -\\000\000\
  3.1700 -\\000\000\
  3.1701 -\\000\000\
  3.1702 -\\009\000\088\000\011\000\087\000\012\000\086\000\014\000\085\000\
  3.1703 -\\019\000\084\000\020\000\186\000\022\000\082\000\023\000\081\000\
  3.1704 -\\024\000\080\000\025\000\185\000\026\000\078\000\027\000\184\000\
  3.1705 -\\028\000\076\000\029\000\075\000\030\000\074\000\031\000\073\000\
  3.1706 -\\032\000\182\000\033\000\071\000\034\000\070\000\036\000\181\000\
  3.1707 -\\037\000\180\000\046\000\179\000\049\000\178\000\050\000\177\000\
  3.1708 -\\051\000\176\000\052\000\175\000\053\000\174\000\054\000\173\000\
  3.1709 -\\056\000\172\000\101\000\169\000\102\000\168\000\103\000\105\001\
  3.1710 -\\113\000\158\000\117\000\157\000\118\000\104\001\144\000\059\000\000\000\
  3.1711 -\\009\000\088\000\011\000\087\000\012\000\086\000\014\000\085\000\
  3.1712 -\\019\000\084\000\020\000\186\000\022\000\082\000\023\000\081\000\
  3.1713 -\\024\000\080\000\025\000\185\000\026\000\078\000\027\000\184\000\
  3.1714 -\\028\000\076\000\029\000\075\000\030\000\074\000\031\000\073\000\
  3.1715 -\\032\000\182\000\033\000\071\000\034\000\070\000\036\000\181\000\
  3.1716 -\\037\000\180\000\046\000\179\000\049\000\178\000\050\000\177\000\
  3.1717 -\\051\000\176\000\052\000\175\000\053\000\174\000\054\000\173\000\
  3.1718 -\\056\000\172\000\101\000\169\000\102\000\168\000\103\000\105\001\
  3.1719 -\\113\000\158\000\117\000\157\000\118\000\107\001\144\000\059\000\000\000\
  3.1720 -\\009\000\088\000\011\000\087\000\012\000\086\000\014\000\085\000\
  3.1721 -\\019\000\084\000\020\000\186\000\022\000\082\000\023\000\081\000\
  3.1722 -\\024\000\080\000\025\000\185\000\026\000\078\000\027\000\184\000\
  3.1723 -\\028\000\076\000\029\000\075\000\030\000\074\000\031\000\073\000\
  3.1724 -\\032\000\182\000\033\000\071\000\034\000\070\000\036\000\181\000\
  3.1725 -\\037\000\180\000\046\000\179\000\049\000\178\000\050\000\177\000\
  3.1726 -\\051\000\176\000\052\000\175\000\053\000\174\000\054\000\173\000\
  3.1727 -\\056\000\172\000\101\000\169\000\102\000\168\000\103\000\105\001\
  3.1728 -\\113\000\158\000\117\000\157\000\118\000\108\001\144\000\059\000\000\000\
  3.1729 -\\009\000\088\000\011\000\087\000\012\000\086\000\014\000\085\000\
  3.1730 -\\019\000\084\000\020\000\186\000\022\000\082\000\023\000\081\000\
  3.1731 -\\024\000\080\000\025\000\185\000\026\000\078\000\027\000\184\000\
  3.1732 -\\028\000\076\000\029\000\075\000\030\000\074\000\031\000\073\000\
  3.1733 -\\032\000\182\000\033\000\071\000\034\000\070\000\036\000\181\000\
  3.1734 -\\037\000\180\000\046\000\179\000\049\000\178\000\050\000\177\000\
  3.1735 -\\051\000\176\000\052\000\175\000\053\000\174\000\054\000\173\000\
  3.1736 -\\056\000\172\000\101\000\169\000\102\000\168\000\103\000\105\001\
  3.1737 -\\113\000\158\000\117\000\157\000\118\000\109\001\144\000\059\000\000\000\
  3.1738 -\\009\000\088\000\011\000\087\000\012\000\086\000\014\000\085\000\
  3.1739 -\\019\000\084\000\020\000\186\000\022\000\082\000\023\000\081\000\
  3.1740 -\\024\000\080\000\025\000\185\000\026\000\078\000\027\000\184\000\
  3.1741 -\\028\000\076\000\029\000\075\000\030\000\074\000\031\000\073\000\
  3.1742 -\\032\000\182\000\033\000\071\000\034\000\070\000\036\000\181\000\
  3.1743 -\\037\000\180\000\046\000\179\000\049\000\178\000\050\000\177\000\
  3.1744 -\\051\000\176\000\052\000\175\000\053\000\174\000\054\000\173\000\
  3.1745 -\\056\000\172\000\101\000\169\000\102\000\168\000\103\000\105\001\
  3.1746 -\\113\000\158\000\117\000\157\000\118\000\110\001\144\000\059\000\000\000\
  3.1747 -\\009\000\088\000\011\000\087\000\012\000\086\000\014\000\085\000\
  3.1748 -\\019\000\084\000\020\000\186\000\022\000\082\000\023\000\081\000\
  3.1749 -\\024\000\080\000\025\000\185\000\026\000\078\000\027\000\184\000\
  3.1750 -\\028\000\076\000\029\000\075\000\030\000\074\000\031\000\073\000\
  3.1751 -\\032\000\182\000\033\000\071\000\034\000\070\000\036\000\181\000\
  3.1752 -\\037\000\180\000\046\000\179\000\049\000\178\000\050\000\177\000\
  3.1753 -\\051\000\176\000\052\000\175\000\053\000\174\000\054\000\173\000\
  3.1754 -\\056\000\172\000\101\000\169\000\102\000\168\000\103\000\105\001\
  3.1755 -\\113\000\158\000\117\000\157\000\118\000\111\001\144\000\059\000\000\000\
  3.1756 -\\009\000\088\000\011\000\087\000\012\000\086\000\014\000\085\000\
  3.1757 -\\019\000\084\000\020\000\186\000\022\000\082\000\023\000\081\000\
  3.1758 -\\024\000\080\000\025\000\185\000\026\000\078\000\027\000\184\000\
  3.1759 -\\028\000\076\000\029\000\075\000\030\000\074\000\031\000\073\000\
  3.1760 -\\032\000\182\000\033\000\071\000\034\000\070\000\036\000\181\000\
  3.1761 -\\037\000\180\000\046\000\179\000\049\000\178\000\050\000\177\000\
  3.1762 -\\051\000\176\000\052\000\175\000\053\000\174\000\054\000\173\000\
  3.1763 -\\056\000\172\000\101\000\169\000\102\000\168\000\103\000\105\001\
  3.1764 -\\113\000\158\000\117\000\157\000\118\000\112\001\144\000\059\000\000\000\
  3.1765 -\\009\000\088\000\011\000\087\000\012\000\086\000\014\000\085\000\
  3.1766 -\\019\000\084\000\020\000\186\000\022\000\082\000\023\000\081\000\
  3.1767 -\\024\000\080\000\025\000\185\000\026\000\078\000\027\000\184\000\
  3.1768 -\\028\000\076\000\029\000\075\000\030\000\074\000\031\000\183\000\
  3.1769 -\\032\000\182\000\033\000\071\000\034\000\070\000\036\000\181\000\
  3.1770 -\\037\000\180\000\046\000\179\000\049\000\178\000\050\000\177\000\
  3.1771 -\\051\000\176\000\052\000\175\000\053\000\174\000\054\000\173\000\
  3.1772 -\\056\000\172\000\101\000\169\000\102\000\168\000\103\000\167\000\
  3.1773 -\\104\000\166\000\105\000\165\000\106\000\164\000\107\000\163\000\
  3.1774 -\\108\000\162\000\109\000\114\001\110\000\161\000\111\000\160\000\
  3.1775 -\\112\000\159\000\113\000\158\000\117\000\157\000\118\000\156\000\
  3.1776 -\\119\000\155\000\120\000\154\000\121\000\153\000\122\000\152\000\
  3.1777 -\\123\000\151\000\124\000\150\000\125\000\113\001\144\000\059\000\000\000\
  3.1778 -\\009\000\088\000\011\000\087\000\012\000\086\000\014\000\085\000\
  3.1779 -\\019\000\084\000\020\000\186\000\022\000\082\000\023\000\081\000\
  3.1780 -\\024\000\080\000\025\000\185\000\026\000\078\000\027\000\184\000\
  3.1781 -\\028\000\076\000\029\000\075\000\030\000\074\000\031\000\073\000\
  3.1782 -\\032\000\182\000\033\000\071\000\034\000\070\000\036\000\181\000\
  3.1783 -\\037\000\180\000\046\000\179\000\049\000\178\000\050\000\177\000\
  3.1784 -\\051\000\176\000\052\000\175\000\053\000\174\000\054\000\173\000\
  3.1785 -\\056\000\172\000\101\000\169\000\102\000\168\000\103\000\105\001\
  3.1786 -\\108\000\116\001\113\000\158\000\117\000\157\000\118\000\115\001\
  3.1787 -\\144\000\059\000\000\000\
  3.1788 -\\009\000\088\000\011\000\087\000\012\000\086\000\014\000\085\000\
  3.1789 -\\019\000\084\000\020\000\186\000\022\000\082\000\023\000\081\000\
  3.1790 -\\024\000\080\000\025\000\185\000\026\000\078\000\027\000\184\000\
  3.1791 -\\028\000\076\000\029\000\075\000\030\000\074\000\031\000\073\000\
  3.1792 -\\032\000\182\000\033\000\071\000\034\000\070\000\036\000\181\000\
  3.1793 -\\037\000\180\000\046\000\179\000\049\000\178\000\050\000\177\000\
  3.1794 -\\051\000\176\000\052\000\175\000\053\000\174\000\054\000\173\000\
  3.1795 -\\056\000\172\000\101\000\169\000\102\000\168\000\103\000\105\001\
  3.1796 -\\108\000\117\001\113\000\158\000\117\000\157\000\118\000\115\001\
  3.1797 -\\144\000\059\000\000\000\
  3.1798 -\\009\000\088\000\011\000\087\000\012\000\086\000\014\000\085\000\
  3.1799 -\\019\000\084\000\020\000\186\000\022\000\082\000\023\000\081\000\
  3.1800 -\\024\000\080\000\025\000\185\000\026\000\078\000\027\000\184\000\
  3.1801 -\\028\000\076\000\029\000\075\000\030\000\074\000\031\000\073\000\
  3.1802 -\\032\000\182\000\033\000\071\000\034\000\070\000\036\000\181\000\
  3.1803 -\\037\000\180\000\046\000\179\000\049\000\178\000\050\000\177\000\
  3.1804 -\\051\000\176\000\052\000\175\000\053\000\174\000\054\000\173\000\
  3.1805 -\\056\000\172\000\101\000\169\000\102\000\168\000\103\000\105\001\
  3.1806 -\\106\000\119\001\108\000\118\001\113\000\158\000\117\000\157\000\
  3.1807 -\\118\000\115\001\144\000\059\000\000\000\
  3.1808 -\\009\000\088\000\011\000\087\000\012\000\086\000\014\000\085\000\
  3.1809 -\\019\000\084\000\020\000\186\000\022\000\082\000\023\000\081\000\
  3.1810 -\\024\000\080\000\025\000\185\000\026\000\078\000\027\000\184\000\
  3.1811 -\\028\000\076\000\029\000\075\000\030\000\074\000\031\000\073\000\
  3.1812 -\\032\000\182\000\033\000\071\000\034\000\070\000\036\000\181\000\
  3.1813 -\\037\000\180\000\046\000\179\000\049\000\178\000\050\000\177\000\
  3.1814 -\\051\000\176\000\052\000\175\000\053\000\174\000\054\000\173\000\
  3.1815 -\\056\000\172\000\101\000\169\000\102\000\168\000\103\000\105\001\
  3.1816 -\\108\000\120\001\113\000\158\000\117\000\157\000\118\000\115\001\
  3.1817 -\\144\000\059\000\000\000\
  3.1818 -\\009\000\088\000\011\000\087\000\012\000\086\000\014\000\085\000\
  3.1819 -\\019\000\084\000\020\000\186\000\022\000\082\000\023\000\081\000\
  3.1820 -\\024\000\080\000\025\000\185\000\026\000\078\000\027\000\184\000\
  3.1821 -\\028\000\076\000\029\000\075\000\030\000\074\000\031\000\073\000\
  3.1822 -\\032\000\182\000\033\000\071\000\034\000\070\000\036\000\181\000\
  3.1823 -\\037\000\180\000\046\000\179\000\049\000\178\000\050\000\177\000\
  3.1824 -\\051\000\176\000\052\000\175\000\053\000\174\000\054\000\173\000\
  3.1825 -\\056\000\172\000\101\000\169\000\102\000\168\000\103\000\105\001\
  3.1826 -\\108\000\121\001\113\000\158\000\117\000\157\000\118\000\115\001\
  3.1827 -\\144\000\059\000\000\000\
  3.1828 -\\098\000\122\001\000\000\
  3.1829 -\\011\000\126\001\114\000\125\001\115\000\124\001\116\000\123\001\000\000\
  3.1830 -\\009\000\088\000\011\000\087\000\012\000\086\000\014\000\085\000\
  3.1831 -\\019\000\084\000\020\000\186\000\022\000\082\000\023\000\081\000\
  3.1832 -\\024\000\080\000\025\000\185\000\026\000\078\000\027\000\184\000\
  3.1833 -\\028\000\076\000\029\000\075\000\030\000\074\000\031\000\183\000\
  3.1834 -\\032\000\182\000\033\000\071\000\034\000\070\000\036\000\181\000\
  3.1835 -\\037\000\180\000\046\000\179\000\049\000\178\000\050\000\177\000\
  3.1836 -\\051\000\176\000\052\000\175\000\053\000\174\000\054\000\173\000\
  3.1837 -\\056\000\172\000\101\000\169\000\102\000\168\000\103\000\167\000\
  3.1838 -\\104\000\166\000\105\000\165\000\106\000\164\000\107\000\163\000\
  3.1839 -\\108\000\162\000\110\000\161\000\111\000\160\000\112\000\159\000\
  3.1840 -\\113\000\158\000\117\000\157\000\118\000\156\000\119\000\155\000\
  3.1841 -\\120\000\154\000\121\000\153\000\122\000\152\000\123\000\151\000\
  3.1842 -\\124\000\150\000\125\000\127\001\144\000\059\000\000\000\
  3.1843 -\\009\000\088\000\019\000\129\001\031\000\128\001\000\000\
  3.1844 -\\051\000\176\000\054\000\173\000\117\000\131\001\137\000\130\001\000\000\
  3.1845 -\\009\000\088\000\011\000\087\000\012\000\086\000\014\000\085\000\
  3.1846 -\\019\000\084\000\020\000\186\000\022\000\082\000\023\000\081\000\
  3.1847 -\\024\000\080\000\025\000\185\000\026\000\078\000\027\000\184\000\
  3.1848 -\\028\000\076\000\029\000\075\000\030\000\074\000\031\000\183\000\
  3.1849 -\\032\000\182\000\033\000\071\000\034\000\070\000\036\000\181\000\
  3.1850 -\\037\000\180\000\046\000\179\000\049\000\178\000\050\000\177\000\
  3.1851 -\\051\000\176\000\052\000\175\000\053\000\174\000\054\000\173\000\
  3.1852 -\\056\000\172\000\101\000\169\000\102\000\168\000\103\000\167\000\
  3.1853 -\\104\000\166\000\105\000\165\000\106\000\164\000\107\000\163\000\
  3.1854 -\\108\000\162\000\110\000\161\000\111\000\160\000\112\000\159\000\
  3.1855 -\\113\000\158\000\117\000\157\000\118\000\156\000\119\000\155\000\
  3.1856 -\\120\000\154\000\121\000\153\000\122\000\152\000\123\000\151\000\
  3.1857 -\\124\000\150\000\125\000\132\001\144\000\059\000\000\000\
  3.1858 -\\000\000\
  3.1859 -\\000\000\
  3.1860 -\\000\000\
  3.1861 -\\000\000\
  3.1862 -\\000\000\
  3.1863 -\\009\000\088\000\011\000\087\000\012\000\086\000\014\000\085\000\
  3.1864 -\\019\000\084\000\020\000\186\000\022\000\082\000\023\000\081\000\
  3.1865 -\\024\000\080\000\025\000\185\000\026\000\078\000\027\000\184\000\
  3.1866 -\\028\000\076\000\029\000\075\000\030\000\074\000\031\000\183\000\
  3.1867 -\\032\000\182\000\033\000\071\000\034\000\070\000\036\000\181\000\
  3.1868 -\\037\000\180\000\046\000\179\000\049\000\178\000\050\000\177\000\
  3.1869 -\\051\000\176\000\052\000\175\000\053\000\174\000\054\000\173\000\
  3.1870 -\\056\000\172\000\101\000\169\000\102\000\168\000\103\000\167\000\
  3.1871 -\\104\000\166\000\105\000\165\000\106\000\164\000\107\000\163\000\
  3.1872 -\\108\000\162\000\110\000\161\000\111\000\160\000\112\000\159\000\
  3.1873 -\\113\000\158\000\117\000\157\000\118\000\156\000\119\000\155\000\
  3.1874 -\\120\000\154\000\121\000\153\000\122\000\152\000\123\000\151\000\
  3.1875 -\\124\000\150\000\125\000\024\001\144\000\059\000\000\000\
  3.1876 -\\000\000\
  3.1877 -\\000\000\
  3.1878 -\\000\000\
  3.1879 -\\000\000\
  3.1880 -\\000\000\
  3.1881 -\\000\000\
  3.1882 -\\000\000\
  3.1883 -\\000\000\
  3.1884 -\\005\000\140\001\000\000\
  3.1885 -\\000\000\
  3.1886 -\\000\000\
  3.1887 -\\000\000\
  3.1888 -\\000\000\
  3.1889 -\\000\000\
  3.1890 -\\000\000\
  3.1891 -\\000\000\
  3.1892 -\\006\000\039\001\007\000\148\001\008\000\147\001\009\000\037\001\
  3.1893 -\\010\000\036\001\011\000\035\001\012\000\034\001\013\000\033\001\
  3.1894 -\\014\000\085\000\016\000\032\001\000\000\
  3.1895 -\\000\000\
  3.1896 -\\000\000\
  3.1897 -\\000\000\
  3.1898 -\\000\000\
  3.1899 -\\000\000\
  3.1900 -\\000\000\
  3.1901 -\\000\000\
  3.1902 -\\000\000\
  3.1903 -\\000\000\
  3.1904 -\\000\000\
  3.1905 -\\000\000\
  3.1906 -\\000\000\
  3.1907 -\\000\000\
  3.1908 -\\000\000\
  3.1909 -\\000\000\
  3.1910 -\\000\000\
  3.1911 -\\000\000\
  3.1912 -\\000\000\
  3.1913 -\\000\000\
  3.1914 -\\000\000\
  3.1915 -\\000\000\
  3.1916 -\\000\000\
  3.1917 -\\000\000\
  3.1918 -\\000\000\
  3.1919 -\\009\000\088\000\011\000\087\000\012\000\086\000\014\000\085\000\
  3.1920 -\\019\000\084\000\020\000\083\000\022\000\082\000\023\000\081\000\
  3.1921 -\\024\000\080\000\025\000\079\000\026\000\078\000\027\000\077\000\
  3.1922 -\\028\000\076\000\029\000\075\000\030\000\074\000\031\000\073\000\
  3.1923 -\\032\000\072\000\033\000\071\000\034\000\070\000\035\000\069\000\
  3.1924 -\\039\000\068\000\042\000\067\000\043\000\066\000\044\000\065\000\
  3.1925 -\\045\000\115\000\046\000\114\000\051\000\113\000\055\000\112\000\
  3.1926 -\\060\000\160\001\063\000\109\000\065\000\108\000\066\000\107\000\
  3.1927 -\\067\000\106\000\068\000\105\000\069\000\104\000\070\000\103\000\
  3.1928 -\\071\000\102\000\072\000\237\000\144\000\059\000\000\000\
  3.1929 -\\000\000\
  3.1930 -\\000\000\
  3.1931 -\\000\000\
  3.1932 -\\000\000\
  3.1933 -\\000\000\
  3.1934 -\\000\000\
  3.1935 -\\000\000\
  3.1936 -\\000\000\
  3.1937 -\\000\000\
  3.1938 -\\000\000\
  3.1939 -\\000\000\
  3.1940 -\\000\000\
  3.1941 -\\000\000\
  3.1942 -\\000\000\
  3.1943 -\\000\000\
  3.1944 -\\000\000\
  3.1945 -\\000\000\
  3.1946 -\\009\000\086\001\011\000\085\001\047\000\084\001\078\000\168\001\
  3.1947 -\\079\000\167\001\080\000\166\001\081\000\081\001\141\000\165\001\000\000\
  3.1948 -\\000\000\
  3.1949 -\\000\000\
  3.1950 -\\000\000\
  3.1951 -\\000\000\
  3.1952 -\\000\000\
  3.1953 -\\000\000\
  3.1954 -\\000\000\
  3.1955 -\\000\000\
  3.1956 -\\000\000\
  3.1957 -\\000\000\
  3.1958 -\\000\000\
  3.1959 -\\009\000\088\000\011\000\087\000\012\000\086\000\014\000\085\000\
  3.1960 -\\019\000\084\000\020\000\083\000\022\000\082\000\023\000\081\000\
  3.1961 -\\024\000\080\000\025\000\079\000\026\000\078\000\027\000\077\000\
  3.1962 -\\028\000\076\000\029\000\075\000\030\000\074\000\031\000\073\000\
  3.1963 -\\032\000\072\000\033\000\071\000\034\000\070\000\035\000\069\000\
  3.1964 -\\039\000\068\000\042\000\067\000\043\000\066\000\044\000\065\000\
  3.1965 -\\045\000\140\000\046\000\139\000\051\000\138\000\055\000\137\000\
  3.1966 -\\075\000\176\001\077\000\134\000\085\000\131\000\089\000\130\000\
  3.1967 -\\090\000\129\000\091\000\128\000\092\000\127\000\093\000\126\000\
  3.1968 -\\094\000\125\000\095\000\124\000\096\000\001\001\138\000\121\000\
  3.1969 -\\144\000\059\000\000\000\
  3.1970 -\\000\000\
  3.1971 -\\000\000\
  3.1972 -\\000\000\
  3.1973 -\\000\000\
  3.1974 -\\009\000\088\000\011\000\087\000\012\000\086\000\014\000\085\000\
  3.1975 -\\019\000\084\000\020\000\186\000\022\000\082\000\023\000\081\000\
  3.1976 -\\024\000\080\000\025\000\185\000\026\000\078\000\027\000\184\000\
  3.1977 -\\028\000\076\000\029\000\075\000\030\000\074\000\031\000\183\000\
  3.1978 -\\032\000\182\000\033\000\071\000\034\000\070\000\036\000\181\000\
  3.1979 -\\037\000\180\000\046\000\179\000\049\000\178\000\050\000\177\000\
  3.1980 -\\051\000\176\000\052\000\175\000\053\000\174\000\054\000\173\000\
  3.1981 -\\056\000\172\000\101\000\169\000\102\000\168\000\103\000\167\000\
  3.1982 -\\104\000\166\000\105\000\165\000\106\000\164\000\107\000\163\000\
  3.1983 -\\108\000\162\000\110\000\161\000\111\000\160\000\112\000\159\000\
  3.1984 -\\113\000\158\000\117\000\157\000\118\000\156\000\119\000\155\000\
  3.1985 -\\120\000\154\000\121\000\153\000\122\000\152\000\123\000\151\000\
  3.1986 -\\124\000\150\000\125\000\178\001\144\000\059\000\000\000\
  3.1987 -\\000\000\
  3.1988 -\\000\000\
  3.1989 -\\000\000\
  3.1990 -\\000\000\
  3.1991 -\\000\000\
  3.1992 -\\000\000\
  3.1993 -\\000\000\
  3.1994 -\\000\000\
  3.1995 -\\000\000\
  3.1996 -\\000\000\
  3.1997 -\\000\000\
  3.1998 -\\000\000\
  3.1999 -\\000\000\
  3.2000 -\\000\000\
  3.2001 -\\000\000\
  3.2002 -\\000\000\
  3.2003 -\\000\000\
  3.2004 -\\000\000\
  3.2005 -\\000\000\
  3.2006 -\\000\000\
  3.2007 -\\000\000\
  3.2008 -\\000\000\
  3.2009 -\\000\000\
  3.2010 -\\000\000\
  3.2011 -\\000\000\
  3.2012 -\\000\000\
  3.2013 -\\000\000\
  3.2014 -\\000\000\
  3.2015 -\\009\000\088\000\011\000\087\000\012\000\086\000\014\000\085\000\
  3.2016 -\\019\000\084\000\020\000\186\000\022\000\082\000\023\000\081\000\
  3.2017 -\\024\000\080\000\025\000\185\000\026\000\078\000\027\000\184\000\
  3.2018 -\\028\000\076\000\029\000\075\000\030\000\074\000\031\000\183\000\
  3.2019 -\\032\000\182\000\033\000\071\000\034\000\070\000\036\000\181\000\
  3.2020 -\\037\000\180\000\046\000\179\000\049\000\178\000\050\000\177\000\
  3.2021 -\\051\000\176\000\052\000\175\000\053\000\174\000\054\000\173\000\
  3.2022 -\\056\000\172\000\099\000\185\001\101\000\169\000\102\000\168\000\
  3.2023 -\\103\000\167\000\104\000\166\000\105\000\165\000\106\000\164\000\
  3.2024 -\\107\000\163\000\108\000\162\000\110\000\161\000\111\000\160\000\
  3.2025 -\\112\000\159\000\113\000\158\000\117\000\157\000\118\000\156\000\
  3.2026 -\\119\000\155\000\120\000\154\000\121\000\153\000\122\000\152\000\
  3.2027 -\\123\000\151\000\124\000\150\000\125\000\026\001\144\000\059\000\000\000\
  3.2028 -\\000\000\
  3.2029 -\\000\000\
  3.2030 -\\006\000\039\001\008\000\186\001\009\000\037\001\010\000\036\001\
  3.2031 -\\011\000\035\001\012\000\034\001\013\000\033\001\014\000\085\000\
  3.2032 -\\016\000\032\001\000\000\
  3.2033 -\\006\000\039\001\007\000\187\001\008\000\147\001\009\000\037\001\
  3.2034 -\\010\000\036\001\011\000\035\001\012\000\034\001\013\000\033\001\
  3.2035 -\\014\000\085\000\016\000\032\001\000\000\
  3.2036 -\\000\000\
  3.2037 -\\006\000\189\001\017\000\188\001\000\000\
  3.2038 -\\009\000\088\000\011\000\087\000\012\000\086\000\014\000\085\000\
  3.2039 -\\019\000\142\000\020\000\083\000\022\000\082\000\023\000\141\000\
  3.2040 -\\024\000\080\000\025\000\079\000\026\000\078\000\027\000\077\000\
  3.2041 -\\028\000\076\000\029\000\075\000\030\000\074\000\031\000\073\000\
  3.2042 -\\032\000\072\000\033\000\071\000\034\000\070\000\035\000\069\000\
  3.2043 -\\039\000\068\000\042\000\067\000\043\000\066\000\044\000\065\000\
  3.2044 -\\045\000\140\000\046\000\139\000\051\000\138\000\055\000\137\000\
  3.2045 -\\074\000\136\000\076\000\135\000\077\000\134\000\083\000\133\000\
  3.2046 -\\084\000\132\000\085\000\131\000\089\000\130\000\090\000\129\000\
  3.2047 -\\091\000\128\000\092\000\127\000\093\000\126\000\094\000\125\000\
  3.2048 -\\095\000\124\000\096\000\123\000\097\000\190\001\138\000\121\000\
  3.2049 -\\144\000\059\000\000\000\
  3.2050 -\\009\000\088\000\011\000\087\000\012\000\086\000\014\000\085\000\
  3.2051 -\\019\000\084\000\020\000\191\001\022\000\082\000\023\000\081\000\
  3.2052 -\\024\000\080\000\025\000\185\000\026\000\078\000\027\000\184\000\
  3.2053 -\\028\000\076\000\029\000\075\000\030\000\074\000\031\000\073\000\
  3.2054 -\\032\000\182\000\033\000\071\000\034\000\070\000\144\000\059\000\000\000\
  3.2055 -\\009\000\088\000\011\000\087\000\012\000\086\000\014\000\085\000\
  3.2056 -\\019\000\084\000\020\000\083\000\022\000\082\000\023\000\081\000\
  3.2057 -\\024\000\080\000\025\000\079\000\026\000\078\000\027\000\077\000\
  3.2058 -\\028\000\076\000\029\000\075\000\030\000\074\000\031\000\073\000\
  3.2059 -\\032\000\072\000\033\000\071\000\034\000\070\000\035\000\069\000\
  3.2060 -\\039\000\068\000\042\000\067\000\043\000\066\000\044\000\065\000\
  3.2061 -\\045\000\064\000\055\000\063\000\057\000\062\000\058\000\061\000\
  3.2062 -\\059\000\192\001\144\000\059\000\000\000\
  3.2063 -\\009\000\088\000\011\000\087\000\012\000\086\000\014\000\085\000\
  3.2064 -\\019\000\084\000\020\000\083\000\022\000\082\000\023\000\081\000\
  3.2065 -\\024\000\080\000\025\000\079\000\026\000\078\000\027\000\077\000\
  3.2066 -\\028\000\076\000\029\000\075\000\030\000\074\000\031\000\073\000\
  3.2067 -\\032\000\072\000\033\000\071\000\034\000\070\000\035\000\069\000\
  3.2068 -\\039\000\068\000\042\000\067\000\043\000\066\000\044\000\065\000\
  3.2069 -\\045\000\115\000\046\000\114\000\051\000\113\000\055\000\112\000\
  3.2070 -\\061\000\111\000\062\000\110\000\063\000\109\000\065\000\108\000\
  3.2071 -\\066\000\107\000\067\000\106\000\068\000\105\000\069\000\104\000\
  3.2072 -\\070\000\103\000\071\000\102\000\072\000\101\000\073\000\193\001\
  3.2073 -\\144\000\059\000\000\000\
  3.2074 -\\009\000\088\000\011\000\087\000\012\000\086\000\014\000\085\000\
  3.2075 -\\019\000\084\000\020\000\186\000\022\000\082\000\023\000\081\000\
  3.2076 -\\024\000\080\000\025\000\185\000\026\000\078\000\027\000\184\000\
  3.2077 -\\028\000\076\000\029\000\075\000\030\000\074\000\031\000\183\000\
  3.2078 -\\032\000\182\000\033\000\071\000\034\000\070\000\036\000\181\000\
  3.2079 -\\037\000\180\000\046\000\179\000\049\000\178\000\050\000\177\000\
  3.2080 -\\051\000\176\000\052\000\175\000\053\000\174\000\054\000\173\000\
  3.2081 -\\056\000\172\000\098\000\171\000\100\000\170\000\101\000\169\000\
  3.2082 -\\102\000\168\000\103\000\167\000\104\000\166\000\105\000\165\000\
  3.2083 -\\106\000\164\000\107\000\163\000\108\000\162\000\110\000\161\000\
  3.2084 -\\111\000\160\000\112\000\159\000\113\000\158\000\117\000\157\000\
  3.2085 -\\118\000\156\000\119\000\155\000\120\000\154\000\121\000\153\000\
  3.2086 -\\122\000\152\000\123\000\151\000\124\000\150\000\125\000\149\000\
  3.2087 -\\126\000\194\001\144\000\059\000\000\000\
  3.2088 -\\000\000\
  3.2089 -\\000\000\
  3.2090 -\\000\000\
  3.2091 -\\000\000\
  3.2092 -\\009\000\088\000\011\000\087\000\012\000\086\000\014\000\085\000\
  3.2093 -\\019\000\084\000\020\000\049\001\021\000\197\001\022\000\082\000\
  3.2094 -\\023\000\081\000\024\000\080\000\025\000\185\000\026\000\078\000\
  3.2095 -\\027\000\184\000\028\000\076\000\029\000\075\000\030\000\074\000\
  3.2096 -\\031\000\073\000\032\000\182\000\033\000\071\000\034\000\070\000\
  3.2097 -\\144\000\059\000\000\000\
  3.2098 -\\000\000\
  3.2099 -\\000\000\
  3.2100 -\\009\000\088\000\011\000\087\000\012\000\086\000\014\000\085\000\
  3.2101 -\\019\000\084\000\020\000\198\001\022\000\082\000\023\000\081\000\
  3.2102 -\\024\000\080\000\025\000\185\000\026\000\078\000\027\000\184\000\
  3.2103 -\\028\000\076\000\029\000\075\000\030\000\074\000\031\000\073\000\
  3.2104 -\\032\000\182\000\033\000\071\000\034\000\070\000\144\000\059\000\000\000\
  3.2105 -\\009\000\088\000\011\000\087\000\012\000\086\000\014\000\085\000\
  3.2106 -\\019\000\084\000\020\000\199\001\022\000\082\000\023\000\081\000\
  3.2107 -\\024\000\080\000\025\000\185\000\026\000\078\000\027\000\184\000\
  3.2108 -\\028\000\076\000\029\000\075\000\030\000\074\000\031\000\073\000\
  3.2109 -\\032\000\182\000\033\000\071\000\034\000\070\000\144\000\059\000\000\000\
  3.2110 -\\009\000\088\000\011\000\087\000\012\000\086\000\014\000\085\000\
  3.2111 -\\019\000\084\000\020\000\200\001\022\000\082\000\023\000\081\000\
  3.2112 -\\024\000\080\000\025\000\185\000\026\000\078\000\027\000\184\000\
  3.2113 -\\028\000\076\000\029\000\075\000\030\000\074\000\031\000\073\000\
  3.2114 -\\032\000\182\000\033\000\071\000\034\000\070\000\144\000\059\000\000\000\
  3.2115 -\\000\000\
  3.2116 -\\000\000\
  3.2117 -\\011\000\068\001\064\000\202\001\000\000\
  3.2118 -\\000\000\
  3.2119 -\\000\000\
  3.2120 -\\009\000\086\001\011\000\085\001\047\000\084\001\080\000\203\001\000\000\
  3.2121 -\\009\000\086\001\011\000\085\001\047\000\084\001\080\000\205\001\
  3.2122 -\\143\000\204\001\000\000\
  3.2123 -\\011\000\094\001\086\000\093\001\087\000\092\001\088\000\206\001\000\000\
  3.2124 -\\000\000\
  3.2125 -\\000\000\
  3.2126 -\\000\000\
  3.2127 -\\000\000\
  3.2128 -\\009\000\086\001\011\000\085\001\047\000\084\001\078\000\212\001\
  3.2129 -\\079\000\167\001\080\000\166\001\081\000\081\001\141\000\165\001\000\000\
  3.2130 -\\000\000\
  3.2131 -\\011\000\094\001\086\000\093\001\087\000\092\001\088\000\214\001\000\000\
  3.2132 -\\009\000\086\001\011\000\085\001\047\000\084\001\080\000\215\001\000\000\
  3.2133 -\\009\000\088\000\011\000\087\000\012\000\086\000\014\000\085\000\
  3.2134 -\\019\000\142\000\020\000\083\000\022\000\082\000\023\000\141\000\
  3.2135 -\\024\000\080\000\025\000\079\000\026\000\078\000\027\000\077\000\
  3.2136 -\\028\000\076\000\029\000\075\000\030\000\074\000\031\000\073\000\
  3.2137 -\\032\000\072\000\033\000\071\000\034\000\070\000\035\000\069\000\
  3.2138 -\\039\000\068\000\042\000\067\000\043\000\066\000\044\000\065\000\
  3.2139 -\\045\000\140\000\046\000\139\000\051\000\138\000\055\000\137\000\
  3.2140 -\\074\000\136\000\076\000\135\000\077\000\134\000\083\000\133\000\
  3.2141 -\\084\000\132\000\085\000\131\000\089\000\130\000\090\000\129\000\
  3.2142 -\\091\000\128\000\092\000\127\000\093\000\126\000\094\000\125\000\
  3.2143 -\\095\000\124\000\096\000\123\000\097\000\216\001\138\000\121\000\
  3.2144 -\\144\000\059\000\000\000\
  3.2145 -\\009\000\088\000\011\000\087\000\012\000\086\000\014\000\085\000\
  3.2146 -\\019\000\142\000\020\000\083\000\022\000\082\000\023\000\141\000\
  3.2147 -\\024\000\080\000\025\000\079\000\026\000\078\000\027\000\077\000\
  3.2148 -\\028\000\076\000\029\000\075\000\030\000\074\000\031\000\073\000\
  3.2149 -\\032\000\072\000\033\000\071\000\034\000\070\000\035\000\069\000\
  3.2150 -\\039\000\068\000\042\000\067\000\043\000\066\000\044\000\065\000\
  3.2151 -\\045\000\140\000\046\000\139\000\051\000\138\000\055\000\137\000\
  3.2152 -\\074\000\136\000\076\000\135\000\077\000\134\000\083\000\133\000\
  3.2153 -\\084\000\132\000\085\000\131\000\089\000\130\000\090\000\129\000\
  3.2154 -\\091\000\128\000\092\000\127\000\093\000\126\000\094\000\125\000\
  3.2155 -\\095\000\124\000\096\000\123\000\097\000\217\001\138\000\121\000\
  3.2156 -\\144\000\059\000\000\000\
  3.2157 -\\009\000\088\000\011\000\087\000\012\000\086\000\014\000\085\000\
  3.2158 -\\019\000\084\000\020\000\083\000\022\000\082\000\023\000\081\000\
  3.2159 -\\024\000\080\000\025\000\079\000\026\000\078\000\027\000\077\000\
  3.2160 -\\028\000\076\000\029\000\075\000\030\000\074\000\031\000\073\000\
  3.2161 -\\032\000\072\000\033\000\071\000\034\000\070\000\035\000\069\000\
  3.2162 -\\039\000\068\000\042\000\067\000\043\000\066\000\044\000\065\000\
  3.2163 -\\045\000\140\000\046\000\139\000\051\000\138\000\055\000\137\000\
  3.2164 -\\077\000\134\000\085\000\131\000\089\000\130\000\090\000\129\000\
  3.2165 -\\091\000\128\000\092\000\127\000\093\000\126\000\094\000\125\000\
  3.2166 -\\095\000\124\000\096\000\218\001\138\000\121\000\144\000\059\000\000\000\
  3.2167 -\\000\000\
  3.2168 -\\000\000\
  3.2169 -\\000\000\
  3.2170 -\\000\000\
  3.2171 -\\011\000\126\001\114\000\125\001\115\000\124\001\116\000\221\001\000\000\
  3.2172 -\\009\000\088\000\011\000\087\000\012\000\086\000\014\000\085\000\
  3.2173 -\\019\000\084\000\020\000\186\000\022\000\082\000\023\000\081\000\
  3.2174 -\\024\000\080\000\025\000\185\000\026\000\078\000\027\000\184\000\
  3.2175 -\\028\000\076\000\029\000\075\000\030\000\074\000\031\000\183\000\
  3.2176 -\\032\000\182\000\033\000\071\000\034\000\070\000\036\000\181\000\
  3.2177 -\\037\000\180\000\046\000\179\000\049\000\178\000\050\000\177\000\
  3.2178 -\\051\000\176\000\052\000\175\000\053\000\174\000\054\000\173\000\
  3.2179 -\\056\000\172\000\101\000\169\000\102\000\168\000\103\000\167\000\
  3.2180 -\\104\000\166\000\105\000\165\000\106\000\164\000\107\000\163\000\
  3.2181 -\\108\000\162\000\109\000\222\001\110\000\161\000\111\000\160\000\
  3.2182 -\\112\000\159\000\113\000\158\000\117\000\157\000\118\000\156\000\
  3.2183 -\\119\000\155\000\120\000\154\000\121\000\153\000\122\000\152\000\
  3.2184 -\\123\000\151\000\124\000\150\000\125\000\113\001\144\000\059\000\000\000\
  3.2185 -\\000\000\
  3.2186 -\\009\000\088\000\011\000\087\000\012\000\086\000\014\000\085\000\
  3.2187 -\\019\000\084\000\020\000\186\000\022\000\082\000\023\000\081\000\
  3.2188 -\\024\000\080\000\025\000\185\000\026\000\078\000\027\000\184\000\
  3.2189 -\\028\000\076\000\029\000\075\000\030\000\074\000\031\000\183\000\
  3.2190 -\\032\000\182\000\033\000\071\000\034\000\070\000\036\000\181\000\
  3.2191 -\\037\000\180\000\046\000\179\000\049\000\178\000\050\000\177\000\
  3.2192 -\\051\000\176\000\052\000\175\000\053\000\174\000\054\000\173\000\
  3.2193 -\\056\000\172\000\098\000\171\000\100\000\170\000\101\000\169\000\
  3.2194 -\\102\000\168\000\103\000\167\000\104\000\166\000\105\000\165\000\
  3.2195 -\\106\000\164\000\107\000\163\000\108\000\162\000\110\000\161\000\
  3.2196 -\\111\000\160\000\112\000\159\000\113\000\158\000\117\000\157\000\
  3.2197 -\\118\000\156\000\119\000\155\000\120\000\154\000\121\000\153\000\
  3.2198 -\\122\000\152\000\123\000\151\000\124\000\150\000\125\000\149\000\
  3.2199 -\\126\000\223\001\144\000\059\000\000\000\
  3.2200 -\\009\000\088\000\011\000\087\000\012\000\086\000\014\000\085\000\
  3.2201 -\\019\000\084\000\020\000\186\000\022\000\082\000\023\000\081\000\
  3.2202 -\\024\000\080\000\025\000\185\000\026\000\078\000\027\000\184\000\
  3.2203 -\\028\000\076\000\029\000\075\000\030\000\074\000\031\000\183\000\
  3.2204 -\\032\000\182\000\033\000\071\000\034\000\070\000\036\000\181\000\
  3.2205 -\\037\000\180\000\046\000\179\000\049\000\178\000\050\000\177\000\
  3.2206 -\\051\000\176\000\052\000\175\000\053\000\174\000\054\000\173\000\
  3.2207 -\\056\000\172\000\101\000\169\000\102\000\168\000\103\000\167\000\
  3.2208 -\\104\000\166\000\105\000\165\000\106\000\164\000\107\000\163\000\
  3.2209 -\\108\000\162\000\110\000\161\000\111\000\160\000\112\000\159\000\
  3.2210 -\\113\000\158\000\117\000\157\000\118\000\156\000\119\000\155\000\
  3.2211 -\\120\000\154\000\121\000\153\000\122\000\152\000\123\000\151\000\
  3.2212 -\\124\000\150\000\125\000\224\001\144\000\059\000\000\000\
  3.2213 -\\000\000\
  3.2214 -\\000\000\
  3.2215 -\\000\000\
  3.2216 -\\000\000\
  3.2217 -\\000\000\
  3.2218 -\\000\000\
  3.2219 -\\000\000\
  3.2220 -\\000\000\
  3.2221 -\\000\000\
  3.2222 -\\000\000\
  3.2223 -\\006\000\039\001\007\000\231\001\008\000\147\001\009\000\037\001\
  3.2224 -\\010\000\036\001\011\000\035\001\012\000\034\001\013\000\033\001\
  3.2225 -\\014\000\085\000\016\000\032\001\000\000\
  3.2226 -\\000\000\
  3.2227 -\\000\000\
  3.2228 -\\000\000\
  3.2229 -\\000\000\
  3.2230 -\\000\000\
  3.2231 -\\009\000\088\000\011\000\087\000\012\000\086\000\014\000\085\000\
  3.2232 -\\019\000\084\000\020\000\083\000\022\000\082\000\023\000\081\000\
  3.2233 -\\024\000\080\000\025\000\079\000\026\000\078\000\027\000\077\000\
  3.2234 -\\028\000\076\000\029\000\075\000\030\000\074\000\031\000\073\000\
  3.2235 -\\032\000\072\000\033\000\071\000\034\000\070\000\035\000\069\000\
  3.2236 -\\039\000\068\000\042\000\067\000\043\000\066\000\044\000\065\000\
  3.2237 -\\045\000\115\000\046\000\114\000\051\000\113\000\055\000\112\000\
  3.2238 -\\063\000\109\000\065\000\108\000\066\000\235\001\144\000\059\000\000\000\
  3.2239 -\\000\000\
  3.2240 -\\000\000\
  3.2241 -\\000\000\
  3.2242 -\\000\000\
  3.2243 -\\000\000\
  3.2244 -\\000\000\
  3.2245 -\\009\000\086\001\011\000\085\001\047\000\084\001\080\000\239\001\000\000\
  3.2246 -\\000\000\
  3.2247 -\\009\000\086\001\011\000\085\001\047\000\084\001\080\000\240\001\000\000\
  3.2248 -\\000\000\
  3.2249 -\\000\000\
  3.2250 -\\009\000\088\000\011\000\087\000\012\000\086\000\014\000\085\000\
  3.2251 -\\019\000\084\000\020\000\083\000\022\000\082\000\023\000\081\000\
  3.2252 -\\024\000\080\000\025\000\079\000\026\000\078\000\027\000\077\000\
  3.2253 -\\028\000\076\000\029\000\075\000\030\000\074\000\031\000\073\000\
  3.2254 -\\032\000\072\000\033\000\071\000\034\000\070\000\035\000\069\000\
  3.2255 -\\039\000\068\000\042\000\067\000\043\000\066\000\044\000\065\000\
  3.2256 -\\045\000\140\000\046\000\139\000\051\000\138\000\055\000\137\000\
  3.2257 -\\077\000\134\000\085\000\131\000\089\000\130\000\090\000\242\001\
  3.2258 -\\138\000\121\000\144\000\059\000\000\000\
  3.2259 -\\000\000\
  3.2260 -\\000\000\
  3.2261 -\\000\000\
  3.2262 -\\000\000\
  3.2263 -\\000\000\
  3.2264 -\\000\000\
  3.2265 -\\009\000\088\000\011\000\087\000\012\000\086\000\014\000\085\000\
  3.2266 -\\019\000\084\000\020\000\186\000\022\000\082\000\023\000\081\000\
  3.2267 -\\024\000\080\000\025\000\185\000\026\000\078\000\027\000\184\000\
  3.2268 -\\028\000\076\000\029\000\075\000\030\000\074\000\031\000\073\000\
  3.2269 -\\032\000\182\000\033\000\071\000\034\000\070\000\036\000\181\000\
  3.2270 -\\037\000\180\000\046\000\179\000\049\000\178\000\050\000\177\000\
  3.2271 -\\051\000\176\000\052\000\175\000\053\000\174\000\054\000\173\000\
  3.2272 -\\056\000\172\000\101\000\169\000\102\000\168\000\103\000\105\001\
  3.2273 -\\113\000\158\000\117\000\157\000\118\000\246\001\144\000\059\000\000\000\
  3.2274 -\\000\000\
  3.2275 -\\000\000\
  3.2276 -\\000\000\
  3.2277 -\\000\000\
  3.2278 -\\000\000\
  3.2279 -\\000\000\
  3.2280 -\\000\000\
  3.2281 -\\000\000\
  3.2282 -\\000\000\
  3.2283 -\\000\000\
  3.2284 -\\000\000\
  3.2285 -\\000\000\
  3.2286 -\\000\000\
  3.2287 -\\009\000\088\000\011\000\087\000\012\000\086\000\014\000\085\000\
  3.2288 -\\019\000\084\000\020\000\249\001\022\000\082\000\023\000\081\000\
  3.2289 -\\024\000\080\000\025\000\185\000\026\000\078\000\027\000\184\000\
  3.2290 -\\028\000\076\000\029\000\075\000\030\000\074\000\031\000\073\000\
  3.2291 -\\032\000\182\000\033\000\071\000\034\000\070\000\144\000\059\000\000\000\
  3.2292 -\\000\000\
  3.2293 -\\000\000\
  3.2294 -\\009\000\086\001\011\000\085\001\047\000\084\001\080\000\205\001\
  3.2295 -\\143\000\250\001\000\000\
  3.2296 -\\000\000\
  3.2297 -\\000\000\
  3.2298 -\\000\000\
  3.2299 -\\000\000\
  3.2300 -\\000\000\
  3.2301 -\\000\000\
  3.2302 -\\000\000\
  3.2303 -\\009\000\088\000\011\000\087\000\012\000\086\000\014\000\085\000\
  3.2304 -\\019\000\084\000\020\000\083\000\022\000\082\000\023\000\081\000\
  3.2305 -\\024\000\080\000\025\000\079\000\026\000\078\000\027\000\077\000\
  3.2306 -\\028\000\076\000\029\000\075\000\030\000\074\000\031\000\073\000\
  3.2307 -\\032\000\072\000\033\000\071\000\034\000\070\000\035\000\069\000\
  3.2308 -\\039\000\068\000\042\000\067\000\043\000\066\000\044\000\065\000\
  3.2309 -\\045\000\140\000\046\000\139\000\051\000\138\000\055\000\137\000\
  3.2310 -\\077\000\134\000\085\000\131\000\089\000\130\000\090\000\129\000\
  3.2311 -\\091\000\128\000\092\000\127\000\093\000\126\000\094\000\125\000\
  3.2312 -\\095\000\124\000\096\000\252\001\138\000\121\000\144\000\059\000\000\000\
  3.2313 -\\000\000\
  3.2314 -\\000\000\
  3.2315 -\\009\000\088\000\011\000\087\000\012\000\086\000\014\000\085\000\
  3.2316 -\\019\000\084\000\020\000\186\000\022\000\082\000\023\000\081\000\
  3.2317 -\\024\000\080\000\025\000\185\000\026\000\078\000\027\000\184\000\
  3.2318 -\\028\000\076\000\029\000\075\000\030\000\074\000\031\000\183\000\
  3.2319 -\\032\000\182\000\033\000\071\000\034\000\070\000\036\000\181\000\
  3.2320 -\\037\000\180\000\046\000\179\000\049\000\178\000\050\000\177\000\
  3.2321 -\\051\000\176\000\052\000\175\000\053\000\174\000\054\000\173\000\
  3.2322 -\\056\000\172\000\101\000\169\000\102\000\168\000\103\000\167\000\
  3.2323 -\\104\000\166\000\105\000\165\000\106\000\164\000\107\000\163\000\
  3.2324 -\\108\000\162\000\110\000\161\000\111\000\160\000\112\000\159\000\
  3.2325 -\\113\000\158\000\117\000\157\000\118\000\156\000\119\000\155\000\
  3.2326 -\\120\000\154\000\121\000\153\000\122\000\152\000\123\000\151\000\
  3.2327 -\\124\000\150\000\125\000\253\001\144\000\059\000\000\000\
  3.2328 -\\000\000\
  3.2329 -\\000\000\
  3.2330 -\\009\000\086\001\011\000\085\001\047\000\084\001\080\000\000\002\
  3.2331 -\\142\000\255\001\000\000\
  3.2332 -\\000\000\
  3.2333 -\\000\000\
  3.2334 -\\000\000\
  3.2335 -\\000\000\
  3.2336 -\\000\000\
  3.2337 -\\009\000\086\001\011\000\085\001\047\000\084\001\079\000\005\002\
  3.2338 -\\080\000\004\002\081\000\081\001\000\000\
  3.2339 -\\000\000\
  3.2340 -\\000\000\
  3.2341 -\\000\000\
  3.2342 -\\000\000\
  3.2343 -\\009\000\086\001\011\000\085\001\047\000\084\001\078\000\168\001\
  3.2344 -\\079\000\167\001\080\000\166\001\081\000\081\001\000\000\
  3.2345 -\\000\000\
  3.2346 -\\009\000\086\001\011\000\085\001\047\000\084\001\078\000\212\001\
  3.2347 -\\079\000\167\001\080\000\166\001\081\000\081\001\000\000\
  3.2348 +\\009\000\090\000\011\000\089\000\012\000\088\000\014\000\087\000\
  3.2349 +\\019\000\086\000\020\000\085\000\022\000\084\000\023\000\083\000\
  3.2350 +\\024\000\082\000\025\000\081\000\026\000\080\000\027\000\079\000\
  3.2351 +\\028\000\078\000\029\000\077\000\030\000\076\000\031\000\075\000\
  3.2352 +\\032\000\074\000\033\000\073\000\034\000\072\000\035\000\071\000\
  3.2353 +\\039\000\070\000\042\000\069\000\043\000\068\000\044\000\067\000\
  3.2354 +\\045\000\066\000\055\000\065\000\057\000\064\000\058\000\063\000\
  3.2355 +\\059\000\062\000\144\000\061\000\145\000\060\000\146\000\059\000\000\000\
  3.2356 +\\009\000\090\000\011\000\089\000\012\000\088\000\014\000\087\000\
  3.2357 +\\019\000\086\000\020\000\085\000\022\000\084\000\023\000\083\000\
  3.2358 +\\024\000\082\000\025\000\081\000\026\000\080\000\027\000\079\000\
  3.2359 +\\028\000\078\000\029\000\077\000\030\000\076\000\031\000\075\000\
  3.2360 +\\032\000\074\000\033\000\073\000\034\000\072\000\035\000\071\000\
  3.2361 +\\039\000\070\000\042\000\069\000\043\000\068\000\044\000\067\000\
  3.2362 +\\045\000\117\000\046\000\116\000\051\000\115\000\055\000\114\000\
  3.2363 +\\061\000\113\000\062\000\112\000\063\000\111\000\065\000\110\000\
  3.2364 +\\066\000\109\000\067\000\108\000\068\000\107\000\069\000\106\000\
  3.2365 +\\070\000\105\000\071\000\104\000\072\000\103\000\073\000\102\000\
  3.2366 +\\144\000\061\000\145\000\060\000\146\000\059\000\000\000\
  3.2367 +\\009\000\090\000\011\000\089\000\012\000\088\000\014\000\087\000\
  3.2368 +\\019\000\144\000\020\000\085\000\022\000\084\000\023\000\143\000\
  3.2369 +\\024\000\082\000\025\000\081\000\026\000\080\000\027\000\079\000\
  3.2370 +\\028\000\078\000\029\000\077\000\030\000\076\000\031\000\075\000\
  3.2371 +\\032\000\074\000\033\000\073\000\034\000\072\000\035\000\071\000\
  3.2372 +\\039\000\070\000\042\000\069\000\043\000\068\000\044\000\067\000\
  3.2373 +\\045\000\142\000\046\000\141\000\051\000\140\000\055\000\139\000\
  3.2374 +\\074\000\138\000\076\000\137\000\077\000\136\000\083\000\135\000\
  3.2375 +\\084\000\134\000\085\000\133\000\089\000\132\000\090\000\131\000\
  3.2376 +\\091\000\130\000\092\000\129\000\093\000\128\000\094\000\127\000\
  3.2377 +\\095\000\126\000\096\000\125\000\097\000\124\000\138\000\123\000\
  3.2378 +\\144\000\061\000\145\000\060\000\146\000\059\000\000\000\
  3.2379 +\\009\000\090\000\011\000\089\000\012\000\088\000\014\000\087\000\
  3.2380 +\\019\000\086\000\020\000\188\000\022\000\084\000\023\000\083\000\
  3.2381 +\\024\000\082\000\025\000\187\000\026\000\080\000\027\000\186\000\
  3.2382 +\\028\000\078\000\029\000\077\000\030\000\076\000\031\000\185\000\
  3.2383 +\\032\000\184\000\033\000\073\000\034\000\072\000\036\000\183\000\
  3.2384 +\\037\000\182\000\046\000\181\000\049\000\180\000\050\000\179\000\
  3.2385 +\\051\000\178\000\052\000\177\000\053\000\176\000\054\000\175\000\
  3.2386 +\\056\000\174\000\098\000\173\000\100\000\172\000\101\000\171\000\
  3.2387 +\\102\000\170\000\103\000\169\000\104\000\168\000\105\000\167\000\
  3.2388 +\\106\000\166\000\107\000\165\000\108\000\164\000\110\000\163\000\
  3.2389 +\\111\000\162\000\112\000\161\000\113\000\160\000\117\000\159\000\
  3.2390 +\\118\000\158\000\119\000\157\000\120\000\156\000\121\000\155\000\
  3.2391 +\\122\000\154\000\123\000\153\000\124\000\152\000\125\000\151\000\
  3.2392 +\\126\000\150\000\144\000\061\000\145\000\060\000\146\000\059\000\000\000\
  3.2393 +\\000\000\
  3.2394 +\\000\000\
  3.2395 +\\000\000\
  3.2396 +\\000\000\
  3.2397 +\\000\000\
  3.2398 +\\000\000\
  3.2399 +\\001\000\212\000\000\000\
  3.2400 +\\000\000\
  3.2401 +\\000\000\
  3.2402 +\\000\000\
  3.2403 +\\000\000\
  3.2404 +\\000\000\
  3.2405 +\\000\000\
  3.2406 +\\000\000\
  3.2407 +\\000\000\
  3.2408 +\\000\000\
  3.2409 +\\000\000\
  3.2410 +\\000\000\
  3.2411 +\\000\000\
  3.2412 +\\000\000\
  3.2413 +\\000\000\
  3.2414 +\\000\000\
  3.2415 +\\000\000\
  3.2416 +\\000\000\
  3.2417 +\\000\000\
  3.2418 +\\000\000\
  3.2419 +\\000\000\
  3.2420 +\\000\000\
  3.2421 +\\000\000\
  3.2422 +\\036\000\219\000\037\000\218\000\038\000\217\000\000\000\
  3.2423 +\\000\000\
  3.2424 +\\000\000\
  3.2425 +\\000\000\
  3.2426 +\\000\000\
  3.2427 +\\000\000\
  3.2428 +\\000\000\
  3.2429 +\\000\000\
  3.2430 +\\000\000\
  3.2431 +\\000\000\
  3.2432 +\\000\000\
  3.2433 +\\000\000\
  3.2434 +\\000\000\
  3.2435 +\\000\000\
  3.2436 +\\000\000\
  3.2437 +\\009\000\090\000\011\000\089\000\012\000\088\000\014\000\087\000\
  3.2438 +\\019\000\086\000\020\000\225\000\022\000\084\000\023\000\083\000\
  3.2439 +\\024\000\082\000\025\000\081\000\026\000\080\000\027\000\079\000\
  3.2440 +\\028\000\078\000\029\000\077\000\030\000\076\000\031\000\075\000\
  3.2441 +\\032\000\074\000\033\000\073\000\034\000\072\000\035\000\071\000\
  3.2442 +\\039\000\070\000\042\000\069\000\043\000\068\000\044\000\067\000\
  3.2443 +\\045\000\224\000\144\000\061\000\145\000\060\000\146\000\059\000\000\000\
  3.2444 +\\009\000\090\000\011\000\089\000\012\000\088\000\014\000\087\000\
  3.2445 +\\019\000\086\000\020\000\085\000\022\000\084\000\023\000\083\000\
  3.2446 +\\024\000\082\000\025\000\081\000\026\000\080\000\027\000\079\000\
  3.2447 +\\028\000\078\000\029\000\077\000\030\000\076\000\031\000\075\000\
  3.2448 +\\032\000\074\000\033\000\073\000\034\000\072\000\035\000\071\000\
  3.2449 +\\039\000\070\000\042\000\069\000\043\000\068\000\044\000\067\000\
  3.2450 +\\045\000\066\000\055\000\065\000\057\000\064\000\058\000\226\000\
  3.2451 +\\144\000\061\000\145\000\060\000\146\000\059\000\000\000\
  3.2452 +\\001\000\227\000\000\000\
  3.2453 +\\000\000\
  3.2454 +\\000\000\
  3.2455 +\\000\000\
  3.2456 +\\000\000\
  3.2457 +\\000\000\
  3.2458 +\\000\000\
  3.2459 +\\050\000\230\000\000\000\
  3.2460 +\\000\000\
  3.2461 +\\000\000\
  3.2462 +\\000\000\
  3.2463 +\\000\000\
  3.2464 +\\000\000\
  3.2465 +\\000\000\
  3.2466 +\\009\000\090\000\011\000\089\000\012\000\088\000\014\000\087\000\
  3.2467 +\\019\000\086\000\020\000\085\000\022\000\084\000\023\000\083\000\
  3.2468 +\\024\000\082\000\025\000\081\000\026\000\080\000\027\000\079\000\
  3.2469 +\\028\000\078\000\029\000\077\000\030\000\076\000\031\000\075\000\
  3.2470 +\\032\000\074\000\033\000\073\000\034\000\072\000\035\000\071\000\
  3.2471 +\\039\000\070\000\042\000\069\000\043\000\068\000\044\000\067\000\
  3.2472 +\\045\000\117\000\046\000\116\000\051\000\115\000\055\000\114\000\
  3.2473 +\\063\000\111\000\065\000\110\000\066\000\235\000\144\000\061\000\
  3.2474 +\\145\000\060\000\146\000\059\000\000\000\
  3.2475 +\\000\000\
  3.2476 +\\000\000\
  3.2477 +\\000\000\
  3.2478 +\\009\000\090\000\011\000\089\000\012\000\088\000\014\000\087\000\
  3.2479 +\\019\000\086\000\020\000\085\000\022\000\084\000\023\000\083\000\
  3.2480 +\\024\000\082\000\025\000\081\000\026\000\080\000\027\000\079\000\
  3.2481 +\\028\000\078\000\029\000\077\000\030\000\076\000\031\000\075\000\
  3.2482 +\\032\000\074\000\033\000\073\000\034\000\072\000\035\000\071\000\
  3.2483 +\\039\000\070\000\042\000\069\000\043\000\068\000\044\000\067\000\
  3.2484 +\\045\000\117\000\046\000\116\000\051\000\115\000\055\000\114\000\
  3.2485 +\\061\000\113\000\062\000\238\000\063\000\111\000\065\000\110\000\
  3.2486 +\\066\000\109\000\067\000\108\000\068\000\107\000\069\000\106\000\
  3.2487 +\\070\000\105\000\071\000\104\000\072\000\237\000\144\000\061\000\
  3.2488 +\\145\000\060\000\146\000\059\000\000\000\
  3.2489 +\\009\000\090\000\011\000\089\000\012\000\088\000\014\000\087\000\
  3.2490 +\\019\000\086\000\020\000\085\000\022\000\084\000\023\000\083\000\
  3.2491 +\\024\000\082\000\025\000\081\000\026\000\080\000\027\000\079\000\
  3.2492 +\\028\000\078\000\029\000\077\000\030\000\076\000\031\000\075\000\
  3.2493 +\\032\000\074\000\033\000\073\000\034\000\072\000\035\000\071\000\
  3.2494 +\\039\000\070\000\042\000\069\000\043\000\068\000\044\000\067\000\
  3.2495 +\\045\000\117\000\046\000\116\000\051\000\115\000\055\000\114\000\
  3.2496 +\\060\000\240\000\063\000\111\000\065\000\110\000\066\000\109\000\
  3.2497 +\\067\000\108\000\068\000\107\000\069\000\106\000\070\000\105\000\
  3.2498 +\\071\000\104\000\072\000\239\000\144\000\061\000\145\000\060\000\
  3.2499 +\\146\000\059\000\000\000\
  3.2500 +\\000\000\
  3.2501 +\\000\000\
  3.2502 +\\001\000\242\000\000\000\
  3.2503 +\\000\000\
  3.2504 +\\000\000\
  3.2505 +\\000\000\
  3.2506 +\\000\000\
  3.2507 +\\000\000\
  3.2508 +\\000\000\
  3.2509 +\\050\000\245\000\000\000\
  3.2510 +\\000\000\
  3.2511 +\\000\000\
  3.2512 +\\000\000\
  3.2513 +\\000\000\
  3.2514 +\\000\000\
  3.2515 +\\000\000\
  3.2516 +\\000\000\
  3.2517 +\\000\000\
  3.2518 +\\000\000\
  3.2519 +\\009\000\090\000\011\000\089\000\012\000\088\000\014\000\087\000\
  3.2520 +\\019\000\086\000\020\000\085\000\022\000\084\000\023\000\083\000\
  3.2521 +\\024\000\082\000\025\000\081\000\026\000\080\000\027\000\079\000\
  3.2522 +\\028\000\078\000\029\000\077\000\030\000\076\000\031\000\075\000\
  3.2523 +\\032\000\074\000\033\000\073\000\034\000\072\000\035\000\071\000\
  3.2524 +\\039\000\070\000\042\000\069\000\043\000\068\000\044\000\067\000\
  3.2525 +\\045\000\142\000\046\000\141\000\051\000\140\000\055\000\139\000\
  3.2526 +\\077\000\136\000\085\000\133\000\089\000\132\000\090\000\251\000\
  3.2527 +\\138\000\123\000\144\000\061\000\145\000\060\000\146\000\059\000\000\000\
  3.2528 +\\000\000\
  3.2529 +\\000\000\
  3.2530 +\\000\000\
  3.2531 +\\000\000\
  3.2532 +\\000\000\
  3.2533 +\\000\000\
  3.2534 +\\009\000\090\000\011\000\089\000\012\000\088\000\014\000\087\000\
  3.2535 +\\019\000\144\000\020\000\085\000\022\000\084\000\023\000\143\000\
  3.2536 +\\024\000\082\000\025\000\081\000\026\000\080\000\027\000\079\000\
  3.2537 +\\028\000\078\000\029\000\077\000\030\000\076\000\031\000\075\000\
  3.2538 +\\032\000\074\000\033\000\073\000\034\000\072\000\035\000\071\000\
  3.2539 +\\039\000\070\000\042\000\069\000\043\000\068\000\044\000\067\000\
  3.2540 +\\045\000\142\000\046\000\141\000\051\000\140\000\055\000\139\000\
  3.2541 +\\074\000\138\000\076\000\002\001\077\000\136\000\083\000\135\000\
  3.2542 +\\084\000\001\001\085\000\133\000\089\000\132\000\090\000\131\000\
  3.2543 +\\091\000\130\000\092\000\129\000\093\000\128\000\094\000\127\000\
  3.2544 +\\095\000\126\000\096\000\000\001\138\000\123\000\144\000\061\000\
  3.2545 +\\145\000\060\000\146\000\059\000\000\000\
  3.2546 +\\009\000\090\000\011\000\089\000\012\000\088\000\014\000\087\000\
  3.2547 +\\019\000\086\000\020\000\085\000\022\000\084\000\023\000\083\000\
  3.2548 +\\024\000\082\000\025\000\081\000\026\000\080\000\027\000\079\000\
  3.2549 +\\028\000\078\000\029\000\077\000\030\000\076\000\031\000\075\000\
  3.2550 +\\032\000\074\000\033\000\073\000\034\000\072\000\035\000\071\000\
  3.2551 +\\039\000\070\000\042\000\069\000\043\000\068\000\044\000\067\000\
  3.2552 +\\045\000\142\000\046\000\141\000\051\000\140\000\055\000\139\000\
  3.2553 +\\075\000\004\001\077\000\136\000\085\000\133\000\089\000\132\000\
  3.2554 +\\090\000\131\000\091\000\130\000\092\000\129\000\093\000\128\000\
  3.2555 +\\094\000\127\000\095\000\126\000\096\000\003\001\138\000\123\000\
  3.2556 +\\144\000\061\000\145\000\060\000\146\000\059\000\000\000\
  3.2557 +\\001\000\006\001\000\000\
  3.2558 +\\000\000\
  3.2559 +\\000\000\
  3.2560 +\\000\000\
  3.2561 +\\000\000\
  3.2562 +\\000\000\
  3.2563 +\\000\000\
  3.2564 +\\000\000\
  3.2565 +\\036\000\183\000\037\000\182\000\050\000\179\000\053\000\010\001\000\000\
  3.2566 +\\000\000\
  3.2567 +\\000\000\
  3.2568 +\\000\000\
  3.2569 +\\000\000\
  3.2570 +\\000\000\
  3.2571 +\\000\000\
  3.2572 +\\000\000\
  3.2573 +\\000\000\
  3.2574 +\\000\000\
  3.2575 +\\000\000\
  3.2576 +\\000\000\
  3.2577 +\\000\000\
  3.2578 +\\000\000\
  3.2579 +\\000\000\
  3.2580 +\\000\000\
  3.2581 +\\000\000\
  3.2582 +\\000\000\
  3.2583 +\\000\000\
  3.2584 +\\000\000\
  3.2585 +\\000\000\
  3.2586 +\\000\000\
  3.2587 +\\000\000\
  3.2588 +\\000\000\
  3.2589 +\\000\000\
  3.2590 +\\000\000\
  3.2591 +\\000\000\
  3.2592 +\\000\000\
  3.2593 +\\000\000\
  3.2594 +\\000\000\
  3.2595 +\\000\000\
  3.2596 +\\000\000\
  3.2597 +\\000\000\
  3.2598 +\\000\000\
  3.2599 +\\000\000\
  3.2600 +\\000\000\
  3.2601 +\\000\000\
  3.2602 +\\000\000\
  3.2603 +\\000\000\
  3.2604 +\\000\000\
  3.2605 +\\000\000\
  3.2606 +\\000\000\
  3.2607 +\\000\000\
  3.2608 +\\000\000\
  3.2609 +\\009\000\090\000\011\000\089\000\012\000\088\000\014\000\087\000\
  3.2610 +\\019\000\086\000\020\000\188\000\022\000\084\000\023\000\083\000\
  3.2611 +\\024\000\082\000\025\000\187\000\026\000\080\000\027\000\186\000\
  3.2612 +\\028\000\078\000\029\000\077\000\030\000\076\000\031\000\185\000\
  3.2613 +\\032\000\184\000\033\000\073\000\034\000\072\000\036\000\183\000\
  3.2614 +\\037\000\182\000\046\000\181\000\049\000\180\000\050\000\179\000\
  3.2615 +\\051\000\178\000\052\000\177\000\053\000\176\000\054\000\175\000\
  3.2616 +\\056\000\174\000\098\000\173\000\100\000\027\001\101\000\171\000\
  3.2617 +\\102\000\170\000\103\000\169\000\104\000\168\000\105\000\167\000\
  3.2618 +\\106\000\166\000\107\000\165\000\108\000\164\000\110\000\163\000\
  3.2619 +\\111\000\162\000\112\000\161\000\113\000\160\000\117\000\159\000\
  3.2620 +\\118\000\158\000\119\000\157\000\120\000\156\000\121\000\155\000\
  3.2621 +\\122\000\154\000\123\000\153\000\124\000\152\000\125\000\026\001\
  3.2622 +\\144\000\061\000\145\000\060\000\146\000\059\000\000\000\
  3.2623 +\\009\000\090\000\011\000\089\000\012\000\088\000\014\000\087\000\
  3.2624 +\\019\000\086\000\020\000\188\000\022\000\084\000\023\000\083\000\
  3.2625 +\\024\000\082\000\025\000\187\000\026\000\080\000\027\000\186\000\
  3.2626 +\\028\000\078\000\029\000\077\000\030\000\076\000\031\000\185\000\
  3.2627 +\\032\000\184\000\033\000\073\000\034\000\072\000\036\000\183\000\
  3.2628 +\\037\000\182\000\046\000\181\000\049\000\180\000\050\000\179\000\
  3.2629 +\\051\000\178\000\052\000\177\000\053\000\176\000\054\000\175\000\
  3.2630 +\\056\000\174\000\099\000\029\001\101\000\171\000\102\000\170\000\
  3.2631 +\\103\000\169\000\104\000\168\000\105\000\167\000\106\000\166\000\
  3.2632 +\\107\000\165\000\108\000\164\000\110\000\163\000\111\000\162\000\
  3.2633 +\\112\000\161\000\113\000\160\000\117\000\159\000\118\000\158\000\
  3.2634 +\\119\000\157\000\120\000\156\000\121\000\155\000\122\000\154\000\
  3.2635 +\\123\000\153\000\124\000\152\000\125\000\028\001\144\000\061\000\
  3.2636 +\\145\000\060\000\146\000\059\000\000\000\
  3.2637 +\\000\000\
  3.2638 +\\000\000\
  3.2639 +\\000\000\
  3.2640 +\\000\000\
  3.2641 +\\000\000\
  3.2642 +\\000\000\
  3.2643 +\\000\000\
  3.2644 +\\002\000\058\000\003\000\032\001\009\000\023\000\014\000\022\000\000\000\
  3.2645 +\\000\000\
  3.2646 +\\006\000\041\001\008\000\040\001\009\000\039\001\010\000\038\001\
  3.2647 +\\011\000\037\001\012\000\036\001\013\000\035\001\014\000\087\000\
  3.2648 +\\016\000\034\001\000\000\
  3.2649 +\\009\000\090\000\011\000\089\000\012\000\088\000\014\000\087\000\
  3.2650 +\\019\000\086\000\020\000\085\000\022\000\084\000\023\000\083\000\
  3.2651 +\\024\000\082\000\025\000\081\000\026\000\080\000\027\000\079\000\
  3.2652 +\\028\000\078\000\029\000\077\000\030\000\076\000\031\000\075\000\
  3.2653 +\\032\000\074\000\033\000\073\000\034\000\072\000\035\000\071\000\
  3.2654 +\\039\000\070\000\042\000\069\000\043\000\068\000\044\000\067\000\
  3.2655 +\\045\000\066\000\055\000\065\000\057\000\049\001\144\000\061\000\
  3.2656 +\\145\000\060\000\146\000\059\000\000\000\
  3.2657 +\\009\000\090\000\011\000\089\000\012\000\088\000\014\000\087\000\
  3.2658 +\\019\000\086\000\020\000\051\001\021\000\050\001\022\000\084\000\
  3.2659 +\\023\000\083\000\024\000\082\000\025\000\187\000\026\000\080\000\
  3.2660 +\\027\000\186\000\028\000\078\000\029\000\077\000\030\000\076\000\
  3.2661 +\\031\000\075\000\032\000\184\000\033\000\073\000\034\000\072\000\
  3.2662 +\\144\000\061\000\145\000\060\000\146\000\059\000\000\000\
  3.2663 +\\009\000\090\000\011\000\089\000\012\000\088\000\014\000\087\000\
  3.2664 +\\019\000\086\000\020\000\051\001\021\000\052\001\022\000\084\000\
  3.2665 +\\023\000\083\000\024\000\082\000\025\000\187\000\026\000\080\000\
  3.2666 +\\027\000\186\000\028\000\078\000\029\000\077\000\030\000\076\000\
  3.2667 +\\031\000\075\000\032\000\184\000\033\000\073\000\034\000\072\000\
  3.2668 +\\144\000\061\000\145\000\060\000\146\000\059\000\000\000\
  3.2669 +\\009\000\090\000\011\000\089\000\012\000\088\000\014\000\087\000\
  3.2670 +\\019\000\086\000\020\000\053\001\022\000\084\000\023\000\083\000\
  3.2671 +\\024\000\082\000\025\000\187\000\026\000\080\000\027\000\186\000\
  3.2672 +\\028\000\078\000\029\000\077\000\030\000\076\000\031\000\075\000\
  3.2673 +\\032\000\184\000\033\000\073\000\034\000\072\000\144\000\061\000\
  3.2674 +\\145\000\060\000\146\000\059\000\000\000\
  3.2675 +\\009\000\090\000\011\000\089\000\012\000\088\000\014\000\087\000\
  3.2676 +\\019\000\086\000\020\000\054\001\022\000\084\000\023\000\083\000\
  3.2677 +\\024\000\082\000\025\000\187\000\026\000\080\000\027\000\186\000\
  3.2678 +\\028\000\078\000\029\000\077\000\030\000\076\000\031\000\075\000\
  3.2679 +\\032\000\184\000\033\000\073\000\034\000\072\000\144\000\061\000\
  3.2680 +\\145\000\060\000\146\000\059\000\000\000\
  3.2681 +\\000\000\
  3.2682 +\\009\000\090\000\011\000\089\000\012\000\088\000\014\000\087\000\
  3.2683 +\\019\000\086\000\020\000\051\001\021\000\055\001\022\000\084\000\
  3.2684 +\\023\000\083\000\024\000\082\000\025\000\187\000\026\000\080\000\
  3.2685 +\\027\000\186\000\028\000\078\000\029\000\077\000\030\000\076\000\
  3.2686 +\\031\000\075\000\032\000\184\000\033\000\073\000\034\000\072\000\
  3.2687 +\\144\000\061\000\145\000\060\000\146\000\059\000\000\000\
  3.2688 +\\051\000\140\000\089\000\057\001\139\000\056\001\000\000\
  3.2689 +\\051\000\140\000\089\000\059\001\140\000\058\001\000\000\
  3.2690 +\\009\000\090\000\011\000\089\000\012\000\088\000\014\000\087\000\
  3.2691 +\\019\000\086\000\020\000\085\000\022\000\084\000\023\000\083\000\
  3.2692 +\\024\000\082\000\025\000\081\000\026\000\080\000\027\000\079\000\
  3.2693 +\\028\000\078\000\029\000\077\000\030\000\076\000\031\000\075\000\
  3.2694 +\\032\000\074\000\033\000\073\000\034\000\072\000\035\000\071\000\
  3.2695 +\\039\000\070\000\042\000\069\000\043\000\068\000\044\000\067\000\
  3.2696 +\\045\000\142\000\046\000\141\000\051\000\140\000\055\000\139\000\
  3.2697 +\\077\000\136\000\085\000\133\000\089\000\132\000\090\000\131\000\
  3.2698 +\\091\000\130\000\092\000\129\000\093\000\128\000\094\000\127\000\
  3.2699 +\\095\000\126\000\096\000\060\001\138\000\123\000\144\000\061\000\
  3.2700 +\\145\000\060\000\146\000\059\000\000\000\
  3.2701 +\\000\000\
  3.2702 +\\036\000\219\000\038\000\217\000\000\000\
  3.2703 +\\000\000\
  3.2704 +\\000\000\
  3.2705 +\\009\000\090\000\011\000\089\000\012\000\088\000\014\000\087\000\
  3.2706 +\\019\000\086\000\020\000\085\000\022\000\084\000\023\000\083\000\
  3.2707 +\\024\000\082\000\025\000\081\000\026\000\080\000\027\000\079\000\
  3.2708 +\\028\000\078\000\029\000\077\000\030\000\076\000\031\000\075\000\
  3.2709 +\\032\000\074\000\033\000\073\000\034\000\072\000\035\000\071\000\
  3.2710 +\\039\000\070\000\042\000\069\000\043\000\068\000\044\000\067\000\
  3.2711 +\\045\000\117\000\046\000\116\000\051\000\115\000\055\000\114\000\
  3.2712 +\\063\000\111\000\065\000\110\000\066\000\063\001\144\000\061\000\
  3.2713 +\\145\000\060\000\146\000\059\000\000\000\
  3.2714 +\\009\000\090\000\011\000\089\000\012\000\088\000\014\000\087\000\
  3.2715 +\\019\000\086\000\020\000\085\000\022\000\084\000\023\000\083\000\
  3.2716 +\\024\000\082\000\025\000\081\000\026\000\080\000\027\000\079\000\
  3.2717 +\\028\000\078\000\029\000\077\000\030\000\076\000\031\000\075\000\
  3.2718 +\\032\000\074\000\033\000\073\000\034\000\072\000\035\000\071\000\
  3.2719 +\\039\000\070\000\042\000\069\000\043\000\068\000\044\000\067\000\
  3.2720 +\\045\000\117\000\046\000\116\000\051\000\115\000\055\000\114\000\
  3.2721 +\\063\000\111\000\065\000\110\000\066\000\064\001\144\000\061\000\
  3.2722 +\\145\000\060\000\146\000\059\000\000\000\
  3.2723 +\\009\000\090\000\011\000\089\000\012\000\088\000\014\000\087\000\
  3.2724 +\\019\000\086\000\020\000\085\000\022\000\084\000\023\000\083\000\
  3.2725 +\\024\000\082\000\025\000\081\000\026\000\080\000\027\000\079\000\
  3.2726 +\\028\000\078\000\029\000\077\000\030\000\076\000\031\000\075\000\
  3.2727 +\\032\000\074\000\033\000\073\000\034\000\072\000\035\000\071\000\
  3.2728 +\\039\000\070\000\042\000\069\000\043\000\068\000\044\000\067\000\
  3.2729 +\\045\000\117\000\046\000\116\000\051\000\115\000\055\000\114\000\
  3.2730 +\\063\000\111\000\065\000\110\000\066\000\065\001\144\000\061\000\
  3.2731 +\\145\000\060\000\146\000\059\000\000\000\
  3.2732 +\\009\000\090\000\011\000\089\000\012\000\088\000\014\000\087\000\
  3.2733 +\\019\000\086\000\020\000\085\000\022\000\084\000\023\000\083\000\
  3.2734 +\\024\000\082\000\025\000\081\000\026\000\080\000\027\000\079\000\
  3.2735 +\\028\000\078\000\029\000\077\000\030\000\076\000\031\000\075\000\
  3.2736 +\\032\000\074\000\033\000\073\000\034\000\072\000\035\000\071\000\
  3.2737 +\\039\000\070\000\042\000\069\000\043\000\068\000\044\000\067\000\
  3.2738 +\\045\000\117\000\046\000\116\000\051\000\115\000\055\000\114\000\
  3.2739 +\\063\000\111\000\065\000\110\000\066\000\066\001\144\000\061\000\
  3.2740 +\\145\000\060\000\146\000\059\000\000\000\
  3.2741 +\\009\000\090\000\011\000\089\000\012\000\088\000\014\000\087\000\
  3.2742 +\\019\000\086\000\020\000\085\000\022\000\084\000\023\000\083\000\
  3.2743 +\\024\000\082\000\025\000\081\000\026\000\080\000\027\000\079\000\
  3.2744 +\\028\000\078\000\029\000\077\000\030\000\076\000\031\000\075\000\
  3.2745 +\\032\000\074\000\033\000\073\000\034\000\072\000\035\000\071\000\
  3.2746 +\\039\000\070\000\042\000\069\000\043\000\068\000\044\000\067\000\
  3.2747 +\\045\000\117\000\046\000\116\000\051\000\115\000\055\000\114\000\
  3.2748 +\\063\000\111\000\065\000\110\000\066\000\067\001\144\000\061\000\
  3.2749 +\\145\000\060\000\146\000\059\000\000\000\
  3.2750 +\\061\000\068\001\000\000\
  3.2751 +\\011\000\070\001\064\000\069\001\000\000\
  3.2752 +\\000\000\
  3.2753 +\\009\000\090\000\011\000\089\000\012\000\088\000\014\000\087\000\
  3.2754 +\\019\000\086\000\020\000\085\000\022\000\084\000\023\000\083\000\
  3.2755 +\\024\000\082\000\025\000\081\000\026\000\080\000\027\000\079\000\
  3.2756 +\\028\000\078\000\029\000\077\000\030\000\076\000\031\000\075\000\
  3.2757 +\\032\000\074\000\033\000\073\000\034\000\072\000\035\000\071\000\
  3.2758 +\\039\000\070\000\042\000\069\000\043\000\068\000\044\000\067\000\
  3.2759 +\\045\000\117\000\046\000\116\000\051\000\115\000\055\000\114\000\
  3.2760 +\\063\000\111\000\065\000\110\000\066\000\109\000\067\000\108\000\
  3.2761 +\\068\000\107\000\069\000\106\000\070\000\105\000\071\000\104\000\
  3.2762 +\\072\000\237\000\144\000\061\000\145\000\060\000\146\000\059\000\000\000\
  3.2763 +\\000\000\
  3.2764 +\\000\000\
  3.2765 +\\000\000\
  3.2766 +\\000\000\
  3.2767 +\\000\000\
  3.2768 +\\000\000\
  3.2769 +\\009\000\090\000\011\000\089\000\012\000\088\000\014\000\087\000\
  3.2770 +\\019\000\086\000\020\000\085\000\022\000\084\000\023\000\083\000\
  3.2771 +\\024\000\082\000\025\000\081\000\026\000\080\000\027\000\079\000\
  3.2772 +\\028\000\078\000\029\000\077\000\030\000\076\000\031\000\075\000\
  3.2773 +\\032\000\074\000\033\000\073\000\034\000\072\000\035\000\071\000\
  3.2774 +\\039\000\070\000\042\000\069\000\043\000\068\000\044\000\067\000\
  3.2775 +\\045\000\142\000\046\000\141\000\051\000\140\000\055\000\139\000\
  3.2776 +\\077\000\136\000\085\000\133\000\089\000\132\000\090\000\076\001\
  3.2777 +\\138\000\123\000\144\000\061\000\145\000\060\000\146\000\059\000\000\000\
  3.2778 +\\009\000\090\000\011\000\089\000\012\000\088\000\014\000\087\000\
  3.2779 +\\019\000\086\000\020\000\085\000\022\000\084\000\023\000\083\000\
  3.2780 +\\024\000\082\000\025\000\081\000\026\000\080\000\027\000\079\000\
  3.2781 +\\028\000\078\000\029\000\077\000\030\000\076\000\031\000\075\000\
  3.2782 +\\032\000\074\000\033\000\073\000\034\000\072\000\035\000\071\000\
  3.2783 +\\039\000\070\000\042\000\069\000\043\000\068\000\044\000\067\000\
  3.2784 +\\045\000\142\000\046\000\141\000\051\000\140\000\055\000\139\000\
  3.2785 +\\077\000\136\000\085\000\133\000\089\000\132\000\090\000\077\001\
  3.2786 +\\138\000\123\000\144\000\061\000\145\000\060\000\146\000\059\000\000\000\
  3.2787 +\\009\000\090\000\011\000\089\000\012\000\088\000\014\000\087\000\
  3.2788 +\\019\000\086\000\020\000\085\000\022\000\084\000\023\000\083\000\
  3.2789 +\\024\000\082\000\025\000\081\000\026\000\080\000\027\000\079\000\
  3.2790 +\\028\000\078\000\029\000\077\000\030\000\076\000\031\000\075\000\
  3.2791 +\\032\000\074\000\033\000\073\000\034\000\072\000\035\000\071\000\
  3.2792 +\\039\000\070\000\042\000\069\000\043\000\068\000\044\000\067\000\
  3.2793 +\\045\000\142\000\046\000\141\000\051\000\140\000\055\000\139\000\
  3.2794 +\\077\000\136\000\085\000\133\000\089\000\132\000\090\000\078\001\
  3.2795 +\\138\000\123\000\144\000\061\000\145\000\060\000\146\000\059\000\000\000\
  3.2796 +\\009\000\090\000\011\000\089\000\012\000\088\000\014\000\087\000\
  3.2797 +\\019\000\086\000\020\000\085\000\022\000\084\000\023\000\083\000\
  3.2798 +\\024\000\082\000\025\000\081\000\026\000\080\000\027\000\079\000\
  3.2799 +\\028\000\078\000\029\000\077\000\030\000\076\000\031\000\075\000\
  3.2800 +\\032\000\074\000\033\000\073\000\034\000\072\000\035\000\071\000\
  3.2801 +\\039\000\070\000\042\000\069\000\043\000\068\000\044\000\067\000\
  3.2802 +\\045\000\142\000\046\000\141\000\051\000\140\000\055\000\139\000\
  3.2803 +\\077\000\136\000\085\000\133\000\089\000\132\000\090\000\079\001\
  3.2804 +\\138\000\123\000\144\000\061\000\145\000\060\000\146\000\059\000\000\000\
  3.2805 +\\009\000\090\000\011\000\089\000\012\000\088\000\014\000\087\000\
  3.2806 +\\019\000\086\000\020\000\085\000\022\000\084\000\023\000\083\000\
  3.2807 +\\024\000\082\000\025\000\081\000\026\000\080\000\027\000\079\000\
  3.2808 +\\028\000\078\000\029\000\077\000\030\000\076\000\031\000\075\000\
  3.2809 +\\032\000\074\000\033\000\073\000\034\000\072\000\035\000\071\000\
  3.2810 +\\039\000\070\000\042\000\069\000\043\000\068\000\044\000\067\000\
  3.2811 +\\045\000\142\000\046\000\141\000\051\000\140\000\055\000\139\000\
  3.2812 +\\077\000\136\000\085\000\133\000\089\000\132\000\090\000\080\001\
  3.2813 +\\138\000\123\000\144\000\061\000\145\000\060\000\146\000\059\000\000\000\
  3.2814 +\\009\000\089\001\011\000\088\001\047\000\087\001\079\000\086\001\
  3.2815 +\\080\000\085\001\081\000\084\001\082\000\083\001\141\000\082\001\
  3.2816 +\\145\000\081\001\000\000\
  3.2817 +\\074\000\092\001\000\000\
  3.2818 +\\011\000\096\001\086\000\095\001\087\000\094\001\088\000\093\001\000\000\
  3.2819 +\\000\000\
  3.2820 +\\009\000\090\000\011\000\089\000\012\000\088\000\014\000\087\000\
  3.2821 +\\019\000\086\000\020\000\085\000\022\000\084\000\023\000\083\000\
  3.2822 +\\024\000\082\000\025\000\081\000\026\000\080\000\027\000\079\000\
  3.2823 +\\028\000\078\000\029\000\077\000\030\000\076\000\031\000\075\000\
  3.2824 +\\032\000\074\000\033\000\073\000\034\000\072\000\035\000\071\000\
  3.2825 +\\039\000\070\000\042\000\069\000\043\000\068\000\044\000\067\000\
  3.2826 +\\045\000\142\000\046\000\141\000\051\000\140\000\055\000\139\000\
  3.2827 +\\077\000\136\000\085\000\133\000\089\000\132\000\090\000\131\000\
  3.2828 +\\091\000\130\000\092\000\129\000\093\000\128\000\094\000\127\000\
  3.2829 +\\095\000\126\000\096\000\000\001\138\000\123\000\144\000\061\000\
  3.2830 +\\145\000\060\000\146\000\059\000\000\000\
  3.2831 +\\051\000\140\000\089\000\059\001\140\000\097\001\000\000\
  3.2832 +\\051\000\140\000\089\000\057\001\139\000\098\001\000\000\
  3.2833 +\\009\000\090\000\011\000\089\000\012\000\088\000\014\000\087\000\
  3.2834 +\\019\000\086\000\020\000\085\000\022\000\084\000\023\000\083\000\
  3.2835 +\\024\000\082\000\025\000\081\000\026\000\080\000\027\000\079\000\
  3.2836 +\\028\000\078\000\029\000\077\000\030\000\076\000\031\000\075\000\
  3.2837 +\\032\000\074\000\033\000\073\000\034\000\072\000\035\000\071\000\
  3.2838 +\\039\000\070\000\042\000\069\000\043\000\068\000\044\000\067\000\
  3.2839 +\\045\000\142\000\046\000\141\000\051\000\140\000\055\000\139\000\
  3.2840 +\\077\000\136\000\085\000\133\000\089\000\132\000\090\000\131\000\
  3.2841 +\\091\000\130\000\092\000\129\000\093\000\128\000\094\000\127\000\
  3.2842 +\\095\000\126\000\096\000\099\001\138\000\123\000\144\000\061\000\
  3.2843 +\\145\000\060\000\146\000\059\000\000\000\
  3.2844 +\\000\000\
  3.2845 +\\000\000\
  3.2846 +\\000\000\
  3.2847 +\\000\000\
  3.2848 +\\000\000\
  3.2849 +\\000\000\
  3.2850 +\\000\000\
  3.2851 +\\009\000\090\000\011\000\089\000\012\000\088\000\014\000\087\000\
  3.2852 +\\019\000\086\000\020\000\188\000\022\000\084\000\023\000\083\000\
  3.2853 +\\024\000\082\000\025\000\187\000\026\000\080\000\027\000\186\000\
  3.2854 +\\028\000\078\000\029\000\077\000\030\000\076\000\031\000\075\000\
  3.2855 +\\032\000\184\000\033\000\073\000\034\000\072\000\036\000\183\000\
  3.2856 +\\037\000\182\000\046\000\181\000\049\000\180\000\050\000\179\000\
  3.2857 +\\051\000\178\000\052\000\177\000\053\000\176\000\054\000\175\000\
  3.2858 +\\056\000\174\000\101\000\171\000\102\000\170\000\103\000\107\001\
  3.2859 +\\113\000\160\000\117\000\159\000\118\000\106\001\144\000\061\000\
  3.2860 +\\145\000\060\000\146\000\059\000\000\000\
  3.2861 +\\009\000\090\000\011\000\089\000\012\000\088\000\014\000\087\000\
  3.2862 +\\019\000\086\000\020\000\188\000\022\000\084\000\023\000\083\000\
  3.2863 +\\024\000\082\000\025\000\187\000\026\000\080\000\027\000\186\000\
  3.2864 +\\028\000\078\000\029\000\077\000\030\000\076\000\031\000\075\000\
  3.2865 +\\032\000\184\000\033\000\073\000\034\000\072\000\036\000\183\000\
  3.2866 +\\037\000\182\000\046\000\181\000\049\000\180\000\050\000\179\000\
  3.2867 +\\051\000\178\000\052\000\177\000\053\000\176\000\054\000\175\000\
  3.2868 +\\056\000\174\000\101\000\171\000\102\000\170\000\103\000\107\001\
  3.2869 +\\113\000\160\000\117\000\159\000\118\000\109\001\144\000\061\000\
  3.2870 +\\145\000\060\000\146\000\059\000\000\000\
  3.2871 +\\009\000\090\000\011\000\089\000\012\000\088\000\014\000\087\000\
  3.2872 +\\019\000\086\000\020\000\188\000\022\000\084\000\023\000\083\000\
  3.2873 +\\024\000\082\000\025\000\187\000\026\000\080\000\027\000\186\000\
  3.2874 +\\028\000\078\000\029\000\077\000\030\000\076\000\031\000\075\000\
  3.2875 +\\032\000\184\000\033\000\073\000\034\000\072\000\036\000\183\000\
  3.2876 +\\037\000\182\000\046\000\181\000\049\000\180\000\050\000\179\000\
  3.2877 +\\051\000\178\000\052\000\177\000\053\000\176\000\054\000\175\000\
  3.2878 +\\056\000\174\000\101\000\171\000\102\000\170\000\103\000\107\001\
  3.2879 +\\113\000\160\000\117\000\159\000\118\000\110\001\144\000\061\000\
  3.2880 +\\145\000\060\000\146\000\059\000\000\000\
  3.2881 +\\009\000\090\000\011\000\089\000\012\000\088\000\014\000\087\000\
  3.2882 +\\019\000\086\000\020\000\188\000\022\000\084\000\023\000\083\000\
  3.2883 +\\024\000\082\000\025\000\187\000\026\000\080\000\027\000\186\000\
  3.2884 +\\028\000\078\000\029\000\077\000\030\000\076\000\031\000\075\000\
  3.2885 +\\032\000\184\000\033\000\073\000\034\000\072\000\036\000\183\000\
  3.2886 +\\037\000\182\000\046\000\181\000\049\000\180\000\050\000\179\000\
  3.2887 +\\051\000\178\000\052\000\177\000\053\000\176\000\054\000\175\000\
  3.2888 +\\056\000\174\000\101\000\171\000\102\000\170\000\103\000\107\001\
  3.2889 +\\113\000\160\000\117\000\159\000\118\000\111\001\144\000\061\000\
  3.2890 +\\145\000\060\000\146\000\059\000\000\000\
  3.2891 +\\009\000\090\000\011\000\089\000\012\000\088\000\014\000\087\000\
  3.2892 +\\019\000\086\000\020\000\188\000\022\000\084\000\023\000\083\000\
  3.2893 +\\024\000\082\000\025\000\187\000\026\000\080\000\027\000\186\000\
  3.2894 +\\028\000\078\000\029\000\077\000\030\000\076\000\031\000\075\000\
  3.2895 +\\032\000\184\000\033\000\073\000\034\000\072\000\036\000\183\000\
  3.2896 +\\037\000\182\000\046\000\181\000\049\000\180\000\050\000\179\000\
  3.2897 +\\051\000\178\000\052\000\177\000\053\000\176\000\054\000\175\000\
  3.2898 +\\056\000\174\000\101\000\171\000\102\000\170\000\103\000\107\001\
  3.2899 +\\113\000\160\000\117\000\159\000\118\000\112\001\144\000\061\000\
  3.2900 +\\145\000\060\000\146\000\059\000\000\000\
  3.2901 +\\009\000\090\000\011\000\089\000\012\000\088\000\014\000\087\000\
  3.2902 +\\019\000\086\000\020\000\188\000\022\000\084\000\023\000\083\000\
  3.2903 +\\024\000\082\000\025\000\187\000\026\000\080\000\027\000\186\000\
  3.2904 +\\028\000\078\000\029\000\077\000\030\000\076\000\031\000\075\000\
  3.2905 +\\032\000\184\000\033\000\073\000\034\000\072\000\036\000\183\000\
  3.2906 +\\037\000\182\000\046\000\181\000\049\000\180\000\050\000\179\000\
  3.2907 +\\051\000\178\000\052\000\177\000\053\000\176\000\054\000\175\000\
  3.2908 +\\056\000\174\000\101\000\171\000\102\000\170\000\103\000\107\001\
  3.2909 +\\113\000\160\000\117\000\159\000\118\000\113\001\144\000\061\000\
  3.2910 +\\145\000\060\000\146\000\059\000\000\000\
  3.2911 +\\009\000\090\000\011\000\089\000\012\000\088\000\014\000\087\000\
  3.2912 +\\019\000\086\000\020\000\188\000\022\000\084\000\023\000\083\000\
  3.2913 +\\024\000\082\000\025\000\187\000\026\000\080\000\027\000\186\000\
  3.2914 +\\028\000\078\000\029\000\077\000\030\000\076\000\031\000\075\000\
  3.2915 +\\032\000\184\000\033\000\073\000\034\000\072\000\036\000\183\000\
  3.2916 +\\037\000\182\000\046\000\181\000\049\000\180\000\050\000\179\000\
  3.2917 +\\051\000\178\000\052\000\177\000\053\000\176\000\054\000\175\000\
  3.2918 +\\056\000\174\000\101\000\171\000\102\000\170\000\103\000\107\001\
  3.2919 +\\113\000\160\000\117\000\159\000\118\000\114\001\144\000\061\000\
  3.2920 +\\145\000\060\000\146\000\059\000\000\000\
  3.2921 +\\009\000\090\000\011\000\089\000\012\000\088\000\014\000\087\000\
  3.2922 +\\019\000\086\000\020\000\188\000\022\000\084\000\023\000\083\000\
  3.2923 +\\024\000\082\000\025\000\187\000\026\000\080\000\027\000\186\000\
  3.2924 +\\028\000\078\000\029\000\077\000\030\000\076\000\031\000\185\000\
  3.2925 +\\032\000\184\000\033\000\073\000\034\000\072\000\036\000\183\000\
  3.2926 +\\037\000\182\000\046\000\181\000\049\000\180\000\050\000\179\000\
  3.2927 +\\051\000\178\000\052\000\177\000\053\000\176\000\054\000\175\000\
  3.2928 +\\056\000\174\000\101\000\171\000\102\000\170\000\103\000\169\000\
  3.2929 +\\104\000\168\000\105\000\167\000\106\000\166\000\107\000\165\000\
  3.2930 +\\108\000\164\000\109\000\116\001\110\000\163\000\111\000\162\000\
  3.2931 +\\112\000\161\000\113\000\160\000\117\000\159\000\118\000\158\000\
  3.2932 +\\119\000\157\000\120\000\156\000\121\000\155\000\122\000\154\000\
  3.2933 +\\123\000\153\000\124\000\152\000\125\000\115\001\144\000\061\000\
  3.2934 +\\145\000\060\000\146\000\059\000\000\000\
  3.2935 +\\009\000\090\000\011\000\089\000\012\000\088\000\014\000\087\000\
  3.2936 +\\019\000\086\000\020\000\188\000\022\000\084\000\023\000\083\000\
  3.2937 +\\024\000\082\000\025\000\187\000\026\000\080\000\027\000\186\000\
  3.2938 +\\028\000\078\000\029\000\077\000\030\000\076\000\031\000\075\000\
  3.2939 +\\032\000\184\000\033\000\073\000\034\000\072\000\036\000\183\000\
  3.2940 +\\037\000\182\000\046\000\181\000\049\000\180\000\050\000\179\000\
  3.2941 +\\051\000\178\000\052\000\177\000\053\000\176\000\054\000\175\000\
  3.2942 +\\056\000\174\000\101\000\171\000\102\000\170\000\103\000\107\001\
  3.2943 +\\108\000\118\001\113\000\160\000\117\000\159\000\118\000\117\001\
  3.2944 +\\144\000\061\000\145\000\060\000\146\000\059\000\000\000\
  3.2945 +\\009\000\090\000\011\000\089\000\012\000\088\000\014\000\087\000\
  3.2946 +\\019\000\086\000\020\000\188\000\022\000\084\000\023\000\083\000\
  3.2947 +\\024\000\082\000\025\000\187\000\026\000\080\000\027\000\186\000\
  3.2948 +\\028\000\078\000\029\000\077\000\030\000\076\000\031\000\075\000\
  3.2949 +\\032\000\184\000\033\000\073\000\034\000\072\000\036\000\183\000\
  3.2950 +\\037\000\182\000\046\000\181\000\049\000\180\000\050\000\179\000\
  3.2951 +\\051\000\178\000\052\000\177\000\053\000\176\000\054\000\175\000\
  3.2952 +\\056\000\174\000\101\000\171\000\102\000\170\000\103\000\107\001\
  3.2953 +\\108\000\119\001\113\000\160\000\117\000\159\000\118\000\117\001\
  3.2954 +\\144\000\061\000\145\000\060\000\146\000\059\000\000\000\
  3.2955 +\\009\000\090\000\011\000\089\000\012\000\088\000\014\000\087\000\
  3.2956 +\\019\000\086\000\020\000\188\000\022\000\084\000\023\000\083\000\
  3.2957 +\\024\000\082\000\025\000\187\000\026\000\080\000\027\000\186\000\
  3.2958 +\\028\000\078\000\029\000\077\000\030\000\076\000\031\000\075\000\
  3.2959 +\\032\000\184\000\033\000\073\000\034\000\072\000\036\000\183\000\
  3.2960 +\\037\000\182\000\046\000\181\000\049\000\180\000\050\000\179\000\
  3.2961 +\\051\000\178\000\052\000\177\000\053\000\176\000\054\000\175\000\
  3.2962 +\\056\000\174\000\101\000\171\000\102\000\170\000\103\000\107\001\
  3.2963 +\\106\000\121\001\108\000\120\001\113\000\160\000\117\000\159\000\
  3.2964 +\\118\000\117\001\144\000\061\000\145\000\060\000\146\000\059\000\000\000\
  3.2965 +\\009\000\090\000\011\000\089\000\012\000\088\000\014\000\087\000\
  3.2966 +\\019\000\086\000\020\000\188\000\022\000\084\000\023\000\083\000\
  3.2967 +\\024\000\082\000\025\000\187\000\026\000\080\000\027\000\186\000\
  3.2968 +\\028\000\078\000\029\000\077\000\030\000\076\000\031\000\075\000\
  3.2969 +\\032\000\184\000\033\000\073\000\034\000\072\000\036\000\183\000\
  3.2970 +\\037\000\182\000\046\000\181\000\049\000\180\000\050\000\179\000\
  3.2971 +\\051\000\178\000\052\000\177\000\053\000\176\000\054\000\175\000\
  3.2972 +\\056\000\174\000\101\000\171\000\102\000\170\000\103\000\107\001\
  3.2973 +\\108\000\122\001\113\000\160\000\117\000\159\000\118\000\117\001\
  3.2974 +\\144\000\061\000\145\000\060\000\146\000\059\000\000\000\
  3.2975 +\\009\000\090\000\011\000\089\000\012\000\088\000\014\000\087\000\
  3.2976 +\\019\000\086\000\020\000\188\000\022\000\084\000\023\000\083\000\
  3.2977 +\\024\000\082\000\025\000\187\000\026\000\080\000\027\000\186\000\
  3.2978 +\\028\000\078\000\029\000\077\000\030\000\076\000\031\000\075\000\
  3.2979 +\\032\000\184\000\033\000\073\000\034\000\072\000\036\000\183\000\
  3.2980 +\\037\000\182\000\046\000\181\000\049\000\180\000\050\000\179\000\
  3.2981 +\\051\000\178\000\052\000\177\000\053\000\176\000\054\000\175\000\
  3.2982 +\\056\000\174\000\101\000\171\000\102\000\170\000\103\000\107\001\
  3.2983 +\\108\000\123\001\113\000\160\000\117\000\159\000\118\000\117\001\
  3.2984 +\\144\000\061\000\145\000\060\000\146\000\059\000\000\000\
  3.2985 +\\098\000\124\001\000\000\
  3.2986 +\\011\000\128\001\114\000\127\001\115\000\126\001\116\000\125\001\000\000\
  3.2987 +\\009\000\090\000\011\000\089\000\012\000\088\000\014\000\087\000\
  3.2988 +\\019\000\086\000\020\000\188\000\022\000\084\000\023\000\083\000\
  3.2989 +\\024\000\082\000\025\000\187\000\026\000\080\000\027\000\186\000\
  3.2990 +\\028\000\078\000\029\000\077\000\030\000\076\000\031\000\185\000\
  3.2991 +\\032\000\184\000\033\000\073\000\034\000\072\000\036\000\183\000\
  3.2992 +\\037\000\182\000\046\000\181\000\049\000\180\000\050\000\179\000\
  3.2993 +\\051\000\178\000\052\000\177\000\053\000\176\000\054\000\175\000\
  3.2994 +\\056\000\174\000\101\000\171\000\102\000\170\000\103\000\169\000\
  3.2995 +\\104\000\168\000\105\000\167\000\106\000\166\000\107\000\165\000\
  3.2996 +\\108\000\164\000\110\000\163\000\111\000\162\000\112\000\161\000\
  3.2997 +\\113\000\160\000\117\000\159\000\118\000\158\000\119\000\157\000\
  3.2998 +\\120\000\156\000\121\000\155\000\122\000\154\000\123\000\153\000\
  3.2999 +\\124\000\152\000\125\000\129\001\144\000\061\000\145\000\060\000\
  3.3000 +\\146\000\059\000\000\000\
  3.3001 +\\009\000\090\000\019\000\131\001\031\000\130\001\000\000\
  3.3002 +\\051\000\178\000\054\000\175\000\117\000\133\001\137\000\132\001\000\000\
  3.3003 +\\009\000\090\000\011\000\089\000\012\000\088\000\014\000\087\000\
  3.3004 +\\019\000\086\000\020\000\188\000\022\000\084\000\023\000\083\000\
  3.3005 +\\024\000\082\000\025\000\187\000\026\000\080\000\027\000\186\000\
  3.3006 +\\028\000\078\000\029\000\077\000\030\000\076\000\031\000\185\000\
  3.3007 +\\032\000\184\000\033\000\073\000\034\000\072\000\036\000\183\000\
  3.3008 +\\037\000\182\000\046\000\181\000\049\000\180\000\050\000\179\000\
  3.3009 +\\051\000\178\000\052\000\177\000\053\000\176\000\054\000\175\000\
  3.3010 +\\056\000\174\000\101\000\171\000\102\000\170\000\103\000\169\000\
  3.3011 +\\104\000\168\000\105\000\167\000\106\000\166\000\107\000\165\000\
  3.3012 +\\108\000\164\000\110\000\163\000\111\000\162\000\112\000\161\000\
  3.3013 +\\113\000\160\000\117\000\159\000\118\000\158\000\119\000\157\000\
  3.3014 +\\120\000\156\000\121\000\155\000\122\000\154\000\123\000\153\000\
  3.3015 +\\124\000\152\000\125\000\134\001\144\000\061\000\145\000\060\000\
  3.3016 +\\146\000\059\000\000\000\
  3.3017 +\\000\000\
  3.3018 +\\000\000\
  3.3019 +\\000\000\
  3.3020 +\\000\000\
  3.3021 +\\000\000\
  3.3022 +\\009\000\090\000\011\000\089\000\012\000\088\000\014\000\087\000\
  3.3023 +\\019\000\086\000\020\000\188\000\022\000\084\000\023\000\083\000\
  3.3024 +\\024\000\082\000\025\000\187\000\026\000\080\000\027\000\186\000\
  3.3025 +\\028\000\078\000\029\000\077\000\030\000\076\000\031\000\185\000\
  3.3026 +\\032\000\184\000\033\000\073\000\034\000\072\000\036\000\183\000\
  3.3027 +\\037\000\182\000\046\000\181\000\049\000\180\000\050\000\179\000\
  3.3028 +\\051\000\178\000\052\000\177\000\053\000\176\000\054\000\175\000\
  3.3029 +\\056\000\174\000\101\000\171\000\102\000\170\000\103\000\169\000\
  3.3030 +\\104\000\168\000\105\000\167\000\106\000\166\000\107\000\165\000\
  3.3031 +\\108\000\164\000\110\000\163\000\111\000\162\000\112\000\161\000\
  3.3032 +\\113\000\160\000\117\000\159\000\118\000\158\000\119\000\157\000\
  3.3033 +\\120\000\156\000\121\000\155\000\122\000\154\000\123\000\153\000\
  3.3034 +\\124\000\152\000\125\000\026\001\144\000\061\000\145\000\060\000\
  3.3035 +\\146\000\059\000\000\000\
  3.3036 +\\000\000\
  3.3037 +\\000\000\
  3.3038 +\\000\000\
  3.3039 +\\000\000\
  3.3040 +\\000\000\
  3.3041 +\\000\000\
  3.3042 +\\000\000\
  3.3043 +\\000\000\
  3.3044 +\\005\000\142\001\000\000\
  3.3045 +\\000\000\
  3.3046 +\\000\000\
  3.3047 +\\000\000\
  3.3048 +\\000\000\
  3.3049 +\\000\000\
  3.3050 +\\000\000\
  3.3051 +\\000\000\
  3.3052 +\\006\000\041\001\007\000\150\001\008\000\149\001\009\000\039\001\
  3.3053 +\\010\000\038\001\011\000\037\001\012\000\036\001\013\000\035\001\
  3.3054 +\\014\000\087\000\016\000\034\001\000\000\
  3.3055 +\\000\000\
  3.3056 +\\000\000\
  3.3057 +\\000\000\
  3.3058 +\\000\000\
  3.3059 +\\000\000\
  3.3060 +\\000\000\
  3.3061 +\\000\000\
  3.3062 +\\000\000\
  3.3063 +\\000\000\
  3.3064 +\\000\000\
  3.3065 +\\000\000\
  3.3066 +\\000\000\
  3.3067 +\\000\000\
  3.3068 +\\000\000\
  3.3069 +\\000\000\
  3.3070 +\\000\000\
  3.3071 +\\000\000\
  3.3072 +\\000\000\
  3.3073 +\\000\000\
  3.3074 +\\000\000\
  3.3075 +\\000\000\
  3.3076 +\\000\000\
  3.3077 +\\000\000\
  3.3078 +\\000\000\
  3.3079 +\\009\000\090\000\011\000\089\000\012\000\088\000\014\000\087\000\
  3.3080 +\\019\000\086\000\020\000\085\000\022\000\084\000\023\000\083\000\
  3.3081 +\\024\000\082\000\025\000\081\000\026\000\080\000\027\000\079\000\
  3.3082 +\\028\000\078\000\029\000\077\000\030\000\076\000\031\000\075\000\
  3.3083 +\\032\000\074\000\033\000\073\000\034\000\072\000\035\000\071\000\
  3.3084 +\\039\000\070\000\042\000\069\000\043\000\068\000\044\000\067\000\
  3.3085 +\\045\000\117\000\046\000\116\000\051\000\115\000\055\000\114\000\
  3.3086 +\\060\000\162\001\063\000\111\000\065\000\110\000\066\000\109\000\
  3.3087 +\\067\000\108\000\068\000\107\000\069\000\106\000\070\000\105\000\
  3.3088 +\\071\000\104\000\072\000\239\000\144\000\061\000\145\000\060\000\
  3.3089 +\\146\000\059\000\000\000\
  3.3090 +\\000\000\
  3.3091 +\\000\000\
  3.3092 +\\000\000\
  3.3093 +\\000\000\
  3.3094 +\\000\000\
  3.3095 +\\000\000\
  3.3096 +\\000\000\
  3.3097 +\\000\000\
  3.3098 +\\000\000\
  3.3099 +\\000\000\
  3.3100 +\\000\000\
  3.3101 +\\000\000\
  3.3102 +\\000\000\
  3.3103 +\\000\000\
  3.3104 +\\000\000\
  3.3105 +\\000\000\
  3.3106 +\\000\000\
  3.3107 +\\009\000\089\001\011\000\088\001\047\000\087\001\078\000\170\001\
  3.3108 +\\079\000\169\001\080\000\168\001\081\000\084\001\141\000\167\001\
  3.3109 +\\145\000\081\001\000\000\
  3.3110 +\\000\000\
  3.3111 +\\000\000\
  3.3112 +\\000\000\
  3.3113 +\\000\000\
  3.3114 +\\000\000\
  3.3115 +\\000\000\
  3.3116 +\\000\000\
  3.3117 +\\000\000\
  3.3118 +\\000\000\
  3.3119 +\\000\000\
  3.3120 +\\000\000\
  3.3121 +\\009\000\090\000\011\000\089\000\012\000\088\000\014\000\087\000\
  3.3122 +\\019\000\086\000\020\000\085\000\022\000\084\000\023\000\083\000\
  3.3123 +\\024\000\082\000\025\000\081\000\026\000\080\000\027\000\079\000\
  3.3124 +\\028\000\078\000\029\000\077\000\030\000\076\000\031\000\075\000\
  3.3125 +\\032\000\074\000\033\000\073\000\034\000\072\000\035\000\071\000\
  3.3126 +\\039\000\070\000\042\000\069\000\043\000\068\000\044\000\067\000\
  3.3127 +\\045\000\142\000\046\000\141\000\051\000\140\000\055\000\139\000\
  3.3128 +\\075\000\178\001\077\000\136\000\085\000\133\000\089\000\132\000\
  3.3129 +\\090\000\131\000\091\000\130\000\092\000\129\000\093\000\128\000\
  3.3130 +\\094\000\127\000\095\000\126\000\096\000\003\001\138\000\123\000\
  3.3131 +\\144\000\061\000\145\000\060\000\146\000\059\000\000\000\
  3.3132 +\\000\000\
  3.3133 +\\000\000\
  3.3134 +\\000\000\
  3.3135 +\\000\000\
  3.3136 +\\009\000\090\000\011\000\089\000\012\000\088\000\014\000\087\000\
  3.3137 +\\019\000\086\000\020\000\188\000\022\000\084\000\023\000\083\000\
  3.3138 +\\024\000\082\000\025\000\187\000\026\000\080\000\027\000\186\000\
  3.3139 +\\028\000\078\000\029\000\077\000\030\000\076\000\031\000\185\000\
  3.3140 +\\032\000\184\000\033\000\073\000\034\000\072\000\036\000\183\000\
  3.3141 +\\037\000\182\000\046\000\181\000\049\000\180\000\050\000\179\000\
  3.3142 +\\051\000\178\000\052\000\177\000\053\000\176\000\054\000\175\000\
  3.3143 +\\056\000\174\000\101\000\171\000\102\000\170\000\103\000\169\000\
  3.3144 +\\104\000\168\000\105\000\167\000\106\000\166\000\107\000\165\000\
  3.3145 +\\108\000\164\000\110\000\163\000\111\000\162\000\112\000\161\000\
  3.3146 +\\113\000\160\000\117\000\159\000\118\000\158\000\119\000\157\000\
  3.3147 +\\120\000\156\000\121\000\155\000\122\000\154\000\123\000\153\000\
  3.3148 +\\124\000\152\000\125\000\180\001\144\000\061\000\145\000\060\000\
  3.3149 +\\146\000\059\000\000\000\
  3.3150 +\\000\000\
  3.3151 +\\000\000\
  3.3152 +\\000\000\
  3.3153 +\\000\000\
  3.3154 +\\000\000\
  3.3155 +\\000\000\
  3.3156 +\\000\000\
  3.3157 +\\000\000\
  3.3158 +\\000\000\
  3.3159 +\\000\000\
  3.3160 +\\000\000\
  3.3161 +\\000\000\
  3.3162 +\\000\000\
  3.3163 +\\000\000\
  3.3164 +\\000\000\
  3.3165 +\\000\000\
  3.3166 +\\000\000\
  3.3167 +\\000\000\
  3.3168 +\\000\000\
  3.3169 +\\000\000\
  3.3170 +\\000\000\
  3.3171 +\\000\000\
  3.3172 +\\000\000\
  3.3173 +\\000\000\
  3.3174 +\\000\000\
  3.3175 +\\000\000\
  3.3176 +\\000\000\
  3.3177 +\\000\000\
  3.3178 +\\009\000\090\000\011\000\089\000\012\000\088\000\014\000\087\000\
  3.3179 +\\019\000\086\000\020\000\188\000\022\000\084\000\023\000\083\000\
  3.3180 +\\024\000\082\000\025\000\187\000\026\000\080\000\027\000\186\000\
  3.3181 +\\028\000\078\000\029\000\077\000\030\000\076\000\031\000\185\000\
  3.3182 +\\032\000\184\000\033\000\073\000\034\000\072\000\036\000\183\000\
  3.3183 +\\037\000\182\000\046\000\181\000\049\000\180\000\050\000\179\000\
  3.3184 +\\051\000\178\000\052\000\177\000\053\000\176\000\054\000\175\000\
  3.3185 +\\056\000\174\000\099\000\187\001\101\000\171\000\102\000\170\000\
  3.3186 +\\103\000\169\000\104\000\168\000\105\000\167\000\106\000\166\000\
  3.3187 +\\107\000\165\000\108\000\164\000\110\000\163\000\111\000\162\000\
  3.3188 +\\112\000\161\000\113\000\160\000\117\000\159\000\118\000\158\000\
  3.3189 +\\119\000\157\000\120\000\156\000\121\000\155\000\122\000\154\000\
  3.3190 +\\123\000\153\000\124\000\152\000\125\000\028\001\144\000\061\000\
  3.3191 +\\145\000\060\000\146\000\059\000\000\000\
  3.3192 +\\000\000\
  3.3193 +\\000\000\
  3.3194 +\\006\000\041\001\008\000\188\001\009\000\039\001\010\000\038\001\
  3.3195 +\\011\000\037\001\012\000\036\001\013\000\035\001\014\000\087\000\
  3.3196 +\\016\000\034\001\000\000\
  3.3197 +\\006\000\041\001\007\000\189\001\008\000\149\001\009\000\039\001\
  3.3198 +\\010\000\038\001\011\000\037\001\012\000\036\001\013\000\035\001\
  3.3199 +\\014\000\087\000\016\000\034\001\000\000\
  3.3200 +\\000\000\
  3.3201 +\\006\000\191\001\017\000\190\001\000\000\
  3.3202 +\\009\000\090\000\011\000\089\000\012\000\088\000\014\000\087\000\
  3.3203 +\\019\000\144\000\020\000\085\000\022\000\084\000\023\000\143\000\
  3.3204 +\\024\000\082\000\025\000\081\000\026\000\080\000\027\000\079\000\
  3.3205 +\\028\000\078\000\029\000\077\000\030\000\076\000\031\000\075\000\
  3.3206 +\\032\000\074\000\033\000\073\000\034\000\072\000\035\000\071\000\
  3.3207 +\\039\000\070\000\042\000\069\000\043\000\068\000\044\000\067\000\
  3.3208 +\\045\000\142\000\046\000\141\000\051\000\140\000\055\000\139\000\
  3.3209 +\\074\000\138\000\076\000\137\000\077\000\136\000\083\000\135\000\
  3.3210 +\\084\000\134\000\085\000\133\000\089\000\132\000\090\000\131\000\
  3.3211 +\\091\000\130\000\092\000\129\000\093\000\128\000\094\000\127\000\
  3.3212 +\\095\000\126\000\096\000\125\000\097\000\192\001\138\000\123\000\
  3.3213 +\\144\000\061\000\145\000\060\000\146\000\059\000\000\000\
  3.3214 +\\009\000\090\000\011\000\089\000\012\000\088\000\014\000\087\000\
  3.3215 +\\019\000\086\000\020\000\193\001\022\000\084\000\023\000\083\000\
  3.3216 +\\024\000\082\000\025\000\187\000\026\000\080\000\027\000\186\000\
  3.3217 +\\028\000\078\000\029\000\077\000\030\000\076\000\031\000\075\000\
  3.3218 +\\032\000\184\000\033\000\073\000\034\000\072\000\144\000\061\000\
  3.3219 +\\145\000\060\000\146\000\059\000\000\000\
  3.3220 +\\009\000\090\000\011\000\089\000\012\000\088\000\014\000\087\000\
  3.3221 +\\019\000\086\000\020\000\085\000\022\000\084\000\023\000\083\000\
  3.3222 +\\024\000\082\000\025\000\081\000\026\000\080\000\027\000\079\000\
  3.3223 +\\028\000\078\000\029\000\077\000\030\000\076\000\031\000\075\000\
  3.3224 +\\032\000\074\000\033\000\073\000\034\000\072\000\035\000\071\000\
  3.3225 +\\039\000\070\000\042\000\069\000\043\000\068\000\044\000\067\000\
  3.3226 +\\045\000\066\000\055\000\065\000\057\000\064\000\058\000\063\000\
  3.3227 +\\059\000\194\001\144\000\061\000\145\000\060\000\146\000\059\000\000\000\
  3.3228 +\\009\000\090\000\011\000\089\000\012\000\088\000\014\000\087\000\
  3.3229 +\\019\000\086\000\020\000\085\000\022\000\084\000\023\000\083\000\
  3.3230 +\\024\000\082\000\025\000\081\000\026\000\080\000\027\000\079\000\
  3.3231 +\\028\000\078\000\029\000\077\000\030\000\076\000\031\000\075\000\
  3.3232 +\\032\000\074\000\033\000\073\000\034\000\072\000\035\000\071\000\
  3.3233 +\\039\000\070\000\042\000\069\000\043\000\068\000\044\000\067\000\
  3.3234 +\\045\000\117\000\046\000\116\000\051\000\115\000\055\000\114\000\
  3.3235 +\\061\000\113\000\062\000\112\000\063\000\111\000\065\000\110\000\
  3.3236 +\\066\000\109\000\067\000\108\000\068\000\107\000\069\000\106\000\
  3.3237 +\\070\000\105\000\071\000\104\000\072\000\103\000\073\000\195\001\
  3.3238 +\\144\000\061\000\145\000\060\000\146\000\059\000\000\000\
  3.3239 +\\009\000\090\000\011\000\089\000\012\000\088\000\014\000\087\000\
  3.3240 +\\019\000\086\000\020\000\188\000\022\000\084\000\023\000\083\000\
  3.3241 +\\024\000\082\000\025\000\187\000\026\000\080\000\027\000\186\000\
  3.3242 +\\028\000\078\000\029\000\077\000\030\000\076\000\031\000\185\000\
  3.3243 +\\032\000\184\000\033\000\073\000\034\000\072\000\036\000\183\000\
  3.3244 +\\037\000\182\000\046\000\181\000\049\000\180\000\050\000\179\000\
  3.3245 +\\051\000\178\000\052\000\177\000\053\000\176\000\054\000\175\000\
  3.3246 +\\056\000\174\000\098\000\173\000\100\000\172\000\101\000\171\000\
  3.3247 +\\102\000\170\000\103\000\169\000\104\000\168\000\105\000\167\000\
  3.3248 +\\106\000\166\000\107\000\165\000\108\000\164\000\110\000\163\000\
  3.3249 +\\111\000\162\000\112\000\161\000\113\000\160\000\117\000\159\000\
  3.3250 +\\118\000\158\000\119\000\157\000\120\000\156\000\121\000\155\000\
  3.3251 +\\122\000\154\000\123\000\153\000\124\000\152\000\125\000\151\000\
  3.3252 +\\126\000\196\001\144\000\061\000\145\000\060\000\146\000\059\000\000\000\
  3.3253 +\\000\000\
  3.3254 +\\000\000\
  3.3255 +\\000\000\
  3.3256 +\\000\000\
  3.3257 +\\009\000\090\000\011\000\089\000\012\000\088\000\014\000\087\000\
  3.3258 +\\019\000\086\000\020\000\051\001\021\000\199\001\022\000\084\000\
  3.3259 +\\023\000\083\000\024\000\082\000\025\000\187\000\026\000\080\000\
  3.3260 +\\027\000\186\000\028\000\078\000\029\000\077\000\030\000\076\000\
  3.3261 +\\031\000\075\000\032\000\184\000\033\000\073\000\034\000\072\000\
  3.3262 +\\144\000\061\000\145\000\060\000\146\000\059\000\000\000\
  3.3263 +\\000\000\
  3.3264 +\\000\000\
  3.3265 +\\009\000\090\000\011\000\089\000\012\000\088\000\014\000\087\000\
  3.3266 +\\019\000\086\000\020\000\200\001\022\000\084\000\023\000\083\000\
  3.3267 +\\024\000\082\000\025\000\187\000\026\000\080\000\027\000\186\000\
  3.3268 +\\028\000\078\000\029\000\077\000\030\000\076\000\031\000\075\000\
  3.3269 +\\032\000\184\000\033\000\073\000\034\000\072\000\144\000\061\000\
  3.3270 +\\145\000\060\000\146\000\059\000\000\000\
  3.3271 +\\009\000\090\000\011\000\089\000\012\000\088\000\014\000\087\000\
  3.3272 +\\019\000\086\000\020\000\201\001\022\000\084\000\023\000\083\000\
  3.3273 +\\024\000\082\000\025\000\187\000\026\000\080\000\027\000\186\000\
  3.3274 +\\028\000\078\000\029\000\077\000\030\000\076\000\031\000\075\000\
  3.3275 +\\032\000\184\000\033\000\073\000\034\000\072\000\144\000\061\000\
  3.3276 +\\145\000\060\000\146\000\059\000\000\000\
  3.3277 +\\009\000\090\000\011\000\089\000\012\000\088\000\014\000\087\000\
  3.3278 +\\019\000\086\000\020\000\202\001\022\000\084\000\023\000\083\000\
  3.3279 +\\024\000\082\000\025\000\187\000\026\000\080\000\027\000\186\000\
  3.3280 +\\028\000\078\000\029\000\077\000\030\000\076\000\031\000\075\000\
  3.3281 +\\032\000\184\000\033\000\073\000\034\000\072\000\144\000\061\000\
  3.3282 +\\145\000\060\000\146\000\059\000\000\000\
  3.3283 +\\000\000\
  3.3284 +\\000\000\
  3.3285 +\\011\000\070\001\064\000\204\001\000\000\
  3.3286 +\\000\000\
  3.3287 +\\000\000\
  3.3288 +\\009\000\089\001\011\000\088\001\047\000\087\001\080\000\205\001\
  3.3289 +\\145\000\081\001\000\000\
  3.3290 +\\009\000\089\001\011\000\088\001\047\000\087\001\080\000\207\001\
  3.3291 +\\143\000\206\001\145\000\081\001\000\000\
  3.3292 +\\011\000\096\001\086\000\095\001\087\000\094\001\088\000\208\001\000\000\
  3.3293 +\\000\000\
  3.3294 +\\000\000\
  3.3295 +\\000\000\
  3.3296 +\\000\000\
  3.3297 +\\009\000\089\001\011\000\088\001\047\000\087\001\078\000\214\001\
  3.3298 +\\079\000\169\001\080\000\168\001\081\000\084\001\141\000\167\001\
  3.3299 +\\145\000\081\001\000\000\
  3.3300 +\\000\000\
  3.3301 +\\011\000\096\001\086\000\095\001\087\000\094\001\088\000\216\001\000\000\
  3.3302 +\\009\000\089\001\011\000\088\001\047\000\087\001\080\000\217\001\
  3.3303 +\\145\000\081\001\000\000\
  3.3304 +\\009\000\090\000\011\000\089\000\012\000\088\000\014\000\087\000\
  3.3305 +\\019\000\144\000\020\000\085\000\022\000\084\000\023\000\143\000\
  3.3306 +\\024\000\082\000\025\000\081\000\026\000\080\000\027\000\079\000\
  3.3307 +\\028\000\078\000\029\000\077\000\030\000\076\000\031\000\075\000\
  3.3308 +\\032\000\074\000\033\000\073\000\034\000\072\000\035\000\071\000\
  3.3309 +\\039\000\070\000\042\000\069\000\043\000\068\000\044\000\067\000\
  3.3310 +\\045\000\142\000\046\000\141\000\051\000\140\000\055\000\139\000\
  3.3311 +\\074\000\138\000\076\000\137\000\077\000\136\000\083\000\135\000\
  3.3312 +\\084\000\134\000\085\000\133\000\089\000\132\000\090\000\131\000\
  3.3313 +\\091\000\130\000\092\000\129\000\093\000\128\000\094\000\127\000\
  3.3314 +\\095\000\126\000\096\000\125\000\097\000\218\001\138\000\123\000\
  3.3315 +\\144\000\061\000\145\000\060\000\146\000\059\000\000\000\
  3.3316 +\\009\000\090\000\011\000\089\000\012\000\088\000\014\000\087\000\
  3.3317 +\\019\000\144\000\020\000\085\000\022\000\084\000\023\000\143\000\
  3.3318 +\\024\000\082\000\025\000\081\000\026\000\080\000\027\000\079\000\
  3.3319 +\\028\000\078\000\029\000\077\000\030\000\076\000\031\000\075\000\
  3.3320 +\\032\000\074\000\033\000\073\000\034\000\072\000\035\000\071\000\
  3.3321 +\\039\000\070\000\042\000\069\000\043\000\068\000\044\000\067\000\
  3.3322 +\\045\000\142\000\046\000\141\000\051\000\140\000\055\000\139\000\
  3.3323 +\\074\000\138\000\076\000\137\000\077\000\136\000\083\000\135\000\
  3.3324 +\\084\000\134\000\085\000\133\000\089\000\132\000\090\000\131\000\
  3.3325 +\\091\000\130\000\092\000\129\000\093\000\128\000\094\000\127\000\
  3.3326 +\\095\000\126\000\096\000\125\000\097\000\219\001\138\000\123\000\
  3.3327 +\\144\000\061\000\145\000\060\000\146\000\059\000\000\000\
  3.3328 +\\009\000\090\000\011\000\089\000\012\000\088\000\014\000\087\000\
  3.3329 +\\019\000\086\000\020\000\085\000\022\000\084\000\023\000\083\000\
  3.3330 +\\024\000\082\000\025\000\081\000\026\000\080\000\027\000\079\000\
  3.3331 +\\028\000\078\000\029\000\077\000\030\000\076\000\031\000\075\000\
  3.3332 +\\032\000\074\000\033\000\073\000\034\000\072\000\035\000\071\000\
  3.3333 +\\039\000\070\000\042\000\069\000\043\000\068\000\044\000\067\000\
  3.3334 +\\045\000\142\000\046\000\141\000\051\000\140\000\055\000\139\000\
  3.3335 +\\077\000\136\000\085\000\133\000\089\000\132\000\090\000\131\000\
  3.3336 +\\091\000\130\000\092\000\129\000\093\000\128\000\094\000\127\000\
  3.3337 +\\095\000\126\000\096\000\220\001\138\000\123\000\144\000\061\000\
  3.3338 +\\145\000\060\000\146\000\059\000\000\000\
  3.3339 +\\000\000\
  3.3340 +\\000\000\
  3.3341 +\\000\000\
  3.3342 +\\000\000\
  3.3343 +\\011\000\128\001\114\000\127\001\115\000\126\001\116\000\223\001\000\000\
  3.3344 +\\009\000\090\000\011\000\089\000\012\000\088\000\014\000\087\000\
  3.3345 +\\019\000\086\000\020\000\188\000\022\000\084\000\023\000\083\000\
  3.3346 +\\024\000\082\000\025\000\187\000\026\000\080\000\027\000\186\000\
  3.3347 +\\028\000\078\000\029\000\077\000\030\000\076\000\031\000\185\000\
  3.3348 +\\032\000\184\000\033\000\073\000\034\000\072\000\036\000\183\000\
  3.3349 +\\037\000\182\000\046\000\181\000\049\000\180\000\050\000\179\000\
  3.3350 +\\051\000\178\000\052\000\177\000\053\000\176\000\054\000\175\000\
  3.3351 +\\056\000\174\000\101\000\171\000\102\000\170\000\103\000\169\000\
  3.3352 +\\104\000\168\000\105\000\167\000\106\000\166\000\107\000\165\000\
  3.3353 +\\108\000\164\000\109\000\224\001\110\000\163\000\111\000\162\000\
  3.3354 +\\112\000\161\000\113\000\160\000\117\000\159\000\118\000\158\000\
  3.3355 +\\119\000\157\000\120\000\156\000\121\000\155\000\122\000\154\000\
  3.3356 +\\123\000\153\000\124\000\152\000\125\000\115\001\144\000\061\000\
  3.3357 +\\145\000\060\000\146\000\059\000\000\000\
  3.3358 +\\000\000\
  3.3359 +\\009\000\090\000\011\000\089\000\012\000\088\000\014\000\087\000\
  3.3360 +\\019\000\086\000\020\000\188\000\022\000\084\000\023\000\083\000\
  3.3361 +\\024\000\082\000\025\000\187\000\026\000\080\000\027\000\186\000\
  3.3362 +\\028\000\078\000\029\000\077\000\030\000\076\000\031\000\185\000\
  3.3363 +\\032\000\184\000\033\000\073\000\034\000\072\000\036\000\183\000\
  3.3364 +\\037\000\182\000\046\000\181\000\049\000\180\000\050\000\179\000\
  3.3365 +\\051\000\178\000\052\000\177\000\053\000\176\000\054\000\175\000\
  3.3366 +\\056\000\174\000\098\000\173\000\100\000\172\000\101\000\171\000\
  3.3367 +\\102\000\170\000\103\000\169\000\104\000\168\000\105\000\167\000\
  3.3368 +\\106\000\166\000\107\000\165\000\108\000\164\000\110\000\163\000\
  3.3369 +\\111\000\162\000\112\000\161\000\113\000\160\000\117\000\159\000\
  3.3370 +\\118\000\158\000\119\000\157\000\120\000\156\000\121\000\155\000\
  3.3371 +\\122\000\154\000\123\000\153\000\124\000\152\000\125\000\151\000\
  3.3372 +\\126\000\225\001\144\000\061\000\145\000\060\000\146\000\059\000\000\000\
  3.3373 +\\009\000\090\000\011\000\089\000\012\000\088\000\014\000\087\000\
  3.3374 +\\019\000\086\000\020\000\188\000\022\000\084\000\023\000\083\000\
  3.3375 +\\024\000\082\000\025\000\187\000\026\000\080\000\027\000\186\000\
  3.3376 +\\028\000\078\000\029\000\077\000\030\000\076\000\031\000\185\000\
  3.3377 +\\032\000\184\000\033\000\073\000\034\000\072\000\036\000\183\000\
  3.3378 +\\037\000\182\000\046\000\181\000\049\000\180\000\050\000\179\000\
  3.3379 +\\051\000\178\000\052\000\177\000\053\000\176\000\054\000\175\000\
  3.3380 +\\056\000\174\000\101\000\171\000\102\000\170\000\103\000\169\000\
  3.3381 +\\104\000\168\000\105\000\167\000\106\000\166\000\107\000\165\000\
  3.3382 +\\108\000\164\000\110\000\163\000\111\000\162\000\112\000\161\000\
  3.3383 +\\113\000\160\000\117\000\159\000\118\000\158\000\119\000\157\000\
  3.3384 +\\120\000\156\000\121\000\155\000\122\000\154\000\123\000\153\000\
  3.3385 +\\124\000\152\000\125\000\226\001\144\000\061\000\145\000\060\000\
  3.3386 +\\146\000\059\000\000\000\
  3.3387 +\\000\000\
  3.3388 +\\000\000\
  3.3389 +\\000\000\
  3.3390 +\\000\000\
  3.3391 +\\000\000\
  3.3392 +\\000\000\
  3.3393 +\\000\000\
  3.3394 +\\000\000\
  3.3395 +\\000\000\
  3.3396 +\\000\000\
  3.3397 +\\006\000\041\001\007\000\233\001\008\000\149\001\009\000\039\001\
  3.3398 +\\010\000\038\001\011\000\037\001\012\000\036\001\013\000\035\001\
  3.3399 +\\014\000\087\000\016\000\034\001\000\000\
  3.3400 +\\000\000\
  3.3401 +\\000\000\
  3.3402 +\\000\000\
  3.3403 +\\000\000\
  3.3404 +\\000\000\
  3.3405 +\\009\000\090\000\011\000\089\000\012\000\088\000\014\000\087\000\
  3.3406 +\\019\000\086\000\020\000\085\000\022\000\084\000\023\000\083\000\
  3.3407 +\\024\000\082\000\025\000\081\000\026\000\080\000\027\000\079\000\
  3.3408 +\\028\000\078\000\029\000\077\000\030\000\076\000\031\000\075\000\
  3.3409 +\\032\000\074\000\033\000\073\000\034\000\072\000\035\000\071\000\
  3.3410 +\\039\000\070\000\042\000\069\000\043\000\068\000\044\000\067\000\
  3.3411 +\\045\000\117\000\046\000\116\000\051\000\115\000\055\000\114\000\
  3.3412 +\\063\000\111\000\065\000\110\000\066\000\237\001\144\000\061\000\
  3.3413 +\\145\000\060\000\146\000\059\000\000\000\
  3.3414 +\\000\000\
  3.3415 +\\000\000\
  3.3416 +\\000\000\
  3.3417 +\\000\000\
  3.3418 +\\000\000\
  3.3419 +\\000\000\
  3.3420 +\\009\000\089\001\011\000\088\001\047\000\087\001\080\000\241\001\
  3.3421 +\\145\000\081\001\000\000\
  3.3422 +\\000\000\
  3.3423 +\\009\000\089\001\011\000\088\001\047\000\087\001\080\000\242\001\
  3.3424 +\\145\000\081\001\000\000\
  3.3425 +\\000\000\
  3.3426 +\\000\000\
  3.3427 +\\009\000\090\000\011\000\089\000\012\000\088\000\014\000\087\000\
  3.3428 +\\019\000\086\000\020\000\085\000\022\000\084\000\023\000\083\000\
  3.3429 +\\024\000\082\000\025\000\081\000\026\000\080\000\027\000\079\000\
  3.3430 +\\028\000\078\000\029\000\077\000\030\000\076\000\031\000\075\000\
  3.3431 +\\032\000\074\000\033\000\073\000\034\000\072\000\035\000\071\000\
  3.3432 +\\039\000\070\000\042\000\069\000\043\000\068\000\044\000\067\000\
  3.3433 +\\045\000\142\000\046\000\141\000\051\000\140\000\055\000\139\000\
  3.3434 +\\077\000\136\000\085\000\133\000\089\000\132\000\090\000\244\001\
  3.3435 +\\138\000\123\000\144\000\061\000\145\000\060\000\146\000\059\000\000\000\
  3.3436 +\\000\000\
  3.3437 +\\000\000\
  3.3438 +\\000\000\
  3.3439 +\\000\000\
  3.3440 +\\000\000\
  3.3441 +\\000\000\
  3.3442 +\\009\000\090\000\011\000\089\000\012\000\088\000\014\000\087\000\
  3.3443 +\\019\000\086\000\020\000\188\000\022\000\084\000\023\000\083\000\
  3.3444 +\\024\000\082\000\025\000\187\000\026\000\080\000\027\000\186\000\
  3.3445 +\\028\000\078\000\029\000\077\000\030\000\076\000\031\000\075\000\
  3.3446 +\\032\000\184\000\033\000\073\000\034\000\072\000\036\000\183\000\
  3.3447 +\\037\000\182\000\046\000\181\000\049\000\180\000\050\000\179\000\
  3.3448 +\\051\000\178\000\052\000\177\000\053\000\176\000\054\000\175\000\
  3.3449 +\\056\000\174\000\101\000\171\000\102\000\170\000\103\000\107\001\
  3.3450 +\\113\000\160\000\117\000\159\000\118\000\248\001\144\000\061\000\
  3.3451 +\\145\000\060\000\146\000\059\000\000\000\
  3.3452 +\\000\000\
  3.3453 +\\000\000\
  3.3454 +\\000\000\
  3.3455 +\\000\000\
  3.3456 +\\000\000\
  3.3457 +\\000\000\
  3.3458 +\\000\000\
  3.3459 +\\000\000\
  3.3460 +\\000\000\
  3.3461 +\\000\000\
  3.3462 +\\000\000\
  3.3463 +\\000\000\
  3.3464 +\\000\000\
  3.3465 +\\009\000\090\000\011\000\089\000\012\000\088\000\014\000\087\000\
  3.3466 +\\019\000\086\000\020\000\251\001\022\000\084\000\023\000\083\000\
  3.3467 +\\024\000\082\000\025\000\187\000\026\000\080\000\027\000\186\000\
  3.3468 +\\028\000\078\000\029\000\077\000\030\000\076\000\031\000\075\000\
  3.3469 +\\032\000\184\000\033\000\073\000\034\000\072\000\144\000\061\000\
  3.3470 +\\145\000\060\000\146\000\059\000\000\000\
  3.3471 +\\000\000\
  3.3472 +\\000\000\
  3.3473 +\\009\000\089\001\011\000\088\001\047\000\087\001\080\000\207\001\
  3.3474 +\\143\000\252\001\145\000\081\001\000\000\
  3.3475 +\\000\000\
  3.3476 +\\000\000\
  3.3477 +\\000\000\
  3.3478 +\\000\000\
  3.3479 +\\000\000\
  3.3480 +\\000\000\
  3.3481 +\\000\000\
  3.3482 +\\009\000\090\000\011\000\089\000\012\000\088\000\014\000\087\000\
  3.3483 +\\019\000\086\000\020\000\085\000\022\000\084\000\023\000\083\000\
  3.3484 +\\024\000\082\000\025\000\081\000\026\000\080\000\027\000\079\000\
  3.3485 +\\028\000\078\000\029\000\077\000\030\000\076\000\031\000\075\000\
  3.3486 +\\032\000\074\000\033\000\073\000\034\000\072\000\035\000\071\000\
  3.3487 +\\039\000\070\000\042\000\069\000\043\000\068\000\044\000\067\000\
  3.3488 +\\045\000\142\000\046\000\141\000\051\000\140\000\055\000\139\000\
  3.3489 +\\077\000\136\000\085\000\133\000\089\000\132\000\090\000\131\000\
  3.3490 +\\091\000\130\000\092\000\129\000\093\000\128\000\094\000\127\000\
  3.3491 +\\095\000\126\000\096\000\254\001\138\000\123\000\144\000\061\000\
  3.3492 +\\145\000\060\000\146\000\059\000\000\000\
  3.3493 +\\000\000\
  3.3494 +\\000\000\
  3.3495 +\\009\000\090\000\011\000\089\000\012\000\088\000\014\000\087\000\
  3.3496 +\\019\000\086\000\020\000\188\000\022\000\084\000\023\000\083\000\
  3.3497 +\\024\000\082\000\025\000\187\000\026\000\080\000\027\000\186\000\
  3.3498 +\\028\000\078\000\029\000\077\000\030\000\076\000\031\000\185\000\
  3.3499 +\\032\000\184\000\033\000\073\000\034\000\072\000\036\000\183\000\
  3.3500 +\\037\000\182\000\046\000\181\000\049\000\180\000\050\000\179\000\
  3.3501 +\\051\000\178\000\052\000\177\000\053\000\176\000\054\000\175\000\
  3.3502 +\\056\000\174\000\101\000\171\000\102\000\170\000\103\000\169\000\
  3.3503 +\\104\000\168\000\105\000\167\000\106\000\166\000\107\000\165\000\
  3.3504 +\\108\000\164\000\110\000\163\000\111\000\162\000\112\000\161\000\
  3.3505 +\\113\000\160\000\117\000\159\000\118\000\158\000\119\000\157\000\
  3.3506 +\\120\000\156\000\121\000\155\000\122\000\154\000\123\000\153\000\
  3.3507 +\\124\000\152\000\125\000\255\001\144\000\061\000\145\000\060\000\
  3.3508 +\\146\000\059\000\000\000\
  3.3509 +\\000\000\
  3.3510 +\\000\000\
  3.3511 +\\009\000\089\001\011\000\088\001\047\000\087\001\080\000\002\002\
  3.3512 +\\142\000\001\002\145\000\081\001\000\000\
  3.3513 +\\000\000\
  3.3514 +\\000\000\
  3.3515 +\\000\000\
  3.3516 +\\000\000\
  3.3517 +\\000\000\
  3.3518 +\\009\000\089\001\011\000\088\001\047\000\087\001\079\000\007\002\
  3.3519 +\\080\000\006\002\081\000\084\001\145\000\081\001\000\000\
  3.3520 +\\000\000\
  3.3521 +\\000\000\
  3.3522 +\\000\000\
  3.3523 +\\000\000\
  3.3524 +\\009\000\089\001\011\000\088\001\047\000\087\001\078\000\170\001\
  3.3525 +\\079\000\169\001\080\000\168\001\081\000\084\001\145\000\081\001\000\000\
  3.3526 +\\000\000\
  3.3527 +\\009\000\089\001\011\000\088\001\047\000\087\001\078\000\214\001\
  3.3528 +\\079\000\169\001\080\000\168\001\081\000\084\001\145\000\081\001\000\000\
  3.3529  \\000\000\
  3.3530  \"
  3.3531 -val numstates = 522
  3.3532 -val numrules = 288
  3.3533 +val numstates = 524
  3.3534 +val numrules = 290
  3.3535  val s = Unsynchronized.ref "" and index = Unsynchronized.ref 0
  3.3536  val string_to_int = fn () => 
  3.3537  let val i = !index
  3.3538 @@ -3440,12 +3493,13 @@
  3.3539  structure MlyValue = 
  3.3540  struct
  3.3541  datatype svalue = VOID | ntVOID of unit
  3.3542 - | ATOMIC_SYSTEM_WORD of  (string) | ATOMIC_DEFINED_WORD of  (string)
  3.3543 + | DOLLAR_DOLLAR_WORD of  (string) | DOLLAR_WORD of  (string)
  3.3544   | DISTINCT_OBJECT of  (string) | COMMENT of  (string)
  3.3545   | LOWER_WORD of  (string) | UPPER_WORD of  (string)
  3.3546   | SINGLE_QUOTED of  (string) | DOT_DECIMAL of  (string)
  3.3547   | UNSIGNED_INTEGER of  (string) | SIGNED_INTEGER of  (string)
  3.3548   | RATIONAL of  (string) | REAL of  (string)
  3.3549 + | atomic_system_word of  (string) | atomic_defined_word of  (string)
  3.3550   | let_term of  (tptp_term) | tff_type_arguments of  (tptp_type list)
  3.3551   | tff_monotype of  (tptp_type) | tff_quantified_type of  (tptp_type)
  3.3552   | tff_let_formula_defn of  (tptp_let list)
  3.3553 @@ -3627,8 +3681,8 @@
  3.3554    | (T 60) => "GENTZEN_ARROW"
  3.3555    | (T 61) => "DEP_SUM"
  3.3556    | (T 62) => "DEP_PROD"
  3.3557 -  | (T 63) => "ATOMIC_DEFINED_WORD"
  3.3558 -  | (T 64) => "ATOMIC_SYSTEM_WORD"
  3.3559 +  | (T 63) => "DOLLAR_WORD"
  3.3560 +  | (T 64) => "DOLLAR_DOLLAR_WORD"
  3.3561    | (T 65) => "SUBTYPE"
  3.3562    | (T 66) => "LET_TERM"
  3.3563    | (T 67) => "THF"
  3.3564 @@ -5072,11 +5126,11 @@
  3.3565   val  result = MlyValue.unary_connective (( Interpreted_Logic Not ))
  3.3566   in ( LrTable.NT 45, ( result, TILDE1left, TILDE1right), rest671)
  3.3567  end
  3.3568 -|  ( 200, ( ( _, ( MlyValue.ATOMIC_DEFINED_WORD ATOMIC_DEFINED_WORD, 
  3.3569 -ATOMIC_DEFINED_WORD1left, ATOMIC_DEFINED_WORD1right)) :: rest671)) =>
  3.3570 +|  ( 200, ( ( _, ( MlyValue.atomic_defined_word atomic_defined_word, 
  3.3571 +atomic_defined_word1left, atomic_defined_word1right)) :: rest671)) =>
  3.3572   let val  result = MlyValue.defined_type (
  3.3573  (
  3.3574 -  case ATOMIC_DEFINED_WORD of
  3.3575 +  case atomic_defined_word of
  3.3576      "$oType" => Type_Bool
  3.3577    | "$o" => Type_Bool
  3.3578    | "$iType" => Type_Ind
  3.3579 @@ -5088,14 +5142,14 @@
  3.3580    | thing => raise UNRECOGNISED_SYMBOL ("defined_type", thing)
  3.3581  )
  3.3582  )
  3.3583 - in ( LrTable.NT 46, ( result, ATOMIC_DEFINED_WORD1left, 
  3.3584 -ATOMIC_DEFINED_WORD1right), rest671)
  3.3585 -end
  3.3586 -|  ( 201, ( ( _, ( MlyValue.ATOMIC_SYSTEM_WORD ATOMIC_SYSTEM_WORD, 
  3.3587 -ATOMIC_SYSTEM_WORD1left, ATOMIC_SYSTEM_WORD1right)) :: rest671)) =>
  3.3588 - let val  result = MlyValue.system_type (( ATOMIC_SYSTEM_WORD ))
  3.3589 - in ( LrTable.NT 47, ( result, ATOMIC_SYSTEM_WORD1left, 
  3.3590 -ATOMIC_SYSTEM_WORD1right), rest671)
  3.3591 + in ( LrTable.NT 46, ( result, atomic_defined_word1left, 
  3.3592 +atomic_defined_word1right), rest671)
  3.3593 +end
  3.3594 +|  ( 201, ( ( _, ( MlyValue.atomic_system_word atomic_system_word, 
  3.3595 +atomic_system_word1left, atomic_system_word1right)) :: rest671)) =>
  3.3596 + let val  result = MlyValue.system_type (( atomic_system_word ))
  3.3597 + in ( LrTable.NT 47, ( result, atomic_system_word1left, 
  3.3598 +atomic_system_word1right), rest671)
  3.3599  end
  3.3600  |  ( 202, ( ( _, ( MlyValue.plain_atomic_formula plain_atomic_formula,
  3.3601   plain_atomic_formula1left, plain_atomic_formula1right)) :: rest671))
  3.3602 @@ -5145,24 +5199,24 @@
  3.3603   in ( LrTable.NT 41, ( result, defined_plain_term1left, 
  3.3604  defined_plain_term1right), rest671)
  3.3605  end
  3.3606 -|  ( 209, ( ( _, ( MlyValue.ATOMIC_DEFINED_WORD ATOMIC_DEFINED_WORD, 
  3.3607 -ATOMIC_DEFINED_WORD1left, ATOMIC_DEFINED_WORD1right)) :: rest671)) =>
  3.3608 +|  ( 209, ( ( _, ( MlyValue.atomic_defined_word atomic_defined_word, 
  3.3609 +atomic_defined_word1left, atomic_defined_word1right)) :: rest671)) =>
  3.3610   let val  result = MlyValue.defined_prop (
  3.3611  (
  3.3612 -  case ATOMIC_DEFINED_WORD of
  3.3613 +  case atomic_defined_word of
  3.3614      "$true"  => "$true"
  3.3615    | "$false" => "$false"
  3.3616    | thing => raise UNRECOGNISED_SYMBOL ("defined_prop", thing)
  3.3617  )
  3.3618  )
  3.3619 - in ( LrTable.NT 39, ( result, ATOMIC_DEFINED_WORD1left, 
  3.3620 -ATOMIC_DEFINED_WORD1right), rest671)
  3.3621 -end
  3.3622 -|  ( 210, ( ( _, ( MlyValue.ATOMIC_DEFINED_WORD ATOMIC_DEFINED_WORD, 
  3.3623 -ATOMIC_DEFINED_WORD1left, ATOMIC_DEFINED_WORD1right)) :: rest671)) =>
  3.3624 + in ( LrTable.NT 39, ( result, atomic_defined_word1left, 
  3.3625 +atomic_defined_word1right), rest671)
  3.3626 +end
  3.3627 +|  ( 210, ( ( _, ( MlyValue.atomic_defined_word atomic_defined_word, 
  3.3628 +atomic_defined_word1left, atomic_defined_word1right)) :: rest671)) =>
  3.3629   let val  result = MlyValue.defined_pred (
  3.3630  (
  3.3631 -  case ATOMIC_DEFINED_WORD of
  3.3632 +  case atomic_defined_word of
  3.3633      "$distinct"  => "$distinct"
  3.3634    | "$ite_f" => "$ite_f"
  3.3635    | "$less" => "$less"
  3.3636 @@ -5174,8 +5228,8 @@
  3.3637    | thing => raise UNRECOGNISED_SYMBOL ("defined_pred", thing)
  3.3638  )
  3.3639  )
  3.3640 - in ( LrTable.NT 40, ( result, ATOMIC_DEFINED_WORD1left, 
  3.3641 -ATOMIC_DEFINED_WORD1right), rest671)
  3.3642 + in ( LrTable.NT 40, ( result, atomic_defined_word1left, 
  3.3643 +atomic_defined_word1right), rest671)
  3.3644  end
  3.3645  |  ( 211, ( ( _, ( MlyValue.term term2, _, term2right)) :: ( _, ( 
  3.3646  MlyValue.defined_infix_pred defined_infix_pred, _, _)) :: ( _, ( 
  3.3647 @@ -5327,11 +5381,11 @@
  3.3648   in ( LrTable.NT 25, ( result, defined_functor1left, 
  3.3649  defined_functor1right), rest671)
  3.3650  end
  3.3651 -|  ( 235, ( ( _, ( MlyValue.ATOMIC_DEFINED_WORD ATOMIC_DEFINED_WORD, 
  3.3652 -ATOMIC_DEFINED_WORD1left, ATOMIC_DEFINED_WORD1right)) :: rest671)) =>
  3.3653 +|  ( 235, ( ( _, ( MlyValue.atomic_defined_word atomic_defined_word, 
  3.3654 +atomic_defined_word1left, atomic_defined_word1right)) :: rest671)) =>
  3.3655   let val  result = MlyValue.defined_functor (
  3.3656  (
  3.3657 -  case ATOMIC_DEFINED_WORD of
  3.3658 +  case atomic_defined_word of
  3.3659      "$uminus" => Interpreted_ExtraLogic UMinus
  3.3660    | "$sum" => Interpreted_ExtraLogic Sum
  3.3661    | "$difference" => Interpreted_ExtraLogic Difference
  3.3662 @@ -5377,8 +5431,8 @@
  3.3663    | thing => raise UNRECOGNISED_SYMBOL ("defined_functor", thing)
  3.3664  )
  3.3665  )
  3.3666 - in ( LrTable.NT 21, ( result, ATOMIC_DEFINED_WORD1left, 
  3.3667 -ATOMIC_DEFINED_WORD1right), rest671)
  3.3668 + in ( LrTable.NT 21, ( result, atomic_defined_word1left, 
  3.3669 +atomic_defined_word1right), rest671)
  3.3670  end
  3.3671  |  ( 236, ( ( _, ( MlyValue.system_constant system_constant, 
  3.3672  system_constant1left, system_constant1right)) :: rest671)) => let val 
  3.3673 @@ -5399,12 +5453,12 @@
  3.3674   in ( LrTable.NT 23, ( result, system_functor1left, 
  3.3675  system_functor1right), rest671)
  3.3676  end
  3.3677 -|  ( 239, ( ( _, ( MlyValue.ATOMIC_SYSTEM_WORD ATOMIC_SYSTEM_WORD, 
  3.3678 -ATOMIC_SYSTEM_WORD1left, ATOMIC_SYSTEM_WORD1right)) :: rest671)) =>
  3.3679 +|  ( 239, ( ( _, ( MlyValue.atomic_system_word atomic_system_word, 
  3.3680 +atomic_system_word1left, atomic_system_word1right)) :: rest671)) =>
  3.3681   let val  result = MlyValue.system_functor (
  3.3682 -( System ATOMIC_SYSTEM_WORD ))
  3.3683 - in ( LrTable.NT 22, ( result, ATOMIC_SYSTEM_WORD1left, 
  3.3684 -ATOMIC_SYSTEM_WORD1right), rest671)
  3.3685 +( System atomic_system_word ))
  3.3686 + in ( LrTable.NT 22, ( result, atomic_system_word1left, 
  3.3687 +atomic_system_word1right), rest671)
  3.3688  end
  3.3689  |  ( 240, ( ( _, ( MlyValue.UPPER_WORD UPPER_WORD, UPPER_WORD1left, 
  3.3690  UPPER_WORD1right)) :: rest671)) => let val  result = 
  3.3691 @@ -5651,35 +5705,48 @@
  3.3692   in ( LrTable.NT 8, ( result, INCLUDE1left, INCLUDE1right), rest671)
  3.3693  
  3.3694  end
  3.3695 -|  ( 282, ( ( _, ( MlyValue.UNSIGNED_INTEGER UNSIGNED_INTEGER, 
  3.3696 +|  ( 282, ( ( _, ( MlyValue.DOLLAR_WORD DOLLAR_WORD, DOLLAR_WORD1left,
  3.3697 + DOLLAR_WORD1right)) :: rest671)) => let val  result = 
  3.3698 +MlyValue.atomic_defined_word (( DOLLAR_WORD ))
  3.3699 + in ( LrTable.NT 144, ( result, DOLLAR_WORD1left, DOLLAR_WORD1right), 
  3.3700 +rest671)
  3.3701 +end
  3.3702 +|  ( 283, ( ( _, ( MlyValue.DOLLAR_DOLLAR_WORD DOLLAR_DOLLAR_WORD, 
  3.3703 +DOLLAR_DOLLAR_WORD1left, DOLLAR_DOLLAR_WORD1right)) :: rest671)) =>
  3.3704 + let val  result = MlyValue.atomic_system_word (( DOLLAR_DOLLAR_WORD )
  3.3705 +)
  3.3706 + in ( LrTable.NT 145, ( result, DOLLAR_DOLLAR_WORD1left, 
  3.3707 +DOLLAR_DOLLAR_WORD1right), rest671)
  3.3708 +end
  3.3709 +|  ( 284, ( ( _, ( MlyValue.UNSIGNED_INTEGER UNSIGNED_INTEGER, 
  3.3710  UNSIGNED_INTEGER1left, UNSIGNED_INTEGER1right)) :: rest671)) => let
  3.3711   val  result = MlyValue.integer (( UNSIGNED_INTEGER ))
  3.3712   in ( LrTable.NT 13, ( result, UNSIGNED_INTEGER1left, 
  3.3713  UNSIGNED_INTEGER1right), rest671)
  3.3714  end
  3.3715 -|  ( 283, ( ( _, ( MlyValue.SIGNED_INTEGER SIGNED_INTEGER, 
  3.3716 +|  ( 285, ( ( _, ( MlyValue.SIGNED_INTEGER SIGNED_INTEGER, 
  3.3717  SIGNED_INTEGER1left, SIGNED_INTEGER1right)) :: rest671)) => let val  
  3.3718  result = MlyValue.integer (( SIGNED_INTEGER ))
  3.3719   in ( LrTable.NT 13, ( result, SIGNED_INTEGER1left, 
  3.3720  SIGNED_INTEGER1right), rest671)
  3.3721  end
  3.3722 -|  ( 284, ( ( _, ( MlyValue.integer integer, integer1left, 
  3.3723 +|  ( 286, ( ( _, ( MlyValue.integer integer, integer1left, 
  3.3724  integer1right)) :: rest671)) => let val  result = MlyValue.number (
  3.3725  ( (Int_num, integer) ))
  3.3726   in ( LrTable.NT 11, ( result, integer1left, integer1right), rest671)
  3.3727  
  3.3728  end
  3.3729 -|  ( 285, ( ( _, ( MlyValue.REAL REAL, REAL1left, REAL1right)) :: 
  3.3730 +|  ( 287, ( ( _, ( MlyValue.REAL REAL, REAL1left, REAL1right)) :: 
  3.3731  rest671)) => let val  result = MlyValue.number (( (Real_num, REAL) ))
  3.3732   in ( LrTable.NT 11, ( result, REAL1left, REAL1right), rest671)
  3.3733  end
  3.3734 -|  ( 286, ( ( _, ( MlyValue.RATIONAL RATIONAL, RATIONAL1left, 
  3.3735 +|  ( 288, ( ( _, ( MlyValue.RATIONAL RATIONAL, RATIONAL1left, 
  3.3736  RATIONAL1right)) :: rest671)) => let val  result = MlyValue.number (
  3.3737  ( (Rat_num, RATIONAL) ))
  3.3738   in ( LrTable.NT 11, ( result, RATIONAL1left, RATIONAL1right), rest671
  3.3739  )
  3.3740  end
  3.3741 -|  ( 287, ( ( _, ( MlyValue.SINGLE_QUOTED SINGLE_QUOTED, 
  3.3742 +|  ( 289, ( ( _, ( MlyValue.SINGLE_QUOTED SINGLE_QUOTED, 
  3.3743  SINGLE_QUOTED1left, SINGLE_QUOTED1right)) :: rest671)) => let val  
  3.3744  result = MlyValue.file_name (( SINGLE_QUOTED ))
  3.3745   in ( LrTable.NT 17, ( result, SINGLE_QUOTED1left, SINGLE_QUOTED1right
  3.3746 @@ -5823,10 +5890,10 @@
  3.3747  ParserData.MlyValue.VOID,p1,p2))
  3.3748  fun DEP_PROD (p1,p2) = Token.TOKEN (ParserData.LrTable.T 62,(
  3.3749  ParserData.MlyValue.VOID,p1,p2))
  3.3750 -fun ATOMIC_DEFINED_WORD (i,p1,p2) = Token.TOKEN (ParserData.LrTable.T 
  3.3751 -63,(ParserData.MlyValue.ATOMIC_DEFINED_WORD i,p1,p2))
  3.3752 -fun ATOMIC_SYSTEM_WORD (i,p1,p2) = Token.TOKEN (ParserData.LrTable.T 
  3.3753 -64,(ParserData.MlyValue.ATOMIC_SYSTEM_WORD i,p1,p2))
  3.3754 +fun DOLLAR_WORD (i,p1,p2) = Token.TOKEN (ParserData.LrTable.T 63,(
  3.3755 +ParserData.MlyValue.DOLLAR_WORD i,p1,p2))
  3.3756 +fun DOLLAR_DOLLAR_WORD (i,p1,p2) = Token.TOKEN (ParserData.LrTable.T 
  3.3757 +64,(ParserData.MlyValue.DOLLAR_DOLLAR_WORD i,p1,p2))
  3.3758  fun SUBTYPE (p1,p2) = Token.TOKEN (ParserData.LrTable.T 65,(
  3.3759  ParserData.MlyValue.VOID,p1,p2))
  3.3760  fun LET_TERM (p1,p2) = Token.TOKEN (ParserData.LrTable.T 66,(