gwave2-20170109/0000755001226200000360000000000013034766135010157 500000000000000gwave2-20170109/missing0000755001226200000360000002623312111571213011466 00000000000000#! /bin/sh # Common stub for a few missing GNU programs while installing. scriptversion=2009-04-28.21; # UTC # Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005, 2006, # 2008, 2009 Free Software Foundation, Inc. # Originally by Fran,cois Pinard , 1996. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. if test $# -eq 0; then echo 1>&2 "Try \`$0 --help' for more information" exit 1 fi run=: sed_output='s/.* --output[ =]\([^ ]*\).*/\1/p' sed_minuso='s/.* -o \([^ ]*\).*/\1/p' # In the cases where this matters, `missing' is being run in the # srcdir already. if test -f configure.ac; then configure_ac=configure.ac else configure_ac=configure.in fi msg="missing on your system" case $1 in --run) # Try to run requested program, and just exit if it succeeds. run= shift "$@" && exit 0 # Exit code 63 means version mismatch. This often happens # when the user try to use an ancient version of a tool on # a file that requires a minimum version. In this case we # we should proceed has if the program had been absent, or # if --run hadn't been passed. if test $? = 63; then run=: msg="probably too old" fi ;; -h|--h|--he|--hel|--help) echo "\ $0 [OPTION]... PROGRAM [ARGUMENT]... Handle \`PROGRAM [ARGUMENT]...' for when PROGRAM is missing, or return an error status if there is no known handling for PROGRAM. Options: -h, --help display this help and exit -v, --version output version information and exit --run try to run the given command, and emulate it if it fails Supported PROGRAM values: aclocal touch file \`aclocal.m4' autoconf touch file \`configure' autoheader touch file \`config.h.in' autom4te touch the output file, or create a stub one automake touch all \`Makefile.in' files bison create \`y.tab.[ch]', if possible, from existing .[ch] flex create \`lex.yy.c', if possible, from existing .c help2man touch the output file lex create \`lex.yy.c', if possible, from existing .c makeinfo touch the output file tar try tar, gnutar, gtar, then tar without non-portable flags yacc create \`y.tab.[ch]', if possible, from existing .[ch] Version suffixes to PROGRAM as well as the prefixes \`gnu-', \`gnu', and \`g' are ignored when checking the name. Send bug reports to ." exit $? ;; -v|--v|--ve|--ver|--vers|--versi|--versio|--version) echo "missing $scriptversion (GNU Automake)" exit $? ;; -*) echo 1>&2 "$0: Unknown \`$1' option" echo 1>&2 "Try \`$0 --help' for more information" exit 1 ;; esac # normalize program name to check for. program=`echo "$1" | sed ' s/^gnu-//; t s/^gnu//; t s/^g//; t'` # Now exit if we have it, but it failed. Also exit now if we # don't have it and --version was passed (most likely to detect # the program). This is about non-GNU programs, so use $1 not # $program. case $1 in lex*|yacc*) # Not GNU programs, they don't have --version. ;; tar*) if test -n "$run"; then echo 1>&2 "ERROR: \`tar' requires --run" exit 1 elif test "x$2" = "x--version" || test "x$2" = "x--help"; then exit 1 fi ;; *) if test -z "$run" && ($1 --version) > /dev/null 2>&1; then # We have it, but it failed. exit 1 elif test "x$2" = "x--version" || test "x$2" = "x--help"; then # Could not run --version or --help. This is probably someone # running `$TOOL --version' or `$TOOL --help' to check whether # $TOOL exists and not knowing $TOOL uses missing. exit 1 fi ;; esac # If it does not exist, or fails to run (possibly an outdated version), # try to emulate it. case $program in aclocal*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`acinclude.m4' or \`${configure_ac}'. You might want to install the \`Automake' and \`Perl' packages. Grab them from any GNU archive site." touch aclocal.m4 ;; autoconf*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`${configure_ac}'. You might want to install the \`Autoconf' and \`GNU m4' packages. Grab them from any GNU archive site." touch configure ;; autoheader*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`acconfig.h' or \`${configure_ac}'. You might want to install the \`Autoconf' and \`GNU m4' packages. Grab them from any GNU archive site." files=`sed -n 's/^[ ]*A[CM]_CONFIG_HEADER(\([^)]*\)).*/\1/p' ${configure_ac}` test -z "$files" && files="config.h" touch_files= for f in $files; do case $f in *:*) touch_files="$touch_files "`echo "$f" | sed -e 's/^[^:]*://' -e 's/:.*//'`;; *) touch_files="$touch_files $f.in";; esac done touch $touch_files ;; automake*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`Makefile.am', \`acinclude.m4' or \`${configure_ac}'. You might want to install the \`Automake' and \`Perl' packages. Grab them from any GNU archive site." find . -type f -name Makefile.am -print | sed 's/\.am$/.in/' | while read f; do touch "$f"; done ;; autom4te*) echo 1>&2 "\ WARNING: \`$1' is needed, but is $msg. You might have modified some files without having the proper tools for further handling them. You can get \`$1' as part of \`Autoconf' from any GNU archive site." file=`echo "$*" | sed -n "$sed_output"` test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` if test -f "$file"; then touch $file else test -z "$file" || exec >$file echo "#! /bin/sh" echo "# Created by GNU Automake missing as a replacement of" echo "# $ $@" echo "exit 0" chmod +x $file exit 1 fi ;; bison*|yacc*) echo 1>&2 "\ WARNING: \`$1' $msg. You should only need it if you modified a \`.y' file. You may need the \`Bison' package in order for those modifications to take effect. You can get \`Bison' from any GNU archive site." rm -f y.tab.c y.tab.h if test $# -ne 1; then eval LASTARG="\${$#}" case $LASTARG in *.y) SRCFILE=`echo "$LASTARG" | sed 's/y$/c/'` if test -f "$SRCFILE"; then cp "$SRCFILE" y.tab.c fi SRCFILE=`echo "$LASTARG" | sed 's/y$/h/'` if test -f "$SRCFILE"; then cp "$SRCFILE" y.tab.h fi ;; esac fi if test ! -f y.tab.h; then echo >y.tab.h fi if test ! -f y.tab.c; then echo 'main() { return 0; }' >y.tab.c fi ;; lex*|flex*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified a \`.l' file. You may need the \`Flex' package in order for those modifications to take effect. You can get \`Flex' from any GNU archive site." rm -f lex.yy.c if test $# -ne 1; then eval LASTARG="\${$#}" case $LASTARG in *.l) SRCFILE=`echo "$LASTARG" | sed 's/l$/c/'` if test -f "$SRCFILE"; then cp "$SRCFILE" lex.yy.c fi ;; esac fi if test ! -f lex.yy.c; then echo 'main() { return 0; }' >lex.yy.c fi ;; help2man*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified a dependency of a manual page. You may need the \`Help2man' package in order for those modifications to take effect. You can get \`Help2man' from any GNU archive site." file=`echo "$*" | sed -n "$sed_output"` test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` if test -f "$file"; then touch $file else test -z "$file" || exec >$file echo ".ab help2man is required to generate this page" exit $? fi ;; makeinfo*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified a \`.texi' or \`.texinfo' file, or any other file indirectly affecting the aspect of the manual. The spurious call might also be the consequence of using a buggy \`make' (AIX, DU, IRIX). You might want to install the \`Texinfo' package or the \`GNU make' package. Grab either from any GNU archive site." # The file to touch is that specified with -o ... file=`echo "$*" | sed -n "$sed_output"` test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` if test -z "$file"; then # ... or it is the one specified with @setfilename ... infile=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'` file=`sed -n ' /^@setfilename/{ s/.* \([^ ]*\) *$/\1/ p q }' $infile` # ... or it is derived from the source name (dir/f.texi becomes f.info) test -z "$file" && file=`echo "$infile" | sed 's,.*/,,;s,.[^.]*$,,'`.info fi # If the file does not exist, the user really needs makeinfo; # let's fail without touching anything. test -f $file || exit 1 touch $file ;; tar*) shift # We have already tried tar in the generic part. # Look for gnutar/gtar before invocation to avoid ugly error # messages. if (gnutar --version > /dev/null 2>&1); then gnutar "$@" && exit 0 fi if (gtar --version > /dev/null 2>&1); then gtar "$@" && exit 0 fi firstarg="$1" if shift; then case $firstarg in *o*) firstarg=`echo "$firstarg" | sed s/o//` tar "$firstarg" "$@" && exit 0 ;; esac case $firstarg in *h*) firstarg=`echo "$firstarg" | sed s/h//` tar "$firstarg" "$@" && exit 0 ;; esac fi echo 1>&2 "\ WARNING: I can't seem to be able to run \`tar' with the given arguments. You may want to install GNU tar or Free paxutils, or check the command line arguments." exit 1 ;; *) echo 1>&2 "\ WARNING: \`$1' is needed, and is $msg. You might have modified some files without having the proper tools for further handling them. Check the \`README' file, it often tells you about the needed prerequisites for installing this package. You may also peek at any GNU archive site, in case some other package would contain this missing \`$1' program." exit 1 ;; esac exit 0 # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: gwave2-20170109/examples/0000755001226200000360000000000013034766135011775 500000000000000gwave2-20170109/examples/pd1.N.tr00000644001226200000360000044543113034766135013237 0000000000000000010012000000009007 * 98/08/0509:55:24 Copyright (C) 1985-1997 by Avant!,Inc. 0 1 1 1 1 1 1 1 1 1 1 1 15 15 TIME v(clk v(inh v(inl v(gh v(gl v(dtail v(outh v(outl v(tail v(vbias i1(m3 i1(m5 $&%# v(tail v(vbias i1(m3 .00000E+00 .33000E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .25000E-10 .33001E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .50000E-10 .33003E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .15000E-09 .33008E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .30000E-09 .33015E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .60000E-09 .33030E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .61500E-09 .33055E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .63000E-09 .33080E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .66000E-09 .33130E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .67075E-09 .33122E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .68150E-09 .33115E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .69225E-09 .33108E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .70300E-09 .33100E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .71375E-09 .33036E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .73525E-09 .32909E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .76350E-09 .32743E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .81600E-09 .32030E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .85638E-09 .30931E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .93713E-09 .28338E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .11534E-08 .17802E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .13696E-08 .85767E+00 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .16810E-08 .14700E+00 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .17310E-08 .11478E+00 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .18107E-08 .72230E-01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .18905E-08 .47696E-01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .20000E-08 .25000E-01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .20500E-08 .20596E-01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .21325E-08 .13329E-01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .22150E-08 .71971E-02 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .23300E-08 .30000E-02 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .23550E-08 .27500E-02 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .23800E-08 .25000E-02 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .24300E-08 .20000E-02 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .24675E-08 .19640E-02 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .25425E-08 .18921E-02 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .28425E-08 .16045E-02 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .33425E-08 .11251E-02 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .38425E-08 .64573E-03 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .43425E-08 .16635E-03 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .48425E-08-.31304E-03 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .53425E-08-.79243E-03 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .55590E-08-.10000E-02 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .55837E-08-.46220E-02 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .56085E-08 -.77328E-02 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .56332E-08-.98664E-02 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .56580E-08-.12000E-01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .56827E-08-.41524E-02 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .57090E-08 .12250E-01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .57353E-08 .41781E-01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .57630E-08 .73000E-01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .57900E-08 .13757E+00 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .58440E-08 .32133E+00 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .60060E-08 .10901E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .63153E-08 .19866E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .66245E-08 .27040E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .70000E-08 .31560E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .70500E-08 .31765E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .71500E-08 .32176E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .72538E-08 .32462E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .74150E-08 .32720E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .74650E-08 .32767E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .75557E-08 .32828E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .76465E-08 .32874E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .77780E-08 .32940E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .78270E-08 .32950E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .78760E-08 .32960E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .79740E-08 .32980E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .79778E-08 .32980E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .79815E-08 .32980E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .79852E-08 .32980E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .79890E-08 .32980E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .79927E-08 .32980E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .80003E-08 .32980E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .80303E-08 .32980E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .81503E-08 .32982E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .86303E-08 .32986E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .91303E-08 .32991E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .96303E-08 .32996E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .10000E-07 .33000E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .10050E-07 .33003E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .10150E-07 .33008E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .10300E-07 .33015E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .10450E-07 .33022E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .10600E-07 .33030E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .10615E-07 .33055E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .10630E-07 .33080E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .10660E-07 .33130E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .10671E-07 .33122E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .10682E-07 .33115E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .10692E-07 .33108E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .10703E-07 .33100E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .10714E-07 .33036E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .10730E-07 .32939E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .10747E-07 .32841E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .10769E-07 .32710E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .10781E-07 .32540E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .10793E-07 .32370E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .10804E-07 .32200E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .10816E-07 .32030E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .10828E-07 .31710E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .10851E-07 .31071E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .10875E-07 .30411E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .10913E-07 .29390E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .10930E-07 .28637E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .10947E-07 .27885E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .10965E-07 .27132E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .10982E-07 .26380E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .10985E-07 .26272E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .10987E-07 .26165E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .10989E-07 .26058E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .10992E-07 .25950E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .10994E-07 .25870E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .10996E-07 .25790E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .11000E-07 .25630E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .11003E-07 .25492E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .11007E-07 .25319E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .11011E-07 .25147E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .11015E-07 .24940E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .11018E-07 .24815E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .11021E-07 .24690E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .11023E-07 .24565E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .11026E-07 .24440E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .11029E-07 .24307E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .11034E-07 .24041E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .11042E-07 .23666E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .11057E-07 .22940E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .11063E-07 .22650E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .11068E-07 .22360E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .11074E-07 .22070E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .11079E-07 .21780E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .11085E-07 .21484E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .11095E-07 .20891E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .11111E-07 .20056E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .11141E-07 .18440E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .11152E-07 .17873E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .11163E-07 .17305E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .11174E-07 .16738E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .11185E-07 .16170E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .11189E-07 .15922E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .11194E-07 .15675E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .11198E-07 .15428E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .11203E-07 .15180E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .11206E-07 .15010E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .11209E-07 .14840E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .11216E-07 .14500E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .11221E-07 .14247E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .11225E-07 .13995E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .11235E-07 .13490E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .11238E-07 .13300E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .11242E-07 .13110E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .11248E-07 .12730E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .11253E-07 .12446E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .11259E-07 .12111E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .11264E-07 .11776E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .11271E-07 .11390E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .11275E-07 .11240E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .11279E-07 .11090E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .11283E-07 .10940E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .11287E-07 .10790E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .11291E-07 .10710E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .11296E-07 .10600E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .11302E-07 .10490E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .11309E-07 .10350E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .11313E-07 .10282E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .11317E-07 .10215E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .11321E-07 .10148E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .11325E-07 .10080E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .11326E-07 .10039E+01 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .11327E-07 .99982E+00 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .11329E-07 .99573E+00 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .11330E-07 .99164E+00 .00000E+00 .33000E+01 .00000E+00 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15462E+01 .20045E+01 .84792E-02 .15644E-02 .11331E-07 .98755E+00 .00000E+00 .32910E+01-.63524E-04 .15644E+01 .18576E+01 .42394E+00 .00000E+00 .15462E+01 .20045E+01 .84793E-02 .15644E-02 .11334E-07 .97936E+00 .00000E+00 .32731E+01 -.12745E-03 .15644E+01 .18573E+01 .42392E+00 .10152E-05 .15462E+01 .20045E+01 .84794E-02 .15646E-02 .11338E-07 .96545E+00 .00000E+00 .32426E+01-.63794E-03 .15644E+01 .18568E+01 .42380E+00 .40229E-05 .15461E+01 .20045E+01 .84797E-02 .15650E-02 .11342E-07 .95155E+00 .00000E+00 .32121E+01-.93506E-03 .15644E+01 .18563E+01 .42380E+00 .30200E-05 .15461E+01 .20045E+01 .84797E-02 .15651E-02 .11347E-07 .93600E+00 .00000E+00 .31780E+01-.13188E-02 .15645E+01 .18559E+01 .42387E+00 .60143E-05 .15460E+01 .20045E+01 .84805E-02 .15654E-02 .11351E-07 .92200E+00 .00000E+00 .31493E+01-.16505E-02 .15644E+01 .18555E+01 .42397E+00 -.12832E-05 .15459E+01 .20045E+01 .84805E-02 .15655E-02 .11355E-07 .90800E+00 .00000E+00 .31207E+01-.19876E-02 .15643E+01 .18551E+01 .42403E+00-.61424E-05 .15457E+01 .20045E+01 .84808E-02 .15657E-02 .11359E-07 .89400E+00 .00000E+00 .30920E+01-.23114E-02 .15642E+01 .18548E+01 .42422E+00-.12771E-04 .15457E+01 .20045E+01 .84812E-02 .15658E-02 .11363E-07 .88000E+00 .00000E+00 .30633E+01 -.26357E-02 .15641E+01 .18545E+01 .42433E+00-.16023E-04 .15455E+01 .20045E+01 .84815E-02 .15660E-02 .11367E-07 .86652E+00 .00000E+00 .30346E+01-.29766E-02 .15640E+01 .18542E+01 .42448E+00-.24334E-04 .15454E+01 .20045E+01 .84816E-02 .15661E-02 .11374E-07 .84377E+00 .00000E+00 .29861E+01-.35483E-02 .15637E+01 .18538E+01 .42470E+00-.32501E-04 .15451E+01 .20045E+01 .84818E-02 .15662E-02 .11381E-07 .82102E+00 .00000E+00 .29377E+01-.41195E-02 .15634E+01 .18534E+01 .42499E+00-.45234E-04 .15450E+01 .20045E+01 .84826E-02 .15664E-02 .11390E-07 .78900E+00 .00000E+00 .28696E+01-.49007E-02 .15631E+01 .18528E+01 .42536E+00 -.50594E-04 .15446E+01 .20045E+01 .84835E-02 .15667E-02 .11395E-07 .77425E+00 .00000E+00 .28337E+01-.53427E-02 .15628E+01 .18525E+01 .42559E+00-.56132E-04 .15443E+01 .20045E+01 .84839E-02 .15668E-02 .11400E-07 .75950E+00 .00000E+00 .27978E+01-.57591E-02 .15627E+01 .18523E+01 .42578E+00-.57321E-04 .15441E+01 .20045E+01 .84841E-02 .15669E-02 .11410E-07 .73000E+00 .00000E+00 .27261E+01 -.66626E-02 .15620E+01 .18518E+01 .42624E+00-.73916E-04 .15436E+01 .20045E+01 .84855E-02 .15672E-02 .11417E-07 .70736E+00 .00000E+00 .26723E+01-.72953E-02 .15617E+01 .18514E+01 .42646E+00-.73857E-04 .15433E+01 .20045E+01 .84860E-02 .15673E-02 .11431E-07 .66736E+00 .00000E+00 .25087E+01-.91028E-02 .15612E+01 .18497E+01 .42674E+00-.73032E-04 .15425E+01 .20044E+01 .84890E-02 .15684E-02 .11444E-07 .62736E+00 .00000E+00 .23100E+01-.11411E-01 .15606E+01 .18477E+01 .42721E+00-.79442E-04 .15415E+01 .20045E+01 .84898E-02 .15688E-02 .11463E-07 .57000E+00 .00000E+00 .20250E+01-.14695E-01 .15592E+01 .18453E+01 .42832E+00 -.10591E-03 .15399E+01 .20044E+01 .84945E-02 .15704E-02 .11472E-07 .54125E+00 .00000E+00 .18425E+01-.16771E-01 .15585E+01 .18437E+01 .42887E+00-.11809E-03 .15389E+01 .20044E+01 .84967E-02 .15711E-02 .11482E-07 .51250E+00 .00000E+00 .16390E+01-.19077E-01 .15577E+01 .18418E+01 .42943E+00-.12985E-03 .15378E+01 .20044E+01 .84988E-02 .15719E-02 .11500E-07 .45500E+00 .00000E+00 .12348E+01 -.23700E-01 .15558E+01 .18386E+01 .43088E+00-.16300E-03 .15355E+01 .20044E+01 .85042E-02 .15735E-02 .11503E-07 .44880E+00 .00000E+00 .11710E+01-.24419E-01 .15554E+01 .18381E+01 .43116E+00-.16956E-03 .15351E+01 .20043E+01 .85056E-02 .15737E-02 .11506E-07 .44260E+00 .00000E+00 .11071E+01-.25179E-01 .15551E+01 .18377E+01 .43138E+00-.17614E-03 .15348E+01 .20043E+01 .85063E-02 .15738E-02 .11509E-07 .43641E+00 .00000E+00 .10432E+01-.25911E-01 .15546E+01 .18372E+01 .43169E+00-.18311E-03 .15342E+01 .20043E+01 .85080E-02 .15742E-02 .11512E-07 .43021E+00 .00000E+00 .97935E+00-.26608E-01 .15542E+01 .18367E+01 .43199E+00 -.18760E-03 .15338E+01 .20043E+01 .85075E-02 .15743E-02 .11515E-07 .42401E+00 .30462E-01 .91548E+00-.28947E-01 .15594E+01 .18361E+01 .43186E+00 .17418E-03 .15332E+01 .20043E+01 .85100E-02 .15746E-02 .11521E-07 .41161E+00 .91385E-01 .78774E+00-.36121E-01 .15720E+01 .18293E+01 .43126E+00 .96548E-03 .15314E+01 .20043E+01 .85170E-02 .15791E-02 .11544E-07 .36306E+00 .33000E+00 .56212E+00 -.37342E-01 .15989E+01 .18363E+01 .43771E+00 .16808E-02 .15281E+01 .20043E+01 .85173E-02 .15733E-02 .11568E-07 .31451E+00 .56862E+00 .43068E+00-.34263E-02 .15816E+01 .18459E+01 .43895E+00-.26815E-03 .15338E+01 .20045E+01 .84960E-02 .15676E-02 .11577E-07 .29488E+00 .67000E+00 .37754E+00 .17874E-01 .15523E+01 .18449E+01 .43268E+00-.17554E-02 .15395E+01 .20047E+01 .84803E-02 .15683E-02 .11587E-07 .27525E+00 .86000E+00 .32441E+00 .43657E-01 .15266E+01 .18543E+01 .42455E+00-.26382E-02 .15475E+01 .20049E+01 .84559E-02 .15621E-02 .11606E-07 .23600E+00 .12400E+01 .21814E+00 .10361E+00 .14229E+01 .18213E+01 .40464E+00 -.66877E-02 .15669E+01 .20052E+01 .84123E-02 .15789E-02 .11616E-07 .22443E+00 .14149E+01 .16360E+00 .14013E+00 .13574E+01 .17956E+01 .39044E+00-.82656E-02 .15809E+01 .20053E+01 .83776E-02 .15894E-02 .11625E-07 .21286E+00 .15757E+01 .10907E+00 .17745E+00 .12884E+01 .17681E+01 .37544E+00-.97849E-02 .15957E+01 .20055E+01 .83422E-02 .15999E-02 .11635E-07 .20129E+00 .17366E+01 .54534E-01 .21629E+00 .12171E+01 .17387E+01 .35922E+00-.10939E-01 .16122E+01 .20057E+01 .83022E-02 .16110E-02 .11645E-07 .18972E+00 .18975E+01 .00000E+00 .25644E+00 .11430E+01 .17078E+01 .34235E+00-.11881E-01 .16304E+01 .20060E+01 .82601E-02 .16228E-02 .11654E-07 .17904E+00 .20318E+01 .00000E+00 .29508E+00 .10734E+01 .16893E+01 .32661E+00-.12457E-01 .16491E+01 .20063E+01 .82124E-02 .16274E-02 .11663E-07 .16836E+00 .21482E+01 .00000E+00 .33293E+00 .10011E+01 .16722E+01 .31065E+00-.13096E-01 .16682E+01 .20066E+01 .81651E-02 .16317E-02 .11681E-07 .14700E+00 .23812E+01 .00000E+00 .40316E+00 .85967E+00 .16455E+01 .27931E+00 -.12545E-01 .17074E+01 .20073E+01 .80704E-02 .16383E-02 .11694E-07 .13830E+00 .25559E+01 .00000E+00 .44902E+00 .82002E+00 .16324E+01 .25971E+00-.10838E-01 .17349E+01 .20077E+01 .80070E-02 .16413E-02 .11717E-07 .12380E+00 .27548E+01 .00000E+00 .52039E+00 .81775E+00 .16131E+01 .23064E+00-.90544E-02 .17780E+01 .20084E+01 .79073E-02 .16457E-02 .11740E-07 .10930E+00 .29162E+01 .00000E+00 .58396E+00 .81312E+00 .16006E+01 .20769E+00-.13516E-02 .18192E+01 .20090E+01 .78104E-02 .16477E-02 .11771E-07 .89000E-01 .31422E+01 .00000E+00 .66259E+00 .80643E+00 .15912E+01 .18397E+00 .20327E-01 .18722E+01 .20095E+01 .76897E-02 .16485E-02 .11776E-07 .86680E-01 .31816E+01 .00000E+00 .67493E+00 .80451E+00 .15904E+01 .18080E+00 .25033E-01 .18805E+01 .20096E+01 .76713E-02 .16485E-02 .11782E-07 .84359E-01 .32211E+01 .00000E+00 .68712E+00 .80276E+00 .15897E+01 .17771E+00 .30028E-01 .18887E+01 .20097E+01 .76523E-02 .16484E-02 .11787E-07 .82039E-01 .32605E+01 .00000E+00 .69900E+00 .80099E+00 .15891E+01 .17474E+00 .35381E-01 .18966E+01 .20097E+01 .76364E-02 .16487E-02 .11793E-07 .79719E-01 .33000E+01 .00000E+00 .71058E+00 .79906E+00 .15887E+01 .17190E+00 .40979E-01 .19043E+01 .20098E+01 .76173E-02 .16482E-02 .11798E-07 .77398E-01 .33000E+01 .00000E+00 .72169E+00 .79660E+00 .15877E+01 .16921E+00 .46842E-01 .19115E+01 .20099E+01 .76024E-02 .16487E-02 .11809E-07 .72969E-01 .33000E+01 .00000E+00 .74232E+00 .79159E+00 .15863E+01 .16419E+00 .58548E-01 .19246E+01 .20099E+01 .75752E-02 .16493E-02 .11820E-07 .68539E-01 .33000E+01 .00000E+00 .76179E+00 .78612E+00 .15854E+01 .15933E+00 .71274E-01 .19366E+01 .20099E+01 .75510E-02 .16498E-02 .11835E-07 .62000E-01 .33000E+01 .00000E+00 .78858E+00 .77729E+00 .15848E+01 .15232E+00 .91464E-01 .19523E+01 .20099E+01 .75194E-02 .16503E-02 .11848E-07 .58649E-01 .33000E+01 .00000E+00 .80873E+00 .76893E+00 .15851E+01 .14643E+00 .10910E+00 .19630E+01 .20098E+01 .74989E-02 .16506E-02 .11872E-07 .52399E-01 .33000E+01 .00000E+00 .84411E+00 .75241E+00 .15861E+01 .13536E+00 .14208E+00 .19803E+01 .20096E+01 .74662E-02 .16510E-02 .11896E-07 .46149E-01 .33000E+01 .00000E+00 .87545E+00 .73421E+00 .15882E+01 .12413E+00 .17456E+00 .19930E+01 .20094E+01 .74465E-02 .16517E-02 .11932E-07 .37000E-01 .33000E+01 .00000E+00 .91546E+00 .70526E+00 .15922E+01 .10752E+00 .21917E+00 .20045E+01 .20088E+01 .74343E-02 .16527E-02 .11949E-07 .34000E-01 .33000E+01 .00000E+00 .93201E+00 .69049E+00 .15944E+01 .99586E-01 .23848E+00 .20067E+01 .20086E+01 .74361E-02 .16532E-02 .11966E-07 .31000E-01 .33000E+01 .00000E+00 .94802E+00 .67556E+00 .15967E+01 .91767E-01 .25727E+00 .20083E+01 .20083E+01 .74389E-02 .16536E-02 .11983E-07 .28000E-01 .33000E+01 .00000E+00 .96302E+00 .66034E+00 .15989E+01 .84201E-01 .27504E+00 .20086E+01 .20080E+01 .74459E-02 .16543E-02 .12000E-07 .25000E-01 .33000E+01 .00000E+00 .97711E+00 .64491E+00 .16012E+01 .76922E-01 .29178E+00 .20078E+01 .20077E+01 .74536E-02 .16548E-02 .12017E-07 .23503E-01 .33000E+01 .00000E+00 .99006E+00 .62930E+00 .16035E+01 .70043E-01 .30702E+00 .20055E+01 .20074E+01 .74664E-02 .16553E-02 .12051E-07 .20508E-01 .33000E+01 .00000E+00 .10146E+01 .59794E+00 .16080E+01 .57200E-01 .33556E+00 .19992E+01 .20068E+01 .74933E-02 .16564E-02 .12099E-07 .16258E-01 .33000E+01 .00000E+00 .10454E+01 .55336E+00 .16141E+01 .42121E-01 .36978E+00 .19850E+01 .20059E+01 .75451E-02 .16575E-02 .12193E-07 .80000E-02 .33000E+01 .00000E+00 .11261E+01 .46858E+00 .16274E+01 .19413E-01 .41735E+00 .19448E+01 .20046E+01 .76627E-02 .16590E-02 .12227E-07 .67500E-02 .33000E+01 .00000E+00 .12019E+01 .43827E+00 .16378E+01 .10879E-01 .42720E+00 .19245E+01 .20041E+01 .77179E-02 .16564E-02 .12262E-07 .55000E-02 .33000E+01 .00000E+00 .12618E+01 .40833E+00 .16504E+01 .48943E-02 .43549E+00 .19036E+01 .20037E+01 .77729E-02 .16531E-02 .12330E-07 .30000E-02 .33000E+01 .00000E+00 .13396E+01 .35183E+00 .16840E+01 .16502E-02 .44494E+00 .18608E+01 .20031E+01 .78775E-02 .16421E-02 .12355E-07 .27500E-02 .33000E+01 .00000E+00 .13598E+01 .33294E+00 .16966E+01 .15394E-02 .44638E+00 .18454E+01 .20030E+01 .79135E-02 .16376E-02 .12380E-07 .25000E-02 .33000E+01 .00000E+00 .13780E+01 .31444E+00 .17090E+01 .13911E-02 .44755E+00 .18303E+01 .20028E+01 .79494E-02 .16334E-02 .12405E-07 .22500E-02 .33000E+01 .00000E+00 .13945E+01 .29675E+00 .17206E+01 .12627E-02 .44822E+00 .18155E+01 .20027E+01 .79808E-02 .16288E-02 .12430E-07 .20000E-02 .33000E+01 .00000E+00 .14096E+01 .27988E+00 .17316E+01 .11499E-02 .44852E+00 .18013E+01 .20027E+01 .80141E-02 .16250E-02 .12455E-07 .19760E-02 .33000E+01 .00000E+00 .14230E+01 .26422E+00 .17414E+01 .10584E-02 .44842E+00 .17878E+01 .20026E+01 .80429E-02 .16212E-02 .12505E-07 .19281E-02 .33000E+01 .00000E+00 .14472E+01 .23444E+00 .17599E+01 .87784E-03 .44783E+00 .17619E+01 .20025E+01 .80987E-02 .16140E-02 .12705E-07 .17363E-02 .33000E+01 .00000E+00 .15126E+01 .14228E+00 .18124E+01 .42048E-03 .44211E+00 .16795E+01 .20026E+01 .82617E-02 .15915E-02 .13205E-07 .12570E-02 .33000E+01 .00000E+00 .15706E+01 .32034E-01 .18615E+01 .28590E-04 .42913E+00 .15770E+01 .20037E+01 .84395E-02 .15663E-02 .13330E-07 .11371E-02 .33000E+01 .00000E+00 .15715E+01 .24166E-01 .18625E+01 .16069E-04 .42784E+00 .15694E+01 .20039E+01 .84490E-02 .15650E-02 .13455E-07 .10173E-02 .33000E+01 .00000E+00 .15718E+01 .18225E-01 .18629E+01 .49270E-05 .42688E+00 .15637E+01 .20040E+01 .84562E-02 .15641E-02 .13955E-07 .53787E-03 .33000E+01 .00000E+00 .15702E+01 .38302E-02 .18621E+01-.14696E-04 .42454E+00 .15499E+01 .20044E+01 .84742E-02 .15629E-02 .14455E-07 .58485E-04 .33000E+01 .00000E+00 .15671E+01 .81858E-03 .18598E+01-.84831E-05 .42408E+00 .15470E+01 .20045E+01 .84783E-02 .15636E-02 .14955E-07-.42090E-03 .33000E+01 .00000E+00 .15655E+01 .17852E-03 .18586E+01-.38667E-05 .42399E+00 .15464E+01 .20045E+01 .84790E-02 .15640E-02 .15455E-07-.90029E-03 .33000E+01 .00000E+00 .15648E+01 .36484E-04 .18581E+01 -.13737E-05 .42396E+00 .15463E+01 .20045E+01 .84793E-02 .15642E-02 .15559E-07 -.10000E-02 .33000E+01 .00000E+00 .15647E+01 .29322E-04 .18580E+01-.14138E-05 .42397E+00 .15463E+01 .20045E+01 .84793E-02 .15643E-02 .15569E-07-.25000E-02 .33000E+01 .00000E+00 .15647E+01 .32370E-04 .18580E+01-.14060E-05 .42396E+00 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .15580E-07-.40000E-02 .33000E+01 .00000E+00 .15647E+01 .32870E-04 .18580E+01-.15794E-05 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .15590E-07-.55000E-02 .33000E+01 .00000E+00 .15647E+01 .32744E-04 .18579E+01-.16186E-05 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .15600E-07-.70000E-02 .33000E+01 .00000E+00 .15647E+01 .32870E-04 .18580E+01-.15794E-05 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .15610E-07-.78836E-02 .33000E+01 .00000E+00 .15647E+01 .31930E-04 .18580E+01-.14747E-05 .42396E+00 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .15625E-07-.91336E-02 .33000E+01 .00000E+00 .15647E+01 .32181E-04 .18580E+01 -.15433E-05 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .15639E-07 -.10384E-01 .33000E+01 .00000E+00 .15647E+01 .32181E-04 .18580E+01-.15433E-05 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .15658E-07-.12000E-01 .33000E+01 .00000E+00 .15647E+01 .31993E-04 .18580E+01-.14943E-05 .42396E+00 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .15668E-07-.87500E-02 .33000E+01 .00000E+00 .15647E+01 .31930E-04 .18580E+01-.14747E-05 .42396E+00 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .15679E-07-.55000E-02 .33000E+01 .00000E+00 .15647E+01 .32465E-04 .18580E+01-.15897E-05 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .15689E-07-.22500E-02 .33000E+01 .00000E+00 .15647E+01 .32465E-04 .18580E+01-.15897E-05 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .15699E-07 .10000E-02 .33000E+01 .00000E+00 .15647E+01 .32465E-04 .18580E+01-.15897E-05 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .15709E-07 .12531E-01 .33000E+01 .00000E+00 .15647E+01 .31930E-04 .18580E+01 -.14747E-05 .42396E+00 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .15725E-07 .30531E-01 .33000E+01 .00000E+00 .15647E+01 .32107E-04 .18580E+01-.15259E-05 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .15741E-07 .48531E-01 .33000E+01 .00000E+00 .15647E+01 .32107E-04 .18580E+01-.15259E-05 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .15763E-07 .73000E-01 .33000E+01 .00000E+00 .15647E+01 .31888E-04 .18580E+01-.14612E-05 .42396E+00 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .15774E-07 .10050E+00 .33000E+01 .00000E+00 .15647E+01 .31849E-04 .18580E+01-.14479E-05 .42396E+00 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .15786E-07 .12800E+00 .33000E+01 .00000E+00 .15647E+01 .32366E-04 .18580E+01-.15771E-05 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .15798E-07 .15550E+00 .33000E+01 .00000E+00 .15647E+01 .32366E-04 .18580E+01-.15771E-05 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .15809E-07 .18300E+00 .33000E+01 .00000E+00 .15647E+01 .32366E-04 .18580E+01 -.15771E-05 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .15820E-07 .22450E+00 .33000E+01 .00000E+00 .15647E+01 .31913E-04 .18580E+01-.14693E-05 .42396E+00 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .15830E-07 .26600E+00 .33000E+01 .00000E+00 .15647E+01 .32444E-04 .18580E+01-.15873E-05 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .15841E-07 .30750E+00 .33000E+01 .00000E+00 .15647E+01 .32444E-04 .18580E+01-.15873E-05 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .15851E-07 .34900E+00 .33000E+01 .00000E+00 .15647E+01 .32444E-04 .18580E+01-.15873E-05 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .15859E-07 .38850E+00 .33000E+01 .00000E+00 .15647E+01 .32156E-04 .18580E+01-.15375E-05 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .15866E-07 .42800E+00 .33000E+01 .00000E+00 .15647E+01 .32757E-04 .18580E+01-.16094E-05 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .15881E-07 .50700E+00 .33000E+01 .00000E+00 .15647E+01 .32156E-04 .18580E+01 -.15375E-05 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .15891E-07 .56450E+00 .33000E+01 .00000E+00 .15647E+01 .31913E-04 .18580E+01-.14693E-05 .42396E+00 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .15902E-07 .62200E+00 .33000E+01 .00000E+00 .15647E+01 .32444E-04 .18580E+01-.15873E-05 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .15912E-07 .67950E+00 .33000E+01 .00000E+00 .15647E+01 .32444E-04 .18580E+01-.15873E-05 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .15923E-07 .73700E+00 .33000E+01 .00000E+00 .15647E+01 .32444E-04 .18580E+01-.15873E-05 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .15930E-07 .77075E+00 .33000E+01 .00000E+00 .15647E+01 .32156E-04 .18580E+01-.15375E-05 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .15938E-07 .80450E+00 .33000E+01 .00000E+00 .15647E+01 .32757E-04 .18580E+01-.16094E-05 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .15945E-07 .83825E+00 .33000E+01 .00000E+00 .15647E+01 .32757E-04 .18580E+01 -.16094E-05 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .15953E-07 .87200E+00 .33000E+01 .00000E+00 .15647E+01 .32757E-04 .18580E+01-.16094E-05 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .15960E-07 .90050E+00 .33000E+01 .00000E+00 .15647E+01 .32237E-04 .18580E+01-.15549E-05 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .15966E-07 .92900E+00 .33000E+01 .00000E+00 .15647E+01 .32863E-04 .18580E+01-.16111E-05 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .15980E-07 .98600E+00 .33000E+01 .00000E+00 .15647E+01 .32237E-04 .18580E+01-.15549E-05 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .15985E-07 .10060E+01 .33000E+01 .00000E+00 .15647E+01 .32486E-04 .18580E+01-.15920E-05 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .15990E-07 .10260E+01 .33000E+01 .00000E+00 .15647E+01 .33189E-04 .18580E+01-.16020E-05 .42396E+00 .15463E+01 .20045E+01 .84796E-02 .15644E-02 .15995E-07 .10460E+01 .33000E+01 .00000E+00 .15647E+01 .33189E-04 .18580E+01 -.16020E-05 .42396E+00 .15463E+01 .20045E+01 .84796E-02 .15644E-02 .16000E-07 .10660E+01 .33000E+01 .00000E+00 .15647E+01 .33189E-04 .18580E+01-.16020E-05 .42396E+00 .15463E+01 .20045E+01 .84796E-02 .15644E-02 .16005E-07 .10861E+01 .33000E+01 .00000E+00 .15647E+01 .32486E-04 .18580E+01-.15920E-05 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .16015E-07 .11263E+01 .33000E+01 .00000E+00 .15647E+01 .32486E-04 .18580E+01-.15920E-05 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .16026E-07 .11716E+01 .33000E+01 .00000E+00 .15647E+01 .32385E-04 .18580E+01-.15797E-05 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .16045E-07 .12470E+01 .33000E+01 .00000E+00 .15647E+01 .31993E-04 .18580E+01-.14943E-05 .42396E+00 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .16053E-07 .12713E+01 .33000E+01 .00000E+00 .15647E+01 .32107E-04 .18580E+01-.15259E-05 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .16061E-07 .12955E+01 .33000E+01 .00000E+00 .15647E+01 .32693E-04 .18580E+01 -.16071E-05 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .16069E-07 .13197E+01 .33000E+01 .00000E+00 .15647E+01 .32693E-04 .18580E+01-.16071E-05 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .16077E-07 .13440E+01 .33000E+01 .00000E+00 .15647E+01 .32693E-04 .18580E+01-.16071E-05 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .16085E-07 .13664E+01 .33000E+01 .00000E+00 .15647E+01 .32107E-04 .18580E+01-.15259E-05 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .16099E-07 .14057E+01 .33000E+01 .00000E+00 .15647E+01 .32208E-04 .18580E+01-.15491E-05 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .16113E-07 .14449E+01 .33000E+01 .00000E+00 .15647E+01 .32208E-04 .18580E+01-.15491E-05 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .16133E-07 .15010E+01 .33000E+01 .00000E+00 .15647E+01 .31947E-04 .18580E+01-.14803E-05 .42396E+00 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .16143E-07 .15305E+01 .33000E+01 .00000E+00 .15647E+01 .31947E-04 .18580E+01 -.14803E-05 .42396E+00 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .16153E-07 .15600E+01 .33000E+01 .00000E+00 .15647E+01 .32486E-04 .18580E+01-.15920E-05 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .16173E-07 .16190E+01 .33000E+01 .00000E+00 .15647E+01 .31947E-04 .18580E+01-.14803E-05 .42396E+00 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .16185E-07 .16487E+01 .33000E+01 .00000E+00 .15647E+01 .31791E-04 .18580E+01-.14275E-05 .42396E+00 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .16198E-07 .16785E+01 .33000E+01 .00000E+00 .15647E+01 .32298E-04 .18580E+01-.15662E-05 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .16223E-07 .17380E+01 .33000E+01 .00000E+00 .15647E+01 .31791E-04 .18580E+01-.14275E-05 .42396E+00 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .16232E-07 .17590E+01 .33000E+01 .00000E+00 .15647E+01 .32042E-04 .18580E+01-.15085E-05 .42396E+00 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .16241E-07 .17800E+01 .33000E+01 .00000E+00 .15647E+01 .32608E-04 .18580E+01 -.16024E-05 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .16249E-07 .18010E+01 .33000E+01 .00000E+00 .15647E+01 .32608E-04 .18580E+01-.16024E-05 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .16258E-07 .18220E+01 .33000E+01 .00000E+00 .15647E+01 .32608E-04 .18580E+01-.16024E-05 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .16267E-07 .18483E+01 .33000E+01 .00000E+00 .15647E+01 .32042E-04 .18580E+01-.15085E-05 .42396E+00 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .16277E-07 .18783E+01 .33000E+01 .00000E+00 .15647E+01 .32486E-04 .18580E+01-.15920E-05 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .16287E-07 .19082E+01 .33000E+01 .00000E+00 .15647E+01 .32486E-04 .18580E+01-.15920E-05 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .16298E-07 .19420E+01 .33000E+01 .00000E+00 .15647E+01 .32385E-04 .18580E+01-.15797E-05 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .16305E-07 .19607E+01 .33000E+01 .00000E+00 .15647E+01 .32181E-04 .18580E+01 -.15433E-05 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .16312E-07 .19795E+01 .33000E+01 .00000E+00 .15647E+01 .32790E-04 .18580E+01-.16102E-05 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .16320E-07 .19983E+01 .33000E+01 .00000E+00 .15647E+01 .32790E-04 .18580E+01-.16102E-05 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .16327E-07 .20170E+01 .33000E+01 .00000E+00 .15647E+01 .32790E-04 .18580E+01-.16102E-05 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .16334E-07 .20381E+01 .33000E+01 .00000E+00 .15647E+01 .32181E-04 .18580E+01-.15433E-05 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .16343E-07 .20644E+01 .33000E+01 .00000E+00 .15647E+01 .32582E-04 .18580E+01-.16005E-05 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .16352E-07 .20906E+01 .33000E+01 .00000E+00 .15647E+01 .32582E-04 .18580E+01-.16005E-05 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .16363E-07 .21220E+01 .33000E+01 .00000E+00 .15647E+01 .32423E-04 .18580E+01 -.15848E-05 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .16369E-07 .21402E+01 .33000E+01 .00000E+00 .15647E+01 .32298E-04 .18580E+01-.15662E-05 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .16376E-07 .21585E+01 .33000E+01 .00000E+00 .15647E+01 .32944E-04 .18580E+01-.16107E-05 .42396E+00 .15463E+01 .20045E+01 .84796E-02 .15643E-02 .16382E-07 .21767E+01 .33000E+01 .00000E+00 .15647E+01 .32944E-04 .18580E+01-.16107E-05 .42396E+00 .15463E+01 .20045E+01 .84796E-02 .15643E-02 .16388E-07 .21950E+01 .33000E+01 .00000E+00 .15647E+01 .32944E-04 .18580E+01-.16107E-05 .42396E+00 .15463E+01 .20045E+01 .84796E-02 .15643E-02 .16394E-07 .22114E+01 .33000E+01 .00000E+00 .15647E+01 .32298E-04 .18580E+01-.15662E-05 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .16407E-07 .22443E+01 .33000E+01 .00000E+00 .15647E+01 .32298E-04 .18580E+01-.15662E-05 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .16420E-07 .22798E+01 .33000E+01 .00000E+00 .15647E+01 .32237E-04 .18580E+01 -.15549E-05 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .16442E-07 .23370E+01 .33000E+01 .00000E+00 .15647E+01 .31888E-04 .18580E+01-.14612E-05 .42396E+00 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .16451E-07 .23593E+01 .33000E+01 .00000E+00 .15647E+01 .32002E-04 .18580E+01-.14971E-05 .42396E+00 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .16461E-07 .23815E+01 .33000E+01 .00000E+00 .15647E+01 .32556E-04 .18580E+01-.15986E-05 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .16479E-07 .24260E+01 .33000E+01 .00000E+00 .15647E+01 .32002E-04 .18580E+01-.14971E-05 .42396E+00 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .16482E-07 .24325E+01 .33000E+01 .00000E+00 .15647E+01 .32988E-04 .18580E+01-.16099E-05 .42396E+00 .15463E+01 .20045E+01 .84796E-02 .15643E-02 .16485E-07 .24390E+01 .33000E+01 .00000E+00 .15647E+01 .33799E-04 .18580E+01-.15424E-05 .42396E+00 .15463E+01 .20045E+01 .84796E-02 .15644E-02 .16491E-07 .24520E+01 .33000E+01 .00000E+00 .15647E+01 .32988E-04 .18580E+01 -.16099E-05 .42396E+00 .15463E+01 .20045E+01 .84796E-02 .15643E-02 .16493E-07 .24567E+01 .33000E+01 .00000E+00 .15647E+01 .33310E-04 .18580E+01-.15941E-05 .42396E+00 .15463E+01 .20045E+01 .84796E-02 .15644E-02 .16496E-07 .24615E+01 .33000E+01 .00000E+00 .15647E+01 .34154E-04 .18580E+01-.14881E-05 .42396E+00 .15463E+01 .20045E+01 .84796E-02 .15644E-02 .16500E-07 .24710E+01 .33000E+01 .00000E+00 .15647E+01 .33310E-04 .18580E+01-.15941E-05 .42396E+00 .15463E+01 .20045E+01 .84796E-02 .15644E-02 .16503E-07 .24772E+01 .33000E+01 .00000E+00 .15647E+01 .32863E-04 .18580E+01-.16111E-05 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .16510E-07 .24897E+01 .33000E+01 .00000E+00 .15647E+01 .32863E-04 .18580E+01-.16111E-05 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .16537E-07 .25392E+01 .33000E+01 .00000E+00 .15646E+01 .31744E-04 .18580E+01-.14104E-05 .42396E+00 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .16564E-07 .25887E+01 .33000E+01 .00000E+00 .15646E+01 .31744E-04 .18580E+01 -.14104E-05 .42396E+00 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .16607E-07 .26690E+01 .33000E+01 .00000E+00 .15646E+01 .31369E-04 .18580E+01-.12790E-05 .42396E+00 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .16626E-07 .27065E+01 .33000E+01 .00000E+00 .15646E+01 .31492E-04 .18580E+01-.13196E-05 .42396E+00 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .16644E-07 .27440E+01 .33000E+01 .00000E+00 .15647E+01 .31993E-04 .18580E+01-.14943E-05 .42396E+00 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .16663E-07 .27815E+01 .33000E+01 .00000E+00 .15647E+01 .31993E-04 .18580E+01-.14943E-05 .42396E+00 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .16682E-07 .28190E+01 .33000E+01 .00000E+00 .15647E+01 .31993E-04 .18580E+01-.14943E-05 .42396E+00 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .16701E-07 .28473E+01 .33000E+01 .00000E+00 .15646E+01 .31492E-04 .18580E+01-.13196E-05 .42396E+00 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .16726E-07 .28851E+01 .33000E+01 .00000E+00 .15647E+01 .31791E-04 .18580E+01 -.14275E-05 .42396E+00 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .16751E-07 .29228E+01 .33000E+01 .00000E+00 .15647E+01 .31791E-04 .18580E+01-.14275E-05 .42396E+00 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .16782E-07 .29700E+01 .33000E+01 .00000E+00 .15646E+01 .31632E-04 .18580E+01-.13695E-05 .42396E+00 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .16800E-07 .29895E+01 .33000E+01 .00000E+00 .15646E+01 .31536E-04 .18580E+01-.13348E-05 .42396E+00 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .16818E-07 .30090E+01 .33000E+01 .00000E+00 .15647E+01 .32032E-04 .18580E+01-.15057E-05 .42396E+00 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .16853E-07 .30480E+01 .33000E+01 .00000E+00 .15646E+01 .31536E-04 .18580E+01-.13348E-05 .42396E+00 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .16875E-07 .30655E+01 .33000E+01 .00000E+00 .15646E+01 .31377E-04 .18580E+01-.12814E-05 .42396E+00 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .16896E-07 .30830E+01 .33000E+01 .00000E+00 .15647E+01 .31896E-04 .18580E+01 -.14639E-05 .42396E+00 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .16939E-07 .31180E+01 .33000E+01 .00000E+00 .15646E+01 .31377E-04 .18580E+01-.12814E-05 .42396E+00 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .16954E-07 .31275E+01 .33000E+01 .00000E+00 .15646E+01 .31650E-04 .18580E+01-.13760E-05 .42396E+00 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .16969E-07 .31370E+01 .33000E+01 .00000E+00 .15647E+01 .32143E-04 .18580E+01-.15346E-05 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .17000E-07 .31560E+01 .33000E+01 .00000E+00 .15646E+01 .31650E-04 .18580E+01-.13760E-05 .42396E+00 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .17023E-07 .31654E+01 .33000E+01 .00000E+00 .15646E+01 .31320E-04 .18580E+01-.12641E-05 .42396E+00 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .17066E-07 .31831E+01 .33000E+01 .00000E+00 .15646E+01 .31371E-04 .18580E+01-.12798E-05 .42396E+00 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .17109E-07 .32009E+01 .33000E+01 .00000E+00 .15646E+01 .31371E-04 .18580E+01 -.12798E-05 .42396E+00 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .17173E-07 .32270E+01 .33000E+01 .00000E+00 .15646E+01 .30955E-04 .18580E+01-.11728E-05 .42396E+00 .15463E+01 .20045E+01 .84793E-02 .15643E-02 .17204E-07 .32343E+01 .33000E+01 .00000E+00 .15646E+01 .31009E-04 .18580E+01-.11843E-05 .42396E+00 .15463E+01 .20045E+01 .84793E-02 .15643E-02 .17234E-07 .32415E+01 .33000E+01 .00000E+00 .15646E+01 .31650E-04 .18580E+01-.13760E-05 .42396E+00 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .17264E-07 .32487E+01 .33000E+01 .00000E+00 .15646E+01 .31650E-04 .18580E+01-.13760E-05 .42396E+00 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .17295E-07 .32560E+01 .33000E+01 .00000E+00 .15646E+01 .31650E-04 .18580E+01-.13760E-05 .42396E+00 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .17325E-07 .32600E+01 .33000E+01 .00000E+00 .15646E+01 .31030E-04 .18580E+01-.11888E-05 .42396E+00 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .17355E-07 .32640E+01 .33000E+01 .00000E+00 .15646E+01 .31662E-04 .18580E+01 -.13804E-05 .42396E+00 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .17415E-07 .32720E+01 .33000E+01 .00000E+00 .15646E+01 .31030E-04 .18580E+01-.11888E-05 .42396E+00 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .17436E-07 .32740E+01 .33000E+01 .00000E+00 .15646E+01 .31387E-04 .18580E+01-.12847E-05 .42396E+00 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .17458E-07 .32760E+01 .33000E+01 .00000E+00 .15647E+01 .31905E-04 .18580E+01-.14666E-05 .42396E+00 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .17500E-07 .32800E+01 .33000E+01 .00000E+00 .15646E+01 .31387E-04 .18580E+01-.12847E-05 .42396E+00 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .17532E-07 .32816E+01 .33000E+01 .00000E+00 .15646E+01 .30953E-04 .18580E+01-.11723E-05 .42396E+00 .15463E+01 .20045E+01 .84793E-02 .15643E-02 .17596E-07 .32848E+01 .33000E+01 .00000E+00 .15646E+01 .30953E-04 .18580E+01-.11723E-05 .42396E+00 .15463E+01 .20045E+01 .84793E-02 .15643E-02 .17665E-07 .32883E+01 .33000E+01 .00000E+00 .15646E+01 .30834E-04 .18579E+01 -.11491E-05 .42396E+00 .15463E+01 .20045E+01 .84793E-02 .15643E-02 .17778E-07 .32940E+01 .33000E+01 .00000E+00 .15646E+01 .29886E-04 .18579E+01-.10268E-05 .42396E+00 .15463E+01 .20045E+01 .84793E-02 .15643E-02 .17827E-07 .32950E+01 .33000E+01 .00000E+00 .15646E+01 .30220E-04 .18579E+01-.10609E-05 .42396E+00 .15463E+01 .20045E+01 .84793E-02 .15643E-02 .17876E-07 .32960E+01 .33000E+01 .00000E+00 .15646E+01 .31254E-04 .18580E+01-.12449E-05 .42396E+00 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .17925E-07 .32970E+01 .33000E+01 .00000E+00 .15646E+01 .31254E-04 .18580E+01-.12449E-05 .42396E+00 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .17974E-07 .32980E+01 .33000E+01 .00000E+00 .15646E+01 .31254E-04 .18580E+01-.12449E-05 .42396E+00 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .17978E-07 .32980E+01 .33000E+01 .00000E+00 .15647E+01 .32757E-04 .18580E+01-.16094E-05 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .17982E-07 .32980E+01 .33000E+01 .00000E+00 .15647E+01 .33527E-04 .18580E+01 -.15749E-05 .42396E+00 .15463E+01 .20045E+01 .84796E-02 .15644E-02 .17989E-07 .32980E+01 .33000E+01 .00000E+00 .15647E+01 .32757E-04 .18580E+01-.16094E-05 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .17995E-07 .32980E+01 .33000E+01 .00000E+00 .15647E+01 .32385E-04 .18580E+01-.15797E-05 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .18006E-07 .32980E+01 .33000E+01 .00000E+00 .15647E+01 .32385E-04 .18580E+01-.15797E-05 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .18051E-07 .32981E+01 .33000E+01 .00000E+00 .15646E+01 .31335E-04 .18580E+01-.12687E-05 .42396E+00 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .18231E-07 .32982E+01 .33000E+01 .00000E+00 .15646E+01 .28318E-04 .18579E+01-.92177E-06 .42396E+00 .15463E+01 .20045E+01 .84793E-02 .15643E-02 .18731E-07 .32987E+01 .33000E+01 .00000E+00 .15646E+01 .21788E-04 .18579E+01-.70015E-06 .42396E+00 .15463E+01 .20045E+01 .84792E-02 .15643E-02 .19231E-07 .32992E+01 .33000E+01 .00000E+00 .15644E+01 .19983E-04 .18578E+01 .00000E+00 .42397E+00 .15463E+01 .20045E+01 .84792E-02 .15644E-02 .19731E-07 .32997E+01 .33000E+01 .00000E+00 .15644E+01 .21573E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84792E-02 .15644E-02 .20000E-07 .33000E+01 .33000E+01 .00000E+00 .15644E+01 .25269E-04 .18578E+01 .00000E+00 .42397E+00 .15463E+01 .20045E+01 .84793E-02 .15644E-02 .20050E-07 .33003E+01 .33000E+01 .00000E+00 .15644E+01 .29838E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84793E-02 .15644E-02 .20150E-07 .33008E+01 .33000E+01 .00000E+00 .15644E+01 .29838E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84793E-02 .15644E-02 .20300E-07 .33015E+01 .33000E+01 .00000E+00 .15644E+01 .28507E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84793E-02 .15644E-02 .20600E-07 .33030E+01 .33000E+01 .00000E+00 .15644E+01 .24782E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84792E-02 .15644E-02 .20615E-07 .33055E+01 .33000E+01 .00000E+00 .15644E+01 .31668E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .20630E-07 .33080E+01 .33000E+01 .00000E+00 .15644E+01 .32202E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .20645E-07 .33105E+01 .33000E+01 .00000E+00 .15644E+01 .32202E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .20660E-07 .33130E+01 .33000E+01 .00000E+00 .15644E+01 .32202E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .20671E-07 .33122E+01 .33000E+01 .00000E+00 .15644E+01 .31934E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .20681E-07 .33115E+01 .33000E+01 .00000E+00 .15644E+01 .32457E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .20692E-07 .33108E+01 .33000E+01 .00000E+00 .15644E+01 .32457E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .20703E-07 .33100E+01 .33000E+01 .00000E+00 .15644E+01 .32457E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .20714E-07 .33036E+01 .33000E+01 .00000E+00 .15644E+01 .31934E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .20730E-07 .32939E+01 .33000E+01 .00000E+00 .15644E+01 .32131E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .20747E-07 .32841E+01 .33000E+01 .00000E+00 .15644E+01 .32131E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .20769E-07 .32710E+01 .33000E+01 .00000E+00 .15644E+01 .31908E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .20781E-07 .32540E+01 .33000E+01 .00000E+00 .15644E+01 .31866E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .20793E-07 .32370E+01 .33000E+01 .00000E+00 .15644E+01 .32387E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .20804E-07 .32200E+01 .33000E+01 .00000E+00 .15644E+01 .32387E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .20816E-07 .32030E+01 .33000E+01 .00000E+00 .15644E+01 .32387E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .20828E-07 .31710E+01 .33000E+01 .00000E+00 .15644E+01 .31866E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .20851E-07 .31071E+01 .33000E+01 .00000E+00 .15644E+01 .31866E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .20876E-07 .30411E+01 .33000E+01 .00000E+00 .15644E+01 .31842E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .20913E-07 .29390E+01 .33000E+01 .00000E+00 .15644E+01 .31462E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .20930E-07 .28637E+01 .33000E+01 .00000E+00 .15644E+01 .31543E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .20947E-07 .27885E+01 .33000E+01 .00000E+00 .15644E+01 .32098E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .20965E-07 .27132E+01 .33000E+01 .00000E+00 .15644E+01 .32098E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .20982E-07 .26380E+01 .33000E+01 .00000E+00 .15644E+01 .32098E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .20984E-07 .26272E+01 .33000E+01 .00000E+00 .15644E+01 .33148E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84796E-02 .15644E-02 .20987E-07 .26165E+01 .33000E+01 .00000E+00 .15644E+01 .33913E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84796E-02 .15645E-02 .20989E-07 .26058E+01 .33000E+01 .00000E+00 .15644E+01 .33913E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84796E-02 .15645E-02 .20992E-07 .25950E+01 .33000E+01 .00000E+00 .15644E+01 .33913E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84796E-02 .15645E-02 .20994E-07 .25870E+01 .33000E+01 .00000E+00 .15644E+01 .33383E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84796E-02 .15644E-02 .20996E-07 .25790E+01 .33000E+01 .00000E+00 .15644E+01 .34173E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84796E-02 .15645E-02 .20998E-07 .25710E+01 .33000E+01 .00000E+00 .15644E+01 .34173E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84796E-02 .15645E-02 .21000E-07 .25630E+01 .33000E+01 .00000E+00 .15644E+01 .34173E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84796E-02 .15645E-02 .21002E-07 .25538E+01 .33000E+01 .00000E+00 .15644E+01 .33383E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84796E-02 .15644E-02 .21006E-07 .25366E+01 .33000E+01 .00000E+00 .15644E+01 .33453E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84796E-02 .15644E-02 .21009E-07 .25193E+01 .33000E+01 .00000E+00 .15644E+01 .33453E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84796E-02 .15644E-02 .21015E-07 .24940E+01 .33000E+01 .00000E+00 .15644E+01 .33052E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .21018E-07 .24815E+01 .33000E+01 .00000E+00 .15644E+01 .33052E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .21020E-07 .24690E+01 .33000E+01 .00000E+00 .15644E+01 .33803E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84796E-02 .15645E-02 .21023E-07 .24565E+01 .33000E+01 .00000E+00 .15644E+01 .33803E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84796E-02 .15645E-02 .21026E-07 .24440E+01 .33000E+01 .00000E+00 .15644E+01 .33803E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84796E-02 .15645E-02 .21029E-07 .24307E+01 .33000E+01 .00000E+00 .15644E+01 .33052E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .21034E-07 .24041E+01 .33000E+01 .00000E+00 .15644E+01 .33052E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .21042E-07 .23666E+01 .33000E+01 .00000E+00 .15644E+01 .32731E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .21057E-07 .22940E+01 .33000E+01 .00000E+00 .15644E+01 .32202E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .21062E-07 .22650E+01 .33000E+01 .00000E+00 .15644E+01 .32438E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .21068E-07 .22360E+01 .33000E+01 .00000E+00 .15644E+01 .33052E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .21074E-07 .22070E+01 .33000E+01 .00000E+00 .15644E+01 .33052E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .21079E-07 .21780E+01 .33000E+01 .00000E+00 .15644E+01 .33052E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .21084E-07 .21484E+01 .33000E+01 .00000E+00 .15644E+01 .32438E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .21096E-07 .20891E+01 .33000E+01 .00000E+00 .15644E+01 .32438E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .21111E-07 .20056E+01 .33000E+01 .00000E+00 .15644E+01 .32177E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .21141E-07 .18440E+01 .33000E+01 .00000E+00 .15644E+01 .31668E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .21152E-07 .17873E+01 .33000E+01 .00000E+00 .15644E+01 .31917E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .21163E-07 .17305E+01 .33000E+01 .00000E+00 .15644E+01 .32438E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .21174E-07 .16738E+01 .33000E+01 .00000E+00 .15644E+01 .32438E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .21185E-07 .16170E+01 .33000E+01 .00000E+00 .15644E+01 .32438E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .21189E-07 .15922E+01 .33000E+01 .00000E+00 .15644E+01 .32602E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .21194E-07 .15675E+01 .33000E+01 .00000E+00 .15644E+01 .33257E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84796E-02 .15644E-02 .21199E-07 .15428E+01 .33000E+01 .00000E+00 .15644E+01 .33257E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84796E-02 .15644E-02 .21203E-07 .15180E+01 .33000E+01 .00000E+00 .15644E+01 .33257E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84796E-02 .15644E-02 .21206E-07 .15010E+01 .33000E+01 .00000E+00 .15644E+01 .32891E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .21209E-07 .14840E+01 .33000E+01 .00000E+00 .15644E+01 .33612E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84796E-02 .15645E-02 .21216E-07 .14500E+01 .33000E+01 .00000E+00 .15644E+01 .32891E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .21221E-07 .14247E+01 .33000E+01 .00000E+00 .15644E+01 .32557E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .21225E-07 .13995E+01 .33000E+01 .00000E+00 .15644E+01 .33201E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84796E-02 .15644E-02 .21235E-07 .13490E+01 .33000E+01 .00000E+00 .15644E+01 .32557E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .21238E-07 .13300E+01 .33000E+01 .00000E+00 .15644E+01 .32891E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .21241E-07 .13110E+01 .33000E+01 .00000E+00 .15644E+01 .33612E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84796E-02 .15645E-02 .21248E-07 .12730E+01 .33000E+01 .00000E+00 .15644E+01 .32891E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .21253E-07 .12446E+01 .33000E+01 .00000E+00 .15644E+01 .32535E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .21259E-07 .12111E+01 .33000E+01 .00000E+00 .15644E+01 .33008E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .21264E-07 .11776E+01 .33000E+01 .00000E+00 .15644E+01 .33008E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .21271E-07 .11390E+01 .33000E+01 .00000E+00 .15644E+01 .32873E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .21275E-07 .11240E+01 .33000E+01 .00000E+00 .15644E+01 .32703E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .21279E-07 .11090E+01 .33000E+01 .00000E+00 .15644E+01 .33383E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84796E-02 .15644E-02 .21287E-07 .10790E+01 .33000E+01 .00000E+00 .15644E+01 .32703E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .21293E-07 .10680E+01 .33000E+01 .00000E+00 .15644E+01 .32438E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .21298E-07 .10570E+01 .33000E+01 .00000E+00 .15644E+01 .33052E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .21303E-07 .10460E+01 .33000E+01 .00000E+00 .15644E+01 .33052E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .21309E-07 .10350E+01 .33000E+01 .00000E+00 .15644E+01 .33052E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .21313E-07 .10282E+01 .33000E+01 .00000E+00 .15644E+01 .32703E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .21317E-07 .10215E+01 .33000E+01 .00000E+00 .15644E+01 .33383E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84796E-02 .15644E-02 .21325E-07 .10080E+01 .33000E+01 .00000E+00 .15644E+01 .32703E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .21326E-07 .10031E+01 .33000E+01 .00000E+00 .15644E+01 .33703E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84796E-02 .15645E-02 .21328E-07 .99818E+00 .33000E+01 .00000E+00 .15644E+01 .34505E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84796E-02 .15645E-02 .21331E-07 .98836E+00 .33000E+01 .00000E+00 .15644E+01 .33703E-04 .18578E+01 .00000E+00 .42396E+00 .15463E+01 .20045E+01 .84796E-02 .15645E-02 .21333E-07 .98100E+00 .32837E+01 .00000E+00 .15644E+01-.10602E-03 .18575E+01 .76231E-06 .42393E+00 .15462E+01 .20045E+01 .84798E-02 .15646E-02 .21337E-07 .96791E+00 .32547E+01 .00000E+00 .15645E+01-.41209E-03 .18570E+01 .24255E-05 .42386E+00 .15462E+01 .20045E+01 .84801E-02 .15649E-02 .21341E-07 .95482E+00 .32257E+01 .00000E+00 .15645E+01-.63331E-03 .18567E+01 .35225E-05 .42381E+00 .15462E+01 .20045E+01 .84801E-02 .15651E-02 .21347E-07 .93600E+00 .31840E+01 .00000E+00 .15645E+01 -.12456E-02 .18560E+01 .25636E-05 .42379E+00 .15461E+01 .20045E+01 .84805E-02 .15653E-02 .21351E-07 .92200E+00 .31549E+01 .00000E+00 .15644E+01-.15639E-02 .18557E+01 .00000E+00 .42390E+00 .15460E+01 .20045E+01 .84809E-02 .15656E-02 .21355E-07 .90800E+00 .31259E+01 .00000E+00 .15644E+01-.18975E-02 .18553E+01 -.40820E-05 .42402E+00 .15459E+01 .20045E+01 .84811E-02 .15658E-02 .21363E-07 .88000E+00 .30679E+01 .00000E+00 .15642E+01-.25540E-02 .18547E+01-.13161E-04 .42428E+00 .15456E+01 .20044E+01 .84819E-02 .15660E-02 .21369E-07 .85978E+00 .30244E+01 .00000E+00 .15641E+01-.30807E-02 .18543E+01-.21810E-04 .42451E+00 .15454E+01 .20044E+01 .84821E-02 .15662E-02 .21376E-07 .83703E+00 .29754E+01 .00000E+00 .15639E+01-.36180E-02 .18538E+01-.29660E-04 .42475E+00 .15452E+01 .20044E+01 .84828E-02 .15664E-02 .21382E-07 .81428E+00 .29265E+01 .00000E+00 .15635E+01-.43023E-02 .18534E+01-.42429E-04 .42507E+00 .15449E+01 .20045E+01 .84830E-02 .15663E-02 .21390E-07 .78900E+00 .28721E+01 .00000E+00 .15633E+01 -.49382E-02 .18529E+01-.50190E-04 .42539E+00 .15446E+01 .20044E+01 .84839E-02 .15668E-02 .21395E-07 .77425E+00 .28358E+01 .00000E+00 .15630E+01-.53859E-02 .18526E+01-.56956E-04 .42559E+00 .15444E+01 .20045E+01 .84843E-02 .15666E-02 .21400E-07 .75950E+00 .27996E+01 .00000E+00 .15629E+01-.57893E-02 .18523E+01 -.58228E-04 .42581E+00 .15442E+01 .20044E+01 .84847E-02 .15673E-02 .21405E-07 .74475E+00 .27633E+01 .00000E+00 .15627E+01-.62911E-02 .18520E+01-.61656E-04 .42596E+00 .15439E+01 .20044E+01 .84840E-02 .15674E-02 .21410E-07 .73000E+00 .27270E+01 .00000E+00 .15625E+01-.65787E-02 .18518E+01-.64200E-04 .42628E+00 .15438E+01 .20044E+01 .84864E-02 .15666E-02 .21415E-07 .71491E+00 .26908E+01 .00000E+00 .15622E+01-.70457E-02 .18516E+01-.70379E-04 .42645E+00 .15435E+01 .20045E+01 .84852E-02 .15674E-02 .21425E-07 .68472E+00 .25950E+01 .00000E+00 .15618E+01-.81282E-02 .18507E+01-.70483E-04 .42671E+00 .15430E+01 .20044E+01 .84903E-02 .15666E-02 .21438E-07 .64472E+00 .23963E+01 .00000E+00 .15612E+01 -.10356E-01 .18486E+01-.75810E-04 .42703E+00 .15421E+01 .20044E+01 .84891E-02 .15694E-02 .21463E-07 .57000E+00 .20250E+01 .00000E+00 .15595E+01-.14718E-01 .18455E+01-.10783E-03 .42836E+00 .15400E+01 .20043E+01 .84997E-02 .15708E-02 .21472E-07 .54125E+00 .18425E+01 .00000E+00 .15587E+01-.16758E-01 .18438E+01 -.12151E-03 .42893E+00 .15390E+01 .20043E+01 .85005E-02 .15716E-02 .21481E-07 .51250E+00 .16390E+01 .00000E+00 .15579E+01-.19057E-01 .18419E+01-.13369E-03 .42950E+00 .15379E+01 .20042E+01 .85036E-02 .15728E-02 .21500E-07 .45500E+00 .12348E+01 .00000E+00 .15560E+01-.23679E-01 .18387E+01-.16710E-03 .43097E+00 .15356E+01 .20042E+01 .85075E-02 .15739E-02 .21503E-07 .44880E+00 .11710E+01 .00000E+00 .15556E+01-.24396E-01 .18383E+01-.17327E-03 .43125E+00 .15352E+01 .20042E+01 .85090E-02 .15742E-02 .21506E-07 .44260E+00 .11071E+01 .00000E+00 .15553E+01-.25157E-01 .18379E+01-.17990E-03 .43147E+00 .15349E+01 .20042E+01 .85094E-02 .15744E-02 .21509E-07 .43641E+00 .10432E+01 .00000E+00 .15548E+01 -.25888E-01 .18374E+01-.18567E-03 .43178E+00 .15344E+01 .20042E+01 .85115E-02 .15748E-02 .21512E-07 .43021E+00 .97935E+00 .00000E+00 .15545E+01-.26584E-01 .18369E+01-.18570E-03 .43209E+00 .15340E+01 .20042E+01 .85110E-02 .15749E-02 .21515E-07 .42401E+00 .91548E+00 .30462E-01 .15597E+01-.28930E-01 .18363E+01 .17792E-03 .43195E+00 .15333E+01 .20042E+01 .85134E-02 .15752E-02 .21521E-07 .41161E+00 .78774E+00 .91385E-01 .15723E+01-.36106E-01 .18295E+01 .96859E-03 .43136E+00 .15316E+01 .20041E+01 .85204E-02 .15796E-02 .21544E-07 .36306E+00 .56212E+00 .33000E+00 .15991E+01-.37300E-01 .18364E+01 .16797E-02 .43783E+00 .15283E+01 .20042E+01 .85202E-02 .15739E-02 .21568E-07 .31451E+00 .43068E+00 .56862E+00 .15819E+01-.33490E-02 .18460E+01-.26739E-03 .43907E+00 .15340E+01 .20044E+01 .84985E-02 .15680E-02 .21578E-07 .29488E+00 .37754E+00 .67031E+00 .15526E+01 .17967E-01 .18451E+01-.17527E-02 .43279E+00 .15397E+01 .20045E+01 .84826E-02 .15687E-02 .21587E-07 .27525E+00 .32441E+00 .86625E+00 .15277E+01 .43782E-01 .18553E+01-.25962E-02 .42466E+00 .15477E+01 .20048E+01 .84578E-02 .15620E-02 .21606E-07 .23600E+00 .21814E+00 .12581E+01 .14235E+01 .10387E+00 .18216E+01-.66961E-02 .40474E+00 .15671E+01 .20051E+01 .84143E-02 .15793E-02 .21616E-07 .22443E+00 .16360E+00 .14287E+01 .13568E+01 .14042E+00 .17956E+01 -.83214E-02 .39052E+00 .15811E+01 .20052E+01 .83793E-02 .15898E-02 .21625E-07 .21286E+00 .10907E+00 .15856E+01 .12876E+01 .17773E+00 .17681E+01-.98314E-02 .37548E+00 .15959E+01 .20054E+01 .83437E-02 .16004E-02 .21635E-07 .20129E+00 .54534E-01 .17426E+01 .12161E+01 .21656E+00 .17386E+01-.10979E-01 .35923E+00 .16125E+01 .20057E+01 .83037E-02 .16114E-02 .21645E-07 .18972E+00 .00000E+00 .18995E+01 .11419E+01 .25671E+00 .17076E+01-.11917E-01 .34236E+00 .16306E+01 .20059E+01 .82615E-02 .16233E-02 .21654E-07 .17904E+00 .00000E+00 .20308E+01 .10722E+01 .29533E+00 .16892E+01-.12489E-01 .32661E+00 .16494E+01 .20062E+01 .82136E-02 .16278E-02 .21663E-07 .16836E+00 .00000E+00 .21450E+01 .99983E+00 .33316E+00 .16720E+01-.13122E-01 .31065E+00 .16684E+01 .20065E+01 .81663E-02 .16321E-02 .21672E-07 .15768E+00 .00000E+00 .22592E+01 .92796E+00 .36917E+00 .16577E+01-.13415E-01 .29456E+00 .16880E+01 .20069E+01 .81187E-02 .16357E-02 .21681E-07 .14700E+00 .00000E+00 .23735E+01 .85805E+00 .40328E+00 .16455E+01 -.12820E-01 .27912E+00 .17078E+01 .20072E+01 .80714E-02 .16387E-02 .21690E-07 .14120E+00 .00000E+00 .24877E+01 .82013E+00 .43467E+00 .16360E+01-.11268E-01 .26560E+00 .17265E+01 .20075E+01 .80276E-02 .16408E-02 .21708E-07 .12960E+00 .00000E+00 .26835E+01 .81922E+00 .49367E+00 .16195E+01-.10736E-01 .24100E+00 .17613E+01 .20081E+01 .79485E-02 .16448E-02 .21731E-07 .11510E+00 .00000E+00 .28467E+01 .81466E+00 .55991E+00 .16045E+01-.55223E-02 .21584E+00 .18033E+01 .20087E+01 .78493E-02 .16476E-02 .21771E-07 .89000E-01 .00000E+00 .31404E+01 .80646E+00 .66321E+00 .15908E+01 .20419E-01 .18346E+00 .18724E+01 .20095E+01 .76890E-02 .16486E-02 .21777E-07 .86680E-01 .00000E+00 .31803E+01 .80448E+00 .67550E+00 .15901E+01 .25076E-01 .18032E+00 .18807E+01 .20096E+01 .76712E-02 .16487E-02 .21782E-07 .84359E-01 .00000E+00 .32202E+01 .80271E+00 .68766E+00 .15894E+01 .30084E-01 .17727E+00 .18889E+01 .20097E+01 .76522E-02 .16486E-02 .21787E-07 .82039E-01 .00000E+00 .32601E+01 .80097E+00 .69953E+00 .15889E+01 .35466E-01 .17433E+00 .18968E+01 .20097E+01 .76363E-02 .16489E-02 .21793E-07 .79719E-01 .00000E+00 .33000E+01 .79903E+00 .71109E+00 .15885E+01 .41081E-01 .17152E+00 .19045E+01 .20098E+01 .76188E-02 .16487E-02 .21799E-07 .77398E-01 .00000E+00 .33000E+01 .79657E+00 .72218E+00 .15876E+01 .46960E-01 .16886E+00 .19117E+01 .20098E+01 .76041E-02 .16492E-02 .21809E-07 .72969E-01 .00000E+00 .33000E+01 .79157E+00 .74279E+00 .15862E+01 .58691E-01 .16389E+00 .19248E+01 .20099E+01 .75744E-02 .16493E-02 .21820E-07 .68539E-01 .00000E+00 .33000E+01 .78610E+00 .76224E+00 .15853E+01 .71438E-01 .15907E+00 .19368E+01 .20099E+01 .75511E-02 .16500E-02 .21835E-07 .62000E-01 .00000E+00 .33000E+01 .77726E+00 .78899E+00 .15847E+01 .91653E-01 .15210E+00 .19525E+01 .20099E+01 .75185E-02 .16502E-02 .21848E-07 .58649E-01 .00000E+00 .33000E+01 .76890E+00 .80912E+00 .15850E+01 .10930E+00 .14624E+00 .19632E+01 .20098E+01 .74982E-02 .16505E-02 .21872E-07 .52399E-01 .00000E+00 .33000E+01 .75236E+00 .84446E+00 .15861E+01 .14230E+00 .13521E+00 .19805E+01 .20096E+01 .74656E-02 .16509E-02 .21897E-07 .46149E-01 .00000E+00 .33000E+01 .73415E+00 .87575E+00 .15882E+01 .17477E+00 .12400E+00 .19931E+01 .20094E+01 .74464E-02 .16517E-02 .21932E-07 .37000E-01 .00000E+00 .33000E+01 .70519E+00 .91573E+00 .15922E+01 .21937E+00 .10742E+00 .20046E+01 .20088E+01 .74340E-02 .16527E-02 .21949E-07 .34000E-01 .00000E+00 .33000E+01 .69042E+00 .93226E+00 .15944E+01 .23867E+00 .99488E-01 .20068E+01 .20086E+01 .74353E-02 .16531E-02 .21966E-07 .31000E-01 .00000E+00 .33000E+01 .67548E+00 .94825E+00 .15967E+01 .25745E+00 .91676E-01 .20084E+01 .20083E+01 .74389E-02 .16536E-02 .21983E-07 .28000E-01 .00000E+00 .33000E+01 .66025E+00 .96323E+00 .15989E+01 .27521E+00 .84116E-01 .20087E+01 .20080E+01 .74449E-02 .16542E-02 .22000E-07 .25000E-01 .00000E+00 .33000E+01 .64481E+00 .97731E+00 .16012E+01 .29194E+00 .76843E-01 .20078E+01 .20077E+01 .74540E-02 .16547E-02 .22017E-07 .23503E-01 .00000E+00 .33000E+01 .62920E+00 .99025E+00 .16035E+01 .30716E+00 .69969E-01 .20055E+01 .20074E+01 .74660E-02 .16553E-02 .22051E-07 .20508E-01 .00000E+00 .33000E+01 .59784E+00 .10148E+01 .16081E+01 .33569E+00 .57136E-01 .19992E+01 .20068E+01 .74939E-02 .16562E-02 .22099E-07 .16258E-01 .00000E+00 .33000E+01 .55325E+00 .10456E+01 .16141E+01 .36988E+00 .42072E-01 .19850E+01 .20060E+01 .75437E-02 .16578E-02 .22193E-07 .80000E-02 .00000E+00 .33000E+01 .46846E+00 .11265E+01 .16275E+01 .41741E+00 .19359E-01 .19447E+01 .20045E+01 .76645E-02 .16588E-02 .22227E-07 .67500E-02 .00000E+00 .33000E+01 .43816E+00 .12022E+01 .16379E+01 .42725E+00 .10850E-01 .19244E+01 .20041E+01 .77186E-02 .16565E-02 .22261E-07 .55000E-02 .00000E+00 .33000E+01 .40822E+00 .12620E+01 .16505E+01 .43552E+00 .48829E-02 .19035E+01 .20037E+01 .77728E-02 .16530E-02 .22296E-07 .42500E-02 .00000E+00 .33000E+01 .37931E+00 .13050E+01 .16670E+01 .44109E+00 .27869E-02 .18820E+01 .20034E+01 .78265E-02 .16478E-02 .22330E-07 .30000E-02 .00000E+00 .33000E+01 .35168E+00 .13389E+01 .16846E+01 .44474E+00 .19776E-02 .18605E+01 .20031E+01 .78789E-02 .16420E-02 .22355E-07 .27500E-02 .00000E+00 .33000E+01 .33282E+00 .13587E+01 .16970E+01 .44622E+00 .17072E-02 .18453E+01 .20029E+01 .79151E-02 .16379E-02 .22380E-07 .25000E-02 .00000E+00 .33000E+01 .31435E+00 .13774E+01 .17091E+01 .44743E+00 .14676E-02 .18301E+01 .20028E+01 .79502E-02 .16334E-02 .22405E-07 .22500E-02 .00000E+00 .33000E+01 .29668E+00 .13941E+01 .17206E+01 .44814E+00 .12991E-02 .18154E+01 .20027E+01 .79838E-02 .16294E-02 .22430E-07 .20000E-02 .00000E+00 .33000E+01 .27983E+00 .14093E+01 .17315E+01 .44846E+00 .11665E-02 .18012E+01 .20026E+01 .80138E-02 .16249E-02 .22455E-07 .19760E-02 .00000E+00 .33000E+01 .26418E+00 .14227E+01 .17414E+01 .44838E+00 .10686E-02 .17877E+01 .20025E+01 .80440E-02 .16214E-02 .22505E-07 .19281E-02 .00000E+00 .33000E+01 .23442E+00 .14471E+01 .17598E+01 .44782E+00 .88036E-03 .17619E+01 .20025E+01 .80989E-02 .16141E-02 .22705E-07 .17363E-02 .00000E+00 .33000E+01 .14228E+00 .15125E+01 .18123E+01 .44214E+00 .42038E-03 .16795E+01 .20026E+01 .82629E-02 .15917E-02 .23205E-07 .12570E-02 .00000E+00 .33000E+01 .32031E-01 .15706E+01 .18615E+01 .42915E+00 .29143E-04 .15770E+01 .20037E+01 .84390E-02 .15662E-02 .23330E-07 .11371E-02 .00000E+00 .33000E+01 .24156E-01 .15716E+01 .18625E+01 .42785E+00 .16167E-04 .15694E+01 .20039E+01 .84489E-02 .15650E-02 .23455E-07 .10173E-02 .00000E+00 .33000E+01 .18214E-01 .15719E+01 .18629E+01 .42689E+00 .48750E-05 .15637E+01 .20040E+01 .84562E-02 .15641E-02 .23955E-07 .53787E-03 .00000E+00 .33000E+01 .38255E-02 .15702E+01 .18621E+01 .42454E+00-.14765E-04 .15499E+01 .20044E+01 .84743E-02 .15629E-02 .24455E-07 .58485E-04 .00000E+00 .33000E+01 .81961E-03 .15671E+01 .18598E+01 .42408E+00-.84336E-05 .15470E+01 .20045E+01 .84783E-02 .15636E-02 .24955E-07-.42090E-03 .00000E+00 .33000E+01 .17732E-03 .15655E+01 .18586E+01 .42399E+00-.39091E-05 .15464E+01 .20045E+01 .84790E-02 .15640E-02 .25455E-07-.90029E-03 .00000E+00 .33000E+01 .36679E-04 .15648E+01 .18581E+01 .42396E+00-.13524E-05 .15463E+01 .20045E+01 .84792E-02 .15642E-02 .25559E-07 -.10000E-02 .00000E+00 .33000E+01 .29364E-04 .15647E+01 .18580E+01 .42397E+00 -.14078E-05 .15463E+01 .20045E+01 .84793E-02 .15643E-02 .25569E-07-.25000E-02 .00000E+00 .33000E+01 .32603E-04 .15647E+01 .18580E+01 .42396E+00-.13638E-05 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .25579E-07-.40000E-02 .00000E+00 .33000E+01 .33110E-04 .15647E+01 .18580E+01 .42396E+00-.15345E-05 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .25600E-07-.70000E-02 .00000E+00 .33000E+01 .32463E-04 .15646E+01 .18579E+01 .42396E+00-.16925E-05 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .25615E-07-.82500E-02 .00000E+00 .33000E+01 .32311E-04 .15646E+01 .18580E+01 .42396E+00-.14072E-05 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .25629E-07-.95000E-02 .00000E+00 .33000E+01 .32000E-04 .15647E+01 .18579E+01 .42396E+00-.15298E-05 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .25643E-07-.10750E-01 .00000E+00 .33000E+01 .32535E-04 .15647E+01 .18580E+01 .42396E+00-.15255E-05 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .25658E-07 -.12000E-01 .00000E+00 .33000E+01 .32000E-04 .15647E+01 .18579E+01 .42396E+00 -.15298E-05 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .25668E-07-.87500E-02 .00000E+00 .33000E+01 .32004E-04 .15646E+01 .18579E+01 .42396E+00-.14840E-05 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .25678E-07-.55000E-02 .00000E+00 .33000E+01 .32561E-04 .15647E+01 .18580E+01 .42396E+00-.15533E-05 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .25699E-07 .10000E-02 .00000E+00 .33000E+01 .32004E-04 .15646E+01 .18579E+01 .42396E+00-.14840E-05 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .25714E-07 .18297E-01 .00000E+00 .33000E+01 .31700E-04 .15646E+01 .18579E+01 .42396E+00-.14128E-05 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .25730E-07 .36297E-01 .00000E+00 .33000E+01 .32190E-04 .15647E+01 .18579E+01 .42396E+00-.15170E-05 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .25746E-07 .54297E-01 .00000E+00 .33000E+01 .32190E-04 .15647E+01 .18579E+01 .42396E+00-.15170E-05 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .25763E-07 .73000E-01 .00000E+00 .33000E+01 .32161E-04 .15647E+01 .18579E+01 .42396E+00 -.15125E-05 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .25775E-07 .10050E+00 .00000E+00 .33000E+01 .31919E-04 .15646E+01 .18579E+01 .42396E+00-.14658E-05 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .25786E-07 .12800E+00 .00000E+00 .33000E+01 .32459E-04 .15647E+01 .18580E+01 .42396E+00-.15469E-05 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .25797E-07 .15550E+00 .00000E+00 .33000E+01 .32459E-04 .15647E+01 .18580E+01 .42396E+00-.15469E-05 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .25809E-07 .18300E+00 .00000E+00 .33000E+01 .32459E-04 .15647E+01 .18580E+01 .42396E+00-.15469E-05 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .25819E-07 .22450E+00 .00000E+00 .33000E+01 .31986E-04 .15646E+01 .18579E+01 .42396E+00-.14804E-05 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .25830E-07 .26600E+00 .00000E+00 .33000E+01 .32539E-04 .15647E+01 .18580E+01 .42396E+00-.15521E-05 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .25840E-07 .30750E+00 .00000E+00 .33000E+01 .32539E-04 .15647E+01 .18580E+01 .42396E+00 -.15521E-05 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .25851E-07 .34900E+00 .00000E+00 .33000E+01 .32539E-04 .15647E+01 .18580E+01 .42396E+00-.15521E-05 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .25858E-07 .38850E+00 .00000E+00 .33000E+01 .32241E-04 .15647E+01 .18579E+01 .42396E+00-.15242E-05 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .25866E-07 .42800E+00 .00000E+00 .33000E+01 .32860E-04 .15647E+01 .18580E+01 .42396E+00-.15597E-05 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .25874E-07 .46750E+00 .00000E+00 .33000E+01 .32860E-04 .15647E+01 .18580E+01 .42396E+00-.15597E-05 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .25881E-07 .50700E+00 .00000E+00 .33000E+01 .32860E-04 .15647E+01 .18580E+01 .42396E+00-.15597E-05 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .25889E-07 .54807E+00 .00000E+00 .33000E+01 .32241E-04 .15647E+01 .18579E+01 .42396E+00-.15242E-05 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .25899E-07 .60557E+00 .00000E+00 .33000E+01 .32539E-04 .15647E+01 .18580E+01 .42396E+00 -.15521E-05 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .25910E-07 .66307E+00 .00000E+00 .33000E+01 .32539E-04 .15647E+01 .18580E+01 .42396E+00-.15521E-05 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .25923E-07 .73700E+00 .00000E+00 .33000E+01 .32325E-04 .15647E+01 .18580E+01 .42396E+00-.15345E-05 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .25931E-07 .77075E+00 .00000E+00 .33000E+01 .32241E-04 .15647E+01 .18579E+01 .42396E+00-.15242E-05 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .25938E-07 .80450E+00 .00000E+00 .33000E+01 .32860E-04 .15647E+01 .18580E+01 .42396E+00-.15597E-05 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .25953E-07 .87200E+00 .00000E+00 .33000E+01 .32241E-04 .15647E+01 .18579E+01 .42396E+00-.15242E-05 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .25960E-07 .90050E+00 .00000E+00 .33000E+01 .32325E-04 .15647E+01 .18580E+01 .42396E+00-.15345E-05 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .25967E-07 .92900E+00 .00000E+00 .33000E+01 .32969E-04 .15647E+01 .18580E+01 .42396E+00 -.15581E-05 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .25980E-07 .98600E+00 .00000E+00 .33000E+01 .32325E-04 .15647E+01 .18580E+01 .42396E+00-.15345E-05 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .25985E-07 .10060E+01 .00000E+00 .33000E+01 .32583E-04 .15647E+01 .18580E+01 .42396E+00-.15544E-05 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .25990E-07 .10260E+01 .00000E+00 .33000E+01 .33301E-04 .15647E+01 .18580E+01 .42396E+00-.15431E-05 .15463E+01 .20045E+01 .84796E-02 .15644E-02 .25995E-07 .10460E+01 .00000E+00 .33000E+01 .33301E-04 .15647E+01 .18580E+01 .42396E+00-.15431E-05 .15463E+01 .20045E+01 .84796E-02 .15644E-02 .26000E-07 .10660E+01 .00000E+00 .33000E+01 .33301E-04 .15647E+01 .18580E+01 .42396E+00-.15431E-05 .15463E+01 .20045E+01 .84796E-02 .15644E-02 .26005E-07 .10861E+01 .00000E+00 .33000E+01 .32583E-04 .15647E+01 .18580E+01 .42396E+00-.15544E-05 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .26015E-07 .11263E+01 .00000E+00 .33000E+01 .32583E-04 .15647E+01 .18580E+01 .42396E+00 -.15544E-05 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .26026E-07 .11716E+01 .00000E+00 .33000E+01 .32478E-04 .15647E+01 .18580E+01 .42396E+00-.15483E-05 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .26045E-07 .12470E+01 .00000E+00 .33000E+01 .32070E-04 .15647E+01 .18579E+01 .42396E+00-.14969E-05 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .26053E-07 .12713E+01 .00000E+00 .33000E+01 .32190E-04 .15647E+01 .18579E+01 .42396E+00-.15170E-05 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .26061E-07 .12955E+01 .00000E+00 .33000E+01 .32795E-04 .15647E+01 .18580E+01 .42396E+00-.15597E-05 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .26077E-07 .13440E+01 .00000E+00 .33000E+01 .32190E-04 .15647E+01 .18579E+01 .42396E+00-.15170E-05 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .26089E-07 .13776E+01 .00000E+00 .33000E+01 .31887E-04 .15646E+01 .18579E+01 .42396E+00-.14587E-05 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .26103E-07 .14169E+01 .00000E+00 .33000E+01 .32296E-04 .15647E+01 .18579E+01 .42396E+00 -.15311E-05 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .26117E-07 .14561E+01 .00000E+00 .33000E+01 .32296E-04 .15647E+01 .18579E+01 .42396E+00-.15311E-05 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .26133E-07 .15010E+01 .00000E+00 .33000E+01 .32190E-04 .15647E+01 .18579E+01 .42396E+00-.15170E-05 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .26143E-07 .15305E+01 .00000E+00 .33000E+01 .32022E-04 .15646E+01 .18579E+01 .42396E+00-.14877E-05 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .26153E-07 .15600E+01 .00000E+00 .33000E+01 .32583E-04 .15647E+01 .18580E+01 .42396E+00-.15544E-05 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .26163E-07 .15895E+01 .00000E+00 .33000E+01 .32583E-04 .15647E+01 .18580E+01 .42396E+00-.15544E-05 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .26173E-07 .16190E+01 .00000E+00 .33000E+01 .32583E-04 .15647E+01 .18580E+01 .42396E+00-.15544E-05 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .26183E-07 .16428E+01 .00000E+00 .33000E+01 .32022E-04 .15646E+01 .18579E+01 .42396E+00 -.14877E-05 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .26196E-07 .16725E+01 .00000E+00 .33000E+01 .32388E-04 .15647E+01 .18580E+01 .42396E+00-.15409E-05 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .26208E-07 .17023E+01 .00000E+00 .33000E+01 .32388E-04 .15647E+01 .18580E+01 .42396E+00-.15409E-05 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .26223E-07 .17380E+01 .00000E+00 .33000E+01 .32241E-04 .15647E+01 .18579E+01 .42396E+00-.15242E-05 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .26232E-07 .17590E+01 .00000E+00 .33000E+01 .32122E-04 .15647E+01 .18579E+01 .42396E+00-.15061E-05 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .26240E-07 .17800E+01 .00000E+00 .33000E+01 .32708E-04 .15647E+01 .18580E+01 .42396E+00-.15586E-05 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .26249E-07 .18010E+01 .00000E+00 .33000E+01 .32708E-04 .15647E+01 .18580E+01 .42396E+00-.15586E-05 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .26258E-07 .18220E+01 .00000E+00 .33000E+01 .32708E-04 .15647E+01 .18580E+01 .42396E+00 -.15586E-05 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .26267E-07 .18483E+01 .00000E+00 .33000E+01 .32122E-04 .15647E+01 .18579E+01 .42396E+00-.15061E-05 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .26277E-07 .18783E+01 .00000E+00 .33000E+01 .32583E-04 .15647E+01 .18580E+01 .42396E+00-.15544E-05 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .26287E-07 .19082E+01 .00000E+00 .33000E+01 .32583E-04 .15647E+01 .18580E+01 .42396E+00-.15544E-05 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .26298E-07 .19420E+01 .00000E+00 .33000E+01 .32478E-04 .15647E+01 .18580E+01 .42396E+00-.15483E-05 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .26305E-07 .19607E+01 .00000E+00 .33000E+01 .32268E-04 .15647E+01 .18579E+01 .42396E+00-.15277E-05 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .26313E-07 .19795E+01 .00000E+00 .33000E+01 .32894E-04 .15647E+01 .18580E+01 .42396E+00-.15594E-05 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .26327E-07 .20170E+01 .00000E+00 .33000E+01 .32268E-04 .15647E+01 .18579E+01 .42396E+00 -.15277E-05 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .26336E-07 .20433E+01 .00000E+00 .33000E+01 .32101E-04 .15647E+01 .18579E+01 .42396E+00-.15024E-05 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .26345E-07 .20695E+01 .00000E+00 .33000E+01 .32681E-04 .15647E+01 .18580E+01 .42396E+00-.15579E-05 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .26363E-07 .21220E+01 .00000E+00 .33000E+01 .32101E-04 .15647E+01 .18579E+01 .42396E+00-.15024E-05 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .26369E-07 .21402E+01 .00000E+00 .33000E+01 .32388E-04 .15647E+01 .18580E+01 .42396E+00-.15409E-05 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .26375E-07 .21585E+01 .00000E+00 .33000E+01 .33051E-04 .15647E+01 .18580E+01 .42396E+00-.15557E-05 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .26382E-07 .21767E+01 .00000E+00 .33000E+01 .33051E-04 .15647E+01 .18580E+01 .42396E+00-.15557E-05 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .26388E-07 .21950E+01 .00000E+00 .33000E+01 .33051E-04 .15647E+01 .18580E+01 .42396E+00 -.15557E-05 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .26394E-07 .22114E+01 .00000E+00 .33000E+01 .32388E-04 .15647E+01 .18580E+01 .42396E+00-.15409E-05 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .26407E-07 .22443E+01 .00000E+00 .33000E+01 .32388E-04 .15647E+01 .18580E+01 .42396E+00-.15409E-05 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .26420E-07 .22798E+01 .00000E+00 .33000E+01 .32325E-04 .15647E+01 .18580E+01 .42396E+00-.15345E-05 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .26442E-07 .23370E+01 .00000E+00 .33000E+01 .31960E-04 .15646E+01 .18579E+01 .42396E+00-.14749E-05 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .26451E-07 .23593E+01 .00000E+00 .33000E+01 .32080E-04 .15647E+01 .18579E+01 .42396E+00-.14987E-05 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .26460E-07 .23815E+01 .00000E+00 .33000E+01 .32655E-04 .15647E+01 .18580E+01 .42396E+00-.15572E-05 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .26470E-07 .24037E+01 .00000E+00 .33000E+01 .32655E-04 .15647E+01 .18580E+01 .42396E+00 -.15572E-05 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .26479E-07 .24260E+01 .00000E+00 .33000E+01 .32655E-04 .15647E+01 .18580E+01 .42396E+00-.15572E-05 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .26482E-07 .24325E+01 .00000E+00 .33000E+01 .33095E-04 .15647E+01 .18580E+01 .42396E+00-.15541E-05 .15463E+01 .20045E+01 .84796E-02 .15644E-02 .26485E-07 .24390E+01 .00000E+00 .33000E+01 .33921E-04 .15647E+01 .18580E+01 .42396E+00-.14822E-05 .15463E+01 .20045E+01 .84796E-02 .15644E-02 .26488E-07 .24455E+01 .00000E+00 .33000E+01 .33921E-04 .15647E+01 .18580E+01 .42396E+00-.14822E-05 .15463E+01 .20045E+01 .84796E-02 .15644E-02 .26491E-07 .24520E+01 .00000E+00 .33000E+01 .33921E-04 .15647E+01 .18580E+01 .42396E+00-.14822E-05 .15463E+01 .20045E+01 .84796E-02 .15644E-02 .26493E-07 .24567E+01 .00000E+00 .33000E+01 .33424E-04 .15647E+01 .18580E+01 .42396E+00-.15341E-05 .15463E+01 .20045E+01 .84796E-02 .15644E-02 .26495E-07 .24615E+01 .00000E+00 .33000E+01 .34283E-04 .15647E+01 .18580E+01 .42396E+00 -.14304E-05 .15463E+01 .20045E+01 .84796E-02 .15644E-02 .26498E-07 .24662E+01 .00000E+00 .33000E+01 .34283E-04 .15647E+01 .18580E+01 .42396E+00-.14304E-05 .15463E+01 .20045E+01 .84796E-02 .15644E-02 .26500E-07 .24710E+01 .00000E+00 .33000E+01 .34283E-04 .15647E+01 .18580E+01 .42396E+00-.14304E-05 .15463E+01 .20045E+01 .84796E-02 .15644E-02 .26502E-07 .24752E+01 .00000E+00 .33000E+01 .33424E-04 .15647E+01 .18580E+01 .42396E+00-.15341E-05 .15463E+01 .20045E+01 .84796E-02 .15644E-02 .26507E-07 .24835E+01 .00000E+00 .33000E+01 .33424E-04 .15647E+01 .18580E+01 .42396E+00-.15341E-05 .15463E+01 .20045E+01 .84796E-02 .15644E-02 .26525E-07 .25168E+01 .00000E+00 .33000E+01 .32101E-04 .15647E+01 .18579E+01 .42396E+00-.15024E-05 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .26552E-07 .25663E+01 .00000E+00 .33000E+01 .31807E-04 .15646E+01 .18579E+01 .42396E+00-.14395E-05 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .26578E-07 .26158E+01 .00000E+00 .33000E+01 .31807E-04 .15646E+01 .18579E+01 .42396E+00 -.14395E-05 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .26607E-07 .26690E+01 .00000E+00 .33000E+01 .31752E-04 .15646E+01 .18579E+01 .42396E+00-.14259E-05 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .26626E-07 .27065E+01 .00000E+00 .33000E+01 .31537E-04 .15646E+01 .18579E+01 .42396E+00-.13713E-05 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .26644E-07 .27440E+01 .00000E+00 .33000E+01 .32070E-04 .15647E+01 .18579E+01 .42396E+00-.14969E-05 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .26682E-07 .28190E+01 .00000E+00 .33000E+01 .31537E-04 .15646E+01 .18579E+01 .42396E+00-.13713E-05 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .26707E-07 .28568E+01 .00000E+00 .33000E+01 .31261E-04 .15646E+01 .18579E+01 .42396E+00-.13054E-05 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .26732E-07 .28945E+01 .00000E+00 .33000E+01 .31857E-04 .15646E+01 .18579E+01 .42396E+00-.14516E-05 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .26782E-07 .29700E+01 .00000E+00 .33000E+01 .31261E-04 .15646E+01 .18579E+01 .42396E+00 -.13054E-05 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .26800E-07 .29895E+01 .00000E+00 .33000E+01 .31584E-04 .15646E+01 .18579E+01 .42396E+00-.13831E-05 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .26817E-07 .30090E+01 .00000E+00 .33000E+01 .32111E-04 .15647E+01 .18579E+01 .42396E+00-.15042E-05 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .26835E-07 .30285E+01 .00000E+00 .33000E+01 .32111E-04 .15647E+01 .18579E+01 .42396E+00-.15042E-05 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .26853E-07 .30480E+01 .00000E+00 .33000E+01 .32111E-04 .15647E+01 .18579E+01 .42396E+00-.15042E-05 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .26871E-07 .30624E+01 .00000E+00 .33000E+01 .31584E-04 .15646E+01 .18579E+01 .42396E+00-.13831E-05 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .26892E-07 .30799E+01 .00000E+00 .33000E+01 .31968E-04 .15646E+01 .18579E+01 .42396E+00-.14767E-05 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .26914E-07 .30974E+01 .00000E+00 .33000E+01 .31968E-04 .15646E+01 .18579E+01 .42396E+00 -.14767E-05 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .26939E-07 .31180E+01 .00000E+00 .33000E+01 .31850E-04 .15646E+01 .18579E+01 .42396E+00-.14499E-05 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .26954E-07 .31275E+01 .00000E+00 .33000E+01 .31706E-04 .15646E+01 .18579E+01 .42396E+00-.14144E-05 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .26970E-07 .31370E+01 .00000E+00 .33000E+01 .32228E-04 .15647E+01 .18579E+01 .42396E+00-.15224E-05 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .27000E-07 .31560E+01 .00000E+00 .33000E+01 .31706E-04 .15646E+01 .18579E+01 .42396E+00-.14144E-05 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .27023E-07 .31654E+01 .00000E+00 .33000E+01 .31353E-04 .15646E+01 .18579E+01 .42396E+00-.13263E-05 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .27066E-07 .31831E+01 .00000E+00 .33000E+01 .31408E-04 .15646E+01 .18579E+01 .42396E+00-.13393E-05 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .27109E-07 .32009E+01 .00000E+00 .33000E+01 .31408E-04 .15646E+01 .18579E+01 .42396E+00 -.13393E-05 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .27173E-07 .32270E+01 .00000E+00 .33000E+01 .30967E-04 .15646E+01 .18579E+01 .42396E+00-.12463E-05 .15463E+01 .20045E+01 .84793E-02 .15643E-02 .27203E-07 .32343E+01 .00000E+00 .33000E+01 .31024E-04 .15646E+01 .18579E+01 .42396E+00-.12568E-05 .15463E+01 .20045E+01 .84793E-02 .15643E-02 .27234E-07 .32415E+01 .00000E+00 .33000E+01 .31706E-04 .15646E+01 .18579E+01 .42396E+00-.14144E-05 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .27295E-07 .32560E+01 .00000E+00 .33000E+01 .31024E-04 .15646E+01 .18579E+01 .42396E+00-.12568E-05 .15463E+01 .20045E+01 .84793E-02 .15643E-02 .27325E-07 .32600E+01 .00000E+00 .33000E+01 .31045E-04 .15646E+01 .18579E+01 .42396E+00-.12609E-05 .15463E+01 .20045E+01 .84793E-02 .15643E-02 .27355E-07 .32640E+01 .00000E+00 .33000E+01 .31719E-04 .15646E+01 .18579E+01 .42396E+00-.14177E-05 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .27415E-07 .32720E+01 .00000E+00 .33000E+01 .31045E-04 .15646E+01 .18579E+01 .42396E+00 -.12609E-05 .15463E+01 .20045E+01 .84793E-02 .15643E-02 .27436E-07 .32740E+01 .00000E+00 .33000E+01 .31425E-04 .15646E+01 .18579E+01 .42396E+00-.13434E-05 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .27457E-07 .32760E+01 .00000E+00 .33000E+01 .31977E-04 .15646E+01 .18579E+01 .42396E+00-.14785E-05 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .27500E-07 .32800E+01 .00000E+00 .33000E+01 .31425E-04 .15646E+01 .18579E+01 .42396E+00-.13434E-05 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .27532E-07 .32816E+01 .00000E+00 .33000E+01 .30964E-04 .15646E+01 .18579E+01 .42396E+00-.12459E-05 .15463E+01 .20045E+01 .84793E-02 .15643E-02 .27596E-07 .32848E+01 .00000E+00 .33000E+01 .30964E-04 .15646E+01 .18579E+01 .42396E+00-.12459E-05 .15463E+01 .20045E+01 .84793E-02 .15643E-02 .27665E-07 .32883E+01 .00000E+00 .33000E+01 .30839E-04 .15646E+01 .18579E+01 .42396E+00-.12242E-05 .15463E+01 .20045E+01 .84793E-02 .15643E-02 .27778E-07 .32940E+01 .00000E+00 .33000E+01 .29858E-04 .15646E+01 .18579E+01 .42396E+00 -.11003E-05 .15463E+01 .20045E+01 .84793E-02 .15643E-02 .27827E-07 .32950E+01 .00000E+00 .33000E+01 .30202E-04 .15646E+01 .18579E+01 .42396E+00-.11365E-05 .15463E+01 .20045E+01 .84793E-02 .15643E-02 .27876E-07 .32960E+01 .00000E+00 .33000E+01 .31283E-04 .15646E+01 .18579E+01 .42396E+00-.13102E-05 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .27974E-07 .32980E+01 .00000E+00 .33000E+01 .30202E-04 .15646E+01 .18579E+01 .42396E+00-.11365E-05 .15463E+01 .20045E+01 .84793E-02 .15643E-02 .27978E-07 .32980E+01 .00000E+00 .33000E+01 .32860E-04 .15647E+01 .18580E+01 .42396E+00-.15597E-05 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .27981E-07 .32980E+01 .00000E+00 .33000E+01 .33644E-04 .15647E+01 .18580E+01 .42396E+00-.15141E-05 .15463E+01 .20045E+01 .84796E-02 .15644E-02 .27985E-07 .32980E+01 .00000E+00 .33000E+01 .33644E-04 .15647E+01 .18580E+01 .42396E+00-.15141E-05 .15463E+01 .20045E+01 .84796E-02 .15644E-02 .27989E-07 .32980E+01 .00000E+00 .33000E+01 .33644E-04 .15647E+01 .18580E+01 .42396E+00 -.15141E-05 .15463E+01 .20045E+01 .84796E-02 .15644E-02 .27993E-07 .32980E+01 .00000E+00 .33000E+01 .32860E-04 .15647E+01 .18580E+01 .42396E+00-.15597E-05 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .28000E-07 .32980E+01 .00000E+00 .33000E+01 .32860E-04 .15647E+01 .18580E+01 .42396E+00-.15597E-05 .15463E+01 .20045E+01 .84795E-02 .15643E-02 .28030E-07 .32980E+01 .00000E+00 .33000E+01 .31719E-04 .15646E+01 .18579E+01 .42396E+00-.14177E-05 .15463E+01 .20045E+01 .84794E-02 .15643E-02 .28150E-07 .32982E+01 .00000E+00 .33000E+01 .29690E-04 .15646E+01 .18579E+01 .42396E+00-.10847E-05 .15463E+01 .20045E+01 .84793E-02 .15643E-02 .28630E-07 .32986E+01 .00000E+00 .33000E+01 .22037E-04 .15646E+01 .18579E+01 .42396E+00-.73502E-06 .15463E+01 .20045E+01 .84792E-02 .15643E-02 .29130E-07 .32991E+01 .00000E+00 .33000E+01 .23651E-04 .15645E+01 .18578E+01 .42397E+00 .00000E+00 .15463E+01 .20045E+01 .84792E-02 .15644E-02 .29630E-07 .32996E+01 .00000E+00 .33000E+01 .19080E-04 .15645E+01 .18578E+01 .42396E+00 -.10907E-05 .15462E+01 .20045E+01 .84792E-02 .15643E-02 .30000E-07 .33000E+01 .00000E+00 .33000E+01 .24870E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84792E-02 .15644E-02 .30050E-07 .33003E+01 .00000E+00 .33000E+01 .30791E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84793E-02 .15644E-02 .30150E-07 .33008E+01 .00000E+00 .33000E+01 .30791E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84793E-02 .15644E-02 .30300E-07 .33015E+01 .00000E+00 .33000E+01 .29368E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84793E-02 .15644E-02 .30450E-07 .33022E+01 .00000E+00 .33000E+01 .29368E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84793E-02 .15644E-02 .30600E-07 .33030E+01 .00000E+00 .33000E+01 .29368E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84793E-02 .15644E-02 .30615E-07 .33055E+01 .00000E+00 .33000E+01 .32734E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .30630E-07 .33080E+01 .00000E+00 .33000E+01 .33238E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .30645E-07 .33105E+01 .00000E+00 .33000E+01 .33238E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .30660E-07 .33130E+01 .00000E+00 .33000E+01 .33238E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .30671E-07 .33122E+01 .00000E+00 .33000E+01 .32993E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .30681E-07 .33115E+01 .00000E+00 .33000E+01 .33459E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .30692E-07 .33108E+01 .00000E+00 .33000E+01 .33459E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .30703E-07 .33100E+01 .00000E+00 .33000E+01 .33459E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .30714E-07 .33036E+01 .00000E+00 .33000E+01 .32993E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .30730E-07 .32939E+01 .00000E+00 .33000E+01 .33175E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .30747E-07 .32841E+01 .00000E+00 .33000E+01 .33175E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .30769E-07 .32710E+01 .00000E+00 .33000E+01 .32968E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .30781E-07 .32540E+01 .00000E+00 .33000E+01 .32928E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .30792E-07 .32370E+01 .00000E+00 .33000E+01 .33400E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .30804E-07 .32200E+01 .00000E+00 .33000E+01 .33400E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .30816E-07 .32030E+01 .00000E+00 .33000E+01 .33400E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .30828E-07 .31710E+01 .00000E+00 .33000E+01 .32928E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .30851E-07 .31071E+01 .00000E+00 .33000E+01 .32928E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .30876E-07 .30411E+01 .00000E+00 .33000E+01 .32905E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .30913E-07 .29390E+01 .00000E+00 .33000E+01 .32524E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .30930E-07 .28637E+01 .00000E+00 .33000E+01 .32607E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .30948E-07 .27885E+01 .00000E+00 .33000E+01 .33145E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .30965E-07 .27132E+01 .00000E+00 .33000E+01 .33145E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .30982E-07 .26380E+01 .00000E+00 .33000E+01 .33145E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .30984E-07 .26272E+01 .00000E+00 .33000E+01 .34028E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .30987E-07 .26165E+01 .00000E+00 .33000E+01 .34639E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84796E-02 .15645E-02 .30992E-07 .25950E+01 .00000E+00 .33000E+01 .34028E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .30994E-07 .25870E+01 .00000E+00 .33000E+01 .34216E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84796E-02 .15645E-02 .30996E-07 .25790E+01 .00000E+00 .33000E+01 .34845E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84796E-02 .15645E-02 .31000E-07 .25630E+01 .00000E+00 .33000E+01 .34216E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84796E-02 .15645E-02 .31003E-07 .25492E+01 .00000E+00 .33000E+01 .33881E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .31007E-07 .25319E+01 .00000E+00 .33000E+01 .34272E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84796E-02 .15645E-02 .31011E-07 .25147E+01 .00000E+00 .33000E+01 .34272E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84796E-02 .15645E-02 .31015E-07 .24940E+01 .00000E+00 .33000E+01 .34115E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .31018E-07 .24815E+01 .00000E+00 .33000E+01 .33950E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .31021E-07 .24690E+01 .00000E+00 .33000E+01 .34551E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84796E-02 .15645E-02 .31023E-07 .24565E+01 .00000E+00 .33000E+01 .34551E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84796E-02 .15645E-02 .31026E-07 .24440E+01 .00000E+00 .33000E+01 .34551E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84796E-02 .15645E-02 .31029E-07 .24307E+01 .00000E+00 .33000E+01 .33950E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .31034E-07 .24041E+01 .00000E+00 .33000E+01 .33950E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .31042E-07 .23666E+01 .00000E+00 .33000E+01 .33688E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .31057E-07 .22940E+01 .00000E+00 .33000E+01 .33238E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .31062E-07 .22650E+01 .00000E+00 .33000E+01 .33444E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .31068E-07 .22360E+01 .00000E+00 .33000E+01 .33950E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .31074E-07 .22070E+01 .00000E+00 .33000E+01 .33950E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .31079E-07 .21780E+01 .00000E+00 .33000E+01 .33950E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .31085E-07 .21484E+01 .00000E+00 .33000E+01 .33444E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .31095E-07 .20891E+01 .00000E+00 .33000E+01 .33444E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .31111E-07 .20056E+01 .00000E+00 .33000E+01 .33216E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .31141E-07 .18440E+01 .00000E+00 .33000E+01 .32734E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .31152E-07 .17873E+01 .00000E+00 .33000E+01 .32977E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .31163E-07 .17305E+01 .00000E+00 .33000E+01 .33444E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .31174E-07 .16738E+01 .00000E+00 .33000E+01 .33444E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .31185E-07 .16170E+01 .00000E+00 .33000E+01 .33444E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .31190E-07 .15922E+01 .00000E+00 .33000E+01 .33582E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .31194E-07 .15675E+01 .00000E+00 .33000E+01 .34115E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .31198E-07 .15428E+01 .00000E+00 .33000E+01 .34115E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .31203E-07 .15180E+01 .00000E+00 .33000E+01 .34115E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .31206E-07 .15010E+01 .00000E+00 .33000E+01 .33820E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .31209E-07 .14840E+01 .00000E+00 .33000E+01 .34399E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84796E-02 .15645E-02 .31213E-07 .14670E+01 .00000E+00 .33000E+01 .34399E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84796E-02 .15645E-02 .31216E-07 .14500E+01 .00000E+00 .33000E+01 .34399E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84796E-02 .15645E-02 .31219E-07 .14327E+01 .00000E+00 .33000E+01 .33820E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .31224E-07 .14075E+01 .00000E+00 .33000E+01 .34070E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .31229E-07 .13822E+01 .00000E+00 .33000E+01 .34070E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .31235E-07 .13490E+01 .00000E+00 .33000E+01 .33850E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .31238E-07 .13300E+01 .00000E+00 .33000E+01 .33820E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .31241E-07 .13110E+01 .00000E+00 .33000E+01 .34399E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84796E-02 .15645E-02 .31245E-07 .12920E+01 .00000E+00 .33000E+01 .34399E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84796E-02 .15645E-02 .31248E-07 .12730E+01 .00000E+00 .33000E+01 .34399E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84796E-02 .15645E-02 .31251E-07 .12541E+01 .00000E+00 .33000E+01 .33820E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .31257E-07 .12206E+01 .00000E+00 .33000E+01 .33915E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .31263E-07 .11871E+01 .00000E+00 .33000E+01 .33915E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .31271E-07 .11390E+01 .00000E+00 .33000E+01 .33643E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .31275E-07 .11240E+01 .00000E+00 .33000E+01 .33665E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .31279E-07 .11090E+01 .00000E+00 .33000E+01 .34216E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84796E-02 .15645E-02 .31283E-07 .10940E+01 .00000E+00 .33000E+01 .34216E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84796E-02 .15645E-02 .31287E-07 .10790E+01 .00000E+00 .33000E+01 .34216E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84796E-02 .15645E-02 .31291E-07 .10710E+01 .00000E+00 .33000E+01 .33665E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .31297E-07 .10600E+01 .00000E+00 .33000E+01 .33950E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .31302E-07 .10490E+01 .00000E+00 .33000E+01 .33950E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .31309E-07 .10350E+01 .00000E+00 .33000E+01 .33764E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .31313E-07 .10282E+01 .00000E+00 .33000E+01 .33665E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .31317E-07 .10215E+01 .00000E+00 .33000E+01 .34216E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84796E-02 .15645E-02 .31321E-07 .10148E+01 .00000E+00 .33000E+01 .34216E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84796E-02 .15645E-02 .31325E-07 .10080E+01 .00000E+00 .33000E+01 .34216E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84796E-02 .15645E-02 .31329E-07 .99491E+00 .00000E+00 .33000E+01 .33665E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .31335E-07 .97691E+00 .00000E+00 .33000E+01 .33950E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .31340E-07 .95891E+00 .00000E+00 .33000E+01 .33950E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .31347E-07 .93600E+00 .00000E+00 .33000E+01 .33764E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .31351E-07 .92200E+00 .00000E+00 .33000E+01 .33665E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .31355E-07 .90800E+00 .00000E+00 .33000E+01 .34216E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84796E-02 .15645E-02 .31359E-07 .89400E+00 .00000E+00 .33000E+01 .34216E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84796E-02 .15645E-02 .31363E-07 .88000E+00 .00000E+00 .33000E+01 .34216E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84796E-02 .15645E-02 .31367E-07 .86652E+00 .00000E+00 .33000E+01 .33665E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .31374E-07 .84377E+00 .00000E+00 .33000E+01 .33791E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .31381E-07 .82102E+00 .00000E+00 .33000E+01 .33791E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .31390E-07 .78900E+00 .00000E+00 .33000E+01 .33544E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .31395E-07 .77425E+00 .00000E+00 .33000E+01 .33509E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .31400E-07 .75950E+00 .00000E+00 .33000E+01 .34028E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .31405E-07 .74475E+00 .00000E+00 .33000E+01 .34028E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .31410E-07 .73000E+00 .00000E+00 .33000E+01 .34028E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .31415E-07 .71491E+00 .00000E+00 .33000E+01 .33509E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .31425E-07 .68472E+00 .00000E+00 .33000E+01 .33509E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .31438E-07 .64472E+00 .00000E+00 .33000E+01 .33320E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .31463E-07 .57000E+00 .00000E+00 .33000E+01 .32889E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .31472E-07 .54125E+00 .00000E+00 .33000E+01 .33098E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .31481E-07 .51250E+00 .00000E+00 .33000E+01 .33562E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .31491E-07 .48375E+00 .00000E+00 .33000E+01 .33562E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .31500E-07 .45500E+00 .00000E+00 .33000E+01 .33562E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .31509E-07 .43589E+00 .00000E+00 .33000E+01 .33098E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .31528E-07 .39767E+00 .00000E+00 .33000E+01 .33098E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .31554E-07 .34292E+00 .00000E+00 .33000E+01 .32836E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .31606E-07 .23600E+00 .00000E+00 .33000E+01 .32136E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84793E-02 .15644E-02 .31625E-07 .21375E+00 .00000E+00 .33000E+01 .32524E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .31643E-07 .19150E+00 .00000E+00 .33000E+01 .33089E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .31681E-07 .14700E+00 .00000E+00 .33000E+01 .32524E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .31704E-07 .13250E+00 .00000E+00 .33000E+01 .32319E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84793E-02 .15644E-02 .31726E-07 .11800E+00 .00000E+00 .33000E+01 .32960E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .31748E-07 .10350E+00 .00000E+00 .33000E+01 .32960E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .31771E-07 .89000E-01 .00000E+00 .33000E+01 .32960E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .31787E-07 .82250E-01 .00000E+00 .33000E+01 .32677E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .31803E-07 .75500E-01 .00000E+00 .33000E+01 .33195E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .31819E-07 .68750E-01 .00000E+00 .33000E+01 .33195E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .31835E-07 .62000E-01 .00000E+00 .33000E+01 .33195E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .31851E-07 .57876E-01 .00000E+00 .33000E+01 .32677E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .31875E-07 .51626E-01 .00000E+00 .33000E+01 .32905E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .31899E-07 .45376E-01 .00000E+00 .33000E+01 .32905E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .31932E-07 .37000E-01 .00000E+00 .33000E+01 .32663E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .31949E-07 .34000E-01 .00000E+00 .33000E+01 .32621E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .31966E-07 .31000E-01 .00000E+00 .33000E+01 .33155E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .31983E-07 .28000E-01 .00000E+00 .33000E+01 .33155E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .32000E-07 .25000E-01 .00000E+00 .33000E+01 .33155E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .32017E-07 .23503E-01 .00000E+00 .33000E+01 .32621E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .32051E-07 .20508E-01 .00000E+00 .33000E+01 .32621E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .32099E-07 .16258E-01 .00000E+00 .33000E+01 .32231E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84793E-02 .15644E-02 .32193E-07 .80000E-02 .00000E+00 .33000E+01 .30969E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84793E-02 .15644E-02 .32227E-07 .67500E-02 .00000E+00 .33000E+01 .31677E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84793E-02 .15644E-02 .32262E-07 .55000E-02 .00000E+00 .33000E+01 .32614E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .32296E-07 .42500E-02 .00000E+00 .33000E+01 .32614E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .32330E-07 .30000E-02 .00000E+00 .33000E+01 .32614E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .32355E-07 .27500E-02 .00000E+00 .33000E+01 .32184E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84793E-02 .15644E-02 .32380E-07 .25000E-02 .00000E+00 .33000E+01 .32882E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .32430E-07 .20000E-02 .00000E+00 .33000E+01 .32184E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84793E-02 .15644E-02 .32468E-07 .19640E-02 .00000E+00 .33000E+01 .31496E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84793E-02 .15644E-02 .32542E-07 .18921E-02 .00000E+00 .33000E+01 .31496E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84793E-02 .15644E-02 .32843E-07 .16045E-02 .00000E+00 .33000E+01 .25441E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84792E-02 .15644E-02 .33342E-07 .11251E-02 .00000E+00 .33000E+01 .21361E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84792E-02 .15644E-02 .33843E-07 .64573E-03 .00000E+00 .33000E+01 .21361E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84792E-02 .15644E-02 .34342E-07 .16635E-03 .00000E+00 .33000E+01 .21361E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84792E-02 .15644E-02 .34843E-07-.31304E-03 .00000E+00 .33000E+01 .21361E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84792E-02 .15644E-02 .35342E-07-.79243E-03 .00000E+00 .33000E+01 .21361E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84792E-02 .15644E-02 .35559E-07-.10000E-02 .00000E+00 .33000E+01 .27539E-04 .15644E+01 .18578E+01 .42397E+00 .00000E+00 .15463E+01 .20045E+01 .84793E-02 .15644E-02 .35569E-07-.25000E-02 .00000E+00 .33000E+01 .33027E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .35580E-07 -.40000E-02 .00000E+00 .33000E+01 .33492E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .35590E-07-.55000E-02 .00000E+00 .33000E+01 .33492E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .35600E-07-.70000E-02 .00000E+00 .33000E+01 .33492E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .35610E-07-.78836E-02 .00000E+00 .33000E+01 .33027E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .35625E-07-.91336E-02 .00000E+00 .33000E+01 .33260E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .35639E-07-.10384E-01 .00000E+00 .33000E+01 .33260E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .35658E-07-.12000E-01 .00000E+00 .33000E+01 .33089E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .35668E-07 -.87500E-02 .00000E+00 .33000E+01 .33027E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .35679E-07-.55000E-02 .00000E+00 .33000E+01 .33492E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .35689E-07-.22500E-02 .00000E+00 .33000E+01 .33492E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .35699E-07 .10000E-02 .00000E+00 .33000E+01 .33492E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .35709E-07 .12531E-01 .00000E+00 .33000E+01 .33027E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .35725E-07 .30531E-01 .00000E+00 .33000E+01 .33195E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .35741E-07 .48531E-01 .00000E+00 .33000E+01 .33195E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .35763E-07 .73000E-01 .00000E+00 .33000E+01 .32985E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .35775E-07 .10050E+00 .00000E+00 .33000E+01 .32944E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .35786E-07 .12800E+00 .00000E+00 .33000E+01 .33414E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .35797E-07 .15550E+00 .00000E+00 .33000E+01 .33414E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .35809E-07 .18300E+00 .00000E+00 .33000E+01 .33414E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .35820E-07 .22450E+00 .00000E+00 .33000E+01 .33010E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .35830E-07 .26600E+00 .00000E+00 .33000E+01 .33475E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .35841E-07 .30750E+00 .00000E+00 .33000E+01 .33475E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .35851E-07 .34900E+00 .00000E+00 .33000E+01 .33475E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .35858E-07 .38850E+00 .00000E+00 .33000E+01 .33238E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .35866E-07 .42800E+00 .00000E+00 .33000E+01 .33712E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .35874E-07 .46750E+00 .00000E+00 .33000E+01 .33712E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .35881E-07 .50700E+00 .00000E+00 .33000E+01 .33712E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .35889E-07 .54807E+00 .00000E+00 .33000E+01 .33238E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .35899E-07 .60557E+00 .00000E+00 .33000E+01 .33475E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .35910E-07 .66307E+00 .00000E+00 .33000E+01 .33475E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .35923E-07 .73700E+00 .00000E+00 .33000E+01 .33308E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .35931E-07 .77075E+00 .00000E+00 .33000E+01 .33238E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .35938E-07 .80450E+00 .00000E+00 .33000E+01 .33712E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .35953E-07 .87200E+00 .00000E+00 .33000E+01 .33238E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .35960E-07 .90050E+00 .00000E+00 .33000E+01 .33308E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .35967E-07 .92900E+00 .00000E+00 .33000E+01 .33791E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .35980E-07 .98600E+00 .00000E+00 .33000E+01 .33308E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .35985E-07 .10060E+01 .00000E+00 .33000E+01 .33509E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .35990E-07 .10260E+01 .00000E+00 .33000E+01 .34028E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .35995E-07 .10460E+01 .00000E+00 .33000E+01 .34028E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .36000E-07 .10660E+01 .00000E+00 .33000E+01 .34028E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .36005E-07 .10861E+01 .00000E+00 .33000E+01 .33509E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .36015E-07 .11263E+01 .00000E+00 .33000E+01 .33509E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .36026E-07 .11716E+01 .00000E+00 .33000E+01 .33429E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .36045E-07 .12470E+01 .00000E+00 .33000E+01 .33089E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .36053E-07 .12713E+01 .00000E+00 .33000E+01 .33195E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .36061E-07 .12955E+01 .00000E+00 .33000E+01 .33665E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .36077E-07 .13440E+01 .00000E+00 .33000E+01 .33195E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .36089E-07 .13776E+01 .00000E+00 .33000E+01 .32913E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .36103E-07 .14169E+01 .00000E+00 .33000E+01 .33284E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .36117E-07 .14561E+01 .00000E+00 .33000E+01 .33284E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .36133E-07 .15010E+01 .00000E+00 .33000E+01 .33195E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .36143E-07 .15305E+01 .00000E+00 .33000E+01 .33044E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .36153E-07 .15600E+01 .00000E+00 .33000E+01 .33509E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .36163E-07 .15895E+01 .00000E+00 .33000E+01 .33509E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .36173E-07 .16190E+01 .00000E+00 .33000E+01 .33509E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .36183E-07 .16428E+01 .00000E+00 .33000E+01 .33044E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .36196E-07 .16725E+01 .00000E+00 .33000E+01 .33358E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .36208E-07 .17023E+01 .00000E+00 .33000E+01 .33358E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .36223E-07 .17380E+01 .00000E+00 .33000E+01 .33238E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .36232E-07 .17590E+01 .00000E+00 .33000E+01 .33135E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .36241E-07 .17800E+01 .00000E+00 .33000E+01 .33601E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .36258E-07 .18220E+01 .00000E+00 .33000E+01 .33135E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .36268E-07 .18520E+01 .00000E+00 .33000E+01 .33044E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .36278E-07 .18820E+01 .00000E+00 .33000E+01 .33509E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .36288E-07 .19120E+01 .00000E+00 .33000E+01 .33509E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .36298E-07 .19420E+01 .00000E+00 .33000E+01 .33509E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .36305E-07 .19607E+01 .00000E+00 .33000E+01 .33260E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .36312E-07 .19795E+01 .00000E+00 .33000E+01 .33737E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .36327E-07 .20170E+01 .00000E+00 .33000E+01 .33260E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .36336E-07 .20433E+01 .00000E+00 .33000E+01 .33116E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .36345E-07 .20695E+01 .00000E+00 .33000E+01 .33582E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .36354E-07 .20958E+01 .00000E+00 .33000E+01 .33582E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .36363E-07 .21220E+01 .00000E+00 .33000E+01 .33582E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .36369E-07 .21402E+01 .00000E+00 .33000E+01 .33358E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .36375E-07 .21585E+01 .00000E+00 .33000E+01 .33850E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .36382E-07 .21767E+01 .00000E+00 .33000E+01 .33850E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .36388E-07 .21950E+01 .00000E+00 .33000E+01 .33850E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .36394E-07 .22114E+01 .00000E+00 .33000E+01 .33358E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .36407E-07 .22443E+01 .00000E+00 .33000E+01 .33358E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .36420E-07 .22798E+01 .00000E+00 .33000E+01 .33308E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .36442E-07 .23370E+01 .00000E+00 .33000E+01 .32985E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .36451E-07 .23593E+01 .00000E+00 .33000E+01 .33098E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .36460E-07 .23815E+01 .00000E+00 .33000E+01 .33562E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .36479E-07 .24260E+01 .00000E+00 .33000E+01 .33098E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .36482E-07 .24325E+01 .00000E+00 .33000E+01 .33881E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .36485E-07 .24390E+01 .00000E+00 .33000E+01 .34472E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84796E-02 .15645E-02 .36491E-07 .24520E+01 .00000E+00 .33000E+01 .33881E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .36493E-07 .24567E+01 .00000E+00 .33000E+01 .34115E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .36495E-07 .24615E+01 .00000E+00 .33000E+01 .34736E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84796E-02 .15645E-02 .36498E-07 .24662E+01 .00000E+00 .33000E+01 .34736E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84796E-02 .15645E-02 .36500E-07 .24710E+01 .00000E+00 .33000E+01 .34736E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84796E-02 .15645E-02 .36502E-07 .24752E+01 .00000E+00 .33000E+01 .34115E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .36507E-07 .24835E+01 .00000E+00 .33000E+01 .34115E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .36525E-07 .25168E+01 .00000E+00 .33000E+01 .33116E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .36552E-07 .25663E+01 .00000E+00 .33000E+01 .32829E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .36578E-07 .26158E+01 .00000E+00 .33000E+01 .32829E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .36607E-07 .26690E+01 .00000E+00 .33000E+01 .32770E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .36626E-07 .27065E+01 .00000E+00 .33000E+01 .32524E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .36645E-07 .27440E+01 .00000E+00 .33000E+01 .33089E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .36682E-07 .28190E+01 .00000E+00 .33000E+01 .32524E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .36707E-07 .28568E+01 .00000E+00 .33000E+01 .32184E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84793E-02 .15644E-02 .36732E-07 .28945E+01 .00000E+00 .33000E+01 .32882E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .36782E-07 .29700E+01 .00000E+00 .33000E+01 .32184E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84793E-02 .15644E-02 .36800E-07 .29895E+01 .00000E+00 .33000E+01 .32579E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .36818E-07 .30090E+01 .00000E+00 .33000E+01 .33126E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .36835E-07 .30285E+01 .00000E+00 .33000E+01 .33126E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .36853E-07 .30480E+01 .00000E+00 .33000E+01 .33126E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .36871E-07 .30624E+01 .00000E+00 .33000E+01 .32579E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .36892E-07 .30799E+01 .00000E+00 .33000E+01 .32993E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .36914E-07 .30974E+01 .00000E+00 .33000E+01 .32993E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .36939E-07 .31180E+01 .00000E+00 .33000E+01 .32874E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .36954E-07 .31275E+01 .00000E+00 .33000E+01 .32719E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .36969E-07 .31370E+01 .00000E+00 .33000E+01 .33227E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .37000E-07 .31560E+01 .00000E+00 .33000E+01 .32719E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .37023E-07 .31654E+01 .00000E+00 .33000E+01 .32299E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84793E-02 .15644E-02 .37066E-07 .31831E+01 .00000E+00 .33000E+01 .32367E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84793E-02 .15644E-02 .37109E-07 .32009E+01 .00000E+00 .33000E+01 .32367E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84793E-02 .15644E-02 .37173E-07 .32270E+01 .00000E+00 .33000E+01 .31811E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84793E-02 .15644E-02 .37203E-07 .32343E+01 .00000E+00 .33000E+01 .31883E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84793E-02 .15644E-02 .37234E-07 .32415E+01 .00000E+00 .33000E+01 .32719E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .37295E-07 .32560E+01 .00000E+00 .33000E+01 .31883E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84793E-02 .15644E-02 .37325E-07 .32600E+01 .00000E+00 .33000E+01 .31911E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84793E-02 .15644E-02 .37355E-07 .32640E+01 .00000E+00 .33000E+01 .32734E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .37385E-07 .32680E+01 .00000E+00 .33000E+01 .32734E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .37415E-07 .32720E+01 .00000E+00 .33000E+01 .32734E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .37436E-07 .32740E+01 .00000E+00 .33000E+01 .32387E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .37458E-07 .32760E+01 .00000E+00 .33000E+01 .33001E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .37479E-07 .32780E+01 .00000E+00 .33000E+01 .33001E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .37500E-07 .32800E+01 .00000E+00 .33000E+01 .33001E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .37521E-07 .32811E+01 .00000E+00 .33000E+01 .32387E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .37564E-07 .32832E+01 .00000E+00 .33000E+01 .32387E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .37633E-07 .32867E+01 .00000E+00 .33000E+01 .31649E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84793E-02 .15644E-02 .37703E-07 .32902E+01 .00000E+00 .33000E+01 .31649E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84793E-02 .15644E-02 .37778E-07 .32940E+01 .00000E+00 .33000E+01 .31489E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84793E-02 .15644E-02 .37827E-07 .32950E+01 .00000E+00 .33000E+01 .30848E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84793E-02 .15644E-02 .37876E-07 .32960E+01 .00000E+00 .33000E+01 .32211E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84793E-02 .15644E-02 .37974E-07 .32980E+01 .00000E+00 .33000E+01 .30848E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84793E-02 .15644E-02 .37978E-07 .32980E+01 .00000E+00 .33000E+01 .33712E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .37982E-07 .32980E+01 .00000E+00 .33000E+01 .34272E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84796E-02 .15645E-02 .37985E-07 .32980E+01 .00000E+00 .33000E+01 .34272E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84796E-02 .15645E-02 .37989E-07 .32980E+01 .00000E+00 .33000E+01 .34272E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84796E-02 .15645E-02 .37993E-07 .32980E+01 .00000E+00 .33000E+01 .33712E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .38000E-07 .32980E+01 .00000E+00 .33000E+01 .33712E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84795E-02 .15644E-02 .38030E-07 .32980E+01 .00000E+00 .33000E+01 .32734E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84794E-02 .15644E-02 .38150E-07 .32982E+01 .00000E+00 .33000E+01 .30221E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84793E-02 .15644E-02 .38630E-07 .32986E+01 .00000E+00 .33000E+01 .21715E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84792E-02 .15644E-02 .39130E-07 .32991E+01 .00000E+00 .33000E+01 .21130E-04 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84792E-02 .15644E-02 .39630E-07 .32996E+01 .00000E+00 .33000E+01 .21366E-04 .15644E+01 .18578E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84792E-02 .15644E-02 .40000E-07 .33000E+01 .00000E+00 .33000E+01 .23639E-04 .15644E+01 .18577E+01 .42396E+00 .00000E+00 .15463E+01 .20045E+01 .84792E-02 .15644E-02 .10000E+31 gwave2-20170109/examples/pd2.N0000644001226200000360000030544313034766135012532 00000000000000* CAZM-format output from * TRANSIENT ANALYSIS Time Clk inh inl gh gl dtail outh outl tail vbias i1(m3 i1(m5 0 3.3 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 2.5e-11 3.3001 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 5e-11 3.3003 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.5e-10 3.3008 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 3e-10 3.3015 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 6e-10 3.303 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 6.15e-10 3.3055 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 6.3e-10 3.308 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 6.6e-10 3.313 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 6.7075e-10 3.3122 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 6.815e-10 3.3115 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 6.9225e-10 3.3108 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 7.03e-10 3.31 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 7.1375e-10 3.3036 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 7.3525e-10 3.2909 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 7.635e-10 3.2743 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 8.16e-10 3.203 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 8.5638e-10 3.0931 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 9.3713e-10 2.8338 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.1534e-09 1.7802 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.3696e-09 0.85767 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.681e-09 0.147 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.731e-09 0.11478 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.8107e-09 0.07223 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.8905e-09 0.047696 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 2e-09 0.025 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 2.05e-09 0.020596 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 2.1325e-09 0.013329 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 2.215e-09 0.0071971 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 2.33e-09 0.003 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 2.355e-09 0.00275 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 2.38e-09 0.0025 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 2.43e-09 0.002 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 2.4675e-09 0.001964 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 2.5425e-09 0.0018921 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 2.8425e-09 0.0016045 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 3.3425e-09 0.0011251 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 3.8425e-09 0.00064573 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 4.3425e-09 0.00016635 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 4.8425e-09 -0.00031304 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 5.3425e-09 -0.00079243 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 5.559e-09 -0.001 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 5.5837e-09 -0.004622 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 5.6085e-09 -0.0077328 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 5.6332e-09 -0.0098664 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 5.658e-09 -0.012 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 5.6827e-09 -0.0041524 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 5.709e-09 0.01225 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 5.7353e-09 0.041781 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 5.763e-09 0.073 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 5.79e-09 0.13757 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 5.844e-09 0.32133 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 6.006e-09 1.0901 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 6.3153e-09 1.9866 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 6.6245e-09 2.704 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 7e-09 3.156 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 7.05e-09 3.1765 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 7.15e-09 3.2176 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 7.2538e-09 3.2462 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 7.415e-09 3.272 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 7.465e-09 3.2767 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 7.5557e-09 3.2828 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 7.6465e-09 3.2874 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 7.778e-09 3.294 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 7.827e-09 3.295 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 7.876e-09 3.296 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 7.974e-09 3.298 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 7.9778e-09 3.298 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 7.9815e-09 3.298 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 7.9852e-09 3.298 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 7.989e-09 3.298 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 7.9927e-09 3.298 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 8.0003e-09 3.298 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 8.0303e-09 3.298 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 8.1503e-09 3.2982 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 8.6303e-09 3.2986 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 9.1303e-09 3.2991 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 9.6303e-09 3.2996 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1e-08 3.3 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.005e-08 3.3003 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.015e-08 3.3008 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.03e-08 3.3015 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.045e-08 3.3022 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.06e-08 3.303 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.0615e-08 3.3055 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.063e-08 3.308 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.066e-08 3.313 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.0671e-08 3.3122 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.0682e-08 3.3115 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.0692e-08 3.3108 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.0703e-08 3.31 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.0714e-08 3.3036 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.073e-08 3.2939 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.0747e-08 3.2841 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.0769e-08 3.271 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.0781e-08 3.254 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.0793e-08 3.237 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.0804e-08 3.22 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.0816e-08 3.203 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.0828e-08 3.171 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.0851e-08 3.1071 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.0875e-08 3.0411 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.0913e-08 2.939 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.093e-08 2.8637 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.0947e-08 2.7885 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.0965e-08 2.7132 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.0982e-08 2.638 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.0985e-08 2.6272 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.0987e-08 2.6165 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.0989e-08 2.6058 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.0992e-08 2.595 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.0994e-08 2.587 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.0996e-08 2.579 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.1e-08 2.563 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.1003e-08 2.5492 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.1007e-08 2.5319 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.1011e-08 2.5147 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.1015e-08 2.494 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.1018e-08 2.4815 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.1021e-08 2.469 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.1023e-08 2.4565 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.1026e-08 2.444 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.1029e-08 2.4307 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.1034e-08 2.4041 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.1042e-08 2.3666 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.1057e-08 2.294 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.1063e-08 2.265 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.1068e-08 2.236 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.1074e-08 2.207 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.1079e-08 2.178 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.1085e-08 2.1484 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.1095e-08 2.0891 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.1111e-08 2.0056 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.1141e-08 1.844 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.1152e-08 1.7873 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.1163e-08 1.7305 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.1174e-08 1.6738 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.1185e-08 1.617 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.1189e-08 1.5922 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.1194e-08 1.5675 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.1198e-08 1.5428 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.1203e-08 1.518 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.1206e-08 1.501 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.1209e-08 1.484 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.1216e-08 1.45 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.1221e-08 1.4247 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.1225e-08 1.3995 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.1235e-08 1.349 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.1238e-08 1.33 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.1242e-08 1.311 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.1248e-08 1.273 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.1253e-08 1.2446 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.1259e-08 1.2111 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.1264e-08 1.1776 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.1271e-08 1.139 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.1275e-08 1.124 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.1279e-08 1.109 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.1283e-08 1.094 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.1287e-08 1.079 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.1291e-08 1.071 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.1296e-08 1.06 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.1302e-08 1.049 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.1309e-08 1.035 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.1313e-08 1.0282 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.1317e-08 1.0215 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.1321e-08 1.0148 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.1325e-08 1.008 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.1326e-08 1.0039 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.1327e-08 0.99982 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.1329e-08 0.99573 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.133e-08 0.99164 0 3.3 0 0.43833 1.5477 0.38218 0.045328 1.5092 2.0045 0.0085501 0.0016896 1.1331e-08 0.98755 0 3.291 -5.9761e-05 0.43833 1.5475 0.38216 0.04533 1.5092 2.0045 0.0085502 0.0016897 1.1334e-08 0.97936 0 3.2731 -0.00011927 0.43833 1.5473 0.38214 0.045332 1.5091 2.0045 0.0085503 0.0016898 1.1338e-08 0.96545 0 3.2426 -0.0005874 0.43832 1.5467 0.38203 0.045342 1.5091 2.0045 0.0085506 0.0016903 1.1342e-08 0.95155 0 3.2121 -0.00085608 0.4383 1.5462 0.38203 0.045337 1.5091 2.0045 0.0085506 0.0016904 1.1347e-08 0.936 0 3.178 -0.0011831 0.43828 1.5457 0.38209 0.045367 1.509 2.0045 0.008551 0.0016906 1.1351e-08 0.922 0 3.1493 -0.0014629 0.43822 1.5453 0.38218 0.045353 1.5089 2.0045 0.0085513 0.0016907 1.1355e-08 0.908 0 3.1207 -0.0017515 0.43823 1.5449 0.38223 0.045386 1.5088 2.0045 0.0085514 0.001691 1.1359e-08 0.894 0 3.092 -0.0020175 0.43818 1.5446 0.38243 0.045378 1.5087 2.0045 0.0085516 0.0016909 1.1363e-08 0.88 0 3.0633 -0.0022738 0.43805 1.5442 0.38253 0.045359 1.5087 2.0045 0.008552 0.0016911 1.1367e-08 0.86652 0 3.0346 -0.0025576 0.43793 1.5439 0.38267 0.045336 1.5085 2.0045 0.0085519 0.0016913 1.1374e-08 0.84377 0 2.9861 -0.003017 0.43773 1.5434 0.3829 0.045301 1.5083 2.0045 0.0085523 0.0016916 1.1381e-08 0.82102 0 2.9377 -0.0034929 0.43749 1.543 0.38312 0.045251 1.5081 2.0045 0.0085529 0.0016915 1.139e-08 0.789 0 2.8696 -0.0040648 0.43721 1.5424 0.38345 0.045216 1.5078 2.0045 0.0085536 0.0016919 1.1395e-08 0.77425 0 2.8337 -0.0044744 0.437 1.5421 0.38362 0.045178 1.5076 2.0045 0.008554 0.001692 1.14e-08 0.7595 0 2.7978 -0.004631 0.43689 1.5418 0.38377 0.045163 1.5074 2.0045 0.0085542 0.0016921 1.141e-08 0.73 0 2.7261 -0.0052023 0.43646 1.5414 0.38398 0.045086 1.5071 2.0044 0.0085557 0.0016924 1.1417e-08 0.70736 0 2.6723 -0.0056135 0.43612 1.5411 0.38414 0.045074 1.5069 2.0044 0.008556 0.0016925 1.1431e-08 0.66736 0 2.5087 -0.0070102 0.43548 1.5394 0.38434 0.045085 1.5063 2.0044 0.0085577 0.001693 1.1444e-08 0.62736 0 2.31 -0.0087427 0.43471 1.5374 0.38468 0.045101 1.5056 2.0044 0.0085585 0.0016941 1.1463e-08 0.57 0 2.025 -0.01103 0.43332 1.5352 0.38552 0.045073 1.5044 2.0044 0.0085617 0.0016949 1.1472e-08 0.54125 0 1.8425 -0.012499 0.43251 1.5336 0.3859 0.045066 1.5037 2.0044 0.0085633 0.0016956 1.1482e-08 0.5125 0 1.639 -0.014136 0.43167 1.5318 0.38627 0.045059 1.5029 2.0044 0.008565 0.0016964 1.15e-08 0.455 0 1.2348 -0.017294 0.42977 1.5287 0.3873 0.045034 1.5012 2.0044 0.0085681 0.0016977 1.1503e-08 0.4488 0 1.171 -0.017754 0.42942 1.5284 0.3875 0.045025 1.501 2.0044 0.0085679 0.0016976 1.1506e-08 0.4426 0 1.1071 -0.018287 0.42912 1.528 0.38766 0.045021 1.5007 2.0044 0.0085676 0.0016977 1.1509e-08 0.43641 0 1.0432 -0.018606 0.42865 1.5276 0.38791 0.045 1.5004 2.0044 0.0085677 0.0016973 1.1512e-08 0.43021 0 0.97935 -0.019061 0.4283 1.5272 0.38806 0.044992 1.5001 2.0044 0.0085674 0.0016983 1.1515e-08 0.42401 0.030462 0.91548 -0.019451 0.42894 1.5323 0.3882 0.045308 1.5 2.0044 0.0085659 0.0016952 1.1521e-08 0.41161 0.091385 0.78774 -0.020212 0.43001 1.5443 0.38849 0.045794 1.4996 2.0044 0.0085633 0.0016895 1.1544e-08 0.36306 0.33 0.56212 -0.02563 0.42071 1.5978 0.38949 0.043689 1.4959 2.0047 0.008572 0.0016642 1.1568e-08 0.31451 0.56862 0.43068 -0.02627 0.39447 1.6538 0.39041 0.041092 1.4899 2.0048 0.0085807 0.0016443 1.1606e-08 0.236 1.24 0.21814 0.0133 0.34194 1.692 0.37931 0.049645 1.4872 2.0049 0.0085828 0.0016301 1.1616e-08 0.22443 1.4149 0.1636 0.033171 0.32784 1.681 0.37077 0.05523 1.4891 2.0048 0.0085795 0.0016366 1.1625e-08 0.21286 1.5757 0.10907 0.054055 0.31414 1.6678 0.3611 0.061582 1.4914 2.0048 0.0085746 0.0016432 1.1635e-08 0.20129 1.7366 0.054534 0.076751 0.30149 1.6507 0.34938 0.069484 1.4947 2.0048 0.0085673 0.0016504 1.1645e-08 0.18972 1.8975 0 0.10075 0.28988 1.6301 0.33603 0.078682 1.4989 2.0048 0.0085588 0.001659 1.1654e-08 0.17904 2.0318 0 0.12427 0.28014 1.6192 0.32236 0.088324 1.5035 2.0049 0.008547 0.0016621 1.1663e-08 0.16836 2.1482 0 0.14698 0.27052 1.609 0.30814 0.098281 1.5082 2.0049 0.0085364 0.0016652 1.1681e-08 0.147 2.3812 0 0.18687 0.25243 1.5929 0.27837 0.11988 1.5172 2.005 0.0085171 0.0016707 1.1694e-08 0.1383 2.5559 0 0.21084 0.24005 1.5848 0.25802 0.13677 1.5231 2.0051 0.0085047 0.0016732 1.1717e-08 0.1238 2.7548 0 0.24686 0.21927 1.5722 0.22705 0.16457 1.5317 2.0051 0.0084885 0.0016778 1.174e-08 0.1093 2.9162 0 0.27569 0.19949 1.5634 0.20177 0.19159 1.5383 2.0052 0.0084741 0.0016805 1.1771e-08 0.089 3.1422 0 0.30695 0.17407 1.5558 0.17416 0.22616 1.5441 2.0052 0.0084662 0.0016836 1.1776e-08 0.08668 3.1816 0 0.31139 0.16992 1.555 0.17022 0.2316 1.5447 2.0052 0.008465 0.0016838 1.1782e-08 0.084359 3.2211 0 0.31572 0.16581 1.5542 0.16637 0.23697 1.5453 2.0052 0.008464 0.0016841 1.1787e-08 0.082039 3.2605 0 0.31986 0.16178 1.5535 0.16269 0.24218 1.5458 2.0052 0.0084633 0.0016844 1.1793e-08 0.079719 3.3 0 0.32381 0.15782 1.5529 0.15916 0.24722 1.5462 2.0052 0.0084627 0.0016846 1.1798e-08 0.077398 3.3 0 0.32746 0.15361 1.5517 0.15585 0.25196 1.5465 2.0052 0.0084631 0.0016853 1.1809e-08 0.072969 3.3 0 0.3341 0.14566 1.5497 0.14975 0.26084 1.5467 2.0051 0.0084635 0.0016863 1.182e-08 0.068539 3.3 0 0.34008 0.138 1.548 0.14404 0.26936 1.5467 2.0051 0.0084641 0.001687 1.1835e-08 0.062 3.3 0 0.34787 0.12726 1.5461 0.13626 0.28114 1.5462 2.0051 0.0084661 0.0016877 1.1848e-08 0.058649 3.3 0 0.35331 0.11897 1.545 0.13052 0.28985 1.5454 2.005 0.0084691 0.0016884 1.1872e-08 0.052399 3.3 0 0.36251 0.10427 1.5434 0.12058 0.30483 1.5435 2.0049 0.0084765 0.0016896 1.1896e-08 0.046149 3.3 0 0.37007 0.091062 1.5426 0.11202 0.31744 1.541 2.0048 0.0084837 0.0016904 1.1932e-08 0.037 3.3 0 0.37908 0.074255 1.542 0.10142 0.33221 1.5369 2.0046 0.0084955 0.0016913 1.1949e-08 0.034 3.3 0 0.38257 0.067502 1.5421 0.09718 0.33761 1.5349 2.0046 0.0085008 0.0016916 1.1966e-08 0.031 3.3 0 0.38592 0.061049 1.5421 0.093111 0.34266 1.5329 2.0045 0.0085054 0.0016917 1.1983e-08 0.028 3.3 0 0.38899 0.055136 1.5422 0.089388 0.34709 1.5309 2.0045 0.0085113 0.0016921 1.2e-08 0.025 3.3 0 0.39184 0.049762 1.5424 0.085947 0.35096 1.529 2.0044 0.0085139 0.0016918 1.2017e-08 0.023503 3.3 0 0.39441 0.045085 1.5426 0.082891 0.35415 1.5272 2.0044 0.0085192 0.001692 1.2051e-08 0.020508 3.3 0 0.39923 0.036551 1.543 0.077247 0.35979 1.5238 2.0044 0.0085252 0.0016919 1.2099e-08 0.016258 3.3 0 0.40519 0.027002 1.5436 0.070645 0.36564 1.5198 2.0043 0.0085359 0.0016919 1.2193e-08 0.008 3.3 0 0.41455 0.014699 1.5447 0.061369 0.37259 1.5143 2.0043 0.0085441 0.0016918 1.2227e-08 0.00675 3.3 0 0.41722 0.012091 1.5451 0.059088 0.37398 1.5131 2.0043 0.0085471 0.0016915 1.2262e-08 0.0055 3.3 0 0.41974 0.0097401 1.5454 0.056991 0.37524 1.5121 2.0043 0.008549 0.0016914 1.233e-08 0.003 3.3 0 0.42406 0.0063253 1.5459 0.053691 0.37713 1.5106 2.0043 0.0085512 0.0016909 1.2355e-08 0.00275 3.3 0 0.42535 0.005494 1.5461 0.05279 0.37762 1.5103 2.0043 0.0085516 0.0016909 1.238e-08 0.0025 3.3 0 0.42658 0.0047253 1.5462 0.051943 0.37809 1.51 2.0043 0.0085522 0.0016908 1.2405e-08 0.00225 3.3 0 0.42771 0.0039635 1.5463 0.051201 0.37856 1.5097 2.0043 0.0085525 0.0016908 1.243e-08 0.002 3.3 0 0.42877 0.0034175 1.5465 0.050531 0.37892 1.5095 2.0043 0.0085531 0.0016907 1.2455e-08 0.001976 3.3 0 0.42967 0.0029847 1.5466 0.049959 0.37922 1.5094 2.0044 0.0085527 0.0016906 1.2505e-08 0.0019281 3.3 0 0.43132 0.0022408 1.5468 0.04895 0.37976 1.5092 2.0043 0.0085534 0.0016907 1.2705e-08 0.0017363 3.3 0 0.43556 0.00069382 1.5473 0.04663 0.3812 1.509 2.0044 0.0085513 0.00169 1.3205e-08 0.001257 3.3 0 0.43849 -3.1567e-05 1.5477 0.045246 0.38221 1.5092 2.0045 0.00855 0.0016895 1.3705e-08 0.00077756 3.3 0 0.43831 -2.2693e-06 1.5477 0.045338 0.3822 1.5092 2.0045 0.0085501 0.0016897 1.4205e-08 0.00029818 3.3 0 0.43832 -1.0193e-05 1.5477 0.045335 0.38217 1.5091 2.0045 0.0085501 0.0016895 1.4705e-08 -0.00018121 3.3 0 0.43834 -2.8283e-06 1.5477 0.045322 0.3822 1.5092 2.0045 0.0085501 0.0016897 1.5205e-08 -0.00066059 3.3 0 0.43831 -1.3529e-05 1.5477 0.045331 0.38216 1.5091 2.0045 0.00855 0.0016895 1.5559e-08 -0.001 3.3 0 0.43834 -3.9503e-06 1.5477 0.045319 0.3822 1.5092 2.0045 0.0085501 0.0016897 1.5569e-08 -0.0025 3.3 0 0.43832 -1.7502e-05 1.5477 0.045325 0.38221 1.5092 2.0045 0.00855 0.0016896 1.558e-08 -0.004 3.3 0 0.43832 -1.6112e-05 1.5477 0.045326 0.38221 1.5092 2.0045 0.00855 0.0016896 1.559e-08 -0.0055 3.3 0 0.43832 -1.6112e-05 1.5477 0.045326 0.38221 1.5092 2.0045 0.00855 0.0016896 1.56e-08 -0.007 3.3 0 0.43832 -1.6112e-05 1.5477 0.045326 0.38221 1.5092 2.0045 0.00855 0.0016896 1.561e-08 -0.0078836 3.3 0 0.43832 -1.7502e-05 1.5477 0.045325 0.38221 1.5092 2.0045 0.00855 0.0016896 1.5625e-08 -0.0091336 3.3 0 0.43832 -1.6943e-05 1.5477 0.045325 0.38221 1.5092 2.0045 0.00855 0.0016896 1.5639e-08 -0.010384 3.3 0 0.43832 -1.6943e-05 1.5477 0.045325 0.38221 1.5092 2.0045 0.00855 0.0016896 1.5658e-08 -0.012 3.3 0 0.43832 -1.7384e-05 1.5477 0.045325 0.38221 1.5092 2.0045 0.00855 0.0016896 1.5668e-08 -0.00875 3.3 0 0.43832 -1.7502e-05 1.5477 0.045325 0.38221 1.5092 2.0045 0.00855 0.0016896 1.5679e-08 -0.0055 3.3 0 0.43832 -1.6112e-05 1.5477 0.045326 0.38221 1.5092 2.0045 0.00855 0.0016896 1.5689e-08 -0.00225 3.3 0 0.43832 -1.6112e-05 1.5477 0.045326 0.38221 1.5092 2.0045 0.00855 0.0016896 1.5699e-08 0.001 3.3 0 0.43832 -1.6112e-05 1.5477 0.045326 0.38221 1.5092 2.0045 0.00855 0.0016896 1.5709e-08 0.012531 3.3 0 0.43832 -1.7502e-05 1.5477 0.045325 0.38221 1.5092 2.0045 0.00855 0.0016896 1.5725e-08 0.030531 3.3 0 0.43832 -1.713e-05 1.5477 0.045325 0.38221 1.5092 2.0045 0.00855 0.0016896 1.5741e-08 0.048531 3.3 0 0.43832 -1.713e-05 1.5477 0.045325 0.38221 1.5092 2.0045 0.00855 0.0016896 1.5763e-08 0.073 3.3 0 0.43832 -1.7569e-05 1.5477 0.045325 0.3822 1.5092 2.0045 0.00855 0.0016896 1.5774e-08 0.1005 3.3 0 0.43832 -1.7626e-05 1.5477 0.045325 0.3822 1.5092 2.0045 0.00855 0.0016896 1.5786e-08 0.128 3.3 0 0.43832 -1.6417e-05 1.5477 0.045326 0.38221 1.5092 2.0045 0.00855 0.0016896 1.5798e-08 0.1555 3.3 0 0.43832 -1.6417e-05 1.5477 0.045326 0.38221 1.5092 2.0045 0.00855 0.0016896 1.5809e-08 0.183 3.3 0 0.43832 -1.6417e-05 1.5477 0.045326 0.38221 1.5092 2.0045 0.00855 0.0016896 1.582e-08 0.2245 3.3 0 0.43832 -1.753e-05 1.5477 0.045325 0.38221 1.5092 2.0045 0.00855 0.0016896 1.583e-08 0.266 3.3 0 0.43832 -1.6178e-05 1.5477 0.045326 0.38221 1.5092 2.0045 0.00855 0.0016896 1.5841e-08 0.3075 3.3 0 0.43832 -1.6178e-05 1.5477 0.045326 0.38221 1.5092 2.0045 0.00855 0.0016896 1.5851e-08 0.349 3.3 0 0.43832 -1.6178e-05 1.5477 0.045326 0.38221 1.5092 2.0045 0.00855 0.0016896 1.5859e-08 0.3885 3.3 0 0.43832 -1.701e-05 1.5477 0.045325 0.38221 1.5092 2.0045 0.00855 0.0016896 1.5866e-08 0.428 3.3 0 0.43832 -1.5146e-05 1.5477 0.045326 0.38221 1.5092 2.0045 0.00855 0.0016896 1.5881e-08 0.507 3.3 0 0.43832 -1.701e-05 1.5477 0.045325 0.38221 1.5092 2.0045 0.00855 0.0016896 1.5891e-08 0.5645 3.3 0 0.43832 -1.753e-05 1.5477 0.045325 0.38221 1.5092 2.0045 0.00855 0.0016896 1.5902e-08 0.622 3.3 0 0.43832 -1.6178e-05 1.5477 0.045326 0.38221 1.5092 2.0045 0.00855 0.0016896 1.5912e-08 0.6795 3.3 0 0.43832 -1.6178e-05 1.5477 0.045326 0.38221 1.5092 2.0045 0.00855 0.0016896 1.5923e-08 0.737 3.3 0 0.43832 -1.6178e-05 1.5477 0.045326 0.38221 1.5092 2.0045 0.00855 0.0016896 1.593e-08 0.77075 3.3 0 0.43832 -1.701e-05 1.5477 0.045325 0.38221 1.5092 2.0045 0.00855 0.0016896 1.5938e-08 0.8045 3.3 0 0.43832 -1.5146e-05 1.5477 0.045326 0.38221 1.5092 2.0045 0.00855 0.0016896 1.5945e-08 0.83825 3.3 0 0.43832 -1.5146e-05 1.5477 0.045326 0.38221 1.5092 2.0045 0.00855 0.0016896 1.5953e-08 0.872 3.3 0 0.43832 -1.5146e-05 1.5477 0.045326 0.38221 1.5092 2.0045 0.00855 0.0016896 1.596e-08 0.9005 3.3 0 0.43832 -1.6794e-05 1.5477 0.045326 0.38221 1.5092 2.0045 0.00855 0.0016896 1.5966e-08 0.929 3.3 0 0.43832 -1.4778e-05 1.5477 0.045327 0.38221 1.5091 2.0045 0.00855 0.0016896 1.598e-08 0.986 3.3 0 0.43832 -1.6794e-05 1.5477 0.045326 0.38221 1.5092 2.0045 0.00855 0.0016896 1.5985e-08 1.006 3.3 0 0.43832 -1.6043e-05 1.5477 0.045326 0.38221 1.5092 2.0045 0.00855 0.0016896 1.599e-08 1.026 3.3 0 0.43832 -1.3626e-05 1.5477 0.045327 0.38221 1.5091 2.0045 0.00855 0.0016896 1.5995e-08 1.046 3.3 0 0.43832 -1.3626e-05 1.5477 0.045327 0.38221 1.5091 2.0045 0.00855 0.0016896 1.6e-08 1.066 3.3 0 0.43832 -1.3626e-05 1.5477 0.045327 0.38221 1.5091 2.0045 0.00855 0.0016896 1.6005e-08 1.0861 3.3 0 0.43832 -1.6043e-05 1.5477 0.045326 0.38221 1.5092 2.0045 0.00855 0.0016896 1.6015e-08 1.1263 3.3 0 0.43832 -1.6043e-05 1.5477 0.045326 0.38221 1.5092 2.0045 0.00855 0.0016896 1.6026e-08 1.1716 3.3 0 0.43832 -1.6361e-05 1.5477 0.045326 0.38221 1.5092 2.0045 0.00855 0.0016896 1.6045e-08 1.247 3.3 0 0.43832 -1.7384e-05 1.5477 0.045325 0.38221 1.5092 2.0045 0.00855 0.0016896 1.6053e-08 1.2713 3.3 0 0.43832 -1.713e-05 1.5477 0.045325 0.38221 1.5092 2.0045 0.00855 0.0016896 1.6061e-08 1.2955 3.3 0 0.43832 -1.5362e-05 1.5477 0.045326 0.38221 1.5092 2.0045 0.00855 0.0016896 1.6069e-08 1.3197 3.3 0 0.43832 -1.5362e-05 1.5477 0.045326 0.38221 1.5092 2.0045 0.00855 0.0016896 1.6077e-08 1.344 3.3 0 0.43832 -1.5362e-05 1.5477 0.045326 0.38221 1.5092 2.0045 0.00855 0.0016896 1.6085e-08 1.3664 3.3 0 0.43832 -1.713e-05 1.5477 0.045325 0.38221 1.5092 2.0045 0.00855 0.0016896 1.6099e-08 1.4057 3.3 0 0.43832 -1.6871e-05 1.5477 0.045325 0.38221 1.5092 2.0045 0.00855 0.0016896 1.6113e-08 1.4449 3.3 0 0.43832 -1.6871e-05 1.5477 0.045325 0.38221 1.5092 2.0045 0.00855 0.0016896 1.6133e-08 1.501 3.3 0 0.43832 -1.7471e-05 1.5477 0.045325 0.38221 1.5092 2.0045 0.00855 0.0016896 1.6143e-08 1.5305 3.3 0 0.43832 -1.7471e-05 1.5477 0.045325 0.38221 1.5092 2.0045 0.00855 0.0016896 1.6153e-08 1.56 3.3 0 0.43832 -1.6043e-05 1.5477 0.045326 0.38221 1.5092 2.0045 0.00855 0.0016896 1.6173e-08 1.619 3.3 0 0.43832 -1.7471e-05 1.5477 0.045325 0.38221 1.5092 2.0045 0.00855 0.0016896 1.6185e-08 1.6487 3.3 0 0.43832 -1.7696e-05 1.5477 0.045325 0.3822 1.5092 2.0045 0.00855 0.0016896 1.6198e-08 1.6785 3.3 0 0.43832 -1.662e-05 1.5477 0.045326 0.38221 1.5092 2.0045 0.00855 0.0016896 1.6223e-08 1.738 3.3 0 0.43832 -1.7696e-05 1.5477 0.045325 0.3822 1.5092 2.0045 0.00855 0.0016896 1.6232e-08 1.759 3.3 0 0.43832 -1.7281e-05 1.5477 0.045325 0.38221 1.5092 2.0045 0.00855 0.0016896 1.6241e-08 1.78 3.3 0 0.43832 -1.5648e-05 1.5477 0.045326 0.38221 1.5092 2.0045 0.00855 0.0016896 1.6249e-08 1.801 3.3 0 0.43832 -1.5648e-05 1.5477 0.045326 0.38221 1.5092 2.0045 0.00855 0.0016896 1.6258e-08 1.822 3.3 0 0.43832 -1.5648e-05 1.5477 0.045326 0.38221 1.5092 2.0045 0.00855 0.0016896 1.6267e-08 1.8483 3.3 0 0.43832 -1.7281e-05 1.5477 0.045325 0.38221 1.5092 2.0045 0.00855 0.0016896 1.6277e-08 1.8783 3.3 0 0.43832 -1.6043e-05 1.5477 0.045326 0.38221 1.5092 2.0045 0.00855 0.0016896 1.6287e-08 1.9082 3.3 0 0.43832 -1.6043e-05 1.5477 0.045326 0.38221 1.5092 2.0045 0.00855 0.0016896 1.6298e-08 1.942 3.3 0 0.43832 -1.6361e-05 1.5477 0.045326 0.38221 1.5092 2.0045 0.00855 0.0016896 1.6305e-08 1.9607 3.3 0 0.43832 -1.6943e-05 1.5477 0.045325 0.38221 1.5092 2.0045 0.00855 0.0016896 1.6312e-08 1.9795 3.3 0 0.43832 -1.503e-05 1.5477 0.045326 0.38221 1.5091 2.0045 0.00855 0.0016896 1.632e-08 1.9983 3.3 0 0.43832 -1.503e-05 1.5477 0.045326 0.38221 1.5091 2.0045 0.00855 0.0016896 1.6327e-08 2.017 3.3 0 0.43832 -1.503e-05 1.5477 0.045326 0.38221 1.5091 2.0045 0.00855 0.0016896 1.6334e-08 2.0381 3.3 0 0.43832 -1.6943e-05 1.5477 0.045325 0.38221 1.5092 2.0045 0.00855 0.0016896 1.6343e-08 2.0644 3.3 0 0.43832 -1.5734e-05 1.5477 0.045326 0.38221 1.5092 2.0045 0.00855 0.0016896 1.6352e-08 2.0906 3.3 0 0.43832 -1.5734e-05 1.5477 0.045326 0.38221 1.5092 2.0045 0.00855 0.0016896 1.6363e-08 2.122 3.3 0 0.43832 -1.6242e-05 1.5477 0.045326 0.38221 1.5092 2.0045 0.00855 0.0016896 1.6369e-08 2.1402 3.3 0 0.43832 -1.662e-05 1.5477 0.045326 0.38221 1.5092 2.0045 0.00855 0.0016896 1.6376e-08 2.1585 3.3 0 0.43832 -1.4496e-05 1.5477 0.045327 0.38221 1.5091 2.0045 0.00855 0.0016896 1.6382e-08 2.1767 3.3 0 0.43832 -1.4496e-05 1.5477 0.045327 0.38221 1.5091 2.0045 0.00855 0.0016896 1.6388e-08 2.195 3.3 0 0.43832 -1.4496e-05 1.5477 0.045327 0.38221 1.5091 2.0045 0.00855 0.0016896 1.6394e-08 2.2114 3.3 0 0.43832 -1.662e-05 1.5477 0.045326 0.38221 1.5092 2.0045 0.00855 0.0016896 1.6407e-08 2.2443 3.3 0 0.43832 -1.662e-05 1.5477 0.045326 0.38221 1.5092 2.0045 0.00855 0.0016896 1.642e-08 2.2798 3.3 0 0.43832 -1.6794e-05 1.5477 0.045326 0.38221 1.5092 2.0045 0.00855 0.0016896 1.6442e-08 2.337 3.3 0 0.43832 -1.7569e-05 1.5477 0.045325 0.3822 1.5092 2.0045 0.00855 0.0016896 1.6451e-08 2.3593 3.3 0 0.43832 -1.7365e-05 1.5477 0.045325 0.38221 1.5092 2.0045 0.00855 0.0016896 1.6461e-08 2.3815 3.3 0 0.43832 -1.5817e-05 1.5477 0.045326 0.38221 1.5092 2.0045 0.00855 0.0016896 1.6479e-08 2.426 3.3 0 0.43832 -1.7365e-05 1.5477 0.045325 0.38221 1.5092 2.0045 0.00855 0.0016896 1.6482e-08 2.4325 3.3 0 0.43832 -1.4343e-05 1.5477 0.045327 0.38221 1.5091 2.0045 0.00855 0.0016896 1.6485e-08 2.439 3.3 0 0.43832 -1.1421e-05 1.5477 0.045328 0.38221 1.5091 2.0045 0.00855 0.0016896 1.6491e-08 2.452 3.3 0 0.43832 -1.4343e-05 1.5477 0.045327 0.38221 1.5091 2.0045 0.00855 0.0016896 1.6493e-08 2.4567 3.3 0 0.43832 -1.3192e-05 1.5477 0.045327 0.38221 1.5091 2.0045 0.00855 0.0016896 1.6496e-08 2.4615 3.3 0 0.43832 -1.0127e-05 1.5477 0.045328 0.38221 1.5091 2.0045 0.00855 0.0016896 1.65e-08 2.471 3.3 0 0.43832 -1.3192e-05 1.5477 0.045327 0.38221 1.5091 2.0045 0.00855 0.0016896 1.6503e-08 2.4772 3.3 0 0.43832 -1.4778e-05 1.5477 0.045327 0.38221 1.5091 2.0045 0.00855 0.0016896 1.651e-08 2.4897 3.3 0 0.43832 -1.4778e-05 1.5477 0.045327 0.38221 1.5091 2.0045 0.00855 0.0016896 1.6537e-08 2.5392 3.3 0 0.43833 -1.774e-05 1.5477 0.045325 0.3822 1.5092 2.0045 0.00855 0.0016896 1.6564e-08 2.5887 3.3 0 0.43833 -1.774e-05 1.5477 0.045325 0.3822 1.5092 2.0045 0.00855 0.0016896 1.6607e-08 2.669 3.3 0 0.43833 -1.7722e-05 1.5477 0.045324 0.3822 1.5092 2.0045 0.00855 0.0016896 1.6626e-08 2.7065 3.3 0 0.43833 -1.7792e-05 1.5477 0.045325 0.3822 1.5092 2.0045 0.00855 0.0016896 1.6644e-08 2.744 3.3 0 0.43832 -1.7384e-05 1.5477 0.045325 0.38221 1.5092 2.0045 0.00855 0.0016896 1.6663e-08 2.7815 3.3 0 0.43832 -1.7384e-05 1.5477 0.045325 0.38221 1.5092 2.0045 0.00855 0.0016896 1.6682e-08 2.819 3.3 0 0.43832 -1.7384e-05 1.5477 0.045325 0.38221 1.5092 2.0045 0.00855 0.0016896 1.6701e-08 2.8473 3.3 0 0.43833 -1.7792e-05 1.5477 0.045325 0.3822 1.5092 2.0045 0.00855 0.0016896 1.6726e-08 2.8851 3.3 0 0.43832 -1.7696e-05 1.5477 0.045325 0.3822 1.5092 2.0045 0.00855 0.0016896 1.6751e-08 2.9228 3.3 0 0.43832 -1.7696e-05 1.5477 0.045325 0.3822 1.5092 2.0045 0.00855 0.0016896 1.6782e-08 2.97 3.3 0 0.43833 -1.78e-05 1.5477 0.045325 0.3822 1.5092 2.0045 0.00855 0.0016896 1.68e-08 2.9895 3.3 0 0.43833 -1.7803e-05 1.5477 0.045325 0.3822 1.5092 2.0045 0.00855 0.0016896 1.6818e-08 3.009 3.3 0 0.43832 -1.7303e-05 1.5477 0.045325 0.38221 1.5092 2.0045 0.00855 0.0016896 1.6853e-08 3.048 3.3 0 0.43833 -1.7803e-05 1.5477 0.045325 0.3822 1.5092 2.0045 0.00855 0.0016896 1.6875e-08 3.0655 3.3 0 0.43833 -1.7728e-05 1.5477 0.045324 0.3822 1.5092 2.0045 0.00855 0.0016896 1.6896e-08 3.083 3.3 0 0.43832 -1.7557e-05 1.5477 0.045325 0.3822 1.5092 2.0045 0.00855 0.0016896 1.6939e-08 3.118 3.3 0 0.43833 -1.7728e-05 1.5477 0.045324 0.3822 1.5092 2.0045 0.00855 0.0016896 1.6954e-08 3.1275 3.3 0 0.43833 -1.7794e-05 1.5477 0.045325 0.3822 1.5092 2.0045 0.00855 0.0016896 1.6969e-08 3.137 3.3 0 0.43832 -1.7041e-05 1.5477 0.045325 0.38221 1.5092 2.0045 0.00855 0.0016896 1.7e-08 3.156 3.3 0 0.43833 -1.7794e-05 1.5477 0.045325 0.3822 1.5092 2.0045 0.00855 0.0016896 1.7023e-08 3.1654 3.3 0 0.43833 -1.7682e-05 1.5477 0.045324 0.3822 1.5092 2.0045 0.00855 0.0016896 1.7066e-08 3.1831 3.3 0 0.43833 -1.7724e-05 1.5477 0.045324 0.3822 1.5092 2.0045 0.00855 0.0016896 1.7109e-08 3.2009 3.3 0 0.43833 -1.7724e-05 1.5477 0.045324 0.3822 1.5092 2.0045 0.00855 0.0016896 1.7173e-08 3.227 3.3 0 0.43833 -1.7253e-05 1.5477 0.045324 0.3822 1.5092 2.0045 0.00855 0.0016896 1.7204e-08 3.2343 3.3 0 0.43833 -1.7326e-05 1.5477 0.045324 0.3822 1.5092 2.0045 0.00855 0.0016896 1.7234e-08 3.2415 3.3 0 0.43833 -1.7794e-05 1.5477 0.045325 0.3822 1.5092 2.0045 0.00855 0.0016896 1.7264e-08 3.2487 3.3 0 0.43833 -1.7794e-05 1.5477 0.045325 0.3822 1.5092 2.0045 0.00855 0.0016896 1.7295e-08 3.256 3.3 0 0.43833 -1.7794e-05 1.5477 0.045325 0.3822 1.5092 2.0045 0.00855 0.0016896 1.7325e-08 3.26 3.3 0 0.43833 -1.7353e-05 1.5477 0.045324 0.3822 1.5092 2.0045 0.00855 0.0016896 1.7355e-08 3.264 3.3 0 0.43833 -1.779e-05 1.5477 0.045325 0.3822 1.5092 2.0045 0.00855 0.0016896 1.7415e-08 3.272 3.3 0 0.43833 -1.7353e-05 1.5477 0.045324 0.3822 1.5092 2.0045 0.00855 0.0016896 1.7436e-08 3.274 3.3 0 0.43833 -1.7735e-05 1.5477 0.045324 0.3822 1.5092 2.0045 0.00855 0.0016896 1.7458e-08 3.276 3.3 0 0.43832 -1.7544e-05 1.5477 0.045325 0.38221 1.5092 2.0045 0.00855 0.0016896 1.75e-08 3.28 3.3 0 0.43833 -1.7735e-05 1.5477 0.045324 0.3822 1.5092 2.0045 0.00855 0.0016896 1.7532e-08 3.2816 3.3 0 0.43833 -1.725e-05 1.5477 0.045324 0.3822 1.5092 2.0045 0.00855 0.0016896 1.7596e-08 3.2848 3.3 0 0.43833 -1.725e-05 1.5477 0.045324 0.3822 1.5092 2.0045 0.00855 0.0016896 1.7665e-08 3.2883 3.3 0 0.43833 -1.7083e-05 1.5477 0.045324 0.38219 1.5092 2.0045 0.00855 0.0016896 1.7778e-08 3.294 3.3 0 0.43833 -1.5707e-05 1.5477 0.045324 0.38219 1.5092 2.0045 0.00855 0.0016896 1.7827e-08 3.295 3.3 0 0.43833 -1.6185e-05 1.5477 0.045324 0.38219 1.5092 2.0045 0.00855 0.0016896 1.7876e-08 3.296 3.3 0 0.43833 -1.7619e-05 1.5477 0.045324 0.3822 1.5092 2.0045 0.00855 0.0016896 1.7925e-08 3.297 3.3 0 0.43833 -1.7619e-05 1.5477 0.045324 0.3822 1.5092 2.0045 0.00855 0.0016896 1.7974e-08 3.298 3.3 0 0.43833 -1.7619e-05 1.5477 0.045324 0.3822 1.5092 2.0045 0.00855 0.0016896 1.7978e-08 3.298 3.3 0 0.43832 -1.5146e-05 1.5477 0.045326 0.38221 1.5092 2.0045 0.00855 0.0016896 1.7982e-08 3.298 3.3 0 0.43832 -1.2411e-05 1.5477 0.045328 0.38221 1.5091 2.0045 0.00855 0.0016896 1.7989e-08 3.298 3.3 0 0.43832 -1.5146e-05 1.5477 0.045326 0.38221 1.5092 2.0045 0.00855 0.0016896 1.7995e-08 3.298 3.3 0 0.43832 -1.6361e-05 1.5477 0.045326 0.38221 1.5092 2.0045 0.00855 0.0016896 1.8006e-08 3.298 3.3 0 0.43832 -1.6361e-05 1.5477 0.045326 0.38221 1.5092 2.0045 0.00855 0.0016896 1.8051e-08 3.2981 3.3 0 0.43833 -1.7695e-05 1.5477 0.045324 0.3822 1.5092 2.0045 0.00855 0.0016896 1.8231e-08 3.2982 3.3 0 0.43833 -1.3699e-05 1.5477 0.045324 0.38219 1.5092 2.0045 0.00855 0.0016896 1.8731e-08 3.2987 3.3 0 0.43833 -8.085e-06 1.5477 0.045325 0.38218 1.5092 2.0045 0.0085501 0.0016896 1.9231e-08 3.2992 3.3 0 0.43833 -8.085e-06 1.5477 0.045325 0.38218 1.5092 2.0045 0.0085501 0.0016896 1.9731e-08 3.2997 3.3 0 0.43833 -8.085e-06 1.5477 0.045325 0.38218 1.5092 2.0045 0.0085501 0.0016896 2e-08 3.3 3.3 0 0.43833 -1.1564e-05 1.5477 0.045325 0.38218 1.5092 2.0045 0.0085501 0.0016896 2.005e-08 3.3003 3.3 0 0.43833 -1.6121e-05 1.5477 0.045324 0.38219 1.5092 2.0045 0.00855 0.0016896 2.015e-08 3.3008 3.3 0 0.43833 -1.6121e-05 1.5477 0.045324 0.38219 1.5092 2.0045 0.00855 0.0016896 2.03e-08 3.3015 3.3 0 0.43833 -1.4556e-05 1.5477 0.045324 0.38219 1.5092 2.0045 0.00855 0.0016896 2.06e-08 3.303 3.3 0 0.43833 -1.0952e-05 1.5477 0.045325 0.38218 1.5092 2.0045 0.0085501 0.0016896 2.0615e-08 3.3055 3.3 0 0.43833 -1.779e-05 1.5477 0.045325 0.3822 1.5092 2.0045 0.00855 0.0016896 2.063e-08 3.308 3.3 0 0.43832 -1.701e-05 1.5477 0.045325 0.38221 1.5092 2.0045 0.00855 0.0016896 2.0645e-08 3.3105 3.3 0 0.43832 -1.701e-05 1.5477 0.045325 0.38221 1.5092 2.0045 0.00855 0.0016896 2.066e-08 3.313 3.3 0 0.43832 -1.701e-05 1.5477 0.045325 0.38221 1.5092 2.0045 0.00855 0.0016896 2.0671e-08 3.3122 3.3 0 0.43832 -1.7557e-05 1.5477 0.045325 0.3822 1.5092 2.0045 0.00855 0.0016896 2.0681e-08 3.3115 3.3 0 0.43832 -1.6242e-05 1.5477 0.045326 0.38221 1.5092 2.0045 0.00855 0.0016896 2.0692e-08 3.3108 3.3 0 0.43832 -1.6242e-05 1.5477 0.045326 0.38221 1.5092 2.0045 0.00855 0.0016896 2.0703e-08 3.31 3.3 0 0.43832 -1.6242e-05 1.5477 0.045326 0.38221 1.5092 2.0045 0.00855 0.0016896 2.0714e-08 3.3036 3.3 0 0.43832 -1.7557e-05 1.5477 0.045325 0.3822 1.5092 2.0045 0.00855 0.0016896 2.073e-08 3.2939 3.3 0 0.43832 -1.7184e-05 1.5477 0.045325 0.38221 1.5092 2.0045 0.00855 0.0016896 2.0747e-08 3.2841 3.3 0 0.43832 -1.7184e-05 1.5477 0.045325 0.38221 1.5092 2.0045 0.00855 0.0016896 2.0769e-08 3.271 3.3 0 0.43832 -1.7593e-05 1.5477 0.045325 0.3822 1.5092 2.0045 0.00855 0.0016896 2.0781e-08 3.254 3.3 0 0.43832 -1.7645e-05 1.5477 0.045325 0.3822 1.5092 2.0045 0.00855 0.0016896 2.0793e-08 3.237 3.3 0 0.43832 -1.6471e-05 1.5477 0.045326 0.38221 1.5092 2.0045 0.00855 0.0016896 2.0804e-08 3.22 3.3 0 0.43832 -1.6471e-05 1.5477 0.045326 0.38221 1.5092 2.0045 0.00855 0.0016896 2.0816e-08 3.203 3.3 0 0.43832 -1.6471e-05 1.5477 0.045326 0.38221 1.5092 2.0045 0.00855 0.0016896 2.0828e-08 3.171 3.3 0 0.43832 -1.7645e-05 1.5477 0.045325 0.3822 1.5092 2.0045 0.00855 0.0016896 2.0851e-08 3.1071 3.3 0 0.43832 -1.7645e-05 1.5477 0.045325 0.3822 1.5092 2.0045 0.00855 0.0016896 2.0876e-08 3.0411 3.3 0 0.43832 -1.7672e-05 1.5477 0.045325 0.3822 1.5092 2.0045 0.00855 0.0016896 2.0913e-08 2.939 3.3 0 0.43833 -1.7792e-05 1.5477 0.045325 0.3822 1.5092 2.0045 0.00855 0.0016896 2.093e-08 2.8637 3.3 0 0.43833 -1.7806e-05 1.5477 0.045325 0.3822 1.5092 2.0045 0.00855 0.0016896 2.0947e-08 2.7885 3.3 0 0.43832 -1.7258e-05 1.5477 0.045325 0.38221 1.5092 2.0045 0.00855 0.0016896 2.0965e-08 2.7132 3.3 0 0.43832 -1.7258e-05 1.5477 0.045325 0.38221 1.5092 2.0045 0.00855 0.0016896 2.0982e-08 2.638 3.3 0 0.43832 -1.7258e-05 1.5477 0.045325 0.38221 1.5092 2.0045 0.00855 0.0016896 2.0984e-08 2.6272 3.3 0 0.43832 -1.3626e-05 1.5477 0.045327 0.38221 1.5091 2.0045 0.00855 0.0016896 2.0987e-08 2.6165 3.3 0 0.43832 -1.0601e-05 1.5477 0.045328 0.38221 1.5091 2.0045 0.00855 0.0016896 2.0989e-08 2.6058 3.3 0 0.43832 -1.0601e-05 1.5477 0.045328 0.38221 1.5091 2.0045 0.00855 0.0016896 2.0992e-08 2.595 3.3 0 0.43832 -1.0601e-05 1.5477 0.045328 0.38221 1.5091 2.0045 0.00855 0.0016896 2.0994e-08 2.587 3.3 0 0.43832 -1.2691e-05 1.5477 0.045327 0.38221 1.5091 2.0045 0.00855 0.0016896 2.0996e-08 2.579 3.3 0 0.43832 -9.6023e-06 1.5477 0.045329 0.38221 1.5091 2.0045 0.00855 0.0016896 2.0998e-08 2.571 3.3 0 0.43832 -9.6023e-06 1.5477 0.045329 0.38221 1.5091 2.0045 0.00855 0.0016896 2.1e-08 2.563 3.3 0 0.43832 -9.6023e-06 1.5477 0.045329 0.38221 1.5091 2.0045 0.00855 0.0016896 2.1002e-08 2.5538 3.3 0 0.43832 -1.2691e-05 1.5477 0.045327 0.38221 1.5091 2.0045 0.00855 0.0016896 2.1006e-08 2.5366 3.3 0 0.43832 -1.2411e-05 1.5477 0.045328 0.38221 1.5091 2.0045 0.00855 0.0016896 2.1009e-08 2.5193 3.3 0 0.43832 -1.2411e-05 1.5477 0.045328 0.38221 1.5091 2.0045 0.00855 0.0016896 2.1015e-08 2.494 3.3 0 0.43832 -1.4007e-05 1.5477 0.045327 0.38221 1.5091 2.0045 0.00855 0.0016896 2.1018e-08 2.4815 3.3 0 0.43832 -1.4007e-05 1.5477 0.045327 0.38221 1.5091 2.0045 0.00855 0.0016896 2.102e-08 2.469 3.3 0 0.43832 -1.103e-05 1.5477 0.045328 0.38221 1.5091 2.0045 0.00855 0.0016896 2.1023e-08 2.4565 3.3 0 0.43832 -1.103e-05 1.5477 0.045328 0.38221 1.5091 2.0045 0.00855 0.0016896 2.1026e-08 2.444 3.3 0 0.43832 -1.103e-05 1.5477 0.045328 0.38221 1.5091 2.0045 0.00855 0.0016896 2.1029e-08 2.4307 3.3 0 0.43832 -1.4007e-05 1.5477 0.045327 0.38221 1.5091 2.0045 0.00855 0.0016896 2.1034e-08 2.4041 3.3 0 0.43832 -1.4007e-05 1.5477 0.045327 0.38221 1.5091 2.0045 0.00855 0.0016896 2.1042e-08 2.3666 3.3 0 0.43832 -1.5257e-05 1.5477 0.045326 0.38221 1.5092 2.0045 0.00855 0.0016896 2.1057e-08 2.294 3.3 0 0.43832 -1.701e-05 1.5477 0.045325 0.38221 1.5092 2.0045 0.00855 0.0016896 2.1062e-08 2.265 3.3 0 0.43832 -1.6303e-05 1.5477 0.045326 0.38221 1.5092 2.0045 0.00855 0.0016896 2.1068e-08 2.236 3.3 0 0.43832 -1.4007e-05 1.5477 0.045327 0.38221 1.5091 2.0045 0.00855 0.0016896 2.1074e-08 2.207 3.3 0 0.43832 -1.4007e-05 1.5477 0.045327 0.38221 1.5091 2.0045 0.00855 0.0016896 2.1079e-08 2.178 3.3 0 0.43832 -1.4007e-05 1.5477 0.045327 0.38221 1.5091 2.0045 0.00855 0.0016896 2.1084e-08 2.1484 3.3 0 0.43832 -1.6303e-05 1.5477 0.045326 0.38221 1.5092 2.0045 0.00855 0.0016896 2.1096e-08 2.0891 3.3 0 0.43832 -1.6303e-05 1.5477 0.045326 0.38221 1.5092 2.0045 0.00855 0.0016896 2.1111e-08 2.0056 3.3 0 0.43832 -1.7072e-05 1.5477 0.045325 0.38221 1.5092 2.0045 0.00855 0.0016896 2.1141e-08 1.844 3.3 0 0.43833 -1.779e-05 1.5477 0.045325 0.3822 1.5092 2.0045 0.00855 0.0016896 2.1152e-08 1.7873 3.3 0 0.43832 -1.7581e-05 1.5477 0.045325 0.3822 1.5092 2.0045 0.00855 0.0016896 2.1163e-08 1.7305 3.3 0 0.43832 -1.6303e-05 1.5477 0.045326 0.38221 1.5092 2.0045 0.00855 0.0016896 2.1174e-08 1.6738 3.3 0 0.43832 -1.6303e-05 1.5477 0.045326 0.38221 1.5092 2.0045 0.00855 0.0016896 2.1185e-08 1.617 3.3 0 0.43832 -1.6303e-05 1.5477 0.045326 0.38221 1.5092 2.0045 0.00855 0.0016896 2.1189e-08 1.5922 3.3 0 0.43832 -1.5734e-05 1.5477 0.045326 0.38221 1.5092 2.0045 0.00855 0.0016896 2.1194e-08 1.5675 3.3 0 0.43832 -1.3192e-05 1.5477 0.045327 0.38221 1.5091 2.0045 0.00855 0.0016896 2.1199e-08 1.5428 3.3 0 0.43832 -1.3192e-05 1.5477 0.045327 0.38221 1.5091 2.0045 0.00855 0.0016896 2.1203e-08 1.518 3.3 0 0.43832 -1.3192e-05 1.5477 0.045327 0.38221 1.5091 2.0045 0.00855 0.0016896 2.1206e-08 1.501 3.3 0 0.43832 -1.4641e-05 1.5477 0.045327 0.38221 1.5091 2.0045 0.00855 0.0016896 2.1209e-08 1.484 3.3 0 0.43832 -1.1779e-05 1.5477 0.045328 0.38221 1.5091 2.0045 0.00855 0.0016896 2.1216e-08 1.45 3.3 0 0.43832 -1.4641e-05 1.5477 0.045327 0.38221 1.5091 2.0045 0.00855 0.0016896 2.1221e-08 1.4247 3.3 0 0.43832 -1.5896e-05 1.5477 0.045326 0.38221 1.5092 2.0045 0.00855 0.0016896 2.1225e-08 1.3995 3.3 0 0.43832 -1.3416e-05 1.5477 0.045327 0.38221 1.5091 2.0045 0.00855 0.0016896 2.1235e-08 1.349 3.3 0 0.43832 -1.5896e-05 1.5477 0.045326 0.38221 1.5092 2.0045 0.00855 0.0016896 2.1238e-08 1.33 3.3 0 0.43832 -1.4641e-05 1.5477 0.045327 0.38221 1.5091 2.0045 0.00855 0.0016896 2.1241e-08 1.311 3.3 0 0.43832 -1.1779e-05 1.5477 0.045328 0.38221 1.5091 2.0045 0.00855 0.0016896 2.1248e-08 1.273 3.3 0 0.43832 -1.4641e-05 1.5477 0.045327 0.38221 1.5091 2.0045 0.00855 0.0016896 2.1253e-08 1.2446 3.3 0 0.43832 -1.5971e-05 1.5477 0.045326 0.38221 1.5092 2.0045 0.00855 0.0016896 2.1259e-08 1.2111 3.3 0 0.43832 -1.418e-05 1.5477 0.045327 0.38221 1.5091 2.0045 0.00855 0.0016896 2.1264e-08 1.1776 3.3 0 0.43832 -1.418e-05 1.5477 0.045327 0.38221 1.5091 2.0045 0.00855 0.0016896 2.1271e-08 1.139 3.3 0 0.43832 -1.471e-05 1.5477 0.045327 0.38221 1.5091 2.0045 0.00855 0.0016896 2.1275e-08 1.124 3.3 0 0.43832 -1.5362e-05 1.5477 0.045326 0.38221 1.5092 2.0045 0.00855 0.0016896 2.1279e-08 1.109 3.3 0 0.43832 -1.2691e-05 1.5477 0.045327 0.38221 1.5091 2.0045 0.00855 0.0016896 2.1287e-08 1.079 3.3 0 0.43832 -1.5362e-05 1.5477 0.045326 0.38221 1.5092 2.0045 0.00855 0.0016896 2.1293e-08 1.068 3.3 0 0.43832 -1.6303e-05 1.5477 0.045326 0.38221 1.5092 2.0045 0.00855 0.0016896 2.1298e-08 1.057 3.3 0 0.43832 -1.4007e-05 1.5477 0.045327 0.38221 1.5091 2.0045 0.00855 0.0016896 2.1303e-08 1.046 3.3 0 0.43832 -1.4007e-05 1.5477 0.045327 0.38221 1.5091 2.0045 0.00855 0.0016896 2.1309e-08 1.035 3.3 0 0.43832 -1.4007e-05 1.5477 0.045327 0.38221 1.5091 2.0045 0.00855 0.0016896 2.1313e-08 1.0282 3.3 0 0.43832 -1.5362e-05 1.5477 0.045326 0.38221 1.5092 2.0045 0.00855 0.0016896 2.1317e-08 1.0215 3.3 0 0.43832 -1.2691e-05 1.5477 0.045327 0.38221 1.5091 2.0045 0.00855 0.0016896 2.1325e-08 1.008 3.3 0 0.43832 -1.5362e-05 1.5477 0.045326 0.38221 1.5092 2.0045 0.00855 0.0016896 2.1326e-08 1.0031 3.3 0 0.43832 -1.1421e-05 1.5477 0.045328 0.38221 1.5091 2.0045 0.00855 0.0016896 2.1328e-08 0.99818 3.3 0 0.43832 -8.3601e-06 1.5477 0.045329 0.38221 1.5091 2.0045 0.00855 0.0016896 2.1331e-08 0.98836 3.3 0 0.43832 -1.1421e-05 1.5477 0.045328 0.38221 1.5091 2.0045 0.00855 0.0016896 2.1333e-08 0.981 3.2837 0 0.43832 -0.00014382 1.5474 0.045332 0.38217 1.5091 2.0045 0.0085502 0.0016897 2.1337e-08 0.96791 3.2547 0 0.43831 -0.00043484 1.5468 0.045339 0.38211 1.5091 2.0045 0.0085503 0.00169 2.1341e-08 0.95482 3.2257 0 0.43831 -0.00064047 1.5465 0.045342 0.38206 1.5091 2.0045 0.0085505 0.0016902 2.1347e-08 0.936 3.184 0 0.43825 -0.0011974 1.5458 0.045345 0.38205 1.509 2.0045 0.0085508 0.0016905 2.1351e-08 0.922 3.1549 0 0.43817 -0.0014634 1.5454 0.045347 0.38213 1.5089 2.0045 0.0085511 0.0016907 2.1355e-08 0.908 3.1259 0 0.4381 -0.0018898 1.545 0.045349 0.3821 1.5088 2.0045 0.0085513 0.0016909 2.1363e-08 0.88 3.0679 0 0.43792 -0.00242 1.5444 0.045332 0.38241 1.5086 2.0045 0.008552 0.0016911 2.1369e-08 0.85978 3.0244 0 0.43776 -0.0028349 1.5439 0.045317 0.38265 1.5084 2.0045 0.0085522 0.0016912 2.1376e-08 0.83703 2.9754 0 0.43758 -0.0032818 1.5434 0.045282 0.38291 1.5082 2.0045 0.0085528 0.0016915 2.1382e-08 0.81428 2.9265 0 0.43736 -0.0037579 1.5429 0.045277 0.38316 1.5079 2.0045 0.0085526 0.0016915 2.139e-08 0.789 2.8721 0 0.43707 -0.004224 1.5424 0.045223 0.3834 1.5077 2.0045 0.0085545 0.0016913 2.1395e-08 0.77425 2.8358 0 0.43687 -0.0045332 1.5421 0.045195 0.38355 1.5075 2.0045 0.0085543 0.0016917 2.14e-08 0.7595 2.7996 0 0.43668 -0.004839 1.5418 0.045154 0.38372 1.5073 2.0045 0.0085552 0.0016915 2.1405e-08 0.74475 2.7633 0 0.43645 -0.0051411 1.5416 0.045162 0.38383 1.5071 2.0045 0.0085532 0.0016927 2.141e-08 0.73 2.727 0 0.43629 -0.0054452 1.5414 0.04505 0.38407 1.507 2.0044 0.0085573 0.0016906 2.1415e-08 0.71491 2.6908 0 0.43607 -0.0057279 1.5412 0.04505 0.38419 1.5069 2.0044 0.0085563 0.0016917 2.1425e-08 0.68472 2.595 0 0.43561 -0.0064938 1.5403 0.045067 0.38437 1.5065 2.0044 0.0085606 0.00169 2.1438e-08 0.64472 2.3963 0 0.43492 -0.008169 1.5382 0.045092 0.38456 1.5058 2.0045 0.0085565 0.0016944 2.1463e-08 0.57 2.025 0 0.43319 -0.01123 1.5352 0.045104 0.38553 1.5043 2.0044 0.0085635 0.0016947 2.1472e-08 0.54125 1.8425 0 0.43238 -0.012664 1.5336 0.045086 0.38593 1.5036 2.0044 0.0085646 0.0016957 2.1481e-08 0.5125 1.639 0 0.43154 -0.014302 1.5317 0.045078 0.38631 1.5028 2.0044 0.0085663 0.0016967 2.15e-08 0.455 1.2348 0 0.42967 -0.017419 1.5287 0.045031 0.38732 1.5012 2.0043 0.0085698 0.0016979 2.1503e-08 0.4488 1.171 0 0.42932 -0.017868 1.5283 0.045022 0.38752 1.5009 2.0043 0.0085698 0.001698 2.1506e-08 0.4426 1.1071 0 0.42903 -0.018397 1.528 0.045016 0.38767 1.5007 2.0043 0.0085699 0.001698 2.1509e-08 0.43641 1.0432 0 0.42857 -0.018699 1.5276 0.045003 0.38794 1.5004 2.0044 0.0085695 0.0016978 2.1512e-08 0.43021 0.97935 0 0.42824 -0.019159 1.5272 0.045004 0.3881 1.5001 2.0043 0.0085707 0.0016983 2.1515e-08 0.42401 0.91548 0.030462 0.42889 -0.019546 1.5323 0.045326 0.38824 1.4999 2.0044 0.0085685 0.0016949 2.1521e-08 0.41161 0.78774 0.091385 0.42997 -0.020292 1.5443 0.045809 0.38853 1.4997 2.0045 0.0085666 0.0016881 2.1544e-08 0.36306 0.56212 0.33 0.42065 -0.025729 1.5977 0.043712 0.38955 1.4958 2.0048 0.0085703 0.0016642 2.1568e-08 0.31451 0.43068 0.56862 0.39439 -0.026368 1.6538 0.041101 0.39042 1.4898 2.0049 0.0085784 0.0016436 2.1606e-08 0.236 0.21814 1.2581 0.34205 0.013244 1.6923 0.049624 0.37929 1.4871 2.0049 0.0085814 0.0016299 2.1616e-08 0.22443 0.1636 1.4287 0.32792 0.033137 1.6811 0.055176 0.37075 1.489 2.0049 0.0085781 0.0016364 2.1625e-08 0.21286 0.10907 1.5856 0.31417 0.054035 1.6678 0.061504 0.36108 1.4914 2.0049 0.0085732 0.0016429 2.1635e-08 0.20129 0.054534 1.7426 0.30149 0.076734 1.6506 0.069397 0.34935 1.4947 2.0049 0.0085659 0.0016502 2.1645e-08 0.18972 0 1.8995 0.28983 0.10073 1.63 0.078599 0.336 1.4988 2.0049 0.0085574 0.0016588 2.1654e-08 0.17904 0 2.0308 0.28007 0.12424 1.619 0.088255 0.32233 1.5034 2.0049 0.0085457 0.0016619 2.1663e-08 0.16836 0 2.145 0.27042 0.14694 1.6088 0.098227 0.3081 1.5081 2.005 0.008535 0.001665 2.1672e-08 0.15768 0 2.2592 0.26118 0.16775 1.6002 0.10886 0.29309 1.5127 2.005 0.0085251 0.001668 2.1681e-08 0.147 0 2.3735 0.25235 0.18669 1.5928 0.11995 0.27809 1.5171 2.005 0.0085176 0.0016706 2.169e-08 0.1412 0 2.4877 0.24395 0.20334 1.587 0.13126 0.26416 1.5212 2.0051 0.0085075 0.0016723 2.1708e-08 0.1296 0 2.6835 0.22733 0.23392 1.5765 0.15377 0.23815 1.5287 2.0052 0.0084933 0.001676 2.1731e-08 0.1151 0 2.8467 0.20706 0.26529 1.5661 0.18123 0.21083 1.536 2.0052 0.0084772 0.0016793 2.1771e-08 0.089 0 3.1404 0.17389 0.3074 1.5555 0.22635 0.17373 1.5442 2.0052 0.0084655 0.0016836 2.1777e-08 0.08668 0 3.1803 0.16976 0.3118 1.5547 0.23181 0.16981 1.5448 2.0052 0.0084642 0.0016838 2.1782e-08 0.084359 0 3.2202 0.16566 0.3161 1.554 0.2372 0.16599 1.5454 2.0052 0.0084632 0.0016841 2.1787e-08 0.082039 0 3.2601 0.16162 0.32022 1.5533 0.2424 0.16233 1.5459 2.0052 0.0084625 0.0016843 2.1793e-08 0.079719 0 3.3 0.15766 0.32414 1.5527 0.24744 0.15883 1.5463 2.0052 0.008462 0.0016846 2.1799e-08 0.077398 0 3.3 0.15346 0.32778 1.5515 0.25219 0.15555 1.5465 2.0052 0.0084624 0.0016852 2.1809e-08 0.072969 0 3.3 0.14551 0.33437 1.5495 0.26107 0.14949 1.5468 2.0052 0.0084628 0.0016862 2.182e-08 0.068539 0 3.3 0.13785 0.34032 1.5478 0.26958 0.14381 1.5467 2.0051 0.0084634 0.0016868 2.1835e-08 0.062 0 3.3 0.12712 0.34807 1.546 0.28135 0.13607 1.5463 2.0051 0.0084654 0.0016877 2.1848e-08 0.058649 0 3.3 0.11883 0.35348 1.5449 0.29004 0.13035 1.5454 2.0051 0.0084685 0.0016883 2.1872e-08 0.052399 0 3.3 0.10414 0.36263 1.5434 0.30499 0.12045 1.5435 2.0049 0.008476 0.0016895 2.1897e-08 0.046149 0 3.3 0.090944 0.37016 1.5425 0.31757 0.11192 1.541 2.0048 0.0084834 0.0016903 2.1932e-08 0.037 0 3.3 0.074151 0.37913 1.542 0.33231 0.10135 1.5369 2.0047 0.0084953 0.0016913 2.1949e-08 0.034 0 3.3 0.067405 0.38262 1.542 0.33769 0.097115 1.5348 2.0046 0.0085006 0.0016915 2.1966e-08 0.031 0 3.3 0.060959 0.38596 1.5421 0.34273 0.093053 1.5328 2.0045 0.0085052 0.0016917 2.1983e-08 0.028 0 3.3 0.055052 0.38902 1.5422 0.34715 0.089336 1.5308 2.0045 0.0085111 0.001692 2.2e-08 0.025 0 3.3 0.049684 0.39187 1.5423 0.35101 0.085901 1.529 2.0045 0.0085137 0.0016917 2.2017e-08 0.023503 0 3.3 0.045013 0.39443 1.5426 0.35419 0.082848 1.5272 2.0044 0.008519 0.001692 2.2051e-08 0.020508 0 3.3 0.03649 0.39924 1.543 0.35982 0.077211 1.5238 2.0044 0.008525 0.0016918 2.2099e-08 0.016258 0 3.3 0.026957 0.4052 1.5436 0.36565 0.070617 1.5198 2.0043 0.0085358 0.0016918 2.2193e-08 0.008 0 3.3 0.014675 0.41456 1.5447 0.37259 0.061352 1.5143 2.0043 0.008544 0.0016917 2.2227e-08 0.00675 0 3.3 0.012072 0.41722 1.545 0.37398 0.059073 1.5131 2.0043 0.008547 0.0016915 2.2261e-08 0.0055 0 3.3 0.0097254 0.41975 1.5454 0.37524 0.056979 1.512 2.0043 0.0085489 0.0016913 2.2296e-08 0.00425 0 3.3 0.0078499 0.42202 1.5456 0.37626 0.055205 1.5112 2.0043 0.0085502 0.001691 2.233e-08 0.003 0 3.3 0.0063521 0.42406 1.5459 0.37711 0.053697 1.5106 2.0043 0.0085512 0.0016911 2.2355e-08 0.00275 0 3.3 0.0055179 0.42535 1.5461 0.37761 0.052797 1.5103 2.0043 0.0085516 0.0016909 2.238e-08 0.0025 0 3.3 0.0047466 0.42658 1.5462 0.37808 0.05195 1.51 2.0043 0.0085521 0.0016909 2.2405e-08 0.00225 0 3.3 0.0039816 0.42772 1.5463 0.37855 0.051206 1.5097 2.0044 0.0085524 0.0016907 2.243e-08 0.002 0 3.3 0.0034337 0.42877 1.5465 0.37891 0.050535 1.5095 2.0043 0.0085529 0.0016908 2.2455e-08 0.001976 0 3.3 0.0029988 0.42967 1.5466 0.37921 0.049963 1.5094 2.0044 0.0085527 0.0016906 2.2505e-08 0.0019281 0 3.3 0.0022503 0.43132 1.5468 0.37976 0.048953 1.5092 2.0044 0.0085532 0.0016906 2.2705e-08 0.0017363 0 3.3 0.00069656 0.43557 1.5473 0.3812 0.046629 1.509 2.0044 0.0085516 0.00169 2.3205e-08 0.001257 0 3.3 -3.0385e-05 0.4385 1.5477 0.38222 0.045245 1.5092 2.0045 0.0085499 0.0016896 2.3705e-08 0.00077756 0 3.3 -5.8674e-06 0.4383 1.5477 0.3822 0.045338 1.5092 2.0045 0.0085502 0.0016896 2.4205e-08 0.00029818 0 3.3 -7.9069e-06 0.43832 1.5477 0.38217 0.045335 1.5091 2.0045 0.0085501 0.0016896 2.4705e-08 -0.00018121 0 3.3 -5.9614e-06 0.43834 1.5477 0.3822 0.045321 1.5092 2.0045 0.0085502 0.0016896 2.5205e-08 -0.00066059 0 3.3 -7.9069e-06 0.43832 1.5477 0.38217 0.045335 1.5091 2.0045 0.0085501 0.0016896 2.5559e-08 -0.001 0 3.3 -6.4975e-06 0.43834 1.5477 0.3822 0.045321 1.5092 2.0045 0.0085502 0.0016896 2.5569e-08 -0.0025 0 3.3 -1.0913e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.5579e-08 -0.004 0 3.3 -1.0151e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.56e-08 -0.007 0 3.3 -1.0913e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.5615e-08 -0.00825 0 3.3 -1.1191e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.5629e-08 -0.0095 0 3.3 -1.0565e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.5643e-08 -0.01075 0 3.3 -1.0565e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.5658e-08 -0.012 0 3.3 -1.0565e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.5668e-08 -0.00875 0 3.3 -1.0913e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.5678e-08 -0.0055 0 3.3 -1.0151e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.5699e-08 0.001 0 3.3 -1.0913e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.5714e-08 0.018297 0 3.3 -1.123e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.573e-08 0.036297 0 3.3 -1.0671e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.5746e-08 0.054297 0 3.3 -1.0671e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.5763e-08 0.073 0 3.3 -1.0711e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.5775e-08 0.1005 0 3.3 -1.1014e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.5786e-08 0.128 0 3.3 -1.0296e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.5797e-08 0.1555 0 3.3 -1.0296e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.5809e-08 0.183 0 3.3 -1.0296e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.5819e-08 0.2245 0 3.3 -1.0935e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.583e-08 0.266 0 3.3 -1.0182e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.584e-08 0.3075 0 3.3 -1.0182e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.5851e-08 0.349 0 3.3 -1.0182e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.5858e-08 0.3885 0 3.3 -1.0602e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.5866e-08 0.428 0 3.3 -9.7266e-06 0.43833 1.5477 0.38221 0.04533 1.5092 2.0045 0.00855 0.0016896 2.5874e-08 0.4675 0 3.3 -9.7266e-06 0.43833 1.5477 0.38221 0.04533 1.5092 2.0045 0.00855 0.0016896 2.5881e-08 0.507 0 3.3 -9.7266e-06 0.43833 1.5477 0.38221 0.04533 1.5092 2.0045 0.00855 0.0016896 2.5889e-08 0.54807 0 3.3 -1.0602e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.5899e-08 0.60557 0 3.3 -1.0182e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.591e-08 0.66307 0 3.3 -1.0182e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.5923e-08 0.737 0 3.3 -1.0485e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.5931e-08 0.77075 0 3.3 -1.0602e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.5938e-08 0.8045 0 3.3 -9.7266e-06 0.43833 1.5477 0.38221 0.04533 1.5092 2.0045 0.00855 0.0016896 2.5953e-08 0.872 0 3.3 -1.0602e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.596e-08 0.9005 0 3.3 -1.0485e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.5967e-08 0.929 0 3.3 -9.5735e-06 0.43833 1.5477 0.38221 0.04533 1.5092 2.0045 0.00855 0.0016896 2.598e-08 0.986 0 3.3 -1.0485e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.5985e-08 1.006 0 3.3 -1.0119e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.599e-08 1.026 0 3.3 -9.1161e-06 0.43833 1.5477 0.38221 0.04533 1.5092 2.0045 0.00855 0.0016896 2.5995e-08 1.046 0 3.3 -9.1161e-06 0.43833 1.5477 0.38221 0.04533 1.5092 2.0045 0.00855 0.0016896 2.6e-08 1.066 0 3.3 -9.1161e-06 0.43833 1.5477 0.38221 0.04533 1.5092 2.0045 0.00855 0.0016896 2.6005e-08 1.0861 0 3.3 -1.0119e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.6015e-08 1.1263 0 3.3 -1.0119e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.6026e-08 1.1716 0 3.3 -1.0269e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.6045e-08 1.247 0 3.3 -1.083e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.6053e-08 1.2713 0 3.3 -1.0671e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.6061e-08 1.2955 0 3.3 -9.818e-06 0.43833 1.5477 0.38221 0.04533 1.5092 2.0045 0.0085501 0.0016896 2.6077e-08 1.344 0 3.3 -1.0671e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.6089e-08 1.3776 0 3.3 -1.1049e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.6103e-08 1.4169 0 3.3 -1.0526e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.6117e-08 1.4561 0 3.3 -1.0526e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.6133e-08 1.501 0 3.3 -1.0671e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.6143e-08 1.5305 0 3.3 -1.0891e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.6153e-08 1.56 0 3.3 -1.0119e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.6163e-08 1.5895 0 3.3 -1.0119e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.6173e-08 1.619 0 3.3 -1.0119e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.6183e-08 1.6428 0 3.3 -1.0891e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.6196e-08 1.6725 0 3.3 -1.0396e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.6208e-08 1.7023 0 3.3 -1.0396e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.6223e-08 1.738 0 3.3 -1.0602e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.6232e-08 1.759 0 3.3 -1.0763e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.624e-08 1.78 0 3.3 -9.9419e-06 0.43833 1.5477 0.38221 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.6249e-08 1.801 0 3.3 -9.9419e-06 0.43833 1.5477 0.38221 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.6258e-08 1.822 0 3.3 -9.9419e-06 0.43833 1.5477 0.38221 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.6267e-08 1.8483 0 3.3 -1.0763e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.6277e-08 1.8783 0 3.3 -1.0119e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.6287e-08 1.9082 0 3.3 -1.0119e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.6298e-08 1.942 0 3.3 -1.0269e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.6305e-08 1.9607 0 3.3 -1.0565e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.6313e-08 1.9795 0 3.3 -9.6778e-06 0.43833 1.5477 0.38221 0.04533 1.5092 2.0045 0.00855 0.0016896 2.6327e-08 2.017 0 3.3 -1.0565e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.6336e-08 2.0433 0 3.3 -1.0791e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.6345e-08 2.0695 0 3.3 -9.9801e-06 0.43833 1.5477 0.38221 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.6363e-08 2.122 0 3.3 -1.0791e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.6369e-08 2.1402 0 3.3 -1.0396e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.6375e-08 2.1585 0 3.3 -9.459e-06 0.43833 1.5477 0.38221 0.04533 1.5092 2.0045 0.00855 0.0016896 2.6382e-08 2.1767 0 3.3 -9.459e-06 0.43833 1.5477 0.38221 0.04533 1.5092 2.0045 0.00855 0.0016896 2.6388e-08 2.195 0 3.3 -9.459e-06 0.43833 1.5477 0.38221 0.04533 1.5092 2.0045 0.00855 0.0016896 2.6394e-08 2.2114 0 3.3 -1.0396e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.6407e-08 2.2443 0 3.3 -1.0396e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.642e-08 2.2798 0 3.3 -1.0485e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.6442e-08 2.337 0 3.3 -1.0966e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.6451e-08 2.3593 0 3.3 -1.0817e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.646e-08 2.3815 0 3.3 -1.0017e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.647e-08 2.4037 0 3.3 -1.0017e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.6479e-08 2.426 0 3.3 -1.0017e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.6482e-08 2.4325 0 3.3 -9.3974e-06 0.43833 1.5477 0.38221 0.04533 1.5092 2.0045 0.00855 0.0016896 2.6485e-08 2.439 0 3.3 -8.2991e-06 0.43833 1.5477 0.3822 0.045331 1.5092 2.0045 0.00855 0.0016896 2.6488e-08 2.4455 0 3.3 -8.2991e-06 0.43833 1.5477 0.3822 0.045331 1.5092 2.0045 0.00855 0.0016896 2.6491e-08 2.452 0 3.3 -8.2991e-06 0.43833 1.5477 0.3822 0.045331 1.5092 2.0045 0.00855 0.0016896 2.6493e-08 2.4567 0 3.3 -8.9497e-06 0.43833 1.5477 0.38221 0.04533 1.5092 2.0045 0.00855 0.0016896 2.6495e-08 2.4615 0 3.3 -7.8454e-06 0.43833 1.5477 0.3822 0.045332 1.5092 2.0045 0.00855 0.0016896 2.6498e-08 2.4662 0 3.3 -7.8454e-06 0.43833 1.5477 0.3822 0.045332 1.5092 2.0045 0.00855 0.0016896 2.65e-08 2.471 0 3.3 -7.8454e-06 0.43833 1.5477 0.3822 0.045332 1.5092 2.0045 0.00855 0.0016896 2.6502e-08 2.4752 0 3.3 -8.9497e-06 0.43833 1.5477 0.38221 0.04533 1.5092 2.0045 0.00855 0.0016896 2.6507e-08 2.4835 0 3.3 -8.9497e-06 0.43833 1.5477 0.38221 0.04533 1.5092 2.0045 0.00855 0.0016896 2.6525e-08 2.5168 0 3.3 -1.0791e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.6552e-08 2.5663 0 3.3 -1.1133e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.6578e-08 2.6158 0 3.3 -1.1133e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.6607e-08 2.669 0 3.3 -1.1185e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.6626e-08 2.7065 0 3.3 -1.1344e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.6644e-08 2.744 0 3.3 -1.083e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.6682e-08 2.819 0 3.3 -1.1344e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.6707e-08 2.8568 0 3.3 -1.1446e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.6732e-08 2.8945 0 3.3 -1.1082e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.6782e-08 2.97 0 3.3 -1.1446e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.68e-08 2.9895 0 3.3 -1.1315e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.6817e-08 3.009 0 3.3 -1.0777e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.6835e-08 3.0285 0 3.3 -1.0777e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.6853e-08 3.048 0 3.3 -1.0777e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.6871e-08 3.0624 0 3.3 -1.1315e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.6892e-08 3.0799 0 3.3 -1.0956e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.6914e-08 3.0974 0 3.3 -1.0956e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.6939e-08 3.118 0 3.3 -1.1089e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.6954e-08 3.1275 0 3.3 -1.1225e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.697e-08 3.137 0 3.3 -1.062e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.7e-08 3.156 0 3.3 -1.1225e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.7023e-08 3.1654 0 3.3 -1.1423e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.7066e-08 3.1831 0 3.3 -1.1405e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.7109e-08 3.2009 0 3.3 -1.1405e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.7173e-08 3.227 0 3.3 -1.1461e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.7203e-08 3.2343 0 3.3 -1.1464e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.7234e-08 3.2415 0 3.3 -1.1225e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.7295e-08 3.256 0 3.3 -1.1464e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.7325e-08 3.26 0 3.3 -1.1464e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.7355e-08 3.264 0 3.3 -1.1214e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.7415e-08 3.272 0 3.3 -1.1464e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.7436e-08 3.274 0 3.3 -1.1398e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.7457e-08 3.276 0 3.3 -1.0946e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.75e-08 3.28 0 3.3 -1.1398e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.7532e-08 3.2816 0 3.3 -1.146e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.7596e-08 3.2848 0 3.3 -1.146e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.7665e-08 3.2883 0 3.3 -1.1446e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.7778e-08 3.294 0 3.3 -1.1114e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.7827e-08 3.295 0 3.3 -1.1259e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.7876e-08 3.296 0 3.3 -1.1442e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.7974e-08 3.298 0 3.3 -1.1259e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.7978e-08 3.298 0 3.3 -9.7266e-06 0.43833 1.5477 0.38221 0.04533 1.5092 2.0045 0.00855 0.0016896 2.7981e-08 3.298 0 3.3 -8.6579e-06 0.43833 1.5477 0.3822 0.045331 1.5092 2.0045 0.00855 0.0016896 2.7985e-08 3.298 0 3.3 -8.6579e-06 0.43833 1.5477 0.3822 0.045331 1.5092 2.0045 0.00855 0.0016896 2.7989e-08 3.298 0 3.3 -8.6579e-06 0.43833 1.5477 0.3822 0.045331 1.5092 2.0045 0.00855 0.0016896 2.7993e-08 3.298 0 3.3 -9.7266e-06 0.43833 1.5477 0.38221 0.04533 1.5092 2.0045 0.00855 0.0016896 2.8e-08 3.298 0 3.3 -9.7266e-06 0.43833 1.5477 0.38221 0.04533 1.5092 2.0045 0.00855 0.0016896 2.803e-08 3.298 0 3.3 -1.1214e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.815e-08 3.2982 0 3.3 -1.1036e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 2.863e-08 3.2986 0 3.3 -7.0898e-06 0.43833 1.5477 0.38219 0.045328 1.5092 2.0045 0.0085501 0.0016896 2.913e-08 3.2991 0 3.3 -6.9342e-06 0.43833 1.5477 0.38219 0.045328 1.5092 2.0045 0.0085501 0.0016896 2.963e-08 3.2996 0 3.3 -6.9342e-06 0.43833 1.5477 0.38219 0.045328 1.5092 2.0045 0.0085501 0.0016896 3e-08 3.3 0 3.3 -8.0702e-06 0.43833 1.5477 0.38219 0.045328 1.5092 2.0045 0.0085501 0.0016896 3.005e-08 3.3003 0 3.3 -1.1241e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.015e-08 3.3008 0 3.3 -1.1241e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.03e-08 3.3015 0 3.3 -1.0679e-05 0.43833 1.5477 0.38219 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.045e-08 3.3022 0 3.3 -1.0679e-05 0.43833 1.5477 0.38219 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.06e-08 3.303 0 3.3 -1.0679e-05 0.43833 1.5477 0.38219 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.0615e-08 3.3055 0 3.3 -1.1214e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.063e-08 3.308 0 3.3 -1.0602e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.0645e-08 3.3105 0 3.3 -1.0602e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.066e-08 3.313 0 3.3 -1.0602e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.0671e-08 3.3122 0 3.3 -1.0956e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.0681e-08 3.3115 0 3.3 -1.0212e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.0692e-08 3.3108 0 3.3 -1.0212e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.0703e-08 3.31 0 3.3 -1.0212e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.0714e-08 3.3036 0 3.3 -1.0956e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.073e-08 3.2939 0 3.3 -1.0703e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.0747e-08 3.2841 0 3.3 -1.0703e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.0769e-08 3.271 0 3.3 -1.0986e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.0781e-08 3.254 0 3.3 -1.1032e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.0792e-08 3.237 0 3.3 -1.0322e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.0804e-08 3.22 0 3.3 -1.0322e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.0816e-08 3.203 0 3.3 -1.0322e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.0828e-08 3.171 0 3.3 -1.1032e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.0851e-08 3.1071 0 3.3 -1.1032e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.0876e-08 3.0411 0 3.3 -1.1057e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.0913e-08 2.939 0 3.3 -1.1344e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.093e-08 2.8637 0 3.3 -1.13e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.0948e-08 2.7885 0 3.3 -1.0748e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.0965e-08 2.7132 0 3.3 -1.0748e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.0982e-08 2.638 0 3.3 -1.0748e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.0984e-08 2.6272 0 3.3 -9.1161e-06 0.43833 1.5477 0.38221 0.04533 1.5092 2.0045 0.00855 0.0016896 3.0987e-08 2.6165 0 3.3 -8.0095e-06 0.43833 1.5477 0.3822 0.045331 1.5092 2.0045 0.00855 0.0016896 3.0992e-08 2.595 0 3.3 -9.1161e-06 0.43833 1.5477 0.38221 0.04533 1.5092 2.0045 0.00855 0.0016896 3.0994e-08 2.587 0 3.3 -8.7616e-06 0.43833 1.5477 0.38221 0.045331 1.5092 2.0045 0.00855 0.0016896 3.0996e-08 2.579 0 3.3 -7.6659e-06 0.43833 1.5477 0.3822 0.045332 1.5092 2.0045 0.00855 0.0016896 3.1e-08 2.563 0 3.3 -8.7616e-06 0.43833 1.5477 0.38221 0.045331 1.5092 2.0045 0.00855 0.0016896 3.1003e-08 2.5492 0 3.3 -9.3974e-06 0.43833 1.5477 0.38221 0.04533 1.5092 2.0045 0.00855 0.0016896 3.1007e-08 2.5319 0 3.3 -8.6579e-06 0.43833 1.5477 0.3822 0.045331 1.5092 2.0045 0.00855 0.0016896 3.1011e-08 2.5147 0 3.3 -8.6579e-06 0.43833 1.5477 0.3822 0.045331 1.5092 2.0045 0.00855 0.0016896 3.1015e-08 2.494 0 3.3 -8.9497e-06 0.43833 1.5477 0.38221 0.04533 1.5092 2.0045 0.00855 0.0016896 3.1018e-08 2.4815 0 3.3 -9.2643e-06 0.43833 1.5477 0.38221 0.04533 1.5092 2.0045 0.00855 0.0016896 3.1021e-08 2.469 0 3.3 -8.1602e-06 0.43833 1.5477 0.3822 0.045331 1.5092 2.0045 0.00855 0.0016896 3.1023e-08 2.4565 0 3.3 -8.1602e-06 0.43833 1.5477 0.3822 0.045331 1.5092 2.0045 0.00855 0.0016896 3.1026e-08 2.444 0 3.3 -8.1602e-06 0.43833 1.5477 0.3822 0.045331 1.5092 2.0045 0.00855 0.0016896 3.1029e-08 2.4307 0 3.3 -9.2643e-06 0.43833 1.5477 0.38221 0.04533 1.5092 2.0045 0.00855 0.0016896 3.1034e-08 2.4041 0 3.3 -9.2643e-06 0.43833 1.5477 0.38221 0.04533 1.5092 2.0045 0.00855 0.0016896 3.1042e-08 2.3666 0 3.3 -9.7733e-06 0.43833 1.5477 0.38221 0.04533 1.5092 2.0045 0.0085501 0.0016896 3.1057e-08 2.294 0 3.3 -1.0602e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.1062e-08 2.265 0 3.3 -1.0241e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.1068e-08 2.236 0 3.3 -9.2643e-06 0.43833 1.5477 0.38221 0.04533 1.5092 2.0045 0.00855 0.0016896 3.1074e-08 2.207 0 3.3 -9.2643e-06 0.43833 1.5477 0.38221 0.04533 1.5092 2.0045 0.00855 0.0016896 3.1079e-08 2.178 0 3.3 -9.2643e-06 0.43833 1.5477 0.38221 0.04533 1.5092 2.0045 0.00855 0.0016896 3.1085e-08 2.1484 0 3.3 -1.0241e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.1095e-08 2.0891 0 3.3 -1.0241e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.1111e-08 2.0056 0 3.3 -1.0638e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.1141e-08 1.844 0 3.3 -1.1214e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.1152e-08 1.7873 0 3.3 -1.0976e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.1163e-08 1.7305 0 3.3 -1.0241e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.1174e-08 1.6738 0 3.3 -1.0241e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.1185e-08 1.617 0 3.3 -1.0241e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.119e-08 1.5922 0 3.3 -9.9801e-06 0.43833 1.5477 0.38221 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.1194e-08 1.5675 0 3.3 -8.9497e-06 0.43833 1.5477 0.38221 0.04533 1.5092 2.0045 0.00855 0.0016896 3.1198e-08 1.5428 0 3.3 -8.9497e-06 0.43833 1.5477 0.38221 0.04533 1.5092 2.0045 0.00855 0.0016896 3.1203e-08 1.518 0 3.3 -8.9497e-06 0.43833 1.5477 0.38221 0.04533 1.5092 2.0045 0.00855 0.0016896 3.1206e-08 1.501 0 3.3 -9.5177e-06 0.43833 1.5477 0.38221 0.04533 1.5092 2.0045 0.00855 0.0016896 3.1209e-08 1.484 0 3.3 -8.4276e-06 0.43833 1.5477 0.3822 0.045331 1.5092 2.0045 0.00855 0.0016896 3.1213e-08 1.467 0 3.3 -8.4276e-06 0.43833 1.5477 0.3822 0.045331 1.5092 2.0045 0.00855 0.0016896 3.1216e-08 1.45 0 3.3 -8.4276e-06 0.43833 1.5477 0.3822 0.045331 1.5092 2.0045 0.00855 0.0016896 3.1219e-08 1.4327 0 3.3 -9.5177e-06 0.43833 1.5477 0.38221 0.04533 1.5092 2.0045 0.00855 0.0016896 3.1224e-08 1.4075 0 3.3 -9.0354e-06 0.43833 1.5477 0.38221 0.04533 1.5092 2.0045 0.00855 0.0016896 3.1229e-08 1.3822 0 3.3 -9.0354e-06 0.43833 1.5477 0.38221 0.04533 1.5092 2.0045 0.00855 0.0016896 3.1235e-08 1.349 0 3.3 -9.459e-06 0.43833 1.5477 0.38221 0.04533 1.5092 2.0045 0.00855 0.0016896 3.1238e-08 1.33 0 3.3 -9.5177e-06 0.43833 1.5477 0.38221 0.04533 1.5092 2.0045 0.00855 0.0016896 3.1241e-08 1.311 0 3.3 -8.4276e-06 0.43833 1.5477 0.3822 0.045331 1.5092 2.0045 0.00855 0.0016896 3.1245e-08 1.292 0 3.3 -8.4276e-06 0.43833 1.5477 0.3822 0.045331 1.5092 2.0045 0.00855 0.0016896 3.1248e-08 1.273 0 3.3 -8.4276e-06 0.43833 1.5477 0.3822 0.045331 1.5092 2.0045 0.00855 0.0016896 3.1251e-08 1.2541 0 3.3 -9.5177e-06 0.43833 1.5477 0.38221 0.04533 1.5092 2.0045 0.00855 0.0016896 3.1257e-08 1.2206 0 3.3 -9.3326e-06 0.43833 1.5477 0.38221 0.04533 1.5092 2.0045 0.00855 0.0016896 3.1263e-08 1.1871 0 3.3 -9.3326e-06 0.43833 1.5477 0.38221 0.04533 1.5092 2.0045 0.00855 0.0016896 3.1271e-08 1.139 0 3.3 -9.861e-06 0.43833 1.5477 0.38221 0.04533 1.5092 2.0045 0.0085501 0.0016896 3.1275e-08 1.124 0 3.3 -9.818e-06 0.43833 1.5477 0.38221 0.04533 1.5092 2.0045 0.0085501 0.0016896 3.1279e-08 1.109 0 3.3 -8.7616e-06 0.43833 1.5477 0.38221 0.045331 1.5092 2.0045 0.00855 0.0016896 3.1283e-08 1.094 0 3.3 -8.7616e-06 0.43833 1.5477 0.38221 0.045331 1.5092 2.0045 0.00855 0.0016896 3.1287e-08 1.079 0 3.3 -8.7616e-06 0.43833 1.5477 0.38221 0.045331 1.5092 2.0045 0.00855 0.0016896 3.1291e-08 1.071 0 3.3 -9.818e-06 0.43833 1.5477 0.38221 0.04533 1.5092 2.0045 0.0085501 0.0016896 3.1297e-08 1.06 0 3.3 -9.2643e-06 0.43833 1.5477 0.38221 0.04533 1.5092 2.0045 0.00855 0.0016896 3.1302e-08 1.049 0 3.3 -9.2643e-06 0.43833 1.5477 0.38221 0.04533 1.5092 2.0045 0.00855 0.0016896 3.1309e-08 1.035 0 3.3 -9.6269e-06 0.43833 1.5477 0.38221 0.04533 1.5092 2.0045 0.00855 0.0016896 3.1313e-08 1.0282 0 3.3 -9.818e-06 0.43833 1.5477 0.38221 0.04533 1.5092 2.0045 0.0085501 0.0016896 3.1317e-08 1.0215 0 3.3 -8.7616e-06 0.43833 1.5477 0.38221 0.045331 1.5092 2.0045 0.00855 0.0016896 3.1321e-08 1.0148 0 3.3 -8.7616e-06 0.43833 1.5477 0.38221 0.045331 1.5092 2.0045 0.00855 0.0016896 3.1325e-08 1.008 0 3.3 -8.7616e-06 0.43833 1.5477 0.38221 0.045331 1.5092 2.0045 0.00855 0.0016896 3.1329e-08 0.99491 0 3.3 -9.818e-06 0.43833 1.5477 0.38221 0.04533 1.5092 2.0045 0.0085501 0.0016896 3.1335e-08 0.97691 0 3.3 -9.2643e-06 0.43833 1.5477 0.38221 0.04533 1.5092 2.0045 0.00855 0.0016896 3.134e-08 0.95891 0 3.3 -9.2643e-06 0.43833 1.5477 0.38221 0.04533 1.5092 2.0045 0.00855 0.0016896 3.1347e-08 0.936 0 3.3 -9.6269e-06 0.43833 1.5477 0.38221 0.04533 1.5092 2.0045 0.00855 0.0016896 3.1351e-08 0.922 0 3.3 -9.818e-06 0.43833 1.5477 0.38221 0.04533 1.5092 2.0045 0.0085501 0.0016896 3.1355e-08 0.908 0 3.3 -8.7616e-06 0.43833 1.5477 0.38221 0.045331 1.5092 2.0045 0.00855 0.0016896 3.1359e-08 0.894 0 3.3 -8.7616e-06 0.43833 1.5477 0.38221 0.045331 1.5092 2.0045 0.00855 0.0016896 3.1363e-08 0.88 0 3.3 -8.7616e-06 0.43833 1.5477 0.38221 0.045331 1.5092 2.0045 0.00855 0.0016896 3.1367e-08 0.86652 0 3.3 -9.818e-06 0.43833 1.5477 0.38221 0.04533 1.5092 2.0045 0.0085501 0.0016896 3.1374e-08 0.84377 0 3.3 -9.5735e-06 0.43833 1.5477 0.38221 0.04533 1.5092 2.0045 0.00855 0.0016896 3.1381e-08 0.82102 0 3.3 -9.5735e-06 0.43833 1.5477 0.38221 0.04533 1.5092 2.0045 0.00855 0.0016896 3.139e-08 0.789 0 3.3 -1.0052e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.1395e-08 0.77425 0 3.3 -1.0119e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.14e-08 0.7595 0 3.3 -9.1161e-06 0.43833 1.5477 0.38221 0.04533 1.5092 2.0045 0.00855 0.0016896 3.1405e-08 0.74475 0 3.3 -9.1161e-06 0.43833 1.5477 0.38221 0.04533 1.5092 2.0045 0.00855 0.0016896 3.141e-08 0.73 0 3.3 -9.1161e-06 0.43833 1.5477 0.38221 0.04533 1.5092 2.0045 0.00855 0.0016896 3.1415e-08 0.71491 0 3.3 -1.0119e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.1425e-08 0.68472 0 3.3 -1.0119e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.1438e-08 0.64472 0 3.3 -1.0464e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.1463e-08 0.57 0 3.3 -1.1074e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.1472e-08 0.54125 0 3.3 -1.0817e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.1481e-08 0.5125 0 3.3 -1.0017e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.1491e-08 0.48375 0 3.3 -1.0017e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.15e-08 0.455 0 3.3 -1.0017e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.1509e-08 0.43589 0 3.3 -1.0817e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.1528e-08 0.39767 0 3.3 -1.0817e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.1554e-08 0.34292 0 3.3 -1.1126e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.1606e-08 0.236 0 3.3 -1.1453e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.1625e-08 0.21375 0 3.3 -1.1344e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.1643e-08 0.1915 0 3.3 -1.083e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.1681e-08 0.147 0 3.3 -1.1344e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.1704e-08 0.1325 0 3.3 -1.1418e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.1726e-08 0.118 0 3.3 -1.0995e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.1748e-08 0.1035 0 3.3 -1.0995e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.1771e-08 0.089 0 3.3 -1.0995e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.1787e-08 0.08225 0 3.3 -1.1255e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.1803e-08 0.0755 0 3.3 -1.0671e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.1819e-08 0.06875 0 3.3 -1.0671e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.1835e-08 0.062 0 3.3 -1.0671e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.1851e-08 0.057876 0 3.3 -1.1255e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.1875e-08 0.051626 0 3.3 -1.1057e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.1899e-08 0.045376 0 3.3 -1.1057e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.1932e-08 0.037 0 3.3 -1.1265e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.1949e-08 0.034 0 3.3 -1.1291e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.1966e-08 0.031 0 3.3 -1.0734e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.1983e-08 0.028 0 3.3 -1.0734e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.2e-08 0.025 0 3.3 -1.0734e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.2017e-08 0.023503 0 3.3 -1.1291e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.2051e-08 0.020508 0 3.3 -1.1291e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.2099e-08 0.016258 0 3.3 -1.1438e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.2193e-08 0.008 0 3.3 -1.1296e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.2227e-08 0.00675 0 3.3 -1.1449e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.2262e-08 0.0055 0 3.3 -1.1296e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.2296e-08 0.00425 0 3.3 -1.1296e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.233e-08 0.003 0 3.3 -1.1296e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.2355e-08 0.00275 0 3.3 -1.1446e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.238e-08 0.0025 0 3.3 -1.1082e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.243e-08 0.002 0 3.3 -1.1446e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.2468e-08 0.001964 0 3.3 -1.1423e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.2542e-08 0.0018921 0 3.3 -1.1423e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.2843e-08 0.0016045 0 3.3 -8.8116e-06 0.43833 1.5477 0.38219 0.045328 1.5092 2.0045 0.0085501 0.0016896 3.3342e-08 0.0011251 0 3.3 -6.9342e-06 0.43833 1.5477 0.38219 0.045328 1.5092 2.0045 0.0085501 0.0016896 3.3843e-08 0.00064573 0 3.3 -6.9342e-06 0.43833 1.5477 0.38219 0.045328 1.5092 2.0045 0.0085501 0.0016896 3.4342e-08 0.00016635 0 3.3 -6.9342e-06 0.43833 1.5477 0.38219 0.045328 1.5092 2.0045 0.0085501 0.0016896 3.4843e-08 -0.00031304 0 3.3 -6.9342e-06 0.43833 1.5477 0.38219 0.045328 1.5092 2.0045 0.0085501 0.0016896 3.5342e-08 -0.00079243 0 3.3 -6.9342e-06 0.43833 1.5477 0.38219 0.045328 1.5092 2.0045 0.0085501 0.0016896 3.5559e-08 -0.001 0 3.3 -9.8244e-06 0.43833 1.5477 0.38219 0.045328 1.5092 2.0045 0.0085501 0.0016896 3.5569e-08 -0.0025 0 3.3 -1.0913e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.558e-08 -0.004 0 3.3 -1.0151e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.559e-08 -0.0055 0 3.3 -1.0151e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.56e-08 -0.007 0 3.3 -1.0151e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.561e-08 -0.0078836 0 3.3 -1.0913e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.5625e-08 -0.0091336 0 3.3 -1.0565e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.5639e-08 -0.010384 0 3.3 -1.0565e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.5658e-08 -0.012 0 3.3 -1.083e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.5668e-08 -0.00875 0 3.3 -1.0913e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.5679e-08 -0.0055 0 3.3 -1.0151e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.5689e-08 -0.00225 0 3.3 -1.0151e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.5699e-08 0.001 0 3.3 -1.0151e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.5709e-08 0.012531 0 3.3 -1.0913e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.5725e-08 0.030531 0 3.3 -1.0671e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.5741e-08 0.048531 0 3.3 -1.0671e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.5763e-08 0.073 0 3.3 -1.0966e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.5775e-08 0.1005 0 3.3 -1.1014e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.5786e-08 0.128 0 3.3 -1.0296e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.5797e-08 0.1555 0 3.3 -1.0296e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.5809e-08 0.183 0 3.3 -1.0296e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.582e-08 0.2245 0 3.3 -1.0935e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.583e-08 0.266 0 3.3 -1.0182e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.5841e-08 0.3075 0 3.3 -1.0182e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.5851e-08 0.349 0 3.3 -1.0182e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.5858e-08 0.3885 0 3.3 -1.0602e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.5866e-08 0.428 0 3.3 -9.7266e-06 0.43833 1.5477 0.38221 0.04533 1.5092 2.0045 0.00855 0.0016896 3.5874e-08 0.4675 0 3.3 -9.7266e-06 0.43833 1.5477 0.38221 0.04533 1.5092 2.0045 0.00855 0.0016896 3.5881e-08 0.507 0 3.3 -9.7266e-06 0.43833 1.5477 0.38221 0.04533 1.5092 2.0045 0.00855 0.0016896 3.5889e-08 0.54807 0 3.3 -1.0602e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.5899e-08 0.60557 0 3.3 -1.0182e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.591e-08 0.66307 0 3.3 -1.0182e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.5923e-08 0.737 0 3.3 -1.0485e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.5931e-08 0.77075 0 3.3 -1.0602e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.5938e-08 0.8045 0 3.3 -9.7266e-06 0.43833 1.5477 0.38221 0.04533 1.5092 2.0045 0.00855 0.0016896 3.5953e-08 0.872 0 3.3 -1.0602e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.596e-08 0.9005 0 3.3 -1.0485e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.5967e-08 0.929 0 3.3 -9.5735e-06 0.43833 1.5477 0.38221 0.04533 1.5092 2.0045 0.00855 0.0016896 3.598e-08 0.986 0 3.3 -1.0485e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.5985e-08 1.006 0 3.3 -1.0119e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.599e-08 1.026 0 3.3 -9.1161e-06 0.43833 1.5477 0.38221 0.04533 1.5092 2.0045 0.00855 0.0016896 3.5995e-08 1.046 0 3.3 -9.1161e-06 0.43833 1.5477 0.38221 0.04533 1.5092 2.0045 0.00855 0.0016896 3.6e-08 1.066 0 3.3 -9.1161e-06 0.43833 1.5477 0.38221 0.04533 1.5092 2.0045 0.00855 0.0016896 3.6005e-08 1.0861 0 3.3 -1.0119e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.6015e-08 1.1263 0 3.3 -1.0119e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.6026e-08 1.1716 0 3.3 -1.0269e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.6045e-08 1.247 0 3.3 -1.083e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.6053e-08 1.2713 0 3.3 -1.0671e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.6061e-08 1.2955 0 3.3 -9.818e-06 0.43833 1.5477 0.38221 0.04533 1.5092 2.0045 0.0085501 0.0016896 3.6077e-08 1.344 0 3.3 -1.0671e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.6089e-08 1.3776 0 3.3 -1.1049e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.6103e-08 1.4169 0 3.3 -1.0526e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.6117e-08 1.4561 0 3.3 -1.0526e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.6133e-08 1.501 0 3.3 -1.0671e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.6143e-08 1.5305 0 3.3 -1.0891e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.6153e-08 1.56 0 3.3 -1.0119e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.6163e-08 1.5895 0 3.3 -1.0119e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.6173e-08 1.619 0 3.3 -1.0119e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.6183e-08 1.6428 0 3.3 -1.0891e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.6196e-08 1.6725 0 3.3 -1.0396e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.6208e-08 1.7023 0 3.3 -1.0396e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.6223e-08 1.738 0 3.3 -1.0602e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.6232e-08 1.759 0 3.3 -1.0763e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.6241e-08 1.78 0 3.3 -9.9419e-06 0.43833 1.5477 0.38221 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.6258e-08 1.822 0 3.3 -1.0763e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.6268e-08 1.852 0 3.3 -1.0891e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.6278e-08 1.882 0 3.3 -1.0119e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.6288e-08 1.912 0 3.3 -1.0119e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.6298e-08 1.942 0 3.3 -1.0119e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.6305e-08 1.9607 0 3.3 -1.0565e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.6312e-08 1.9795 0 3.3 -9.6778e-06 0.43833 1.5477 0.38221 0.04533 1.5092 2.0045 0.00855 0.0016896 3.6327e-08 2.017 0 3.3 -1.0565e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.6336e-08 2.0433 0 3.3 -1.0791e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.6345e-08 2.0695 0 3.3 -9.9801e-06 0.43833 1.5477 0.38221 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.6354e-08 2.0958 0 3.3 -9.9801e-06 0.43833 1.5477 0.38221 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.6363e-08 2.122 0 3.3 -9.9801e-06 0.43833 1.5477 0.38221 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.6369e-08 2.1402 0 3.3 -1.0396e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.6375e-08 2.1585 0 3.3 -9.459e-06 0.43833 1.5477 0.38221 0.04533 1.5092 2.0045 0.00855 0.0016896 3.6382e-08 2.1767 0 3.3 -9.459e-06 0.43833 1.5477 0.38221 0.04533 1.5092 2.0045 0.00855 0.0016896 3.6388e-08 2.195 0 3.3 -9.459e-06 0.43833 1.5477 0.38221 0.04533 1.5092 2.0045 0.00855 0.0016896 3.6394e-08 2.2114 0 3.3 -1.0396e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.6407e-08 2.2443 0 3.3 -1.0396e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.642e-08 2.2798 0 3.3 -1.0485e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.6442e-08 2.337 0 3.3 -1.0966e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.6451e-08 2.3593 0 3.3 -1.0817e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.646e-08 2.3815 0 3.3 -1.0017e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.6479e-08 2.426 0 3.3 -1.0817e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.6482e-08 2.4325 0 3.3 -9.3974e-06 0.43833 1.5477 0.38221 0.04533 1.5092 2.0045 0.00855 0.0016896 3.6485e-08 2.439 0 3.3 -8.2991e-06 0.43833 1.5477 0.3822 0.045331 1.5092 2.0045 0.00855 0.0016896 3.6491e-08 2.452 0 3.3 -9.3974e-06 0.43833 1.5477 0.38221 0.04533 1.5092 2.0045 0.00855 0.0016896 3.6493e-08 2.4567 0 3.3 -8.9497e-06 0.43833 1.5477 0.38221 0.04533 1.5092 2.0045 0.00855 0.0016896 3.6495e-08 2.4615 0 3.3 -7.8454e-06 0.43833 1.5477 0.3822 0.045332 1.5092 2.0045 0.00855 0.0016896 3.6498e-08 2.4662 0 3.3 -7.8454e-06 0.43833 1.5477 0.3822 0.045332 1.5092 2.0045 0.00855 0.0016896 3.65e-08 2.471 0 3.3 -7.8454e-06 0.43833 1.5477 0.3822 0.045332 1.5092 2.0045 0.00855 0.0016896 3.6502e-08 2.4752 0 3.3 -8.9497e-06 0.43833 1.5477 0.38221 0.04533 1.5092 2.0045 0.00855 0.0016896 3.6507e-08 2.4835 0 3.3 -8.9497e-06 0.43833 1.5477 0.38221 0.04533 1.5092 2.0045 0.00855 0.0016896 3.6525e-08 2.5168 0 3.3 -1.0791e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.6552e-08 2.5663 0 3.3 -1.1133e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.6578e-08 2.6158 0 3.3 -1.1133e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.6607e-08 2.669 0 3.3 -1.1185e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.6626e-08 2.7065 0 3.3 -1.1344e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.6645e-08 2.744 0 3.3 -1.083e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.6682e-08 2.819 0 3.3 -1.1344e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.6707e-08 2.8568 0 3.3 -1.1446e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.6732e-08 2.8945 0 3.3 -1.1082e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.6782e-08 2.97 0 3.3 -1.1446e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.68e-08 2.9895 0 3.3 -1.1315e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.6818e-08 3.009 0 3.3 -1.0777e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.6835e-08 3.0285 0 3.3 -1.0777e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.6853e-08 3.048 0 3.3 -1.0777e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.6871e-08 3.0624 0 3.3 -1.1315e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.6892e-08 3.0799 0 3.3 -1.0956e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.6914e-08 3.0974 0 3.3 -1.0956e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.6939e-08 3.118 0 3.3 -1.1089e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.6954e-08 3.1275 0 3.3 -1.1225e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.6969e-08 3.137 0 3.3 -1.062e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.7e-08 3.156 0 3.3 -1.1225e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.7023e-08 3.1654 0 3.3 -1.1423e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.7066e-08 3.1831 0 3.3 -1.1405e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.7109e-08 3.2009 0 3.3 -1.1405e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.7173e-08 3.227 0 3.3 -1.1461e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.7203e-08 3.2343 0 3.3 -1.1464e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.7234e-08 3.2415 0 3.3 -1.1225e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.7295e-08 3.256 0 3.3 -1.1464e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.7325e-08 3.26 0 3.3 -1.1464e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.7355e-08 3.264 0 3.3 -1.1214e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.7385e-08 3.268 0 3.3 -1.1214e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.7415e-08 3.272 0 3.3 -1.1214e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.7436e-08 3.274 0 3.3 -1.1398e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.7458e-08 3.276 0 3.3 -1.0946e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.7479e-08 3.278 0 3.3 -1.0946e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.75e-08 3.28 0 3.3 -1.0946e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.7521e-08 3.2811 0 3.3 -1.1398e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.7564e-08 3.2832 0 3.3 -1.1398e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.7633e-08 3.2867 0 3.3 -1.1446e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.7703e-08 3.2902 0 3.3 -1.1446e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.7778e-08 3.294 0 3.3 -1.1422e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.7827e-08 3.295 0 3.3 -1.1259e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.7876e-08 3.296 0 3.3 -1.1442e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.7974e-08 3.298 0 3.3 -1.1259e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.7978e-08 3.298 0 3.3 -9.7266e-06 0.43833 1.5477 0.38221 0.04533 1.5092 2.0045 0.00855 0.0016896 3.7982e-08 3.298 0 3.3 -8.6579e-06 0.43833 1.5477 0.3822 0.045331 1.5092 2.0045 0.00855 0.0016896 3.7985e-08 3.298 0 3.3 -8.6579e-06 0.43833 1.5477 0.3822 0.045331 1.5092 2.0045 0.00855 0.0016896 3.7989e-08 3.298 0 3.3 -8.6579e-06 0.43833 1.5477 0.3822 0.045331 1.5092 2.0045 0.00855 0.0016896 3.7993e-08 3.298 0 3.3 -9.7266e-06 0.43833 1.5477 0.38221 0.04533 1.5092 2.0045 0.00855 0.0016896 3.8e-08 3.298 0 3.3 -9.7266e-06 0.43833 1.5477 0.38221 0.04533 1.5092 2.0045 0.00855 0.0016896 3.803e-08 3.298 0 3.3 -1.1214e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.815e-08 3.2982 0 3.3 -1.1036e-05 0.43833 1.5477 0.3822 0.045329 1.5092 2.0045 0.0085501 0.0016896 3.863e-08 3.2986 0 3.3 -7.0898e-06 0.43833 1.5477 0.38219 0.045328 1.5092 2.0045 0.0085501 0.0016896 3.913e-08 3.2991 0 3.3 -6.9342e-06 0.43833 1.5477 0.38219 0.045328 1.5092 2.0045 0.0085501 0.0016896 3.963e-08 3.2996 0 3.3 -6.9342e-06 0.43833 1.5477 0.38219 0.045328 1.5092 2.0045 0.0085501 0.0016896 4e-08 3.3 0 3.3 -8.0702e-06 0.43833 1.5477 0.38219 0.045328 1.5092 2.0045 0.0085501 0.0016896 gwave2-20170109/examples/test1.tr0.binary0000644001226200000360000000365413034766135014677 00000000000000.p00010003000000009601 09/10/9814:01:43 Copyright (C) 1985-1997 by Avant! Corporation. 0 1 1 1 15 TIME v(a v(b i1(r1 $&%# p/ p_/p_0N(1<1c}2$202[ 22x292k2V2^3:3 3e3""3,X373BX3M3V3W-?< < 3W|?<]< |3X]@=C=/3Y=@`>w=q3[ @>{=R?3\@?0=3^C@?/=3f@@=T3q@@\2 <3|TO@@3ݞ@9dZmM@31?xla3[?{tu3? -MZ3\>63v>fE3#> d1%4=Ԓ4H=GI4'<%? 4 Y<|4 V<,/L\e4;Ο(<4;w0{4d ;ă>l-4R:j4„:V94q:$m4 9>n4!99:l4$L8߶&R4'.}8C쵪b4)ݯ8L4,7x4/<7fHQa{41E7 +d0a44w6ͫ:t47I6Fͳ~495ó4< 5A]4?W>5+竲\ 4Bp4Dmw4Gd>4J"4L84Ori$A4R!4Tl4V$^}qIgwave2-20170109/examples/rcsq.sp0000644001226200000360000000052213034766135013230 00000000000000* RC circuit driven by square wave * Run with command: SPICE_ASCIIRAWFILE=1 ngspice -r rcsq.raw -b rcsq.sp * unlike modern spices, GND and node 0 are not aliases for each other. vgnd 0 GND 0 R1 A B 50 C1 B GND 100pf Va A GND PWL (0 0 50n 0 51n 5 100n 5 101n 0 200n 0) .tran 0.5n 200n .plot tran v(A) V(B) .option POST=1 PROBE .end gwave2-20170109/examples/tlong.tr0.96010000644001226200000360000000711313034766135014067 0000000000000000010002000000009601 09/10/9809:55:34 Copyright (C) 1985-1997 by Avant! Corporation. 0 1 1 1 TIME v(areallylongtes tnodename v(b $&%# 1 TIME v(areallylongtes .00000E+00 .00000E+00 .00000E+00 .12500E-09 .00000E+00 .00000E+00 .25000E-09 .00000E+00 .00000E+00 .75000E-09 .00000E+00 .00000E+00 .27500E-08 .00000E+00 .00000E+00 .52500E-08 .00000E+00 .00000E+00 .77500E-08 .00000E+00 .00000E+00 .10250E-07 .00000E+00 .00000E+00 .12750E-07 .00000E+00 .00000E+00 .15250E-07 .00000E+00 .00000E+00 .17750E-07 .00000E+00 .00000E+00 .20250E-07 .00000E+00 .00000E+00 .22750E-07 .00000E+00 .00000E+00 .25250E-07 .00000E+00 .00000E+00 .27750E-07 .00000E+00 .00000E+00 .30250E-07 .00000E+00 .00000E+00 .32750E-07 .00000E+00 .00000E+00 .35250E-07 .00000E+00 .00000E+00 .37750E-07 .00000E+00 .00000E+00 .40250E-07 .00000E+00 .00000E+00 .42750E-07 .00000E+00 .00000E+00 .45250E-07 .00000E+00 .00000E+00 .47750E-07 .00000E+00 .00000E+00 .50000E-07 .00000E+00 .00000E+00 .50100E-07 .50000E+00 .98039E-02 .50200E-07 .10000E+01 .29220E-01 .50450E-07 .22500E+01 .10706E+00 .50700E-07 .35000E+01 .24208E+00 .51000E-07 .50000E+01 .47555E+00 .51250E-07 .50000E+01 .69100E+00 .51750E-07 .50000E+01 .11014E+01 .53750E-07 .50000E+01 .24009E+01 .56250E-07 .50000E+01 .34406E+01 .58750E-07 .50000E+01 .40643E+01 .61250E-07 .50000E+01 .44386E+01 .63750E-07 .50000E+01 .46632E+01 .66250E-07 .50000E+01 .47979E+01 .68750E-07 .50000E+01 .48787E+01 .71250E-07 .50000E+01 .49272E+01 .73750E-07 .50000E+01 .49563E+01 .76250E-07 .50000E+01 .49738E+01 .78750E-07 .50000E+01 .49843E+01 .81250E-07 .50000E+01 .49906E+01 .83750E-07 .50000E+01 .49943E+01 .86250E-07 .50000E+01 .49966E+01 .88750E-07 .50000E+01 .49980E+01 .91250E-07 .50000E+01 .49988E+01 .93750E-07 .50000E+01 .49993E+01 .96250E-07 .50000E+01 .49996E+01 .98750E-07 .50000E+01 .49997E+01 .10000E-06 .50000E+01 .49998E+01 .10025E-06 .37500E+01 .49403E+01 .10050E-06 .25000E+01 .48517E+01 .10100E-06 .00000E+00 .45087E+01 .10110E-06 .00000E+00 .44203E+01 .10120E-06 .00000E+00 .43336E+01 .10160E-06 .00000E+00 .40003E+01 .10320E-06 .00000E+00 .28967E+01 .10570E-06 .00000E+00 .17380E+01 .10820E-06 .00000E+00 .10428E+01 .11070E-06 .00000E+00 .62570E+00 .11320E-06 .00000E+00 .37542E+00 .11570E-06 .00000E+00 .22525E+00 .11820E-06 .00000E+00 .13515E+00 .12070E-06 .00000E+00 .81090E-01 .12320E-06 .00000E+00 .48654E-01 .12570E-06 .00000E+00 .29193E-01 .12820E-06 .00000E+00 .17516E-01 .13070E-06 .00000E+00 .10509E-01 .13320E-06 .00000E+00 .63056E-02 .13570E-06 .00000E+00 .37834E-02 .13820E-06 .00000E+00 .22700E-02 .14070E-06 .00000E+00 .13620E-02 .14320E-06 .00000E+00 .81721E-03 .14570E-06 .00000E+00 .49032E-03 .14820E-06 .00000E+00 .29419E-03 .15070E-06 .00000E+00 .17652E-03 .15320E-06 .00000E+00 .10591E-03 .15570E-06 .00000E+00 .63546E-04 .15820E-06 .00000E+00 .38128E-04 .16070E-06 .00000E+00 .22877E-04 .16320E-06 .00000E+00 .13726E-04 .16570E-06 .00000E+00 .82355E-05 .16820E-06 .00000E+00 .49413E-05 .17070E-06 .00000E+00 .29648E-05 .17320E-06 .00000E+00 .17789E-05 .17570E-06 .00000E+00 .10673E-05 .17820E-06 .00000E+00 .64040E-06 .18070E-06 .00000E+00 .00000E+00 .18320E-06 .00000E+00 .00000E+00 .18570E-06 .00000E+00 .00000E+00 .18820E-06 .00000E+00 .00000E+00 .19070E-06 .00000E+00 .00000E+00 .19320E-06 .00000E+00 .00000E+00 .19570E-06 .00000E+00 .00000E+00 .19820E-06 .00000E+00 .00000E+00 .20000E-06 .00000E+00 .00000E+00 .10000E+31 gwave2-20170109/examples/rcsq.raw0000644001226200000360000003003613034766135013402 00000000000000Title: * RC circuit driven by square wave Date: Sun Oct 8 22:29:16 2000 Plotname: Transient Analysis Flags: real No. Variables: 6 No. Points: 85 Command: version 12 Variables: 0 time time 1 gnd voltage 2 a voltage 3 b voltage 4 va#branch current 5 vgnd#branch current Values: 0 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 1 5.000000000000002e-12 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 2 1.000000000000000e-11 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 3 2.000000000000001e-11 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 4 4.000000000000002e-11 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 5 8.000000000000003e-11 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 6 1.600000000000001e-10 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 7 3.200000000000001e-10 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 8 6.400000000000003e-10 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 9 1.280000000000001e-09 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 10 2.560000000000001e-09 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 11 5.120000000000002e-09 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 12 9.120000000000005e-09 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 13 1.312000000000001e-08 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 14 1.712000000000001e-08 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 15 2.112000000000001e-08 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 16 2.512000000000002e-08 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 17 2.912000000000002e-08 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 18 3.312000000000002e-08 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 19 3.712000000000002e-08 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 20 4.112000000000003e-08 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 21 4.512000000000003e-08 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 22 4.912000000000003e-08 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 23 5.000000000000002e-08 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 24 5.001372000139946e-08 0.000000000000000e+00 6.860000699718387e-02 1.877233255427589e-04 -1.368245673432822e-03 -5.124549330888517e-20 25 5.004116000419834e-08 0.000000000000000e+00 2.058000209915847e-01 9.375892212019797e-04 -4.097248635407655e-03 -4.061522982084370e-19 26 5.009604000979610e-08 0.000000000000000e+00 4.802000489803864e-01 4.671574893413615e-03 -9.510569481739456e-03 -4.845028458294598e-19 27 5.016463932075743e-08 0.000000000000000e+00 8.231966037870162e-01 1.348821124072676e-02 -1.619416785092579e-02 -2.046431600566390e-18 28 5.030183794268007e-08 0.000000000000000e+00 1.509189713400243e+00 4.469003260352831e-02 -2.928999361593429e-02 3.435565634063442e-18 29 5.057623518652536e-08 0.000000000000000e+00 2.881175932626696e+00 1.595560010088557e-01 -5.443239863235680e-02 -2.175180608549043e-18 30 5.100000000000003e-08 0.000000000000000e+00 5.000000000000000e+00 4.669820287810404e-01 -9.066035942437919e-02 -9.893344823930228e-19 31 5.105487944876909e-08 0.000000000000000e+00 5.000000000000000e+00 5.161957696905909e-01 -8.967608460618819e-02 -4.531965080989409e-17 32 5.116463834630720e-08 0.000000000000000e+00 5.000000000000000e+00 6.135546511601278e-01 -8.772890697679744e-02 -9.128982292327947e-17 33 5.138415614138343e-08 0.000000000000000e+00 5.000000000000000e+00 8.019985348164886e-01 -8.396002930367023e-02 9.925870889104793e-17 34 5.182319173153590e-08 0.000000000000000e+00 5.000000000000000e+00 1.155110090919698e+00 -7.689779818160604e-02 3.686287386450715e-18 35 5.270126291184084e-08 0.000000000000000e+00 5.000000000000000e+00 1.775824363633995e+00 -6.448351272732010e-02 2.439454888092385e-17 36 5.445740527245070e-08 0.000000000000000e+00 5.000000000000000e+00 2.739084460252097e+00 -4.521831079495806e-02 -8.700722434196173e-18 37 5.796968999367044e-08 0.000000000000000e+00 5.000000000000000e+00 3.914456245269961e+00 -2.171087509460078e-02 4.725766219321192e-17 38 6.196968999367043e-08 0.000000000000000e+00 5.000000000000000e+00 4.534766962258554e+00 -9.304660754828919e-03 -7.386127300057499e-18 39 6.596968999367043e-08 0.000000000000000e+00 5.000000000000000e+00 4.800614412396523e+00 -3.987711752069547e-03 4.426255369172072e-17 40 6.996968999367042e-08 0.000000000000000e+00 5.000000000000000e+00 4.914549033884223e+00 -1.709019322315530e-03 3.081844675290046e-17 41 7.396968999367042e-08 0.000000000000000e+00 5.000000000000000e+00 4.963378157378952e+00 -7.324368524209568e-04 5.060513640076092e-17 42 7.796968999367042e-08 0.000000000000000e+00 5.000000000000000e+00 4.984304924590980e+00 -3.139015081804075e-04 -1.493488492598782e-17 43 8.196968999367041e-08 0.000000000000000e+00 5.000000000000000e+00 4.993273539110421e+00 -1.345292177915880e-04 1.168227840853131e-17 44 8.596968999367041e-08 0.000000000000000e+00 5.000000000000000e+00 4.997117231047323e+00 -5.765537905354279e-05 2.276824562219559e-17 45 8.996968999367041e-08 0.000000000000000e+00 5.000000000000000e+00 4.998764527591710e+00 -2.470944816579390e-05 1.387778780781446e-17 46 9.396968999367040e-08 0.000000000000000e+00 5.000000000000000e+00 4.999470511825018e+00 -1.058976349963103e-05 3.889575293791747e-18 47 9.796968999367040e-08 0.000000000000000e+00 5.000000000000000e+00 4.999773076496437e+00 -4.538470071260294e-06 -6.098637220230962e-18 48 1.000000000000000e-07 0.000000000000000e+00 5.000000000000000e+00 4.999849670542595e+00 -3.006589148100149e-06 -5.618877758906127e-17 49 1.001000000000000e-07 0.000000000000000e+00 4.500000000000027e+00 4.990048696610389e+00 9.800973932207243e-03 -2.831936074532138e-16 50 1.003000000000000e-07 0.000000000000000e+00 3.500000000000013e+00 4.951223257527631e+00 2.902446515055235e-02 1.127570259384925e-16 51 1.007000000000000e-07 0.000000000000000e+00 1.499999999999987e+00 4.762667622333200e+00 6.525335244666426e-02 -1.821459649775647e-16 52 1.010000000000000e-07 0.000000000000000e+00 0.000000000000000e+00 4.528919993847773e+00 9.057839987695547e-02 4.362829542081670e-16 53 1.010800000000000e-07 0.000000000000000e+00 0.000000000000000e+00 4.457598419141509e+00 8.915196838283018e-02 6.331740687315346e-16 54 1.012400000000000e-07 0.000000000000000e+00 0.000000000000000e+00 4.317201618538626e+00 8.634403237077252e-02 3.473783760643556e-16 55 1.015600000000000e-07 0.000000000000000e+00 0.000000000000000e+00 4.049468184830806e+00 8.098936369661612e-02 9.302454639925628e-17 56 1.022000000000000e-07 0.000000000000000e+00 0.000000000000000e+00 3.562314117482742e+00 7.124628234965484e-02 -4.835541689285350e-17 57 1.034800000000000e-07 0.000000000000000e+00 0.000000000000000e+00 2.753845665288082e+00 5.507691330576164e-02 -9.703609443745265e-18 58 1.060400000000000e-07 0.000000000000000e+00 0.000000000000000e+00 1.631258897272561e+00 3.262517794545123e-02 8.145068820797352e-18 59 1.100400000000000e-07 0.000000000000000e+00 0.000000000000000e+00 6.991109559739550e-01 1.398221911947910e-02 1.528047436846758e-18 60 1.133858977201869e-07 0.000000000000000e+00 0.000000000000000e+00 3.485682195025457e-01 6.971364390050914e-03 1.035074261544755e-18 61 1.164282441841334e-07 0.000000000000000e+00 0.000000000000000e+00 1.859494310844993e-01 3.718988621689985e-03 1.416239087809190e-18 62 1.196845929931872e-07 0.000000000000000e+00 0.000000000000000e+00 9.459453130354480e-02 1.891890626070896e-03 -3.214490034830070e-19 63 1.230850975933692e-07 0.000000000000000e+00 0.000000000000000e+00 4.658601991578762e-02 9.317203983157524e-04 -4.252105395216588e-19 64 1.265042731109810e-07 0.000000000000000e+00 0.000000000000000e+00 2.284599526971512e-02 4.569199053943023e-04 1.248314806016025e-19 65 1.298318782801816e-07 0.000000000000000e+00 0.000000000000000e+00 1.143772634369389e-02 2.287545268738777e-04 -2.890499932505300e-20 66 1.331512717055513e-07 0.000000000000000e+00 0.000000000000000e+00 5.736819040494918e-03 1.147363808098984e-04 -4.094874904382508e-20 67 1.364760822836329e-07 0.000000000000000e+00 0.000000000000000e+00 2.873913557732933e-03 5.747827115465866e-05 1.402898318889935e-20 68 1.398297329194433e-07 0.000000000000000e+00 0.000000000000000e+00 1.430397879060197e-03 2.860795758120394e-05 1.240770918829542e-20 69 1.431724290546777e-07 0.000000000000000e+00 0.000000000000000e+00 7.136933369316130e-04 1.427386673863226e-05 5.595049663308679e-21 70 1.465159079284737e-07 0.000000000000000e+00 0.000000000000000e+00 3.560326973084803e-04 7.120653946169606e-06 4.810882442608409e-21 71 1.498503209981507e-07 0.000000000000000e+00 0.000000000000000e+00 1.779731047438250e-04 3.559462094876501e-06 1.833859418030062e-21 72 1.531924800227155e-07 0.000000000000000e+00 0.000000000000000e+00 8.880996149927905e-05 1.776199229985581e-06 -6.158359660457291e-22 73 1.565315886053205e-07 0.000000000000000e+00 0.000000000000000e+00 4.434730451937012e-05 8.869460903874024e-07 1.218023451984333e-22 74 1.600788283551087e-07 0.000000000000000e+00 0.000000000000000e+00 2.112330844451934e-05 4.224661688903868e-07 8.271806125530277e-24 75 1.640788283551087e-07 0.000000000000000e+00 0.000000000000000e+00 9.052846476222577e-06 1.810569295244516e-07 -4.629626490882727e-23 76 1.680788283551087e-07 0.000000000000000e+00 0.000000000000000e+00 3.879791346952535e-06 7.759582693905070e-08 -1.809457589959748e-25 77 1.720788283551087e-07 0.000000000000000e+00 0.000000000000000e+00 1.662767720122515e-06 3.325535440245030e-08 -1.971016303349011e-24 78 1.760788283551088e-07 0.000000000000000e+00 0.000000000000000e+00 7.126147371953638e-07 1.425229474390728e-08 3.647995748329563e-24 79 1.800788283551088e-07 0.000000000000000e+00 0.000000000000000e+00 3.054063159408702e-07 6.108126318817403e-09 2.295749317261430e-24 80 1.840788283551088e-07 0.000000000000000e+00 0.000000000000000e+00 1.308884211175158e-07 2.617768422350316e-09 2.984797229866638e-25 81 1.880788283551088e-07 0.000000000000000e+00 0.000000000000000e+00 5.609503762179250e-08 1.121900752435850e-09 1.750892556356140e-25 82 1.920788283551088e-07 0.000000000000000e+00 0.000000000000000e+00 2.404073040933965e-08 4.808146081867930e-10 5.735334325318844e-26 83 1.960788283551088e-07 0.000000000000000e+00 0.000000000000000e+00 1.030317017543128e-08 2.060634035086256e-10 -2.726303288443817e-27 84 2.000000000000001e-07 0.000000000000000e+00 0.000000000000000e+00 4.498989352875767e-09 8.997978705751535e-11 -3.237485155027032e-26 gwave2-20170109/examples/quickTRAN.tr00000644001226200000360000000514013034766135014145 00000000000000=00050004000000009601 a simple transient run 09/15/9813:12:17 Copyright (C) 1985-1997 by Avant! Corporation. 0 1 1 1 1 8 1 1 8 8 TIME 0 1 2 I(v1 v(1 v(2 i(r2 i(c1 $&%# P1+w1w2Y2+w2N(?:ϗ?:5:2p?;CN?;C6HB:J,25q@<4ƻ@<4793;T2(@`<δc@`<δ7Ӫ;b3Y@=M껢1D@=M8R=;}3R@=be@=b8O=;3AF@=m@=m9P;3?@>c@>c9#;ҏ4@?仒@?: ; 4Fj@?4»?@?4:8nX;kv4|TO@?_Z. @?_Z:eH ;U 4@?Ċ@?Ċ:;@4 @?ӻ{ O@?:I;.d4α@?r`@?:h;Ȭ4@?ʻk7@?:T;50@?ûdk@?:Ƅ;)45ES@?̺^@?̺:Ѥ:5@p?# }@p?#:$: 5@ ?3kv_@ ?3:8oj5L??.9D??.:S,5?ʌf:h?ʌf:hۻOh5-'?ɽ:ΕP?ɽ:ΕPNP5?:?:M5Y?ſ:~?ſ:~J~5s_?|:?|:︻=5,X?:?:+5:KQ?4:{?4:{{5GJ?`H:R?`H:R R5U#D?x:~&?x:~&&5b=?`:fN?`:fNN5o6?K}:P_?K}:P_κ_5}g0?8E:R9O>R9O|O5A>>{9>>{9d5>9ԏ>9ԏNԏ5> 9!> 9!׺;!5c}>W9Oa>W9Oa)Oa5z>S9/p>S9/p/p5v>Y9>Y9 5ȅs>tK9z >tK9z 5;p>]9by>]9byy5l>H|t9ML=>H|t9ML=L=5ܧi>5di99>5di99⹹5]f>$9(:>$9(::5b>|9 >|9 ߹ 5_>XS9 >XS9 5\=8W=8WxW55X=8:=8:a:6u=+8=+8ԹK6Щ= W8^= W8^8^67=8+=8+6+qIPgwave2-20170109/examples/nisrc.N.sw00000644001226200000360000002633113034766135013667 0000000000000000010002000000009007 * 98/08/3114:57:35 Copyright (C) 1985-1997 by Avant!,Inc. 0 3 1 15 VOLTS v(a i1(m0 $&%# 3 1 15 VOLTS v(a .00000E+00 .00000E+00 .10000E-37 .10000E-01 .10000E-01 .41945E-12 .20000E-01 .20000E-01 .86644E-12 .30000E-01 .30000E-01 .13494E-11 .40000E-01 .40000E-01 .18788E-11 .50000E-01 .50000E-01 .24681E-11 .60000E-01 .60000E-01 .31341E-11 .70000E-01 .70000E-01 .38980E-11 .80000E-01 .80000E-01 .47868E-11 .90000E-01 .90000E-01 .58345E-11 .10000E+00 .10000E+00 .70843E-11 .11000E+00 .11000E+00 .85908E-11 .12000E+00 .12000E+00 .10423E-10 .13000E+00 .13000E+00 .12670E-10 .14000E+00 .14000E+00 .15442E-10 .15000E+00 .15000E+00 .18880E-10 .16000E+00 .16000E+00 .23163E-10 .17000E+00 .17000E+00 .28518E-10 .18000E+00 .18000E+00 .35233E-10 .19000E+00 .19000E+00 .43672E-10 .20000E+00 .20000E+00 .54298E-10 .21000E+00 .21000E+00 .67697E-10 .22000E+00 .22000E+00 .84612E-10 .23000E+00 .23000E+00 .10599E-09 .24000E+00 .24000E+00 .13302E-09 .25000E+00 .25000E+00 .16721E-09 .26000E+00 .26000E+00 .21050E-09 .27000E+00 .27000E+00 .26532E-09 .28000E+00 .28000E+00 .33476E-09 .29000E+00 .29000E+00 .42273E-09 .30000E+00 .30000E+00 .53421E-09 .31000E+00 .31000E+00 .67549E-09 .32000E+00 .32000E+00 .85457E-09 .33000E+00 .33000E+00 .10816E-08 .34000E+00 .34000E+00 .13693E-08 .35000E+00 .35000E+00 .17341E-08 .36000E+00 .36000E+00 .21966E-08 .37000E+00 .37000E+00 .27830E-08 .38000E+00 .38000E+00 .35265E-08 .39000E+00 .39000E+00 .44692E-08 .40000E+00 .40000E+00 .56644E-08 .41000E+00 .41000E+00 .71799E-08 .42000E+00 .42000E+00 .91014E-08 .43000E+00 .43000E+00 .11538E-07 .44000E+00 .44000E+00 .14627E-07 .45000E+00 .45000E+00 .18544E-07 .46000E+00 .46000E+00 .23511E-07 .47000E+00 .47000E+00 .29809E-07 .48000E+00 .48000E+00 .37794E-07 .49000E+00 .49000E+00 .47918E-07 .50000E+00 .50000E+00 .60754E-07 .51000E+00 .51000E+00 .77029E-07 .52000E+00 .52000E+00 .97664E-07 .53000E+00 .53000E+00 .12382E-06 .54000E+00 .54000E+00 .15699E-06 .55000E+00 .55000E+00 .19903E-06 .56000E+00 .56000E+00 .25232E-06 .57000E+00 .57000E+00 .31986E-06 .58000E+00 .58000E+00 .40545E-06 .59000E+00 .59000E+00 .51391E-06 .60000E+00 .60000E+00 .65131E-06 .61000E+00 .61000E+00 .82534E-06 .62000E+00 .62000E+00 .93514E-06 .63000E+00 .63000E+00 .11470E-05 .64000E+00 .64000E+00 .13889E-05 .65000E+00 .65000E+00 .16627E-05 .66000E+00 .66000E+00 .19702E-05 .67000E+00 .67000E+00 .23132E-05 .68000E+00 .68000E+00 .26935E-05 .69000E+00 .69000E+00 .31126E-05 .70000E+00 .70000E+00 .35721E-05 .71000E+00 .71000E+00 .40734E-05 .72000E+00 .72000E+00 .46179E-05 .73000E+00 .73000E+00 .52070E-05 .74000E+00 .74000E+00 .58419E-05 .75000E+00 .75000E+00 .65236E-05 .76000E+00 .76000E+00 .72534E-05 .77000E+00 .77000E+00 .80321E-05 .78000E+00 .78000E+00 .88607E-05 .79000E+00 .79000E+00 .97400E-05 .80000E+00 .80000E+00 .10671E-04 .81000E+00 .81000E+00 .11654E-04 .82000E+00 .82000E+00 .12689E-04 .83000E+00 .83000E+00 .13779E-04 .84000E+00 .84000E+00 .14921E-04 .85000E+00 .85000E+00 .16119E-04 .86000E+00 .86000E+00 .17371E-04 .87000E+00 .87000E+00 .18678E-04 .88000E+00 .88000E+00 .20040E-04 .89000E+00 .89000E+00 .21458E-04 .90000E+00 .90000E+00 .22931E-04 .91000E+00 .91000E+00 .24460E-04 .92000E+00 .92000E+00 .26046E-04 .93000E+00 .93000E+00 .27687E-04 .94000E+00 .94000E+00 .29384E-04 .95000E+00 .95000E+00 .31137E-04 .96000E+00 .96000E+00 .32946E-04 .97000E+00 .97000E+00 .34811E-04 .98000E+00 .98000E+00 .36731E-04 .99000E+00 .99000E+00 .38707E-04 .10000E+01 .10000E+01 .40739E-04 .10100E+01 .10100E+01 .42825E-04 .10200E+01 .10200E+01 .44967E-04 .10300E+01 .10300E+01 .47163E-04 .10400E+01 .10400E+01 .49414E-04 .10500E+01 .10500E+01 .51719E-04 .10600E+01 .10600E+01 .54077E-04 .10700E+01 .10700E+01 .56490E-04 .10800E+01 .10800E+01 .58955E-04 .10900E+01 .10900E+01 .61473E-04 .11000E+01 .11000E+01 .64044E-04 .11100E+01 .11100E+01 .66666E-04 .11200E+01 .11200E+01 .69341E-04 .11300E+01 .11300E+01 .72066E-04 .11400E+01 .11400E+01 .74843E-04 .11500E+01 .11500E+01 .77670E-04 .11600E+01 .11600E+01 .80546E-04 .11700E+01 .11700E+01 .83472E-04 .11800E+01 .11800E+01 .86448E-04 .11900E+01 .11900E+01 .89472E-04 .12000E+01 .12000E+01 .92544E-04 .12100E+01 .12100E+01 .95663E-04 .12200E+01 .12200E+01 .98830E-04 .12300E+01 .12300E+01 .10204E-03 .12400E+01 .12400E+01 .10530E-03 .12500E+01 .12500E+01 .10861E-03 .12600E+01 .12600E+01 .11196E-03 .12700E+01 .12700E+01 .11535E-03 .12800E+01 .12800E+01 .11879E-03 .12900E+01 .12900E+01 .12228E-03 .13000E+01 .13000E+01 .12580E-03 .13100E+01 .13100E+01 .12937E-03 .13200E+01 .13200E+01 .13298E-03 .13300E+01 .13300E+01 .13663E-03 .13400E+01 .13400E+01 .14032E-03 .13500E+01 .13500E+01 .14406E-03 .13600E+01 .13600E+01 .14783E-03 .13700E+01 .13700E+01 .15164E-03 .13800E+01 .13800E+01 .15549E-03 .13900E+01 .13900E+01 .15938E-03 .14000E+01 .14000E+01 .16331E-03 .14100E+01 .14100E+01 .16727E-03 .14200E+01 .14200E+01 .17128E-03 .14300E+01 .14300E+01 .17531E-03 .14400E+01 .14400E+01 .17939E-03 .14500E+01 .14500E+01 .18349E-03 .14600E+01 .14600E+01 .18764E-03 .14700E+01 .14700E+01 .19181E-03 .14800E+01 .14800E+01 .19602E-03 .14900E+01 .14900E+01 .20026E-03 .15000E+01 .15000E+01 .20454E-03 .15100E+01 .15100E+01 .20884E-03 .15200E+01 .15200E+01 .21318E-03 .15300E+01 .15300E+01 .21755E-03 .15400E+01 .15400E+01 .22195E-03 .15500E+01 .15500E+01 .22638E-03 .15600E+01 .15600E+01 .23083E-03 .15700E+01 .15700E+01 .23532E-03 .15800E+01 .15800E+01 .23983E-03 .15900E+01 .15900E+01 .24437E-03 .16000E+01 .16000E+01 .24894E-03 .16100E+01 .16100E+01 .25353E-03 .16200E+01 .16200E+01 .25815E-03 .16300E+01 .16300E+01 .26280E-03 .16400E+01 .16400E+01 .26747E-03 .16500E+01 .16500E+01 .27216E-03 .16600E+01 .16600E+01 .27688E-03 .16700E+01 .16700E+01 .28162E-03 .16800E+01 .16800E+01 .28638E-03 .16900E+01 .16900E+01 .29115E-03 .17000E+01 .17000E+01 .29594E-03 .17100E+01 .17100E+01 .30074E-03 .17200E+01 .17200E+01 .30554E-03 .17300E+01 .17300E+01 .31036E-03 .17400E+01 .17400E+01 .31519E-03 .17500E+01 .17500E+01 .32003E-03 .17600E+01 .17600E+01 .32488E-03 .17700E+01 .17700E+01 .32974E-03 .17800E+01 .17800E+01 .33461E-03 .17900E+01 .17900E+01 .33949E-03 .18000E+01 .18000E+01 .34438E-03 .18100E+01 .18100E+01 .34928E-03 .18200E+01 .18200E+01 .35419E-03 .18300E+01 .18300E+01 .35911E-03 .18400E+01 .18400E+01 .36404E-03 .18500E+01 .18500E+01 .36897E-03 .18600E+01 .18600E+01 .37392E-03 .18700E+01 .18700E+01 .37887E-03 .18800E+01 .18800E+01 .38383E-03 .18900E+01 .18900E+01 .38880E-03 .19000E+01 .19000E+01 .39377E-03 .19100E+01 .19100E+01 .39876E-03 .19200E+01 .19200E+01 .40375E-03 .19300E+01 .19300E+01 .40875E-03 .19400E+01 .19400E+01 .41376E-03 .19500E+01 .19500E+01 .41877E-03 .19600E+01 .19600E+01 .42380E-03 .19700E+01 .19700E+01 .42882E-03 .19800E+01 .19800E+01 .43386E-03 .19900E+01 .19900E+01 .43890E-03 .20000E+01 .20000E+01 .44395E-03 .20100E+01 .20100E+01 .44901E-03 .20200E+01 .20200E+01 .45407E-03 .20300E+01 .20300E+01 .45914E-03 .20400E+01 .20400E+01 .46422E-03 .20500E+01 .20500E+01 .46930E-03 .20600E+01 .20600E+01 .47439E-03 .20700E+01 .20700E+01 .47949E-03 .20800E+01 .20800E+01 .48459E-03 .20900E+01 .20900E+01 .48969E-03 .21000E+01 .21000E+01 .49481E-03 .21100E+01 .21100E+01 .49992E-03 .21200E+01 .21200E+01 .50505E-03 .21300E+01 .21300E+01 .51018E-03 .21400E+01 .21400E+01 .51531E-03 .21500E+01 .21500E+01 .52045E-03 .21600E+01 .21600E+01 .52559E-03 .21700E+01 .21700E+01 .53075E-03 .21800E+01 .21800E+01 .53590E-03 .21900E+01 .21900E+01 .54106E-03 .22000E+01 .22000E+01 .54623E-03 .22100E+01 .22100E+01 .55140E-03 .22200E+01 .22200E+01 .55657E-03 .22300E+01 .22300E+01 .56175E-03 .22400E+01 .22400E+01 .56693E-03 .22500E+01 .22500E+01 .57212E-03 .22600E+01 .22600E+01 .57732E-03 .22700E+01 .22700E+01 .58251E-03 .22800E+01 .22800E+01 .58772E-03 .22900E+01 .22900E+01 .59292E-03 .23000E+01 .23000E+01 .59813E-03 .23100E+01 .23100E+01 .60335E-03 .23200E+01 .23200E+01 .60857E-03 .23300E+01 .23300E+01 .61379E-03 .23400E+01 .23400E+01 .61902E-03 .23500E+01 .23500E+01 .62425E-03 .23600E+01 .23600E+01 .62948E-03 .23700E+01 .23700E+01 .63472E-03 .23800E+01 .23800E+01 .63996E-03 .23900E+01 .23900E+01 .64521E-03 .24000E+01 .24000E+01 .65046E-03 .24100E+01 .24100E+01 .65571E-03 .24200E+01 .24200E+01 .66096E-03 .24300E+01 .24300E+01 .66622E-03 .24400E+01 .24400E+01 .67149E-03 .24500E+01 .24500E+01 .67675E-03 .24600E+01 .24600E+01 .68202E-03 .24700E+01 .24700E+01 .68729E-03 .24800E+01 .24800E+01 .69257E-03 .24900E+01 .24900E+01 .69785E-03 .25000E+01 .25000E+01 .70313E-03 .25100E+01 .25100E+01 .70842E-03 .25200E+01 .25200E+01 .71371E-03 .25300E+01 .25300E+01 .71900E-03 .25400E+01 .25400E+01 .72429E-03 .25500E+01 .25500E+01 .72959E-03 .25600E+01 .25600E+01 .73489E-03 .25700E+01 .25700E+01 .74019E-03 .25800E+01 .25800E+01 .74549E-03 .25900E+01 .25900E+01 .75080E-03 .26000E+01 .26000E+01 .75611E-03 .26100E+01 .26100E+01 .76142E-03 .26200E+01 .26200E+01 .76674E-03 .26300E+01 .26300E+01 .77206E-03 .26400E+01 .26400E+01 .77738E-03 .26500E+01 .26500E+01 .78270E-03 .26600E+01 .26600E+01 .78802E-03 .26700E+01 .26700E+01 .79335E-03 .26800E+01 .26800E+01 .79868E-03 .26900E+01 .26900E+01 .80401E-03 .27000E+01 .27000E+01 .80935E-03 .27100E+01 .27100E+01 .81468E-03 .27200E+01 .27200E+01 .82002E-03 .27300E+01 .27300E+01 .82536E-03 .27400E+01 .27400E+01 .83070E-03 .27500E+01 .27500E+01 .83605E-03 .27600E+01 .27600E+01 .84139E-03 .27700E+01 .27700E+01 .84674E-03 .27800E+01 .27800E+01 .85209E-03 .27900E+01 .27900E+01 .85744E-03 .28000E+01 .28000E+01 .86279E-03 .28100E+01 .28100E+01 .86815E-03 .28200E+01 .28200E+01 .87351E-03 .28300E+01 .28300E+01 .87887E-03 .28400E+01 .28400E+01 .88423E-03 .28500E+01 .28500E+01 .88959E-03 .28600E+01 .28600E+01 .89495E-03 .28700E+01 .28700E+01 .90032E-03 .28800E+01 .28800E+01 .90569E-03 .28900E+01 .28900E+01 .91105E-03 .29000E+01 .29000E+01 .91642E-03 .29100E+01 .29100E+01 .92179E-03 .29200E+01 .29200E+01 .92717E-03 .29300E+01 .29300E+01 .93254E-03 .29400E+01 .29400E+01 .93792E-03 .29500E+01 .29500E+01 .94329E-03 .29600E+01 .29600E+01 .94867E-03 .29700E+01 .29700E+01 .95405E-03 .29800E+01 .29800E+01 .95943E-03 .29900E+01 .29900E+01 .96482E-03 .30000E+01 .30000E+01 .97020E-03 .30100E+01 .30100E+01 .97558E-03 .30200E+01 .30200E+01 .98097E-03 .30300E+01 .30300E+01 .98636E-03 .30400E+01 .30400E+01 .99174E-03 .30500E+01 .30500E+01 .99713E-03 .30600E+01 .30600E+01 .10025E-02 .30700E+01 .30700E+01 .10079E-02 .30800E+01 .30800E+01 .10133E-02 .30900E+01 .30900E+01 .10187E-02 .31000E+01 .31000E+01 .10241E-02 .31100E+01 .31100E+01 .10295E-02 .31200E+01 .31200E+01 .10349E-02 .31300E+01 .31300E+01 .10403E-02 .31400E+01 .31400E+01 .10457E-02 .31500E+01 .31500E+01 .10511E-02 .31600E+01 .31600E+01 .10565E-02 .31700E+01 .31700E+01 .10619E-02 .31800E+01 .31800E+01 .10673E-02 .31900E+01 .31900E+01 .10727E-02 .32000E+01 .32000E+01 .10781E-02 .32100E+01 .32100E+01 .10835E-02 .32200E+01 .32200E+01 .10889E-02 .32300E+01 .32300E+01 .10943E-02 .32400E+01 .32400E+01 .10997E-02 .32500E+01 .32500E+01 .11051E-02 .32600E+01 .32600E+01 .11105E-02 .32700E+01 .32700E+01 .11159E-02 .32800E+01 .32800E+01 .11213E-02 .32900E+01 .32900E+01 .11267E-02 .33000E+01 .33000E+01 .11321E-02 .10000E+31 gwave2-20170109/examples/tpwl.acs0000644001226200000360000004125413034766135013401 00000000000000#Time v(1) v(2) 0. 3.3 3.3 100.E-12 3.3 3.3 200.E-12 3.3 3.3 300.E-12 3.3 3.3 400.E-12 3.3 3.3 500.E-12 3.3 3.3 600.E-12 3.3 3.3 700.E-12 3.3 3.3 800.E-12 3.3 3.3 900.E-12 3.3 3.3 1.E-9 3.3 3.3 1.1E-9 3.3 3.3 1.2E-9 3.3 3.3 1.3E-9 3.3 3.3 1.4E-9 3.3 3.3 1.5E-9 3.3 3.3 1.6E-9 3.3 3.3 1.7E-9 3.3 3.3 1.8E-9 3.3 3.3 1.9E-9 3.3 3.3 2.E-9 3.3 3.3 2.1E-9 3.3 3.3 2.2E-9 3.3 3.3 2.3E-9 3.3 3.3 2.4E-9 3.3 3.3 2.5E-9 3.3 3.3 2.6E-9 3.3 3.3 2.7E-9 3.3 3.3 2.8E-9 3.3 3.3 2.9E-9 3.3 3.3 3.E-9 3.3 3.3 3.1E-9 3.3 3.3 3.2E-9 3.3 3.3 3.3E-9 3.3 3.3 3.4E-9 3.3 3.3 3.5E-9 3.3 3.3 3.6E-9 3.3 3.3 3.7E-9 3.3 3.3 3.8E-9 3.3 3.3 3.9E-9 3.3 3.3 4.E-9 3.3 3.3 4.1E-9 3.3 3.3 4.2E-9 3.3 3.3 4.3E-9 3.3 3.3 4.4E-9 3.3 3.3 4.5E-9 3.3 3.3 4.6E-9 3.3 3.3 4.7E-9 3.3 3.3 4.8E-9 3.3 3.3 4.9E-9 3.3 3.3 5.E-9 3.3 3.3 5.1E-9 3.3 3.3 5.2E-9 3.3 3.3 5.3E-9 3.3 3.3 5.4E-9 3.3 3.3 5.5E-9 3.3 3.3 5.6E-9 3.3 3.3 5.7E-9 3.3 3.3 5.8E-9 3.3 3.3 5.9E-9 3.3 3.3 6.E-9 3.3 3.3 6.1E-9 3.3 3.3 6.2E-9 3.3 3.3 6.3E-9 3.3 3.3 6.4E-9 3.3 3.3 6.5E-9 3.3 3.3 6.6E-9 3.3 3.3 6.7E-9 3.3 3.3 6.8E-9 3.3 3.3 6.9E-9 3.3 3.3 7.E-9 3.3 3.3 7.1E-9 3.3 3.3 7.2E-9 3.3 3.3 7.3E-9 3.3 3.3 7.4E-9 3.3 3.3 7.5E-9 3.3 3.3 7.6E-9 3.3 3.3 7.7E-9 3.3 3.3 7.8E-9 3.3 3.3 7.9E-9 3.3 3.3 8.E-9 3.3 3.3 8.1E-9 3.3 3.3 8.2E-9 3.3 3.3 8.3E-9 3.3 3.3 8.4E-9 3.3 3.3 8.5E-9 3.3 3.3 8.6E-9 3.3 3.3 8.7E-9 3.3 3.3 8.8E-9 3.3 3.3 8.9E-9 3.3 3.3 9.E-9 3.3 3.3 9.1E-9 3.3 3.3 9.2E-9 3.3 3.3 9.3E-9 3.3 3.3 9.4E-9 3.3 3.3 9.5E-9 3.3 3.3 9.6E-9 3.3 3.3 9.7E-9 3.3 3.3 9.8E-9 3.3 3.3 9.9E-9 3.3 3.3 10.E-9 3.3 3.3 10.1E-9 3.3 3.3 10.2E-9 3.3 3.3 10.3E-9 3.3 3.3 10.4E-9 3.3 3.3 10.5E-9 3.3 3.3 10.6E-9 3.3 3.3 10.7E-9 3.3 3.3 10.8E-9 3.3 3.3 10.9E-9 3.3 3.3 11.E-9 3.3 3.3 11.1E-9 3.3 3.3 11.2E-9 3.3 3.3 11.3E-9 3.3 3.3 11.4E-9 3.3 3.3 11.5E-9 3.3 3.3 11.6E-9 3.3 3.3 11.7E-9 3.3 3.3 11.8E-9 3.3 3.3 11.9E-9 3.3 3.3 12.E-9 3.3 3.3 12.1E-9 3.3 3.3 12.2E-9 3.3 3.3 12.3E-9 3.3 3.3 12.4E-9 2.7265 3.2727 12.5E-9 1.7863 3.1759 12.6E-9 0.84615 2.9988 12.7E-9 275.35E-9 2.7535 12.8E-9 249.12E-9 2.4912 12.9E-9 225.4E-9 2.254 13.E-9 203.93E-9 2.0393 13.1E-9 184.51E-9 1.8451 13.2E-9 166.94E-9 1.6694 13.3E-9 151.04E-9 1.5104 13.4E-9 136.65E-9 1.3665 13.5E-9 123.64E-9 1.2364 13.6E-9 111.86E-9 1.1186 13.7E-9 101.21E-9 1.0121 13.8E-9 91.571E-9 0.91571 13.9E-9 82.85E-9 0.8285 14.E-9 74.96E-9 0.7496 14.1E-9 67.821E-9 0.67821 14.2E-9 61.362E-9 0.61362 14.3E-9 55.518E-9 0.55518 14.4E-9 50.23E-9 0.5023 14.5E-9 45.446E-9 0.45446 14.6E-9 41.118E-9 0.41118 14.7E-9 37.202E-9 0.37202 14.8E-9 33.659E-9 0.33659 14.9E-9 30.454E-9 0.30454 15.E-9 27.553E-9 0.27553 15.1E-9 24.929E-9 0.24929 15.2E-9 22.555E-9 0.22555 15.3E-9 20.407E-9 0.20407 15.4E-9 18.463E-9 0.18463 15.5E-9 16.705E-9 0.16705 15.6E-9 15.114E-9 0.15114 15.7E-9 13.675E-9 0.13675 15.8E-9 12.372E-9 0.12372 15.9E-9 11.194E-9 0.11194 16.E-9 10.128E-9 0.10128 16.1E-9 9.1632E-9 0.091632 16.2E-9 8.2906E-9 0.082906 16.3E-9 7.501E-9 0.07501 16.4E-9 6.7866E-9 0.067866 16.5E-9 6.1403E-9 0.061403 16.6E-9 5.5555E-9 0.055555 16.7E-9 5.0264E-9 0.050264 16.8E-9 4.5477E-9 0.045477 16.9E-9 4.1146E-9 0.041146 17.E-9 3.7227E-9 0.037227 17.1E-9 3.3682E-9 0.033682 17.2E-9 3.0474E-9 0.030474 17.3E-9 2.7572E-9 0.027572 17.4E-9 2.4946E-9 0.024946 17.5E-9 2.257E-9 0.02257 17.6E-9 2.042E-9 0.02042 17.7E-9 1.8476E-9 0.018476 17.8E-9 1.6716E-9 0.016716 17.9E-9 1.5124E-9 0.015124 18.E-9 1.3684E-9 0.013684 18.1E-9 1.238E-9 0.01238 18.2E-9 1.1201E-9 0.011201 18.3E-9 1.0135E-9 0.010135 18.4E-9 916.9E-12 0.0091693 18.5E-9 829.6E-12 0.0082961 18.6E-9 750.6E-12 0.007506 18.7E-9 679.1E-12 0.0067911 18.8E-9 614.4E-12 0.0061443 18.9E-9 555.9E-12 0.0055592 19.E-9 503.E-12 0.0050297 19.1E-9 455.1E-12 0.0045507 19.2E-9 411.7E-12 0.0041173 19.3E-9 372.5E-12 0.0037252 19.4E-9 337.E-12 0.0033704 19.5E-9 304.9E-12 0.0030494 19.6E-9 275.9E-12 0.002759 19.7E-9 249.6E-12 0.0024962 19.8E-9 225.8E-12 0.0022585 19.9E-9 204.3E-12 0.0020434 20.E-9 184.9E-12 0.0018488 20.1E-9 167.3E-12 0.0016727 20.2E-9 151.3E-12 0.0015134 20.3E-9 136.9E-12 0.0013693 20.4E-9 123.9E-12 0.0012389 20.5E-9 112.1E-12 0.0011209 20.6E-9 101.4E-12 0.0010141 20.7E-9 91.75E-12 917.55E-6 20.8E-9 83.02E-12 830.16E-6 20.9E-9 75.11E-12 751.1E-6 21.E-9 67.96E-12 679.56E-6 21.1E-9 61.48E-12 614.84E-6 21.2E-9 55.63E-12 556.29E-6 21.3E-9 50.33E-12 503.31E-6 21.4E-9 45.54E-12 455.37E-6 21.5E-9 41.2E-12 412.E-6 21.6E-9 37.28E-12 372.77E-6 21.7E-9 33.73E-12 337.26E-6 21.8E-9 30.51E-12 305.14E-6 21.9E-9 27.61E-12 276.08E-6 22.E-9 24.98E-12 249.79E-6 22.1E-9 22.6E-12 226.E-6 22.2E-9 20.45E-12 204.48E-6 22.3E-9 18.5E-12 185.E-6 22.4E-9 16.74E-12 167.38E-6 22.5E-9 15.14E-12 151.44E-6 22.6E-9 0.11135 0.0054394 22.7E-9 1.1236 0.063729 22.8E-9 2.1359 0.21287 22.9E-9 3.1482 0.44422 23.E-9 3.3 0.70897 23.1E-9 3.3 0.95574 23.2E-9 3.3 1.179 23.3E-9 3.3 1.381 23.4E-9 3.3 1.5638 23.5E-9 3.3 1.7291 23.6E-9 3.3 1.8787 23.7E-9 3.3 2.0141 23.8E-9 3.3 2.1366 23.9E-9 3.3 2.2474 24.E-9 3.3 2.3476 24.1E-9 3.3 2.4383 24.2E-9 3.3 2.5204 24.3E-9 3.3 2.5946 24.4E-9 3.3 2.6618 24.5E-9 3.3 2.7226 24.6E-9 3.3 2.7776 24.7E-9 3.3 2.8273 24.8E-9 3.3 2.8723 24.9E-9 3.3 2.9131 25.E-9 3.3 2.9499 25.1E-9 3.3 2.9833 25.2E-9 3.3 3.0134 25.3E-9 3.3 3.0407 25.4E-9 3.3 3.0654 25.5E-9 3.3 3.0878 25.6E-9 3.3 3.108 25.7E-9 3.3 3.1263 25.8E-9 3.3 3.1428 25.9E-9 3.3 3.1578 26.E-9 3.3 3.1713 26.1E-9 3.3 3.1836 26.2E-9 3.3 3.1947 26.3E-9 3.3 3.2047 26.4E-9 3.3 3.2138 26.5E-9 3.3 3.222 26.6E-9 3.3 3.2294 26.7E-9 3.3 3.2361 26.8E-9 3.3 3.2422 26.9E-9 3.3 3.2477 27.E-9 3.3 3.2527 27.1E-9 3.3 3.2572 27.2E-9 3.3 3.2613 27.3E-9 3.3 3.265 27.4E-9 3.3 3.2683 27.5E-9 3.3 3.2713 27.6E-9 3.3 3.2741 27.7E-9 3.3 3.2765 27.8E-9 3.3 3.2788 27.9E-9 3.3 3.2808 28.E-9 3.3 3.2826 28.1E-9 3.3 3.2843 28.2E-9 3.3 3.2858 28.3E-9 3.3 3.2871 28.4E-9 3.3 3.2884 28.5E-9 3.3 3.2895 28.6E-9 3.3 3.2905 28.7E-9 3.3 3.2914 28.8E-9 3.3 3.2922 28.9E-9 3.3 3.2929 29.E-9 3.3 3.2936 29.1E-9 3.3 3.2942 29.2E-9 3.3 3.2948 29.3E-9 3.3 3.2953 29.4E-9 3.3 3.2957 29.5E-9 3.3 3.2961 29.6E-9 3.3 3.2965 29.7E-9 3.3 3.2968 29.8E-9 3.3 3.2971 29.9E-9 3.3 3.2974 30.E-9 3.3 3.2977 30.1E-9 3.3 3.2979 30.2E-9 3.3 3.2981 30.3E-9 3.3 3.2983 30.4E-9 3.3 3.2984 30.5E-9 3.3 3.2986 30.6E-9 3.3 3.2987 30.7E-9 3.3 3.2988 30.8E-9 3.3 3.2989 30.9E-9 3.3 3.299 31.E-9 3.3 3.2991 31.1E-9 3.3 3.2992 31.2E-9 3.3 3.2993 31.3E-9 3.3 3.2994 31.4E-9 3.3 3.2994 31.5E-9 3.3 3.2995 31.6E-9 3.3 3.2995 31.7E-9 3.3 3.2996 31.8E-9 3.3 3.2996 31.9E-9 3.3 3.2996 32.E-9 3.3 3.2997 32.1E-9 3.3 3.2997 32.2E-9 3.3 3.2997 32.3E-9 3.3 3.2998 32.4E-9 2.7265 3.2725 32.5E-9 1.7863 3.1757 32.6E-9 0.84615 2.9986 32.7E-9 275.33E-9 2.7533 32.8E-9 249.11E-9 2.4911 32.9E-9 225.39E-9 2.2539 33.E-9 203.92E-9 2.0392 33.1E-9 184.5E-9 1.845 33.2E-9 166.93E-9 1.6693 33.3E-9 151.03E-9 1.5103 33.4E-9 136.65E-9 1.3665 33.5E-9 123.63E-9 1.2363 33.6E-9 111.86E-9 1.1186 33.7E-9 101.2E-9 1.012 33.8E-9 91.566E-9 0.91566 33.9E-9 82.846E-9 0.82846 34.E-9 74.956E-9 0.74956 34.1E-9 67.817E-9 0.67817 34.2E-9 61.358E-9 0.61358 34.3E-9 55.515E-9 0.55515 34.4E-9 50.227E-9 0.50227 34.5E-9 45.444E-9 0.45444 34.6E-9 41.116E-9 0.41116 34.7E-9 37.2E-9 0.372 34.8E-9 33.657E-9 0.33657 34.9E-9 30.452E-9 0.30452 35.E-9 27.552E-9 0.27552 35.1E-9 24.928E-9 0.24928 35.2E-9 22.554E-9 0.22554 35.3E-9 20.406E-9 0.20406 35.4E-9 18.462E-9 0.18462 35.5E-9 16.704E-9 0.16704 35.6E-9 15.113E-9 0.15113 35.7E-9 13.674E-9 0.13674 35.8E-9 12.371E-9 0.12371 35.9E-9 11.193E-9 0.11193 36.E-9 10.127E-9 0.10127 36.1E-9 9.1627E-9 0.091627 36.2E-9 8.2901E-9 0.082901 36.3E-9 7.5005E-9 0.075005 36.4E-9 6.7862E-9 0.067862 36.5E-9 6.1399E-9 0.061399 36.6E-9 5.5552E-9 0.055552 36.7E-9 5.0261E-9 0.050261 36.8E-9 4.5474E-9 0.045474 36.9E-9 4.1143E-9 0.041143 37.E-9 3.7225E-9 0.037225 37.1E-9 3.368E-9 0.03368 37.2E-9 3.0472E-9 0.030472 37.3E-9 2.757E-9 0.02757 37.4E-9 2.4944E-9 0.024944 37.5E-9 2.2569E-9 0.022569 37.6E-9 2.0419E-9 0.020419 37.7E-9 1.8475E-9 0.018475 37.8E-9 1.6715E-9 0.016715 37.9E-9 1.5123E-9 0.015123 38.E-9 1.3683E-9 0.013683 38.1E-9 1.238E-9 0.01238 38.2E-9 1.1201E-9 0.011201 38.3E-9 1.0134E-9 0.010134 38.4E-9 916.9E-12 0.0091688 38.5E-9 829.6E-12 0.0082956 38.6E-9 750.6E-12 0.0075055 38.7E-9 679.1E-12 0.0067907 38.8E-9 614.4E-12 0.006144 38.9E-9 555.9E-12 0.0055589 39.E-9 502.9E-12 0.0050294 39.1E-9 455.E-12 0.0045504 39.2E-9 411.7E-12 0.0041171 39.3E-9 372.5E-12 0.003725 39.4E-9 337.E-12 0.0033702 39.5E-9 304.9E-12 0.0030492 39.6E-9 275.9E-12 0.0027588 39.7E-9 249.6E-12 0.0024961 39.8E-9 225.8E-12 0.0022584 39.9E-9 204.3E-12 0.0020433 40.E-9 184.9E-12 0.0018487 40.1E-9 167.3E-12 0.0016726 40.2E-9 151.3E-12 0.0015133 40.3E-9 136.9E-12 0.0013692 40.4E-9 123.9E-12 0.0012388 40.5E-9 112.1E-12 0.0011208 40.6E-9 101.4E-12 0.0010141 40.7E-9 91.75E-12 917.49E-6 40.8E-9 83.01E-12 830.11E-6 40.9E-9 75.11E-12 751.05E-6 41.E-9 67.95E-12 679.53E-6 41.1E-9 61.48E-12 614.81E-6 41.2E-9 55.63E-12 556.26E-6 41.3E-9 50.33E-12 503.28E-6 41.4E-9 45.53E-12 455.35E-6 41.5E-9 41.2E-12 411.98E-6 41.6E-9 37.27E-12 372.74E-6 41.7E-9 33.72E-12 337.25E-6 41.8E-9 30.51E-12 305.13E-6 41.9E-9 27.61E-12 276.07E-6 42.E-9 24.98E-12 249.77E-6 42.1E-9 22.6E-12 225.99E-6 42.2E-9 20.45E-12 204.46E-6 42.3E-9 18.5E-12 184.99E-6 42.4E-9 16.74E-12 167.37E-6 42.5E-9 15.14E-12 151.43E-6 42.6E-9 0.11135 0.0054394 42.7E-9 1.1236 0.063729 42.8E-9 2.1359 0.21287 42.9E-9 3.1482 0.44422 43.E-9 3.3 0.70897 43.1E-9 3.3 0.95574 43.2E-9 3.3 1.179 43.3E-9 3.3 1.381 43.4E-9 3.3 1.5638 43.5E-9 3.3 1.7291 43.6E-9 3.3 1.8787 43.7E-9 3.3 2.0141 43.8E-9 3.3 2.1366 43.9E-9 3.3 2.2474 44.E-9 3.3 2.3476 44.1E-9 3.3 2.4383 44.2E-9 3.3 2.5204 44.3E-9 3.3 2.5946 44.4E-9 3.3 2.6618 44.5E-9 3.3 2.7226 44.6E-9 3.3 2.7776 44.7E-9 3.3 2.8273 44.8E-9 3.3 2.8723 44.9E-9 3.3 2.9131 45.E-9 3.3 2.9499 45.1E-9 3.3 2.9833 45.2E-9 3.3 3.0134 45.3E-9 3.3 3.0407 45.4E-9 3.3 3.0654 45.5E-9 3.3 3.0878 45.6E-9 3.3 3.108 45.7E-9 3.3 3.1263 45.8E-9 3.3 3.1428 45.9E-9 3.3 3.1578 46.E-9 3.3 3.1713 46.1E-9 3.3 3.1836 46.2E-9 3.3 3.1947 46.3E-9 3.3 3.2047 46.4E-9 3.3 3.2138 46.5E-9 3.3 3.222 46.6E-9 3.3 3.2294 46.7E-9 3.3 3.2361 46.8E-9 3.3 3.2422 46.9E-9 3.3 3.2477 47.E-9 3.3 3.2527 47.1E-9 3.3 3.2572 47.2E-9 3.3 3.2613 47.3E-9 3.3 3.265 47.4E-9 3.3 3.2683 47.5E-9 3.3 3.2713 47.6E-9 3.3 3.2741 47.7E-9 3.3 3.2765 47.8E-9 3.3 3.2788 47.9E-9 3.3 3.2808 48.E-9 3.3 3.2826 48.1E-9 3.3 3.2843 48.2E-9 3.3 3.2858 48.3E-9 3.3 3.2871 48.4E-9 3.3 3.2884 48.5E-9 3.3 3.2895 48.6E-9 3.3 3.2905 48.7E-9 3.3 3.2914 48.8E-9 3.3 3.2922 48.9E-9 3.3 3.2929 49.E-9 3.3 3.2936 49.1E-9 3.3 3.2942 49.2E-9 3.3 3.2948 49.3E-9 3.3 3.2953 49.4E-9 3.3 3.2957 49.5E-9 3.3 3.2961 49.6E-9 3.3 3.2965 49.7E-9 3.3 3.2968 49.8E-9 3.3 3.2971 49.9E-9 3.3 3.2974 50.E-9 3.3 3.2977 gwave2-20170109/examples/diffpair.braw0000644001226200000360000004471213034766135014366 00000000000000Title: SIMPLE DIFFERENTIAL PAIR Date: Wed Oct 4 22:38:21 2000 Plotname: AC Analysis Flags: complex No. Variables: 14 No. Points: 81 Command: version 12 Variables: 0 frequency frequency grid=3 1 V(7) voltage 2 V(8) voltage 3 V(1) voltage 4 V(2) voltage 5 V(6) voltage 6 V(3) voltage 7 V(4) voltage 8 V(5) voltage 9 q2#base voltage 10 q1#base voltage 11 vin#branch current 12 vee#branch current 13 vcc#branch current Binary: ?`?`xD?x79իJ?7LjDx>3=^nQL&>Z?~aOs29OQ@`X7p?Ԧ z>j4?!jhf{ś !hٽ' ?,UB_ȃ I2=&$?`?%`xD?G[w;իJ?qYC~>4=^nQZP؄>Z? -Ns29OQ@9[7p?=5̀>(j4?N,f?!ś !zU' ?G YG_ȃ _S=S`[?`?C_xD?UtUZS?իJ?qf;>=^nQ'#a?Z?|j!Ls29OQ@W\^7p? J N'>/j4?|!ś !>6' ?}<`/nM _ȃ =[-?`?]xD?pوDիJ?%&5>=^nQ$?Z?\T&tJs29OQ@Y~e7p?u+D x>j4?GbKU'ś !`27qr' ?l&JR_ȃ j$=`W@`?[xD?8HMիJ?`pz>=^nQ5O ?Z?BxHy,xFs29OQ@%̓ n7p?推WÐ>,j4?㉒40ś !k3' ?':YW_ȃ a=U[:XL @`?XxD?WZ[իJ?t]pX/>=^nQq*W? Z?n1$@s29OQ@[Q|Q~7p?2sz>Dj4?y};?ś ! hX*' ?\M_ȃ ߮=mR<@`?sRxD?u㣰ʘ/rիJ?)'>=^nQf|? Z?6F6!6s29OQ@n`37p?`Q>j4?y[E9Vś !nc' ?،F?bi_ȃ ~!w3=C( @`?IxD?zb6իJ?MԦ?g>=^nQ{?Z?(+m Kj4?P*zś !q' ?bfR_ȃ byϫ=4=@`?n;xD? iիJ?R#>=^nQϛL!?Z?c.A s29OQ@OG!Q7p?\tW >ŧj4?T[Zś !bɆi' ?v9l_ȃ 9q=F5@`?%xD?jGgۧm'֫J?q%r^>=^nQpW%?Z? O9F?r29OQ@ڲ%^8p?b\G5>,j4?$>4ƛ !T|S ' ?74rD_ȃ x{ =$@`?xD?R~B#֫J?qD߄U>K=^nQmj+?Z?&zekKr29OQ@=[xb+L8p?e >,hj4?_qa Tƛ !bc' ?v=tv%_ȃ )=/;-)@`?nwD?׋`׫J?><^nQ*)B1?Z?&CyQAr29OQ@<19p?B>_*j4?a9?uǛ !iB̎' ?L|_ȃ $x7v=mx4/@`?cpwD?0ثJ?U >H<^nQk"5?Z?+V7q29OQ@ l5Jx;p?Rʑ"q>li4?2R$-ț !TLLAD' ?#ݤ)_ȃ :p=rSY3@`?DvD?ֱ33,۫J?kC>GM;^nQciOZ;?jZ?bos[p29OQ@YQ;B=p?>0-i4?µ56˛ !> y' ?q0݆-_ȃ #4Rɭ=|Im9@`?vD?iþܩޫJ?W >9^nQ̱7A? Z?ѧTˑao29OQ@&`2AغAp?->)7h4? N',žVΛ !⾛$)' ? k0Ɍt_ȃ XI=l=/In?@`?tD?op۞Ⱦ1J?E.>F7^nQoUiE?nZ?Ecf1l29OQ@8CE#Gp?Ka>:f4?˾Nvԛ ! 8:4)' ? Z6_ȃ ԔZy=C@`?MorD?y\ξ\J?7&M0>D]3^nQo"IK?{Z?jÆkзh29OQ@hRLAKKtQp?Ӛ>:Gd4? pY Ѿsݛ !aû/' ?0Xϖ_ȃ \T=S2I@`?nD? }Ӿ~J?G>*-^nQ#@-Q?Z?Mc;$qb29OQ@ x+'Q `p?󟮛x>s`4?!uվ !W 3' ?q :ַ_ȃ 1x4a=AO@`?qiD?AĎؾJ?r?֚>V#^nQJ"dПU?Z?vaX29OQ@= "Uxp?E]Q>icZ4?G Vq۾G !v3%9' ?5<_ȃ ;W=O8aS@`?`D?Ntё޾33J? v>^nQbL-9[?Z?>dۣ{I29OQ@}P0[Up?XL>P4? fb& !?' ?W_ȃ &A=Y@`?'RD?(urkJ?OB s>^nQCjD"a?Z?ς|p029OQ@zc8a*p?W/Y>ċA4?}yh^ !P~C' ?+nMQ^ȃ ^!W=p ey_@`?gӐ^nQ˼FWe?#Z?~xOR 29OQ@UZ eg)4?7a5 !q fIy' ?}]^ȃ M٩E=GՀc@`?!D?<MJ?\2 >n^nQZ(k?Z?p0˶S19OQ@"G kaq?>%4?m*$G !-(ROUm' ?hk]ȃ g݌{=Roh@`?kD?Jj})J?cC>3^nQqq?Z?vuqVi19OQ@my*qr?Ӏ%>4?k2#[( !qhSY' ?MU;񔼽[ȃ WBӝL>`\] fo@`?D?a?BqJ?o$>~^nQ=u?ʔZ?`>X09OQ@&~u_aGt?I81>rff4?7ey̎ !v^/Yg:' ?BÔYȃ iZ@L>`s@`?~*D?hJ?C+>#^nQ2{?aXZ?B1ʼn/9OQ@Z{v?m|?#4?jš !,1+_' ?%Iƽ6Uȃ yWj >exx@`?w%D?XY^ 3J?&{?^nQ?Z?{oD:Tg_O.9OQ@kz?[ۇ?4?/NyH !KZcv' ?$5n̽Oȃ 5 B>R@`?ɣD?aR1bPJ?κ7?^nQ] x?`Z?H5J襾xk+9OQ@qc?B|͸V! ?*^4?hk'j ٪ !&h+>' ?H:ѽFȃ O5B> 9@`?D?Pui"J?+o ?`P׆^nQOm?^pZ?z8 (9OQ@vksى?Mqpr?4?& !roo"y' ?Kֽ&7ȃ ƻAZ>9҈@`?{8D?R7J?" ?^nQ20@?4Z?3/i\!9OQ@#{ט?Nb?>4?,DA+ !p{Ss@' ?Qrܽ ȃ Qq7!>@@`?9ИD?MfOhSb^J?ϲ?cw^nQ0k? Z?;F۵YS9OQ@Pdv?$~?rK۱4?% !hxQ' ?1MCȃ hPF%>)=&@`?۝=D?jRן0J?-?Cg^nQf_? Z?=c~ 9OQ@[ 9D֛?ݶh ?`ѱ4?h !a@N[A' ?\gي潗zȃ džږI+>f Ø@`?"eD? F#D>J?J< "??ǝO^nQ(ߤj?%Z?V->RX8OQ@:r%,~?b$?U±4?o;`4%֑2 !ySf' ?€a콬aȃ y0x 8-1>lK -@`?^mD?SrD(BޔJ?w1p'?w;)^nQq^?Y?vÒbžr8OQ@5WUp?qP眮*?w;4?Ȩld*m{Ŋ !ȆوQ' ?eȃ c՟Gş5>Yş@`?JD?%c:D.>+J?*&-?e]nQ'??cY?os˾78OQ@ު^|?^0? Ⰵ4?gPS0dˏ !_4H' ?-}gȃ jO9;><=y)@`? D?761;30J?FC;2?UC]nQH?4 Y?WGѾq5-8OQ@YU鰿(?MTڛ4?>%1J4?m'5P? !&Y,' ?O`kȃ nu"A>^$@`?,C?7L58^KJ?37?,\nQ( Q?Y?G)վ4i7OQ@ Kgl?]>l9?}4?S:F@S !bʘLx' ?HgAbȃ @@E>nQߓ@`?N7C?d˪z>/jJ?VG=?p\nQ`oֺ?\sY?((c۾=6OQ@7rgκ)? T@?2-pV4?j@!5#G' ?Nzoqpȃ 83(K>kNG͒@`?/_B? ք/C - J?$n۰B?%ZnQ ȃ Mg0iQ>GH@`? A?,9'HF,J?:_rćG?â XnQD?@X?})At"2OQ@t3>ſ}N?hi$I?w(4? _qJ8g!DX枻r & ?psmjȃ 7)U> @`?(>?O1hN]J?rNrM?J\TnQ~W:_?W?ҌR .OQ@|ʿl?оDJP?R_-4?5NP]*!!v/#%% ?xaȃ v)$[>x@`?R*;?]V#S%J?$ھxR?dNnQ?VV?2m)OQ@+XпM?1¼тT?&34?ٳ U\v.!h,mU$ ?/h-mdȃ p+0 a>?NIw@`?E6?lj)yX ;J?e3 eyW?lDnQR7?S?rAΦXOQ@a\r91տń?QUY?,4?uRZgjD! ܝ]" ?誼!ȃ Pxe>;'|@`?-?IЯU^[\J?w*G]?5_5nQ)H?dL"P?^AOQ@ ڿd5?'d@`?V$٘4?` `bf!5'9! ?\T&JSȃ Wak>CP@`?" ?/cVdJ?l9b?iY-nQk%?XQJ?>HI`([NQ@/~_ :?t]r(vd?pY/4?j/e ڐ!xM4Vþa ?ޜx,yǃ Yq>׳@`?ug ?^bK}u h}NJ?_6jg?m{mQgl*?тA?J(NQ@--#a?hU*A;i?3Mr4?3 pj=!nWW$Ⱦ4U ?N1^\eǃ B"cku>Vp@`?a.?-L[YBnlK?\OÍzm?ؼmQa ?m}2?[y8r1 X.8|NQ@Ϝ꿛=*??Ś6p?N4?r7}pP_:}!BξT] ?fx{F6WUz~ƃ ڂqQz>%%x@`?ENߴ?ί\ s'u?L? r? F^mQFBp "@`?G`?MGw椏M?qZw?#/llQ(?m&?wvZ yMQ@.FsVh?-4ٰy?I3?ٗU_z!pE)ؾQU ?K,Aƒ ? M^>l,d@`?ۢ?,~f>O?UT<{e}?v5kQ3u?ky?U{ 3LQ@ľ>щ ?G+?j $3?BF o!72޾bׯ ?ChL9F1 7}>j@`?/Ġ?Uꪼ\2R?ԕp?) bjQ~59@ImK`?[S!HF2=KQ@k@27kl?ؿX?װ<2?*h"ℿ0!#qJ-,[ ?leK} Jq>H@`? ?]b䇿r$X?3uoF?m`hQ| ǭ @2?r{%ЬHQ@l,/M.~-(?dRgG?,0?fH#! k.w} ?tQ̱nt kQ>ЍXA`?v/?ZJ xtd`?qF?ҙ`dQtv @E?ct+/;EQ@mn >@M;?˗h>?{.?Bwb "!J:}0% ?T@+V! j֚>l 1[A`?_X`e?P䒿sNJpm?_Xg?g[^QƾԢ@yw?薐/ 1Ch?Q@%;yue+?rK{>? *?DsȔZN/`!{@X}/ ?P-=\[Ԟn "E>sT,%A`?yKPݷfMA`?}?5|ɝR쉢?MX?cFQ虼:@IP?:w6'Q@*5N1%e? ?M=iO?>j$bdn4"㻀c) ?66f.p. YT)ƪ>lLA`?+bP?0ۧd? ~0*?!=OM0Q ݓl @zu?M@anQ@UX}g nx)?t?Mc>?HqZ5i" Oz;5| ?x+k Ԃ 9l\ڰ>; A`?MPm?W{L/E2w%?KC?Ëj QI$@ުE?WeECGP@UrC|$L7?lD?T??hO.' "6ڧK ?$QɆq×D L7>J_ZA#A`?,2[DN?Y9 r?F3ȣ1?|[IP> )@568?IJ5XP@ v)Xc~?f8\??fhݯmI:#ͩ V ?zɗDvvYa KQI>-x=(A`?KLt?b᱿6)Ѩ_?J{XSe?c,PE_x/@`̻?BMP"- aP@ Zn/nFO?z"? ?896Tf#. OV$y ?Qb9{+= w>.A`?ܓ?>P=ص R~?ޫt;?d6P^663@Sljϗ? dVU,?1O@$bp>033Z?gV[?"@R?nv^y#%ds^? ?L{nER} n'()>Wki53A`?}m?π=gD"?Wo? NMY7@n^?dTZ]!JN@ALk#~7{ ɗY?FG ?"? 伿5T& lX) ? W'hnT9z 9aۋ>!E1.8A`?ԕ?$྿@Ct?lL-.?i;wLt Dĵ;@ t?}Xa`$&8L@Sz;1J?H2r?6:O;?` ,\3)}Ao؈: ?.+zڢt TmS> ͡Pq>A`?RN2?ۻGü?Kդ?OI"tp>@ du?F7De;e?uI@h>KMN?τh?2r`?6"LZÿTa,7]"?uV ?' PlYbk hFĿD>˴;7*CA`?? R?t?DÿOd??hCF'z@@޷??m?yjF@oMa@\YD?c:Y?x@Q?ex1ſ{CZ*0iH##M  ?x6G땾_V] oqO>eR HA`?/? ȶ!Ŀ-]?8*?\BbI>A@ő,?1`}pӆB@c>^}A1q?󊃵8?Bv?uC#%ƿCBi2ɭs$ZR ?/ǝG U}>pNڇ_NA`?nX7?<(zĿ9K?eE?Yճ<3PA@?F#uW9<@(vhCAs!?M+?G?A,S1ƿ`443)}$J[ ?/QZ$ ^z>~hSA`?@䇸? ¿{A0?ޥr?b~E5>7?@@^pJoy?Qn,z4@EMߛ/@Sh? ӭ1?,{?IؚĿ y6zOzm#mc: ?p߼{I4Zo uP>w\XA`?Z/(?mIT3KlI~0?ž? .-",*=@ܩg?N6k瞿-@b W=P?W{f?Țn?*ÿ/48  t![z9 ?+=Wep}>:9M^A`?v2A? >v1)@?d5k?WްT$3y>9@}Yc?7`DŽH,i#@&MO 9ΜJ?TTv{?h7?qm$yz:5fҰ ?_n,UI ^ě>cA`?a?q_0ʺu1?9aڴ?h1DY@E5@2?'-hA`?H; [?F]ś?6N?|/n1@֛g?9:R@J1&x|?6hp?H[?F%^c;> ?_%5VQ߫p>:j}:nA`?A?OoM@VXy'?5Snn+?ޜyv j,@H+?IYndp@#,_Ϟ?a!|?b? ;-JC ? Gsnn?* e>sA`?42?ܼa3yiJ?e8jdKr?mM(g:kZT'@L4V?3rs(X$b*?d8.Ko&)?mܾ?ҭj?kR^vs=)Ht f ?R>Ϩ^þ>r)>߅t? wA`?W)?]Q.A?.D‐?PTx1n6"@?o!h9l?H!!ͷ?D_'?Ozz-?sSk5&Rt=L}ES^Pv ?ƾ,'MDz ?Sg(~A`?88wd?C,ǯwĞ?|r?&XĿccl@,@?P=R̓= ?!hr{a?"Gށt?b|H?CKXzY4=$ߴ5Ehع, ?L}?ʾ9wiTw?I[qA`?,z%?HeQ+?Q&sdg?7ᤅ@wpI?mDɿsѲ 4 2i?Ru?R?6nQdCik>{AU"\?\̾488ۈ?A`?H"?g6DQ?ʍv]?1 @ ?6mk/ҿG[?n7_AL?3>7H>*2 q/c?h䦄fξԗ>hn?MA`?Z=+?KR]e^f? :pU@?C*L@N.9?9PS1uwtԿ> 5 q?瑹5_$?pJ *Ƅ?dl on?4W,u=ξ򽇙_?_[?L1A`?X_"[?ǂ:k?t."=E]V? = @7?R豯\0 pcӿ}M:~F&`? pղ̑&L? 6XO@@5Q?c,r̾he-?b6)K?חA`?k[T.#?΅ / d ? m㍿ zL?Ŏޱ@5 yD?6tN}пJK[Y}8? Up핹2?0cFWMIJWG>@?@ɩ0G(?`ɾ??Title: SIMPLE DIFFERENTIAL PAIR Date: Wed Oct 4 22:38:21 2000 Plotname: Transfer Function Flags: real No. Variables: 3 No. Points: 1 Command: version 12 Variables: 0 Transfer_function voltage 1 vin#Input_impedance voltage 2 output_impedance_at_V(5) voltage Binary: FQs29OQ@k$D@hGo@gwave2-20170109/examples/lpf.ac00000644001226200000360000030460013034766135013066 0000000000000000010002000000009007 * hspice deck for simple rc low-pass filter 98/09/0109:31:27 Copyright (C) 1985-1997 by Avant!,Inc. 0 2 2 2 HERTZ v(in v(out $&%# 2 2 2 HERTZ v(in .10000E+03 .10000E+01 .99803E+00 .10023E+03 .10000E+01 .99802E+00 .10046E+03 .10000E+01 .99801E+00 .10069E+03 .10000E+01 .99800E+00 .10093E+03 .10000E+01 .99800E+00 .10116E+03 .10000E+01 .99799E+00 .10139E+03 .10000E+01 .99798E+00 .10162E+03 .10000E+01 .99797E+00 .10186E+03 .10000E+01 .99796E+00 .10209E+03 .10000E+01 .99795E+00 .10233E+03 .10000E+01 .99794E+00 .10257E+03 .10000E+01 .99793E+00 .10280E+03 .10000E+01 .99792E+00 .10304E+03 .10000E+01 .99791E+00 .10328E+03 .10000E+01 .99790E+00 .10351E+03 .10000E+01 .99789E+00 .10375E+03 .10000E+01 .99788E+00 .10399E+03 .10000E+01 .99787E+00 .10423E+03 .10000E+01 .99786E+00 .10447E+03 .10000E+01 .99785E+00 .10471E+03 .10000E+01 .99784E+00 .10495E+03 .10000E+01 .99783E+00 .10520E+03 .10000E+01 .99782E+00 .10544E+03 .10000E+01 .99781E+00 .10568E+03 .10000E+01 .99780E+00 .10593E+03 .10000E+01 .99779E+00 .10617E+03 .10000E+01 .99778E+00 .10641E+03 .10000E+01 .99777E+00 .10666E+03 .10000E+01 .99776E+00 .10691E+03 .10000E+01 .99775E+00 .10715E+03 .10000E+01 .99774E+00 .10740E+03 .10000E+01 .99773E+00 .10765E+03 .10000E+01 .99772E+00 .10789E+03 .10000E+01 .99771E+00 .10814E+03 .10000E+01 .99770E+00 .10839E+03 .10000E+01 .99769E+00 .10864E+03 .10000E+01 .99768E+00 .10889E+03 .10000E+01 .99767E+00 .10914E+03 .10000E+01 .99766E+00 .10940E+03 .10000E+01 .99765E+00 .10965E+03 .10000E+01 .99764E+00 .10990E+03 .10000E+01 .99762E+00 .11015E+03 .10000E+01 .99761E+00 .11041E+03 .10000E+01 .99760E+00 .11066E+03 .10000E+01 .99759E+00 .11092E+03 .10000E+01 .99758E+00 .11117E+03 .10000E+01 .99757E+00 .11143E+03 .10000E+01 .99756E+00 .11169E+03 .10000E+01 .99755E+00 .11194E+03 .10000E+01 .99754E+00 .11220E+03 .10000E+01 .99752E+00 .11246E+03 .10000E+01 .99751E+00 .11272E+03 .10000E+01 .99750E+00 .11298E+03 .10000E+01 .99749E+00 .11324E+03 .10000E+01 .99748E+00 .11350E+03 .10000E+01 .99747E+00 .11376E+03 .10000E+01 .99746E+00 .11402E+03 .10000E+01 .99744E+00 .11429E+03 .10000E+01 .99743E+00 .11455E+03 .10000E+01 .99742E+00 .11482E+03 .10000E+01 .99741E+00 .11508E+03 .10000E+01 .99740E+00 .11535E+03 .10000E+01 .99738E+00 .11561E+03 .10000E+01 .99737E+00 .11588E+03 .10000E+01 .99736E+00 .11614E+03 .10000E+01 .99735E+00 .11641E+03 .10000E+01 .99734E+00 .11668E+03 .10000E+01 .99732E+00 .11695E+03 .10000E+01 .99731E+00 .11722E+03 .10000E+01 .99730E+00 .11749E+03 .10000E+01 .99729E+00 .11776E+03 .10000E+01 .99727E+00 .11803E+03 .10000E+01 .99726E+00 .11830E+03 .10000E+01 .99725E+00 .11858E+03 .10000E+01 .99724E+00 .11885E+03 .10000E+01 .99722E+00 .11912E+03 .10000E+01 .99721E+00 .11940E+03 .10000E+01 .99720E+00 .11967E+03 .10000E+01 .99718E+00 .11995E+03 .10000E+01 .99717E+00 .12023E+03 .10000E+01 .99716E+00 .12050E+03 .10000E+01 .99715E+00 .12078E+03 .10000E+01 .99713E+00 .12106E+03 .10000E+01 .99712E+00 .12134E+03 .10000E+01 .99711E+00 .12162E+03 .10000E+01 .99709E+00 .12190E+03 .10000E+01 .99708E+00 .12218E+03 .10000E+01 .99707E+00 .12246E+03 .10000E+01 .99705E+00 .12274E+03 .10000E+01 .99704E+00 .12303E+03 .10000E+01 .99703E+00 .12331E+03 .10000E+01 .99701E+00 .12359E+03 .10000E+01 .99700E+00 .12388E+03 .10000E+01 .99698E+00 .12417E+03 .10000E+01 .99697E+00 .12445E+03 .10000E+01 .99696E+00 .12474E+03 .10000E+01 .99694E+00 .12503E+03 .10000E+01 .99693E+00 .12531E+03 .10000E+01 .99691E+00 .12560E+03 .10000E+01 .99690E+00 .12589E+03 .10000E+01 .99689E+00 .12618E+03 .10000E+01 .99687E+00 .12647E+03 .10000E+01 .99686E+00 .12677E+03 .10000E+01 .99684E+00 .12706E+03 .10000E+01 .99683E+00 .12735E+03 .10000E+01 .99681E+00 .12764E+03 .10000E+01 .99680E+00 .12794E+03 .10000E+01 .99678E+00 .12823E+03 .10000E+01 .99677E+00 .12853E+03 .10000E+01 .99676E+00 .12882E+03 .10000E+01 .99674E+00 .12912E+03 .10000E+01 .99673E+00 .12942E+03 .10000E+01 .99671E+00 .12972E+03 .10000E+01 .99670E+00 .13002E+03 .10000E+01 .99668E+00 .13032E+03 .10000E+01 .99666E+00 .13062E+03 .10000E+01 .99665E+00 .13092E+03 .10000E+01 .99663E+00 .13122E+03 .10000E+01 .99662E+00 .13152E+03 .10000E+01 .99660E+00 .13183E+03 .10000E+01 .99659E+00 .13213E+03 .10000E+01 .99657E+00 .13243E+03 .10000E+01 .99656E+00 .13274E+03 .10000E+01 .99654E+00 .13305E+03 .10000E+01 .99652E+00 .13335E+03 .10000E+01 .99651E+00 .13366E+03 .10000E+01 .99649E+00 .13397E+03 .10000E+01 .99648E+00 .13428E+03 .10000E+01 .99646E+00 .13459E+03 .10000E+01 .99644E+00 .13490E+03 .10000E+01 .99643E+00 .13521E+03 .10000E+01 .99641E+00 .13552E+03 .10000E+01 .99639E+00 .13583E+03 .10000E+01 .99638E+00 .13614E+03 .10000E+01 .99636E+00 .13646E+03 .10000E+01 .99634E+00 .13677E+03 .10000E+01 .99633E+00 .13709E+03 .10000E+01 .99631E+00 .13740E+03 .10000E+01 .99629E+00 .13772E+03 .10000E+01 .99628E+00 .13804E+03 .10000E+01 .99626E+00 .13836E+03 .10000E+01 .99624E+00 .13868E+03 .10000E+01 .99623E+00 .13900E+03 .10000E+01 .99621E+00 .13932E+03 .10000E+01 .99619E+00 .13964E+03 .10000E+01 .99617E+00 .13996E+03 .10000E+01 .99616E+00 .14028E+03 .10000E+01 .99614E+00 .14060E+03 .10000E+01 .99612E+00 .14093E+03 .10000E+01 .99610E+00 .14125E+03 .10000E+01 .99608E+00 .14158E+03 .10000E+01 .99607E+00 .14191E+03 .10000E+01 .99605E+00 .14223E+03 .10000E+01 .99603E+00 .14256E+03 .10000E+01 .99601E+00 .14289E+03 .10000E+01 .99599E+00 .14322E+03 .10000E+01 .99598E+00 .14355E+03 .10000E+01 .99596E+00 .14388E+03 .10000E+01 .99594E+00 .14421E+03 .10000E+01 .99592E+00 .14454E+03 .10000E+01 .99590E+00 .14488E+03 .10000E+01 .99588E+00 .14521E+03 .10000E+01 .99586E+00 .14555E+03 .10000E+01 .99584E+00 .14588E+03 .10000E+01 .99583E+00 .14622E+03 .10000E+01 .99581E+00 .14655E+03 .10000E+01 .99579E+00 .14689E+03 .10000E+01 .99577E+00 .14723E+03 .10000E+01 .99575E+00 .14757E+03 .10000E+01 .99573E+00 .14791E+03 .10000E+01 .99571E+00 .14825E+03 .10000E+01 .99569E+00 .14859E+03 .10000E+01 .99567E+00 .14894E+03 .10000E+01 .99565E+00 .14928E+03 .10000E+01 .99563E+00 .14962E+03 .10000E+01 .99561E+00 .14997E+03 .10000E+01 .99559E+00 .15031E+03 .10000E+01 .99557E+00 .15066E+03 .10000E+01 .99555E+00 .15101E+03 .10000E+01 .99553E+00 .15136E+03 .10000E+01 .99551E+00 .15171E+03 .10000E+01 .99549E+00 .15205E+03 .10000E+01 .99547E+00 .15241E+03 .10000E+01 .99545E+00 .15276E+03 .10000E+01 .99543E+00 .15311E+03 .10000E+01 .99540E+00 .15346E+03 .10000E+01 .99538E+00 .15382E+03 .10000E+01 .99536E+00 .15417E+03 .10000E+01 .99534E+00 .15453E+03 .10000E+01 .99532E+00 .15488E+03 .10000E+01 .99530E+00 .15524E+03 .10000E+01 .99528E+00 .15560E+03 .10000E+01 .99526E+00 .15596E+03 .10000E+01 .99523E+00 .15631E+03 .10000E+01 .99521E+00 .15668E+03 .10000E+01 .99519E+00 .15704E+03 .10000E+01 .99517E+00 .15740E+03 .10000E+01 .99515E+00 .15776E+03 .10000E+01 .99512E+00 .15812E+03 .10000E+01 .99510E+00 .15849E+03 .10000E+01 .99508E+00 .15885E+03 .10000E+01 .99506E+00 .15922E+03 .10000E+01 .99503E+00 .15959E+03 .10000E+01 .99501E+00 .15996E+03 .10000E+01 .99499E+00 .16032E+03 .10000E+01 .99496E+00 .16069E+03 .10000E+01 .99494E+00 .16106E+03 .10000E+01 .99492E+00 .16144E+03 .10000E+01 .99489E+00 .16181E+03 .10000E+01 .99487E+00 .16218E+03 .10000E+01 .99485E+00 .16255E+03 .10000E+01 .99482E+00 .16293E+03 .10000E+01 .99480E+00 .16331E+03 .10000E+01 .99478E+00 .16368E+03 .10000E+01 .99475E+00 .16406E+03 .10000E+01 .99473E+00 .16444E+03 .10000E+01 .99470E+00 .16482E+03 .10000E+01 .99468E+00 .16520E+03 .10000E+01 .99466E+00 .16558E+03 .10000E+01 .99463E+00 .16596E+03 .10000E+01 .99461E+00 .16634E+03 .10000E+01 .99458E+00 .16672E+03 .10000E+01 .99456E+00 .16711E+03 .10000E+01 .99453E+00 .16749E+03 .10000E+01 .99451E+00 .16788E+03 .10000E+01 .99448E+00 .16827E+03 .10000E+01 .99446E+00 .16866E+03 .10000E+01 .99443E+00 .16904E+03 .10000E+01 .99441E+00 .16943E+03 .10000E+01 .99438E+00 .16982E+03 .10000E+01 .99436E+00 .17022E+03 .10000E+01 .99433E+00 .17061E+03 .10000E+01 .99430E+00 .17100E+03 .10000E+01 .99428E+00 .17140E+03 .10000E+01 .99425E+00 .17179E+03 .10000E+01 .99422E+00 .17219E+03 .10000E+01 .99420E+00 .17258E+03 .10000E+01 .99417E+00 .17298E+03 .10000E+01 .99415E+00 .17338E+03 .10000E+01 .99412E+00 .17378E+03 .10000E+01 .99409E+00 .17418E+03 .10000E+01 .99406E+00 .17458E+03 .10000E+01 .99404E+00 .17498E+03 .10000E+01 .99401E+00 .17539E+03 .10000E+01 .99398E+00 .17579E+03 .10000E+01 .99396E+00 .17620E+03 .10000E+01 .99393E+00 .17660E+03 .10000E+01 .99390E+00 .17701E+03 .10000E+01 .99387E+00 .17742E+03 .10000E+01 .99384E+00 .17783E+03 .10000E+01 .99382E+00 .17824E+03 .10000E+01 .99379E+00 .17865E+03 .10000E+01 .99376E+00 .17906E+03 .10000E+01 .99373E+00 .17947E+03 .10000E+01 .99370E+00 .17989E+03 .10000E+01 .99367E+00 .18030E+03 .10000E+01 .99364E+00 .18072E+03 .10000E+01 .99362E+00 .18113E+03 .10000E+01 .99359E+00 .18155E+03 .10000E+01 .99356E+00 .18197E+03 .10000E+01 .99353E+00 .18239E+03 .10000E+01 .99350E+00 .18281E+03 .10000E+01 .99347E+00 .18323E+03 .10000E+01 .99344E+00 .18365E+03 .10000E+01 .99341E+00 .18408E+03 .10000E+01 .99338E+00 .18450E+03 .10000E+01 .99335E+00 .18493E+03 .10000E+01 .99332E+00 .18535E+03 .10000E+01 .99329E+00 .18578E+03 .10000E+01 .99326E+00 .18621E+03 .10000E+01 .99323E+00 .18664E+03 .10000E+01 .99319E+00 .18707E+03 .10000E+01 .99316E+00 .18750E+03 .10000E+01 .99313E+00 .18793E+03 .10000E+01 .99310E+00 .18836E+03 .10000E+01 .99307E+00 .18880E+03 .10000E+01 .99304E+00 .18923E+03 .10000E+01 .99301E+00 .18967E+03 .10000E+01 .99297E+00 .19011E+03 .10000E+01 .99294E+00 .19055E+03 .10000E+01 .99291E+00 .19099E+03 .10000E+01 .99288E+00 .19143E+03 .10000E+01 .99284E+00 .19187E+03 .10000E+01 .99281E+00 .19231E+03 .10000E+01 .99278E+00 .19275E+03 .10000E+01 .99275E+00 .19320E+03 .10000E+01 .99271E+00 .19364E+03 .10000E+01 .99268E+00 .19409E+03 .10000E+01 .99265E+00 .19454E+03 .10000E+01 .99261E+00 .19498E+03 .10000E+01 .99258E+00 .19543E+03 .10000E+01 .99254E+00 .19588E+03 .10000E+01 .99251E+00 .19634E+03 .10000E+01 .99248E+00 .19679E+03 .10000E+01 .99244E+00 .19724E+03 .10000E+01 .99241E+00 .19770E+03 .10000E+01 .99237E+00 .19815E+03 .10000E+01 .99234E+00 .19861E+03 .10000E+01 .99230E+00 .19907E+03 .10000E+01 .99227E+00 .19953E+03 .10000E+01 .99223E+00 .19999E+03 .10000E+01 .99220E+00 .20045E+03 .10000E+01 .99216E+00 .20091E+03 .10000E+01 .99213E+00 .20137E+03 .10000E+01 .99209E+00 .20184E+03 .10000E+01 .99205E+00 .20230E+03 .10000E+01 .99202E+00 .20277E+03 .10000E+01 .99198E+00 .20324E+03 .10000E+01 .99195E+00 .20370E+03 .10000E+01 .99191E+00 .20417E+03 .10000E+01 .99187E+00 .20464E+03 .10000E+01 .99183E+00 .20512E+03 .10000E+01 .99180E+00 .20559E+03 .10000E+01 .99176E+00 .20606E+03 .10000E+01 .99172E+00 .20654E+03 .10000E+01 .99168E+00 .20701E+03 .10000E+01 .99165E+00 .20749E+03 .10000E+01 .99161E+00 .20797E+03 .10000E+01 .99157E+00 .20845E+03 .10000E+01 .99153E+00 .20893E+03 .10000E+01 .99149E+00 .20941E+03 .10000E+01 .99145E+00 .20989E+03 .10000E+01 .99142E+00 .21038E+03 .10000E+01 .99138E+00 .21086E+03 .10000E+01 .99134E+00 .21135E+03 .10000E+01 .99130E+00 .21184E+03 .10000E+01 .99126E+00 .21232E+03 .10000E+01 .99122E+00 .21281E+03 .10000E+01 .99118E+00 .21330E+03 .10000E+01 .99114E+00 .21380E+03 .10000E+01 .99110E+00 .21429E+03 .10000E+01 .99106E+00 .21478E+03 .10000E+01 .99102E+00 .21528E+03 .10000E+01 .99098E+00 .21577E+03 .10000E+01 .99093E+00 .21627E+03 .10000E+01 .99089E+00 .21677E+03 .10000E+01 .99085E+00 .21727E+03 .10000E+01 .99081E+00 .21777E+03 .10000E+01 .99077E+00 .21827E+03 .10000E+01 .99073E+00 .21878E+03 .10000E+01 .99068E+00 .21928E+03 .10000E+01 .99064E+00 .21979E+03 .10000E+01 .99060E+00 .22029E+03 .10000E+01 .99056E+00 .22080E+03 .10000E+01 .99051E+00 .22131E+03 .10000E+01 .99047E+00 .22182E+03 .10000E+01 .99043E+00 .22233E+03 .10000E+01 .99038E+00 .22284E+03 .10000E+01 .99034E+00 .22336E+03 .10000E+01 .99030E+00 .22387E+03 .10000E+01 .99025E+00 .22439E+03 .10000E+01 .99021E+00 .22491E+03 .10000E+01 .99016E+00 .22542E+03 .10000E+01 .99012E+00 .22594E+03 .10000E+01 .99007E+00 .22646E+03 .10000E+01 .99003E+00 .22699E+03 .10000E+01 .98998E+00 .22751E+03 .10000E+01 .98994E+00 .22803E+03 .10000E+01 .98989E+00 .22856E+03 .10000E+01 .98985E+00 .22909E+03 .10000E+01 .98980E+00 .22961E+03 .10000E+01 .98975E+00 .23014E+03 .10000E+01 .98971E+00 .23067E+03 .10000E+01 .98966E+00 .23121E+03 .10000E+01 .98961E+00 .23174E+03 .10000E+01 .98957E+00 .23227E+03 .10000E+01 .98952E+00 .23281E+03 .10000E+01 .98947E+00 .23335E+03 .10000E+01 .98942E+00 .23388E+03 .10000E+01 .98937E+00 .23442E+03 .10000E+01 .98933E+00 .23496E+03 .10000E+01 .98928E+00 .23550E+03 .10000E+01 .98923E+00 .23605E+03 .10000E+01 .98918E+00 .23659E+03 .10000E+01 .98913E+00 .23714E+03 .10000E+01 .98908E+00 .23768E+03 .10000E+01 .98903E+00 .23823E+03 .10000E+01 .98898E+00 .23878E+03 .10000E+01 .98893E+00 .23933E+03 .10000E+01 .98888E+00 .23988E+03 .10000E+01 .98883E+00 .24044E+03 .10000E+01 .98878E+00 .24099E+03 .10000E+01 .98873E+00 .24155E+03 .10000E+01 .98868E+00 .24210E+03 .10000E+01 .98863E+00 .24266E+03 .10000E+01 .98858E+00 .24322E+03 .10000E+01 .98852E+00 .24378E+03 .10000E+01 .98847E+00 .24434E+03 .10000E+01 .98842E+00 .24491E+03 .10000E+01 .98837E+00 .24547E+03 .10000E+01 .98831E+00 .24604E+03 .10000E+01 .98826E+00 .24660E+03 .10000E+01 .98821E+00 .24717E+03 .10000E+01 .98815E+00 .24774E+03 .10000E+01 .98810E+00 .24831E+03 .10000E+01 .98805E+00 .24889E+03 .10000E+01 .98799E+00 .24946E+03 .10000E+01 .98794E+00 .25003E+03 .10000E+01 .98788E+00 .25061E+03 .10000E+01 .98783E+00 .25119E+03 .10000E+01 .98777E+00 .25177E+03 .10000E+01 .98772E+00 .25235E+03 .10000E+01 .98766E+00 .25293E+03 .10000E+01 .98761E+00 .25351E+03 .10000E+01 .98755E+00 .25410E+03 .10000E+01 .98749E+00 .25468E+03 .10000E+01 .98744E+00 .25527E+03 .10000E+01 .98738E+00 .25586E+03 .10000E+01 .98732E+00 .25645E+03 .10000E+01 .98727E+00 .25704E+03 .10000E+01 .98721E+00 .25763E+03 .10000E+01 .98715E+00 .25823E+03 .10000E+01 .98709E+00 .25882E+03 .10000E+01 .98703E+00 .25942E+03 .10000E+01 .98697E+00 .26002E+03 .10000E+01 .98692E+00 .26062E+03 .10000E+01 .98686E+00 .26122E+03 .10000E+01 .98680E+00 .26182E+03 .10000E+01 .98674E+00 .26242E+03 .10000E+01 .98668E+00 .26303E+03 .10000E+01 .98662E+00 .26363E+03 .10000E+01 .98656E+00 .26424E+03 .10000E+01 .98650E+00 .26485E+03 .10000E+01 .98643E+00 .26546E+03 .10000E+01 .98637E+00 .26607E+03 .10000E+01 .98631E+00 .26669E+03 .10000E+01 .98625E+00 .26730E+03 .10000E+01 .98619E+00 .26792E+03 .10000E+01 .98613E+00 .26853E+03 .10000E+01 .98606E+00 .26915E+03 .10000E+01 .98600E+00 .26977E+03 .10000E+01 .98594E+00 .27040E+03 .10000E+01 .98587E+00 .27102E+03 .10000E+01 .98581E+00 .27164E+03 .10000E+01 .98575E+00 .27227E+03 .10000E+01 .98568E+00 .27290E+03 .10000E+01 .98562E+00 .27353E+03 .10000E+01 .98555E+00 .27416E+03 .10000E+01 .98549E+00 .27479E+03 .10000E+01 .98542E+00 .27542E+03 .10000E+01 .98535E+00 .27606E+03 .10000E+01 .98529E+00 .27669E+03 .10000E+01 .98522E+00 .27733E+03 .10000E+01 .98516E+00 .27797E+03 .10000E+01 .98509E+00 .27861E+03 .10000E+01 .98502E+00 .27925E+03 .10000E+01 .98495E+00 .27990E+03 .10000E+01 .98489E+00 .28054E+03 .10000E+01 .98482E+00 .28119E+03 .10000E+01 .98475E+00 .28184E+03 .10000E+01 .98468E+00 .28249E+03 .10000E+01 .98461E+00 .28314E+03 .10000E+01 .98454E+00 .28379E+03 .10000E+01 .98447E+00 .28445E+03 .10000E+01 .98440E+00 .28510E+03 .10000E+01 .98433E+00 .28576E+03 .10000E+01 .98426E+00 .28642E+03 .10000E+01 .98419E+00 .28708E+03 .10000E+01 .98412E+00 .28774E+03 .10000E+01 .98405E+00 .28840E+03 .10000E+01 .98398E+00 .28907E+03 .10000E+01 .98390E+00 .28973E+03 .10000E+01 .98383E+00 .29040E+03 .10000E+01 .98376E+00 .29107E+03 .10000E+01 .98368E+00 .29174E+03 .10000E+01 .98361E+00 .29242E+03 .10000E+01 .98354E+00 .29309E+03 .10000E+01 .98346E+00 .29376E+03 .10000E+01 .98339E+00 .29444E+03 .10000E+01 .98331E+00 .29512E+03 .10000E+01 .98324E+00 .29580E+03 .10000E+01 .98316E+00 .29648E+03 .10000E+01 .98309E+00 .29717E+03 .10000E+01 .98301E+00 .29785E+03 .10000E+01 .98294E+00 .29854E+03 .10000E+01 .98286E+00 .29923E+03 .10000E+01 .98278E+00 .29992E+03 .10000E+01 .98270E+00 .30061E+03 .10000E+01 .98263E+00 .30130E+03 .10000E+01 .98255E+00 .30200E+03 .10000E+01 .98247E+00 .30269E+03 .10000E+01 .98239E+00 .30339E+03 .10000E+01 .98231E+00 .30409E+03 .10000E+01 .98223E+00 .30479E+03 .10000E+01 .98215E+00 .30549E+03 .10000E+01 .98207E+00 .30620E+03 .10000E+01 .98199E+00 .30690E+03 .10000E+01 .98191E+00 .30761E+03 .10000E+01 .98183E+00 .30832E+03 .10000E+01 .98175E+00 .30903E+03 .10000E+01 .98167E+00 .30974E+03 .10000E+01 .98158E+00 .31046E+03 .10000E+01 .98150E+00 .31117E+03 .10000E+01 .98142E+00 .31189E+03 .10000E+01 .98133E+00 .31261E+03 .10000E+01 .98125E+00 .31333E+03 .10000E+01 .98117E+00 .31405E+03 .10000E+01 .98108E+00 .31477E+03 .10000E+01 .98100E+00 .31550E+03 .10000E+01 .98091E+00 .31623E+03 .10000E+01 .98083E+00 .31696E+03 .10000E+01 .98074E+00 .31769E+03 .10000E+01 .98065E+00 .31842E+03 .10000E+01 .98057E+00 .31915E+03 .10000E+01 .98048E+00 .31989E+03 .10000E+01 .98039E+00 .32063E+03 .10000E+01 .98031E+00 .32137E+03 .10000E+01 .98022E+00 .32211E+03 .10000E+01 .98013E+00 .32285E+03 .10000E+01 .98004E+00 .32359E+03 .10000E+01 .97995E+00 .32434E+03 .10000E+01 .97986E+00 .32509E+03 .10000E+01 .97977E+00 .32584E+03 .10000E+01 .97968E+00 .32659E+03 .10000E+01 .97959E+00 .32734E+03 .10000E+01 .97950E+00 .32810E+03 .10000E+01 .97941E+00 .32885E+03 .10000E+01 .97931E+00 .32961E+03 .10000E+01 .97922E+00 .33037E+03 .10000E+01 .97913E+00 .33113E+03 .10000E+01 .97903E+00 .33189E+03 .10000E+01 .97894E+00 .33266E+03 .10000E+01 .97885E+00 .33343E+03 .10000E+01 .97875E+00 .33420E+03 .10000E+01 .97866E+00 .33497E+03 .10000E+01 .97856E+00 .33574E+03 .10000E+01 .97847E+00 .33651E+03 .10000E+01 .97837E+00 .33729E+03 .10000E+01 .97827E+00 .33806E+03 .10000E+01 .97818E+00 .33884E+03 .10000E+01 .97808E+00 .33963E+03 .10000E+01 .97798E+00 .34041E+03 .10000E+01 .97788E+00 .34119E+03 .10000E+01 .97778E+00 .34198E+03 .10000E+01 .97768E+00 .34277E+03 .10000E+01 .97759E+00 .34356E+03 .10000E+01 .97749E+00 .34435E+03 .10000E+01 .97738E+00 .34514E+03 .10000E+01 .97728E+00 .34594E+03 .10000E+01 .97718E+00 .34674E+03 .10000E+01 .97708E+00 .34754E+03 .10000E+01 .97698E+00 .34834E+03 .10000E+01 .97688E+00 .34914E+03 .10000E+01 .97677E+00 .34995E+03 .10000E+01 .97667E+00 .35075E+03 .10000E+01 .97657E+00 .35156E+03 .10000E+01 .97646E+00 .35237E+03 .10000E+01 .97636E+00 .35318E+03 .10000E+01 .97625E+00 .35400E+03 .10000E+01 .97615E+00 .35481E+03 .10000E+01 .97604E+00 .35563E+03 .10000E+01 .97593E+00 .35645E+03 .10000E+01 .97583E+00 .35727E+03 .10000E+01 .97572E+00 .35810E+03 .10000E+01 .97561E+00 .35892E+03 .10000E+01 .97550E+00 .35975E+03 .10000E+01 .97539E+00 .36058E+03 .10000E+01 .97528E+00 .36141E+03 .10000E+01 .97517E+00 .36224E+03 .10000E+01 .97506E+00 .36308E+03 .10000E+01 .97495E+00 .36392E+03 .10000E+01 .97484E+00 .36475E+03 .10000E+01 .97473E+00 .36559E+03 .10000E+01 .97462E+00 .36644E+03 .10000E+01 .97450E+00 .36728E+03 .10000E+01 .97439E+00 .36813E+03 .10000E+01 .97428E+00 .36898E+03 .10000E+01 .97416E+00 .36983E+03 .10000E+01 .97405E+00 .37068E+03 .10000E+01 .97393E+00 .37154E+03 .10000E+01 .97382E+00 .37239E+03 .10000E+01 .97370E+00 .37325E+03 .10000E+01 .97358E+00 .37411E+03 .10000E+01 .97347E+00 .37497E+03 .10000E+01 .97335E+00 .37584E+03 .10000E+01 .97323E+00 .37670E+03 .10000E+01 .97311E+00 .37757E+03 .10000E+01 .97299E+00 .37844E+03 .10000E+01 .97287E+00 .37931E+03 .10000E+01 .97275E+00 .38019E+03 .10000E+01 .97263E+00 .38107E+03 .10000E+01 .97251E+00 .38194E+03 .10000E+01 .97239E+00 .38282E+03 .10000E+01 .97227E+00 .38371E+03 .10000E+01 .97215E+00 .38459E+03 .10000E+01 .97202E+00 .38548E+03 .10000E+01 .97190E+00 .38637E+03 .10000E+01 .97177E+00 .38726E+03 .10000E+01 .97165E+00 .38815E+03 .10000E+01 .97152E+00 .38905E+03 .10000E+01 .97140E+00 .38994E+03 .10000E+01 .97127E+00 .39084E+03 .10000E+01 .97115E+00 .39174E+03 .10000E+01 .97102E+00 .39264E+03 .10000E+01 .97089E+00 .39355E+03 .10000E+01 .97076E+00 .39446E+03 .10000E+01 .97063E+00 .39537E+03 .10000E+01 .97050E+00 .39628E+03 .10000E+01 .97037E+00 .39719E+03 .10000E+01 .97024E+00 .39811E+03 .10000E+01 .97011E+00 .39902E+03 .10000E+01 .96998E+00 .39994E+03 .10000E+01 .96985E+00 .40087E+03 .10000E+01 .96971E+00 .40179E+03 .10000E+01 .96958E+00 .40272E+03 .10000E+01 .96945E+00 .40365E+03 .10000E+01 .96931E+00 .40458E+03 .10000E+01 .96918E+00 .40551E+03 .10000E+01 .96904E+00 .40644E+03 .10000E+01 .96890E+00 .40738E+03 .10000E+01 .96877E+00 .40832E+03 .10000E+01 .96863E+00 .40926E+03 .10000E+01 .96849E+00 .41020E+03 .10000E+01 .96835E+00 .41115E+03 .10000E+01 .96821E+00 .41210E+03 .10000E+01 .96807E+00 .41305E+03 .10000E+01 .96793E+00 .41400E+03 .10000E+01 .96779E+00 .41495E+03 .10000E+01 .96765E+00 .41591E+03 .10000E+01 .96751E+00 .41687E+03 .10000E+01 .96737E+00 .41783E+03 .10000E+01 .96722E+00 .41879E+03 .10000E+01 .96708E+00 .41976E+03 .10000E+01 .96694E+00 .42073E+03 .10000E+01 .96679E+00 .42170E+03 .10000E+01 .96664E+00 .42267E+03 .10000E+01 .96650E+00 .42364E+03 .10000E+01 .96635E+00 .42462E+03 .10000E+01 .96620E+00 .42560E+03 .10000E+01 .96606E+00 .42658E+03 .10000E+01 .96591E+00 .42756E+03 .10000E+01 .96576E+00 .42855E+03 .10000E+01 .96561E+00 .42954E+03 .10000E+01 .96546E+00 .43053E+03 .10000E+01 .96531E+00 .43152E+03 .10000E+01 .96515E+00 .43251E+03 .10000E+01 .96500E+00 .43351E+03 .10000E+01 .96485E+00 .43451E+03 .10000E+01 .96469E+00 .43551E+03 .10000E+01 .96454E+00 .43652E+03 .10000E+01 .96438E+00 .43752E+03 .10000E+01 .96423E+00 .43853E+03 .10000E+01 .96407E+00 .43954E+03 .10000E+01 .96392E+00 .44055E+03 .10000E+01 .96376E+00 .44157E+03 .10000E+01 .96360E+00 .44259E+03 .10000E+01 .96344E+00 .44361E+03 .10000E+01 .96328E+00 .44463E+03 .10000E+01 .96312E+00 .44566E+03 .10000E+01 .96296E+00 .44668E+03 .10000E+01 .96280E+00 .44771E+03 .10000E+01 .96264E+00 .44875E+03 .10000E+01 .96247E+00 .44978E+03 .10000E+01 .96231E+00 .45082E+03 .10000E+01 .96215E+00 .45186E+03 .10000E+01 .96198E+00 .45290E+03 .10000E+01 .96182E+00 .45394E+03 .10000E+01 .96165E+00 .45499E+03 .10000E+01 .96148E+00 .45604E+03 .10000E+01 .96131E+00 .45709E+03 .10000E+01 .96115E+00 .45814E+03 .10000E+01 .96098E+00 .45920E+03 .10000E+01 .96081E+00 .46026E+03 .10000E+01 .96064E+00 .46132E+03 .10000E+01 .96047E+00 .46238E+03 .10000E+01 .96029E+00 .46345E+03 .10000E+01 .96012E+00 .46452E+03 .10000E+01 .95995E+00 .46559E+03 .10000E+01 .95978E+00 .46666E+03 .10000E+01 .95960E+00 .46774E+03 .10000E+01 .95943E+00 .46881E+03 .10000E+01 .95925E+00 .46989E+03 .10000E+01 .95907E+00 .47098E+03 .10000E+01 .95890E+00 .47206E+03 .10000E+01 .95872E+00 .47315E+03 .10000E+01 .95854E+00 .47424E+03 .10000E+01 .95836E+00 .47534E+03 .10000E+01 .95818E+00 .47643E+03 .10000E+01 .95800E+00 .47753E+03 .10000E+01 .95782E+00 .47863E+03 .10000E+01 .95763E+00 .47973E+03 .10000E+01 .95745E+00 .48084E+03 .10000E+01 .95727E+00 .48195E+03 .10000E+01 .95708E+00 .48306E+03 .10000E+01 .95690E+00 .48417E+03 .10000E+01 .95671E+00 .48529E+03 .10000E+01 .95652E+00 .48641E+03 .10000E+01 .95633E+00 .48753E+03 .10000E+01 .95615E+00 .48865E+03 .10000E+01 .95596E+00 .48978E+03 .10000E+01 .95577E+00 .49091E+03 .10000E+01 .95558E+00 .49204E+03 .10000E+01 .95538E+00 .49317E+03 .10000E+01 .95519E+00 .49431E+03 .10000E+01 .95500E+00 .49545E+03 .10000E+01 .95481E+00 .49659E+03 .10000E+01 .95461E+00 .49774E+03 .10000E+01 .95442E+00 .49888E+03 .10000E+01 .95422E+00 .50003E+03 .10000E+01 .95402E+00 .50119E+03 .10000E+01 .95382E+00 .50234E+03 .10000E+01 .95363E+00 .50350E+03 .10000E+01 .95343E+00 .50466E+03 .10000E+01 .95323E+00 .50582E+03 .10000E+01 .95303E+00 .50699E+03 .10000E+01 .95282E+00 .50816E+03 .10000E+01 .95262E+00 .50933E+03 .10000E+01 .95242E+00 .51051E+03 .10000E+01 .95221E+00 .51168E+03 .10000E+01 .95201E+00 .51286E+03 .10000E+01 .95180E+00 .51404E+03 .10000E+01 .95160E+00 .51523E+03 .10000E+01 .95139E+00 .51642E+03 .10000E+01 .95118E+00 .51761E+03 .10000E+01 .95097E+00 .51880E+03 .10000E+01 .95076E+00 .52000E+03 .10000E+01 .95055E+00 .52119E+03 .10000E+01 .95034E+00 .52240E+03 .10000E+01 .95013E+00 .52360E+03 .10000E+01 .94991E+00 .52481E+03 .10000E+01 .94970E+00 .52602E+03 .10000E+01 .94949E+00 .52723E+03 .10000E+01 .94927E+00 .52845E+03 .10000E+01 .94905E+00 .52966E+03 .10000E+01 .94884E+00 .53088E+03 .10000E+01 .94862E+00 .53211E+03 .10000E+01 .94840E+00 .53333E+03 .10000E+01 .94818E+00 .53456E+03 .10000E+01 .94796E+00 .53580E+03 .10000E+01 .94774E+00 .53703E+03 .10000E+01 .94751E+00 .53827E+03 .10000E+01 .94729E+00 .53951E+03 .10000E+01 .94707E+00 .54075E+03 .10000E+01 .94684E+00 .54200E+03 .10000E+01 .94661E+00 .54325E+03 .10000E+01 .94639E+00 .54450E+03 .10000E+01 .94616E+00 .54576E+03 .10000E+01 .94593E+00 .54702E+03 .10000E+01 .94570E+00 .54828E+03 .10000E+01 .94547E+00 .54954E+03 .10000E+01 .94524E+00 .55081E+03 .10000E+01 .94501E+00 .55208E+03 .10000E+01 .94477E+00 .55335E+03 .10000E+01 .94454E+00 .55463E+03 .10000E+01 .94430E+00 .55590E+03 .10000E+01 .94407E+00 .55719E+03 .10000E+01 .94383E+00 .55847E+03 .10000E+01 .94359E+00 .55976E+03 .10000E+01 .94336E+00 .56105E+03 .10000E+01 .94312E+00 .56234E+03 .10000E+01 .94288E+00 .56364E+03 .10000E+01 .94263E+00 .56494E+03 .10000E+01 .94239E+00 .56624E+03 .10000E+01 .94215E+00 .56754E+03 .10000E+01 .94190E+00 .56885E+03 .10000E+01 .94166E+00 .57016E+03 .10000E+01 .94141E+00 .57148E+03 .10000E+01 .94117E+00 .57280E+03 .10000E+01 .94092E+00 .57412E+03 .10000E+01 .94067E+00 .57544E+03 .10000E+01 .94042E+00 .57677E+03 .10000E+01 .94017E+00 .57810E+03 .10000E+01 .93992E+00 .57943E+03 .10000E+01 .93966E+00 .58076E+03 .10000E+01 .93941E+00 .58210E+03 .10000E+01 .93916E+00 .58345E+03 .10000E+01 .93890E+00 .58479E+03 .10000E+01 .93864E+00 .58614E+03 .10000E+01 .93839E+00 .58749E+03 .10000E+01 .93813E+00 .58884E+03 .10000E+01 .93787E+00 .59020E+03 .10000E+01 .93761E+00 .59156E+03 .10000E+01 .93735E+00 .59293E+03 .10000E+01 .93708E+00 .59429E+03 .10000E+01 .93682E+00 .59566E+03 .10000E+01 .93656E+00 .59704E+03 .10000E+01 .93629E+00 .59841E+03 .10000E+01 .93602E+00 .59979E+03 .10000E+01 .93576E+00 .60117E+03 .10000E+01 .93549E+00 .60256E+03 .10000E+01 .93522E+00 .60395E+03 .10000E+01 .93495E+00 .60534E+03 .10000E+01 .93468E+00 .60674E+03 .10000E+01 .93440E+00 .60814E+03 .10000E+01 .93413E+00 .60954E+03 .10000E+01 .93386E+00 .61094E+03 .10000E+01 .93358E+00 .61235E+03 .10000E+01 .93330E+00 .61376E+03 .10000E+01 .93303E+00 .61518E+03 .10000E+01 .93275E+00 .61660E+03 .10000E+01 .93247E+00 .61802E+03 .10000E+01 .93219E+00 .61944E+03 .10000E+01 .93190E+00 .62087E+03 .10000E+01 .93162E+00 .62230E+03 .10000E+01 .93134E+00 .62373E+03 .10000E+01 .93105E+00 .62517E+03 .10000E+01 .93077E+00 .62661E+03 .10000E+01 .93048E+00 .62806E+03 .10000E+01 .93019E+00 .62951E+03 .10000E+01 .92990E+00 .63096E+03 .10000E+01 .92961E+00 .63241E+03 .10000E+01 .92932E+00 .63387E+03 .10000E+01 .92903E+00 .63533E+03 .10000E+01 .92874E+00 .63680E+03 .10000E+01 .92844E+00 .63826E+03 .10000E+01 .92815E+00 .63973E+03 .10000E+01 .92785E+00 .64121E+03 .10000E+01 .92755E+00 .64269E+03 .10000E+01 .92725E+00 .64417E+03 .10000E+01 .92695E+00 .64565E+03 .10000E+01 .92665E+00 .64714E+03 .10000E+01 .92635E+00 .64863E+03 .10000E+01 .92605E+00 .65013E+03 .10000E+01 .92574E+00 .65163E+03 .10000E+01 .92544E+00 .65313E+03 .10000E+01 .92513E+00 .65464E+03 .10000E+01 .92482E+00 .65615E+03 .10000E+01 .92451E+00 .65766E+03 .10000E+01 .92420E+00 .65917E+03 .10000E+01 .92389E+00 .66069E+03 .10000E+01 .92358E+00 .66222E+03 .10000E+01 .92327E+00 .66374E+03 .10000E+01 .92295E+00 .66527E+03 .10000E+01 .92264E+00 .66681E+03 .10000E+01 .92232E+00 .66834E+03 .10000E+01 .92200E+00 .66988E+03 .10000E+01 .92169E+00 .67143E+03 .10000E+01 .92137E+00 .67298E+03 .10000E+01 .92104E+00 .67453E+03 .10000E+01 .92072E+00 .67608E+03 .10000E+01 .92040E+00 .67764E+03 .10000E+01 .92007E+00 .67920E+03 .10000E+01 .91975E+00 .68077E+03 .10000E+01 .91942E+00 .68234E+03 .10000E+01 .91909E+00 .68391E+03 .10000E+01 .91876E+00 .68549E+03 .10000E+01 .91843E+00 .68707E+03 .10000E+01 .91810E+00 .68865E+03 .10000E+01 .91777E+00 .69024E+03 .10000E+01 .91744E+00 .69183E+03 .10000E+01 .91710E+00 .69343E+03 .10000E+01 .91676E+00 .69502E+03 .10000E+01 .91643E+00 .69663E+03 .10000E+01 .91609E+00 .69823E+03 .10000E+01 .91575E+00 .69984E+03 .10000E+01 .91541E+00 .70146E+03 .10000E+01 .91507E+00 .70307E+03 .10000E+01 .91472E+00 .70469E+03 .10000E+01 .91438E+00 .70632E+03 .10000E+01 .91403E+00 .70795E+03 .10000E+01 .91369E+00 .70958E+03 .10000E+01 .91334E+00 .71121E+03 .10000E+01 .91299E+00 .71285E+03 .10000E+01 .91264E+00 .71450E+03 .10000E+01 .91229E+00 .71614E+03 .10000E+01 .91193E+00 .71779E+03 .10000E+01 .91158E+00 .71945E+03 .10000E+01 .91122E+00 .72111E+03 .10000E+01 .91087E+00 .72277E+03 .10000E+01 .91051E+00 .72444E+03 .10000E+01 .91015E+00 .72611E+03 .10000E+01 .90979E+00 .72778E+03 .10000E+01 .90943E+00 .72946E+03 .10000E+01 .90907E+00 .73114E+03 .10000E+01 .90870E+00 .73282E+03 .10000E+01 .90834E+00 .73451E+03 .10000E+01 .90797E+00 .73621E+03 .10000E+01 .90760E+00 .73790E+03 .10000E+01 .90723E+00 .73961E+03 .10000E+01 .90686E+00 .74131E+03 .10000E+01 .90649E+00 .74302E+03 .10000E+01 .90612E+00 .74473E+03 .10000E+01 .90574E+00 .74645E+03 .10000E+01 .90537E+00 .74817E+03 .10000E+01 .90499E+00 .74989E+03 .10000E+01 .90461E+00 .75162E+03 .10000E+01 .90424E+00 .75336E+03 .10000E+01 .90386E+00 .75509E+03 .10000E+01 .90347E+00 .75683E+03 .10000E+01 .90309E+00 .75858E+03 .10000E+01 .90271E+00 .76033E+03 .10000E+01 .90232E+00 .76208E+03 .10000E+01 .90193E+00 .76384E+03 .10000E+01 .90155E+00 .76560E+03 .10000E+01 .90116E+00 .76736E+03 .10000E+01 .90077E+00 .76913E+03 .10000E+01 .90038E+00 .77090E+03 .10000E+01 .89998E+00 .77268E+03 .10000E+01 .89959E+00 .77446E+03 .10000E+01 .89919E+00 .77625E+03 .10000E+01 .89879E+00 .77804E+03 .10000E+01 .89840E+00 .77983E+03 .10000E+01 .89800E+00 .78163E+03 .10000E+01 .89760E+00 .78343E+03 .10000E+01 .89719E+00 .78524E+03 .10000E+01 .89679E+00 .78705E+03 .10000E+01 .89639E+00 .78886E+03 .10000E+01 .89598E+00 .79068E+03 .10000E+01 .89557E+00 .79250E+03 .10000E+01 .89516E+00 .79433E+03 .10000E+01 .89475E+00 .79616E+03 .10000E+01 .89434E+00 .79799E+03 .10000E+01 .89393E+00 .79983E+03 .10000E+01 .89351E+00 .80168E+03 .10000E+01 .89310E+00 .80353E+03 .10000E+01 .89268E+00 .80538E+03 .10000E+01 .89226E+00 .80724E+03 .10000E+01 .89184E+00 .80910E+03 .10000E+01 .89142E+00 .81096E+03 .10000E+01 .89100E+00 .81283E+03 .10000E+01 .89058E+00 .81470E+03 .10000E+01 .89015E+00 .81658E+03 .10000E+01 .88973E+00 .81846E+03 .10000E+01 .88930E+00 .82035E+03 .10000E+01 .88887E+00 .82224E+03 .10000E+01 .88844E+00 .82414E+03 .10000E+01 .88801E+00 .82604E+03 .10000E+01 .88757E+00 .82794E+03 .10000E+01 .88714E+00 .82985E+03 .10000E+01 .88670E+00 .83176E+03 .10000E+01 .88627E+00 .83368E+03 .10000E+01 .88583E+00 .83560E+03 .10000E+01 .88539E+00 .83753E+03 .10000E+01 .88495E+00 .83946E+03 .10000E+01 .88451E+00 .84140E+03 .10000E+01 .88406E+00 .84333E+03 .10000E+01 .88362E+00 .84528E+03 .10000E+01 .88317E+00 .84723E+03 .10000E+01 .88272E+00 .84918E+03 .10000E+01 .88227E+00 .85114E+03 .10000E+01 .88182E+00 .85310E+03 .10000E+01 .88137E+00 .85507E+03 .10000E+01 .88091E+00 .85704E+03 .10000E+01 .88046E+00 .85901E+03 .10000E+01 .88000E+00 .86099E+03 .10000E+01 .87955E+00 .86298E+03 .10000E+01 .87909E+00 .86497E+03 .10000E+01 .87863E+00 .86696E+03 .10000E+01 .87816E+00 .86896E+03 .10000E+01 .87770E+00 .87096E+03 .10000E+01 .87724E+00 .87297E+03 .10000E+01 .87677E+00 .87498E+03 .10000E+01 .87630E+00 .87700E+03 .10000E+01 .87583E+00 .87902E+03 .10000E+01 .87536E+00 .88105E+03 .10000E+01 .87489E+00 .88308E+03 .10000E+01 .87442E+00 .88512E+03 .10000E+01 .87394E+00 .88716E+03 .10000E+01 .87347E+00 .88920E+03 .10000E+01 .87299E+00 .89125E+03 .10000E+01 .87251E+00 .89331E+03 .10000E+01 .87203E+00 .89536E+03 .10000E+01 .87155E+00 .89743E+03 .10000E+01 .87106E+00 .89950E+03 .10000E+01 .87058E+00 .90157E+03 .10000E+01 .87009E+00 .90365E+03 .10000E+01 .86961E+00 .90573E+03 .10000E+01 .86912E+00 .90782E+03 .10000E+01 .86863E+00 .90991E+03 .10000E+01 .86814E+00 .91201E+03 .10000E+01 .86764E+00 .91411E+03 .10000E+01 .86715E+00 .91622E+03 .10000E+01 .86665E+00 .91833E+03 .10000E+01 .86615E+00 .92045E+03 .10000E+01 .86566E+00 .92257E+03 .10000E+01 .86516E+00 .92470E+03 .10000E+01 .86465E+00 .92683E+03 .10000E+01 .86415E+00 .92897E+03 .10000E+01 .86365E+00 .93111E+03 .10000E+01 .86314E+00 .93325E+03 .10000E+01 .86263E+00 .93541E+03 .10000E+01 .86212E+00 .93756E+03 .10000E+01 .86161E+00 .93972E+03 .10000E+01 .86110E+00 .94189E+03 .10000E+01 .86059E+00 .94406E+03 .10000E+01 .86007E+00 .94624E+03 .10000E+01 .85956E+00 .94842E+03 .10000E+01 .85904E+00 .95060E+03 .10000E+01 .85852E+00 .95280E+03 .10000E+01 .85800E+00 .95499E+03 .10000E+01 .85748E+00 .95719E+03 .10000E+01 .85695E+00 .95940E+03 .10000E+01 .85643E+00 .96161E+03 .10000E+01 .85590E+00 .96383E+03 .10000E+01 .85538E+00 .96605E+03 .10000E+01 .85485E+00 .96828E+03 .10000E+01 .85432E+00 .97051E+03 .10000E+01 .85378E+00 .97275E+03 .10000E+01 .85325E+00 .97499E+03 .10000E+01 .85271E+00 .97724E+03 .10000E+01 .85218E+00 .97949E+03 .10000E+01 .85164E+00 .98175E+03 .10000E+01 .85110E+00 .98401E+03 .10000E+01 .85056E+00 .98628E+03 .10000E+01 .85002E+00 .98855E+03 .10000E+01 .84947E+00 .99083E+03 .10000E+01 .84893E+00 .99312E+03 .10000E+01 .84838E+00 .99541E+03 .10000E+01 .84783E+00 .99770E+03 .10000E+01 .84728E+00 .10000E+04 .10000E+01 .84673E+00 .10023E+04 .10000E+01 .84618E+00 .10046E+04 .10000E+01 .84563E+00 .10069E+04 .10000E+01 .84507E+00 .10093E+04 .10000E+01 .84451E+00 .10116E+04 .10000E+01 .84396E+00 .10139E+04 .10000E+01 .84340E+00 .10162E+04 .10000E+01 .84283E+00 .10186E+04 .10000E+01 .84227E+00 .10209E+04 .10000E+01 .84171E+00 .10233E+04 .10000E+01 .84114E+00 .10257E+04 .10000E+01 .84057E+00 .10280E+04 .10000E+01 .84001E+00 .10304E+04 .10000E+01 .83944E+00 .10328E+04 .10000E+01 .83886E+00 .10351E+04 .10000E+01 .83829E+00 .10375E+04 .10000E+01 .83772E+00 .10399E+04 .10000E+01 .83714E+00 .10423E+04 .10000E+01 .83656E+00 .10447E+04 .10000E+01 .83598E+00 .10471E+04 .10000E+01 .83540E+00 .10495E+04 .10000E+01 .83482E+00 .10520E+04 .10000E+01 .83424E+00 .10544E+04 .10000E+01 .83365E+00 .10568E+04 .10000E+01 .83307E+00 .10593E+04 .10000E+01 .83248E+00 .10617E+04 .10000E+01 .83189E+00 .10641E+04 .10000E+01 .83130E+00 .10666E+04 .10000E+01 .83071E+00 .10691E+04 .10000E+01 .83011E+00 .10715E+04 .10000E+01 .82952E+00 .10740E+04 .10000E+01 .82892E+00 .10765E+04 .10000E+01 .82832E+00 .10789E+04 .10000E+01 .82773E+00 .10814E+04 .10000E+01 .82712E+00 .10839E+04 .10000E+01 .82652E+00 .10864E+04 .10000E+01 .82592E+00 .10889E+04 .10000E+01 .82531E+00 .10914E+04 .10000E+01 .82471E+00 .10940E+04 .10000E+01 .82410E+00 .10965E+04 .10000E+01 .82349E+00 .10990E+04 .10000E+01 .82288E+00 .11015E+04 .10000E+01 .82227E+00 .11041E+04 .10000E+01 .82165E+00 .11066E+04 .10000E+01 .82104E+00 .11092E+04 .10000E+01 .82042E+00 .11117E+04 .10000E+01 .81980E+00 .11143E+04 .10000E+01 .81918E+00 .11169E+04 .10000E+01 .81856E+00 .11194E+04 .10000E+01 .81794E+00 .11220E+04 .10000E+01 .81731E+00 .11246E+04 .10000E+01 .81669E+00 .11272E+04 .10000E+01 .81606E+00 .11298E+04 .10000E+01 .81543E+00 .11324E+04 .10000E+01 .81480E+00 .11350E+04 .10000E+01 .81417E+00 .11376E+04 .10000E+01 .81354E+00 .11402E+04 .10000E+01 .81290E+00 .11429E+04 .10000E+01 .81227E+00 .11455E+04 .10000E+01 .81163E+00 .11482E+04 .10000E+01 .81099E+00 .11508E+04 .10000E+01 .81035E+00 .11535E+04 .10000E+01 .80971E+00 .11561E+04 .10000E+01 .80907E+00 .11588E+04 .10000E+01 .80843E+00 .11614E+04 .10000E+01 .80778E+00 .11641E+04 .10000E+01 .80713E+00 .11668E+04 .10000E+01 .80648E+00 .11695E+04 .10000E+01 .80583E+00 .11722E+04 .10000E+01 .80518E+00 .11749E+04 .10000E+01 .80453E+00 .11776E+04 .10000E+01 .80388E+00 .11803E+04 .10000E+01 .80322E+00 .11830E+04 .10000E+01 .80256E+00 .11858E+04 .10000E+01 .80190E+00 .11885E+04 .10000E+01 .80125E+00 .11912E+04 .10000E+01 .80058E+00 .11940E+04 .10000E+01 .79992E+00 .11967E+04 .10000E+01 .79926E+00 .11995E+04 .10000E+01 .79859E+00 .12023E+04 .10000E+01 .79793E+00 .12050E+04 .10000E+01 .79726E+00 .12078E+04 .10000E+01 .79659E+00 .12106E+04 .10000E+01 .79592E+00 .12134E+04 .10000E+01 .79524E+00 .12162E+04 .10000E+01 .79457E+00 .12190E+04 .10000E+01 .79389E+00 .12218E+04 .10000E+01 .79322E+00 .12246E+04 .10000E+01 .79254E+00 .12274E+04 .10000E+01 .79186E+00 .12303E+04 .10000E+01 .79118E+00 .12331E+04 .10000E+01 .79050E+00 .12359E+04 .10000E+01 .78981E+00 .12388E+04 .10000E+01 .78913E+00 .12417E+04 .10000E+01 .78844E+00 .12445E+04 .10000E+01 .78776E+00 .12474E+04 .10000E+01 .78707E+00 .12503E+04 .10000E+01 .78638E+00 .12531E+04 .10000E+01 .78569E+00 .12560E+04 .10000E+01 .78499E+00 .12589E+04 .10000E+01 .78430E+00 .12618E+04 .10000E+01 .78360E+00 .12647E+04 .10000E+01 .78291E+00 .12677E+04 .10000E+01 .78221E+00 .12706E+04 .10000E+01 .78151E+00 .12735E+04 .10000E+01 .78081E+00 .12764E+04 .10000E+01 .78010E+00 .12794E+04 .10000E+01 .77940E+00 .12823E+04 .10000E+01 .77869E+00 .12853E+04 .10000E+01 .77799E+00 .12882E+04 .10000E+01 .77728E+00 .12912E+04 .10000E+01 .77657E+00 .12942E+04 .10000E+01 .77586E+00 .12972E+04 .10000E+01 .77515E+00 .13002E+04 .10000E+01 .77444E+00 .13032E+04 .10000E+01 .77372E+00 .13062E+04 .10000E+01 .77301E+00 .13092E+04 .10000E+01 .77229E+00 .13122E+04 .10000E+01 .77157E+00 .13152E+04 .10000E+01 .77085E+00 .13183E+04 .10000E+01 .77013E+00 .13213E+04 .10000E+01 .76941E+00 .13243E+04 .10000E+01 .76868E+00 .13274E+04 .10000E+01 .76796E+00 .13305E+04 .10000E+01 .76723E+00 .13335E+04 .10000E+01 .76651E+00 .13366E+04 .10000E+01 .76578E+00 .13397E+04 .10000E+01 .76505E+00 .13428E+04 .10000E+01 .76432E+00 .13459E+04 .10000E+01 .76358E+00 .13490E+04 .10000E+01 .76285E+00 .13521E+04 .10000E+01 .76212E+00 .13552E+04 .10000E+01 .76138E+00 .13583E+04 .10000E+01 .76064E+00 .13614E+04 .10000E+01 .75990E+00 .13646E+04 .10000E+01 .75916E+00 .13677E+04 .10000E+01 .75842E+00 .13709E+04 .10000E+01 .75768E+00 .13740E+04 .10000E+01 .75694E+00 .13772E+04 .10000E+01 .75619E+00 .13804E+04 .10000E+01 .75544E+00 .13836E+04 .10000E+01 .75470E+00 .13868E+04 .10000E+01 .75395E+00 .13900E+04 .10000E+01 .75320E+00 .13932E+04 .10000E+01 .75245E+00 .13964E+04 .10000E+01 .75170E+00 .13996E+04 .10000E+01 .75094E+00 .14028E+04 .10000E+01 .75019E+00 .14060E+04 .10000E+01 .74943E+00 .14093E+04 .10000E+01 .74867E+00 .14125E+04 .10000E+01 .74792E+00 .14158E+04 .10000E+01 .74716E+00 .14191E+04 .10000E+01 .74640E+00 .14223E+04 .10000E+01 .74563E+00 .14256E+04 .10000E+01 .74487E+00 .14289E+04 .10000E+01 .74411E+00 .14322E+04 .10000E+01 .74334E+00 .14355E+04 .10000E+01 .74258E+00 .14388E+04 .10000E+01 .74181E+00 .14421E+04 .10000E+01 .74104E+00 .14454E+04 .10000E+01 .74027E+00 .14488E+04 .10000E+01 .73950E+00 .14521E+04 .10000E+01 .73873E+00 .14555E+04 .10000E+01 .73795E+00 .14588E+04 .10000E+01 .73718E+00 .14622E+04 .10000E+01 .73640E+00 .14655E+04 .10000E+01 .73563E+00 .14689E+04 .10000E+01 .73485E+00 .14723E+04 .10000E+01 .73407E+00 .14757E+04 .10000E+01 .73329E+00 .14791E+04 .10000E+01 .73251E+00 .14825E+04 .10000E+01 .73173E+00 .14859E+04 .10000E+01 .73094E+00 .14894E+04 .10000E+01 .73016E+00 .14928E+04 .10000E+01 .72937E+00 .14962E+04 .10000E+01 .72859E+00 .14997E+04 .10000E+01 .72780E+00 .15031E+04 .10000E+01 .72701E+00 .15066E+04 .10000E+01 .72622E+00 .15101E+04 .10000E+01 .72543E+00 .15136E+04 .10000E+01 .72464E+00 .15171E+04 .10000E+01 .72385E+00 .15205E+04 .10000E+01 .72305E+00 .15241E+04 .10000E+01 .72226E+00 .15276E+04 .10000E+01 .72146E+00 .15311E+04 .10000E+01 .72066E+00 .15346E+04 .10000E+01 .71986E+00 .15382E+04 .10000E+01 .71907E+00 .15417E+04 .10000E+01 .71827E+00 .15453E+04 .10000E+01 .71746E+00 .15488E+04 .10000E+01 .71666E+00 .15524E+04 .10000E+01 .71586E+00 .15560E+04 .10000E+01 .71506E+00 .15596E+04 .10000E+01 .71425E+00 .15631E+04 .10000E+01 .71344E+00 .15668E+04 .10000E+01 .71264E+00 .15704E+04 .10000E+01 .71183E+00 .15740E+04 .10000E+01 .71102E+00 .15776E+04 .10000E+01 .71021E+00 .15812E+04 .10000E+01 .70940E+00 .15849E+04 .10000E+01 .70859E+00 .15885E+04 .10000E+01 .70777E+00 .15922E+04 .10000E+01 .70696E+00 .15959E+04 .10000E+01 .70615E+00 .15996E+04 .10000E+01 .70533E+00 .16032E+04 .10000E+01 .70451E+00 .16069E+04 .10000E+01 .70370E+00 .16106E+04 .10000E+01 .70288E+00 .16144E+04 .10000E+01 .70206E+00 .16181E+04 .10000E+01 .70124E+00 .16218E+04 .10000E+01 .70042E+00 .16255E+04 .10000E+01 .69959E+00 .16293E+04 .10000E+01 .69877E+00 .16331E+04 .10000E+01 .69795E+00 .16368E+04 .10000E+01 .69712E+00 .16406E+04 .10000E+01 .69630E+00 .16444E+04 .10000E+01 .69547E+00 .16482E+04 .10000E+01 .69464E+00 .16520E+04 .10000E+01 .69382E+00 .16558E+04 .10000E+01 .69299E+00 .16596E+04 .10000E+01 .69216E+00 .16634E+04 .10000E+01 .69133E+00 .16672E+04 .10000E+01 .69050E+00 .16711E+04 .10000E+01 .68966E+00 .16749E+04 .10000E+01 .68883E+00 .16788E+04 .10000E+01 .68800E+00 .16827E+04 .10000E+01 .68716E+00 .16866E+04 .10000E+01 .68633E+00 .16904E+04 .10000E+01 .68549E+00 .16943E+04 .10000E+01 .68465E+00 .16982E+04 .10000E+01 .68381E+00 .17022E+04 .10000E+01 .68298E+00 .17061E+04 .10000E+01 .68214E+00 .17100E+04 .10000E+01 .68130E+00 .17140E+04 .10000E+01 .68046E+00 .17179E+04 .10000E+01 .67961E+00 .17219E+04 .10000E+01 .67877E+00 .17258E+04 .10000E+01 .67793E+00 .17298E+04 .10000E+01 .67708E+00 .17338E+04 .10000E+01 .67624E+00 .17378E+04 .10000E+01 .67539E+00 .17418E+04 .10000E+01 .67455E+00 .17458E+04 .10000E+01 .67370E+00 .17498E+04 .10000E+01 .67285E+00 .17539E+04 .10000E+01 .67201E+00 .17579E+04 .10000E+01 .67116E+00 .17620E+04 .10000E+01 .67031E+00 .17660E+04 .10000E+01 .66946E+00 .17701E+04 .10000E+01 .66861E+00 .17742E+04 .10000E+01 .66775E+00 .17783E+04 .10000E+01 .66690E+00 .17824E+04 .10000E+01 .66605E+00 .17865E+04 .10000E+01 .66519E+00 .17906E+04 .10000E+01 .66434E+00 .17947E+04 .10000E+01 .66349E+00 .17989E+04 .10000E+01 .66263E+00 .18030E+04 .10000E+01 .66177E+00 .18072E+04 .10000E+01 .66092E+00 .18113E+04 .10000E+01 .66006E+00 .18155E+04 .10000E+01 .65920E+00 .18197E+04 .10000E+01 .65834E+00 .18239E+04 .10000E+01 .65748E+00 .18281E+04 .10000E+01 .65662E+00 .18323E+04 .10000E+01 .65576E+00 .18365E+04 .10000E+01 .65490E+00 .18408E+04 .10000E+01 .65404E+00 .18450E+04 .10000E+01 .65318E+00 .18493E+04 .10000E+01 .65232E+00 .18535E+04 .10000E+01 .65145E+00 .18578E+04 .10000E+01 .65059E+00 .18621E+04 .10000E+01 .64973E+00 .18664E+04 .10000E+01 .64886E+00 .18707E+04 .10000E+01 .64800E+00 .18750E+04 .10000E+01 .64713E+00 .18793E+04 .10000E+01 .64626E+00 .18836E+04 .10000E+01 .64540E+00 .18880E+04 .10000E+01 .64453E+00 .18923E+04 .10000E+01 .64366E+00 .18967E+04 .10000E+01 .64279E+00 .19011E+04 .10000E+01 .64192E+00 .19055E+04 .10000E+01 .64106E+00 .19099E+04 .10000E+01 .64019E+00 .19143E+04 .10000E+01 .63932E+00 .19187E+04 .10000E+01 .63844E+00 .19231E+04 .10000E+01 .63757E+00 .19275E+04 .10000E+01 .63670E+00 .19320E+04 .10000E+01 .63583E+00 .19364E+04 .10000E+01 .63496E+00 .19409E+04 .10000E+01 .63409E+00 .19454E+04 .10000E+01 .63321E+00 .19498E+04 .10000E+01 .63234E+00 .19543E+04 .10000E+01 .63146E+00 .19588E+04 .10000E+01 .63059E+00 .19634E+04 .10000E+01 .62971E+00 .19679E+04 .10000E+01 .62884E+00 .19724E+04 .10000E+01 .62796E+00 .19770E+04 .10000E+01 .62709E+00 .19815E+04 .10000E+01 .62621E+00 .19861E+04 .10000E+01 .62534E+00 .19907E+04 .10000E+01 .62446E+00 .19953E+04 .10000E+01 .62358E+00 .19999E+04 .10000E+01 .62270E+00 .20045E+04 .10000E+01 .62183E+00 .20091E+04 .10000E+01 .62095E+00 .20137E+04 .10000E+01 .62007E+00 .20184E+04 .10000E+01 .61919E+00 .20230E+04 .10000E+01 .61831E+00 .20277E+04 .10000E+01 .61743E+00 .20324E+04 .10000E+01 .61655E+00 .20370E+04 .10000E+01 .61567E+00 .20417E+04 .10000E+01 .61479E+00 .20464E+04 .10000E+01 .61391E+00 .20512E+04 .10000E+01 .61303E+00 .20559E+04 .10000E+01 .61215E+00 .20606E+04 .10000E+01 .61127E+00 .20654E+04 .10000E+01 .61038E+00 .20701E+04 .10000E+01 .60950E+00 .20749E+04 .10000E+01 .60862E+00 .20797E+04 .10000E+01 .60774E+00 .20845E+04 .10000E+01 .60685E+00 .20893E+04 .10000E+01 .60597E+00 .20941E+04 .10000E+01 .60509E+00 .20989E+04 .10000E+01 .60421E+00 .21038E+04 .10000E+01 .60332E+00 .21086E+04 .10000E+01 .60244E+00 .21135E+04 .10000E+01 .60155E+00 .21184E+04 .10000E+01 .60067E+00 .21232E+04 .10000E+01 .59979E+00 .21281E+04 .10000E+01 .59890E+00 .21330E+04 .10000E+01 .59802E+00 .21380E+04 .10000E+01 .59713E+00 .21429E+04 .10000E+01 .59625E+00 .21478E+04 .10000E+01 .59536E+00 .21528E+04 .10000E+01 .59448E+00 .21577E+04 .10000E+01 .59359E+00 .21627E+04 .10000E+01 .59271E+00 .21677E+04 .10000E+01 .59182E+00 .21727E+04 .10000E+01 .59094E+00 .21777E+04 .10000E+01 .59005E+00 .21827E+04 .10000E+01 .58917E+00 .21878E+04 .10000E+01 .58828E+00 .21928E+04 .10000E+01 .58739E+00 .21979E+04 .10000E+01 .58651E+00 .22029E+04 .10000E+01 .58562E+00 .22080E+04 .10000E+01 .58474E+00 .22131E+04 .10000E+01 .58385E+00 .22182E+04 .10000E+01 .58296E+00 .22233E+04 .10000E+01 .58208E+00 .22284E+04 .10000E+01 .58119E+00 .22336E+04 .10000E+01 .58031E+00 .22387E+04 .10000E+01 .57942E+00 .22439E+04 .10000E+01 .57853E+00 .22491E+04 .10000E+01 .57765E+00 .22542E+04 .10000E+01 .57676E+00 .22594E+04 .10000E+01 .57587E+00 .22646E+04 .10000E+01 .57499E+00 .22699E+04 .10000E+01 .57410E+00 .22751E+04 .10000E+01 .57322E+00 .22803E+04 .10000E+01 .57233E+00 .22856E+04 .10000E+01 .57144E+00 .22909E+04 .10000E+01 .57056E+00 .22961E+04 .10000E+01 .56967E+00 .23014E+04 .10000E+01 .56879E+00 .23067E+04 .10000E+01 .56790E+00 .23121E+04 .10000E+01 .56701E+00 .23174E+04 .10000E+01 .56613E+00 .23227E+04 .10000E+01 .56524E+00 .23281E+04 .10000E+01 .56436E+00 .23335E+04 .10000E+01 .56347E+00 .23388E+04 .10000E+01 .56259E+00 .23442E+04 .10000E+01 .56170E+00 .23496E+04 .10000E+01 .56081E+00 .23550E+04 .10000E+01 .55993E+00 .23605E+04 .10000E+01 .55904E+00 .23659E+04 .10000E+01 .55816E+00 .23714E+04 .10000E+01 .55728E+00 .23768E+04 .10000E+01 .55639E+00 .23823E+04 .10000E+01 .55551E+00 .23878E+04 .10000E+01 .55462E+00 .23933E+04 .10000E+01 .55374E+00 .23988E+04 .10000E+01 .55285E+00 .24044E+04 .10000E+01 .55197E+00 .24099E+04 .10000E+01 .55109E+00 .24155E+04 .10000E+01 .55020E+00 .24210E+04 .10000E+01 .54932E+00 .24266E+04 .10000E+01 .54844E+00 .24322E+04 .10000E+01 .54755E+00 .24378E+04 .10000E+01 .54667E+00 .24434E+04 .10000E+01 .54579E+00 .24491E+04 .10000E+01 .54491E+00 .24547E+04 .10000E+01 .54402E+00 .24604E+04 .10000E+01 .54314E+00 .24660E+04 .10000E+01 .54226E+00 .24717E+04 .10000E+01 .54138E+00 .24774E+04 .10000E+01 .54050E+00 .24831E+04 .10000E+01 .53962E+00 .24889E+04 .10000E+01 .53874E+00 .24946E+04 .10000E+01 .53786E+00 .25003E+04 .10000E+01 .53698E+00 .25061E+04 .10000E+01 .53610E+00 .25119E+04 .10000E+01 .53522E+00 .25177E+04 .10000E+01 .53434E+00 .25235E+04 .10000E+01 .53346E+00 .25293E+04 .10000E+01 .53258E+00 .25351E+04 .10000E+01 .53170E+00 .25410E+04 .10000E+01 .53082E+00 .25468E+04 .10000E+01 .52995E+00 .25527E+04 .10000E+01 .52907E+00 .25586E+04 .10000E+01 .52819E+00 .25645E+04 .10000E+01 .52732E+00 .25704E+04 .10000E+01 .52644E+00 .25763E+04 .10000E+01 .52556E+00 .25823E+04 .10000E+01 .52469E+00 .25882E+04 .10000E+01 .52381E+00 .25942E+04 .10000E+01 .52294E+00 .26002E+04 .10000E+01 .52206E+00 .26062E+04 .10000E+01 .52119E+00 .26122E+04 .10000E+01 .52031E+00 .26182E+04 .10000E+01 .51944E+00 .26242E+04 .10000E+01 .51857E+00 .26303E+04 .10000E+01 .51769E+00 .26363E+04 .10000E+01 .51682E+00 .26424E+04 .10000E+01 .51595E+00 .26485E+04 .10000E+01 .51508E+00 .26546E+04 .10000E+01 .51421E+00 .26607E+04 .10000E+01 .51334E+00 .26669E+04 .10000E+01 .51247E+00 .26730E+04 .10000E+01 .51160E+00 .26792E+04 .10000E+01 .51073E+00 .26853E+04 .10000E+01 .50986E+00 .26915E+04 .10000E+01 .50899E+00 .26977E+04 .10000E+01 .50812E+00 .27040E+04 .10000E+01 .50725E+00 .27102E+04 .10000E+01 .50639E+00 .27164E+04 .10000E+01 .50552E+00 .27227E+04 .10000E+01 .50465E+00 .27290E+04 .10000E+01 .50379E+00 .27353E+04 .10000E+01 .50292E+00 .27416E+04 .10000E+01 .50206E+00 .27479E+04 .10000E+01 .50119E+00 .27542E+04 .10000E+01 .50033E+00 .27606E+04 .10000E+01 .49947E+00 .27669E+04 .10000E+01 .49860E+00 .27733E+04 .10000E+01 .49774E+00 .27797E+04 .10000E+01 .49688E+00 .27861E+04 .10000E+01 .49602E+00 .27925E+04 .10000E+01 .49516E+00 .27990E+04 .10000E+01 .49430E+00 .28054E+04 .10000E+01 .49344E+00 .28119E+04 .10000E+01 .49258E+00 .28184E+04 .10000E+01 .49172E+00 .28249E+04 .10000E+01 .49086E+00 .28314E+04 .10000E+01 .49000E+00 .28379E+04 .10000E+01 .48914E+00 .28445E+04 .10000E+01 .48829E+00 .28510E+04 .10000E+01 .48743E+00 .28576E+04 .10000E+01 .48658E+00 .28642E+04 .10000E+01 .48572E+00 .28708E+04 .10000E+01 .48487E+00 .28774E+04 .10000E+01 .48401E+00 .28840E+04 .10000E+01 .48316E+00 .28907E+04 .10000E+01 .48231E+00 .28973E+04 .10000E+01 .48146E+00 .29040E+04 .10000E+01 .48061E+00 .29107E+04 .10000E+01 .47975E+00 .29174E+04 .10000E+01 .47890E+00 .29242E+04 .10000E+01 .47805E+00 .29309E+04 .10000E+01 .47721E+00 .29376E+04 .10000E+01 .47636E+00 .29444E+04 .10000E+01 .47551E+00 .29512E+04 .10000E+01 .47466E+00 .29580E+04 .10000E+01 .47382E+00 .29648E+04 .10000E+01 .47297E+00 .29717E+04 .10000E+01 .47213E+00 .29785E+04 .10000E+01 .47128E+00 .29854E+04 .10000E+01 .47044E+00 .29923E+04 .10000E+01 .46959E+00 .29992E+04 .10000E+01 .46875E+00 .30061E+04 .10000E+01 .46791E+00 .30130E+04 .10000E+01 .46707E+00 .30200E+04 .10000E+01 .46623E+00 .30269E+04 .10000E+01 .46539E+00 .30339E+04 .10000E+01 .46455E+00 .30409E+04 .10000E+01 .46371E+00 .30479E+04 .10000E+01 .46287E+00 .30549E+04 .10000E+01 .46204E+00 .30620E+04 .10000E+01 .46120E+00 .30690E+04 .10000E+01 .46036E+00 .30761E+04 .10000E+01 .45953E+00 .30832E+04 .10000E+01 .45869E+00 .30903E+04 .10000E+01 .45786E+00 .30974E+04 .10000E+01 .45703E+00 .31046E+04 .10000E+01 .45620E+00 .31117E+04 .10000E+01 .45536E+00 .31189E+04 .10000E+01 .45453E+00 .31261E+04 .10000E+01 .45370E+00 .31333E+04 .10000E+01 .45287E+00 .31405E+04 .10000E+01 .45205E+00 .31477E+04 .10000E+01 .45122E+00 .31550E+04 .10000E+01 .45039E+00 .31623E+04 .10000E+01 .44956E+00 .31696E+04 .10000E+01 .44874E+00 .31769E+04 .10000E+01 .44791E+00 .31842E+04 .10000E+01 .44709E+00 .31915E+04 .10000E+01 .44627E+00 .31989E+04 .10000E+01 .44544E+00 .32063E+04 .10000E+01 .44462E+00 .32137E+04 .10000E+01 .44380E+00 .32211E+04 .10000E+01 .44298E+00 .32285E+04 .10000E+01 .44216E+00 .32359E+04 .10000E+01 .44134E+00 .32434E+04 .10000E+01 .44053E+00 .32509E+04 .10000E+01 .43971E+00 .32584E+04 .10000E+01 .43889E+00 .32659E+04 .10000E+01 .43808E+00 .32734E+04 .10000E+01 .43726E+00 .32810E+04 .10000E+01 .43645E+00 .32885E+04 .10000E+01 .43563E+00 .32961E+04 .10000E+01 .43482E+00 .33037E+04 .10000E+01 .43401E+00 .33113E+04 .10000E+01 .43320E+00 .33189E+04 .10000E+01 .43239E+00 .33266E+04 .10000E+01 .43158E+00 .33343E+04 .10000E+01 .43077E+00 .33420E+04 .10000E+01 .42997E+00 .33497E+04 .10000E+01 .42916E+00 .33574E+04 .10000E+01 .42835E+00 .33651E+04 .10000E+01 .42755E+00 .33729E+04 .10000E+01 .42674E+00 .33806E+04 .10000E+01 .42594E+00 .33884E+04 .10000E+01 .42514E+00 .33963E+04 .10000E+01 .42434E+00 .34041E+04 .10000E+01 .42354E+00 .34119E+04 .10000E+01 .42274E+00 .34198E+04 .10000E+01 .42194E+00 .34277E+04 .10000E+01 .42114E+00 .34356E+04 .10000E+01 .42034E+00 .34435E+04 .10000E+01 .41955E+00 .34514E+04 .10000E+01 .41875E+00 .34594E+04 .10000E+01 .41796E+00 .34674E+04 .10000E+01 .41716E+00 .34754E+04 .10000E+01 .41637E+00 .34834E+04 .10000E+01 .41558E+00 .34914E+04 .10000E+01 .41479E+00 .34995E+04 .10000E+01 .41399E+00 .35075E+04 .10000E+01 .41321E+00 .35156E+04 .10000E+01 .41242E+00 .35237E+04 .10000E+01 .41163E+00 .35318E+04 .10000E+01 .41084E+00 .35400E+04 .10000E+01 .41006E+00 .35481E+04 .10000E+01 .40927E+00 .35563E+04 .10000E+01 .40849E+00 .35645E+04 .10000E+01 .40770E+00 .35727E+04 .10000E+01 .40692E+00 .35810E+04 .10000E+01 .40614E+00 .35892E+04 .10000E+01 .40536E+00 .35975E+04 .10000E+01 .40458E+00 .36058E+04 .10000E+01 .40380E+00 .36141E+04 .10000E+01 .40302E+00 .36224E+04 .10000E+01 .40225E+00 .36308E+04 .10000E+01 .40147E+00 .36392E+04 .10000E+01 .40070E+00 .36475E+04 .10000E+01 .39992E+00 .36559E+04 .10000E+01 .39915E+00 .36644E+04 .10000E+01 .39838E+00 .36728E+04 .10000E+01 .39761E+00 .36813E+04 .10000E+01 .39684E+00 .36898E+04 .10000E+01 .39607E+00 .36983E+04 .10000E+01 .39530E+00 .37068E+04 .10000E+01 .39453E+00 .37154E+04 .10000E+01 .39376E+00 .37239E+04 .10000E+01 .39300E+00 .37325E+04 .10000E+01 .39223E+00 .37411E+04 .10000E+01 .39147E+00 .37497E+04 .10000E+01 .39071E+00 .37584E+04 .10000E+01 .38995E+00 .37670E+04 .10000E+01 .38918E+00 .37757E+04 .10000E+01 .38842E+00 .37844E+04 .10000E+01 .38767E+00 .37931E+04 .10000E+01 .38691E+00 .38019E+04 .10000E+01 .38615E+00 .38107E+04 .10000E+01 .38539E+00 .38194E+04 .10000E+01 .38464E+00 .38282E+04 .10000E+01 .38388E+00 .38371E+04 .10000E+01 .38313E+00 .38459E+04 .10000E+01 .38238E+00 .38548E+04 .10000E+01 .38163E+00 .38637E+04 .10000E+01 .38088E+00 .38726E+04 .10000E+01 .38013E+00 .38815E+04 .10000E+01 .37938E+00 .38905E+04 .10000E+01 .37863E+00 .38994E+04 .10000E+01 .37789E+00 .39084E+04 .10000E+01 .37714E+00 .39174E+04 .10000E+01 .37640E+00 .39264E+04 .10000E+01 .37565E+00 .39355E+04 .10000E+01 .37491E+00 .39446E+04 .10000E+01 .37417E+00 .39537E+04 .10000E+01 .37343E+00 .39628E+04 .10000E+01 .37269E+00 .39719E+04 .10000E+01 .37195E+00 .39811E+04 .10000E+01 .37121E+00 .39902E+04 .10000E+01 .37048E+00 .39994E+04 .10000E+01 .36974E+00 .40087E+04 .10000E+01 .36901E+00 .40179E+04 .10000E+01 .36827E+00 .40272E+04 .10000E+01 .36754E+00 .40365E+04 .10000E+01 .36681E+00 .40458E+04 .10000E+01 .36608E+00 .40551E+04 .10000E+01 .36535E+00 .40644E+04 .10000E+01 .36462E+00 .40738E+04 .10000E+01 .36389E+00 .40832E+04 .10000E+01 .36317E+00 .40926E+04 .10000E+01 .36244E+00 .41020E+04 .10000E+01 .36172E+00 .41115E+04 .10000E+01 .36099E+00 .41210E+04 .10000E+01 .36027E+00 .41305E+04 .10000E+01 .35955E+00 .41400E+04 .10000E+01 .35883E+00 .41495E+04 .10000E+01 .35811E+00 .41591E+04 .10000E+01 .35739E+00 .41687E+04 .10000E+01 .35668E+00 .41783E+04 .10000E+01 .35596E+00 .41879E+04 .10000E+01 .35524E+00 .41976E+04 .10000E+01 .35453E+00 .42073E+04 .10000E+01 .35382E+00 .42170E+04 .10000E+01 .35310E+00 .42267E+04 .10000E+01 .35239E+00 .42364E+04 .10000E+01 .35168E+00 .42462E+04 .10000E+01 .35097E+00 .42560E+04 .10000E+01 .35027E+00 .42658E+04 .10000E+01 .34956E+00 .42756E+04 .10000E+01 .34885E+00 .42855E+04 .10000E+01 .34815E+00 .42954E+04 .10000E+01 .34744E+00 .43053E+04 .10000E+01 .34674E+00 .43152E+04 .10000E+01 .34604E+00 .43251E+04 .10000E+01 .34534E+00 .43351E+04 .10000E+01 .34464E+00 .43451E+04 .10000E+01 .34394E+00 .43551E+04 .10000E+01 .34324E+00 .43652E+04 .10000E+01 .34254E+00 .43752E+04 .10000E+01 .34185E+00 .43853E+04 .10000E+01 .34115E+00 .43954E+04 .10000E+01 .34046E+00 .44055E+04 .10000E+01 .33977E+00 .44157E+04 .10000E+01 .33908E+00 .44259E+04 .10000E+01 .33839E+00 .44361E+04 .10000E+01 .33770E+00 .44463E+04 .10000E+01 .33701E+00 .44566E+04 .10000E+01 .33632E+00 .44668E+04 .10000E+01 .33564E+00 .44771E+04 .10000E+01 .33495E+00 .44875E+04 .10000E+01 .33427E+00 .44978E+04 .10000E+01 .33358E+00 .45082E+04 .10000E+01 .33290E+00 .45186E+04 .10000E+01 .33222E+00 .45290E+04 .10000E+01 .33154E+00 .45394E+04 .10000E+01 .33086E+00 .45499E+04 .10000E+01 .33018E+00 .45604E+04 .10000E+01 .32951E+00 .45709E+04 .10000E+01 .32883E+00 .45814E+04 .10000E+01 .32816E+00 .45920E+04 .10000E+01 .32748E+00 .46026E+04 .10000E+01 .32681E+00 .46132E+04 .10000E+01 .32614E+00 .46238E+04 .10000E+01 .32547E+00 .46345E+04 .10000E+01 .32480E+00 .46452E+04 .10000E+01 .32413E+00 .46559E+04 .10000E+01 .32346E+00 .46666E+04 .10000E+01 .32279E+00 .46774E+04 .10000E+01 .32213E+00 .46881E+04 .10000E+01 .32147E+00 .46989E+04 .10000E+01 .32080E+00 .47098E+04 .10000E+01 .32014E+00 .47206E+04 .10000E+01 .31948E+00 .47315E+04 .10000E+01 .31882E+00 .47424E+04 .10000E+01 .31816E+00 .47534E+04 .10000E+01 .31750E+00 .47643E+04 .10000E+01 .31685E+00 .47753E+04 .10000E+01 .31619E+00 .47863E+04 .10000E+01 .31553E+00 .47973E+04 .10000E+01 .31488E+00 .48084E+04 .10000E+01 .31423E+00 .48195E+04 .10000E+01 .31358E+00 .48306E+04 .10000E+01 .31293E+00 .48417E+04 .10000E+01 .31228E+00 .48529E+04 .10000E+01 .31163E+00 .48641E+04 .10000E+01 .31098E+00 .48753E+04 .10000E+01 .31033E+00 .48865E+04 .10000E+01 .30969E+00 .48978E+04 .10000E+01 .30905E+00 .49091E+04 .10000E+01 .30840E+00 .49204E+04 .10000E+01 .30776E+00 .49317E+04 .10000E+01 .30712E+00 .49431E+04 .10000E+01 .30648E+00 .49545E+04 .10000E+01 .30584E+00 .49659E+04 .10000E+01 .30520E+00 .49774E+04 .10000E+01 .30457E+00 .49888E+04 .10000E+01 .30393E+00 .50003E+04 .10000E+01 .30330E+00 .50119E+04 .10000E+01 .30266E+00 .50234E+04 .10000E+01 .30203E+00 .50350E+04 .10000E+01 .30140E+00 .50466E+04 .10000E+01 .30077E+00 .50582E+04 .10000E+01 .30014E+00 .50699E+04 .10000E+01 .29951E+00 .50816E+04 .10000E+01 .29888E+00 .50933E+04 .10000E+01 .29826E+00 .51050E+04 .10000E+01 .29763E+00 .51168E+04 .10000E+01 .29701E+00 .51286E+04 .10000E+01 .29638E+00 .51404E+04 .10000E+01 .29576E+00 .51523E+04 .10000E+01 .29514E+00 .51642E+04 .10000E+01 .29452E+00 .51761E+04 .10000E+01 .29390E+00 .51880E+04 .10000E+01 .29328E+00 .52000E+04 .10000E+01 .29267E+00 .52119E+04 .10000E+01 .29205E+00 .52240E+04 .10000E+01 .29144E+00 .52360E+04 .10000E+01 .29082E+00 .52481E+04 .10000E+01 .29021E+00 .52602E+04 .10000E+01 .28960E+00 .52723E+04 .10000E+01 .28899E+00 .52845E+04 .10000E+01 .28838E+00 .52966E+04 .10000E+01 .28777E+00 .53088E+04 .10000E+01 .28717E+00 .53211E+04 .10000E+01 .28656E+00 .53333E+04 .10000E+01 .28595E+00 .53456E+04 .10000E+01 .28535E+00 .53580E+04 .10000E+01 .28475E+00 .53703E+04 .10000E+01 .28414E+00 .53827E+04 .10000E+01 .28354E+00 .53951E+04 .10000E+01 .28294E+00 .54075E+04 .10000E+01 .28235E+00 .54200E+04 .10000E+01 .28175E+00 .54325E+04 .10000E+01 .28115E+00 .54450E+04 .10000E+01 .28056E+00 .54576E+04 .10000E+01 .27996E+00 .54702E+04 .10000E+01 .27937E+00 .54828E+04 .10000E+01 .27877E+00 .54954E+04 .10000E+01 .27818E+00 .55081E+04 .10000E+01 .27759E+00 .55208E+04 .10000E+01 .27700E+00 .55335E+04 .10000E+01 .27641E+00 .55463E+04 .10000E+01 .27583E+00 .55590E+04 .10000E+01 .27524E+00 .55719E+04 .10000E+01 .27466E+00 .55847E+04 .10000E+01 .27407E+00 .55976E+04 .10000E+01 .27349E+00 .56105E+04 .10000E+01 .27291E+00 .56234E+04 .10000E+01 .27233E+00 .56364E+04 .10000E+01 .27175E+00 .56494E+04 .10000E+01 .27117E+00 .56624E+04 .10000E+01 .27059E+00 .56754E+04 .10000E+01 .27001E+00 .56885E+04 .10000E+01 .26944E+00 .57016E+04 .10000E+01 .26886E+00 .57148E+04 .10000E+01 .26829E+00 .57280E+04 .10000E+01 .26771E+00 .57412E+04 .10000E+01 .26714E+00 .57544E+04 .10000E+01 .26657E+00 .57677E+04 .10000E+01 .26600E+00 .57810E+04 .10000E+01 .26543E+00 .57943E+04 .10000E+01 .26487E+00 .58076E+04 .10000E+01 .26430E+00 .58210E+04 .10000E+01 .26373E+00 .58345E+04 .10000E+01 .26317E+00 .58479E+04 .10000E+01 .26261E+00 .58614E+04 .10000E+01 .26204E+00 .58749E+04 .10000E+01 .26148E+00 .58884E+04 .10000E+01 .26092E+00 .59020E+04 .10000E+01 .26036E+00 .59156E+04 .10000E+01 .25980E+00 .59293E+04 .10000E+01 .25925E+00 .59429E+04 .10000E+01 .25869E+00 .59566E+04 .10000E+01 .25813E+00 .59704E+04 .10000E+01 .25758E+00 .59841E+04 .10000E+01 .25703E+00 .59979E+04 .10000E+01 .25647E+00 .60117E+04 .10000E+01 .25592E+00 .60256E+04 .10000E+01 .25537E+00 .60395E+04 .10000E+01 .25482E+00 .60534E+04 .10000E+01 .25428E+00 .60674E+04 .10000E+01 .25373E+00 .60814E+04 .10000E+01 .25318E+00 .60954E+04 .10000E+01 .25264E+00 .61094E+04 .10000E+01 .25209E+00 .61235E+04 .10000E+01 .25155E+00 .61376E+04 .10000E+01 .25101E+00 .61518E+04 .10000E+01 .25047E+00 .61660E+04 .10000E+01 .24993E+00 .61802E+04 .10000E+01 .24939E+00 .61944E+04 .10000E+01 .24885E+00 .62087E+04 .10000E+01 .24831E+00 .62230E+04 .10000E+01 .24778E+00 .62373E+04 .10000E+01 .24724E+00 .62517E+04 .10000E+01 .24671E+00 .62661E+04 .10000E+01 .24618E+00 .62806E+04 .10000E+01 .24564E+00 .62951E+04 .10000E+01 .24511E+00 .63096E+04 .10000E+01 .24458E+00 .63241E+04 .10000E+01 .24405E+00 .63387E+04 .10000E+01 .24353E+00 .63533E+04 .10000E+01 .24300E+00 .63680E+04 .10000E+01 .24247E+00 .63826E+04 .10000E+01 .24195E+00 .63973E+04 .10000E+01 .24142E+00 .64121E+04 .10000E+01 .24090E+00 .64269E+04 .10000E+01 .24038E+00 .64417E+04 .10000E+01 .23986E+00 .64565E+04 .10000E+01 .23934E+00 .64714E+04 .10000E+01 .23882E+00 .64863E+04 .10000E+01 .23830E+00 .65013E+04 .10000E+01 .23778E+00 .65163E+04 .10000E+01 .23727E+00 .65313E+04 .10000E+01 .23675E+00 .65464E+04 .10000E+01 .23624E+00 .65615E+04 .10000E+01 .23573E+00 .65766E+04 .10000E+01 .23521E+00 .65917E+04 .10000E+01 .23470E+00 .66069E+04 .10000E+01 .23419E+00 .66222E+04 .10000E+01 .23368E+00 .66374E+04 .10000E+01 .23317E+00 .66527E+04 .10000E+01 .23267E+00 .66681E+04 .10000E+01 .23216E+00 .66834E+04 .10000E+01 .23166E+00 .66988E+04 .10000E+01 .23115E+00 .67143E+04 .10000E+01 .23065E+00 .67298E+04 .10000E+01 .23015E+00 .67453E+04 .10000E+01 .22964E+00 .67608E+04 .10000E+01 .22914E+00 .67764E+04 .10000E+01 .22864E+00 .67920E+04 .10000E+01 .22815E+00 .68077E+04 .10000E+01 .22765E+00 .68234E+04 .10000E+01 .22715E+00 .68391E+04 .10000E+01 .22666E+00 .68549E+04 .10000E+01 .22616E+00 .68707E+04 .10000E+01 .22567E+00 .68865E+04 .10000E+01 .22518E+00 .69024E+04 .10000E+01 .22468E+00 .69183E+04 .10000E+01 .22419E+00 .69343E+04 .10000E+01 .22370E+00 .69502E+04 .10000E+01 .22321E+00 .69663E+04 .10000E+01 .22273E+00 .69823E+04 .10000E+01 .22224E+00 .69984E+04 .10000E+01 .22175E+00 .70146E+04 .10000E+01 .22127E+00 .70307E+04 .10000E+01 .22078E+00 .70469E+04 .10000E+01 .22030E+00 .70632E+04 .10000E+01 .21982E+00 .70795E+04 .10000E+01 .21934E+00 .70958E+04 .10000E+01 .21886E+00 .71121E+04 .10000E+01 .21838E+00 .71285E+04 .10000E+01 .21790E+00 .71450E+04 .10000E+01 .21742E+00 .71614E+04 .10000E+01 .21695E+00 .71779E+04 .10000E+01 .21647E+00 .71945E+04 .10000E+01 .21600E+00 .72111E+04 .10000E+01 .21552E+00 .72277E+04 .10000E+01 .21505E+00 .72444E+04 .10000E+01 .21458E+00 .72611E+04 .10000E+01 .21411E+00 .72778E+04 .10000E+01 .21364E+00 .72946E+04 .10000E+01 .21317E+00 .73114E+04 .10000E+01 .21270E+00 .73282E+04 .10000E+01 .21223E+00 .73451E+04 .10000E+01 .21177E+00 .73621E+04 .10000E+01 .21130E+00 .73790E+04 .10000E+01 .21084E+00 .73961E+04 .10000E+01 .21037E+00 .74131E+04 .10000E+01 .20991E+00 .74302E+04 .10000E+01 .20945E+00 .74473E+04 .10000E+01 .20899E+00 .74645E+04 .10000E+01 .20853E+00 .74817E+04 .10000E+01 .20807E+00 .74989E+04 .10000E+01 .20761E+00 .75162E+04 .10000E+01 .20716E+00 .75336E+04 .10000E+01 .20670E+00 .75509E+04 .10000E+01 .20624E+00 .75683E+04 .10000E+01 .20579E+00 .75858E+04 .10000E+01 .20534E+00 .76033E+04 .10000E+01 .20488E+00 .76208E+04 .10000E+01 .20443E+00 .76384E+04 .10000E+01 .20398E+00 .76560E+04 .10000E+01 .20353E+00 .76736E+04 .10000E+01 .20308E+00 .76913E+04 .10000E+01 .20264E+00 .77090E+04 .10000E+01 .20219E+00 .77268E+04 .10000E+01 .20174E+00 .77446E+04 .10000E+01 .20130E+00 .77625E+04 .10000E+01 .20085E+00 .77804E+04 .10000E+01 .20041E+00 .77983E+04 .10000E+01 .19997E+00 .78163E+04 .10000E+01 .19953E+00 .78343E+04 .10000E+01 .19908E+00 .78524E+04 .10000E+01 .19865E+00 .78705E+04 .10000E+01 .19821E+00 .78886E+04 .10000E+01 .19777E+00 .79068E+04 .10000E+01 .19733E+00 .79250E+04 .10000E+01 .19689E+00 .79433E+04 .10000E+01 .19646E+00 .79616E+04 .10000E+01 .19603E+00 .79799E+04 .10000E+01 .19559E+00 .79983E+04 .10000E+01 .19516E+00 .80168E+04 .10000E+01 .19473E+00 .80353E+04 .10000E+01 .19430E+00 .80538E+04 .10000E+01 .19387E+00 .80724E+04 .10000E+01 .19344E+00 .80910E+04 .10000E+01 .19301E+00 .81096E+04 .10000E+01 .19258E+00 .81283E+04 .10000E+01 .19215E+00 .81470E+04 .10000E+01 .19173E+00 .81658E+04 .10000E+01 .19130E+00 .81846E+04 .10000E+01 .19088E+00 .82035E+04 .10000E+01 .19046E+00 .82224E+04 .10000E+01 .19003E+00 .82414E+04 .10000E+01 .18961E+00 .82604E+04 .10000E+01 .18919E+00 .82794E+04 .10000E+01 .18877E+00 .82985E+04 .10000E+01 .18835E+00 .83176E+04 .10000E+01 .18794E+00 .83368E+04 .10000E+01 .18752E+00 .83560E+04 .10000E+01 .18710E+00 .83753E+04 .10000E+01 .18669E+00 .83946E+04 .10000E+01 .18627E+00 .84140E+04 .10000E+01 .18586E+00 .84333E+04 .10000E+01 .18545E+00 .84528E+04 .10000E+01 .18504E+00 .84723E+04 .10000E+01 .18462E+00 .84918E+04 .10000E+01 .18421E+00 .85114E+04 .10000E+01 .18380E+00 .85310E+04 .10000E+01 .18340E+00 .85507E+04 .10000E+01 .18299E+00 .85704E+04 .10000E+01 .18258E+00 .85901E+04 .10000E+01 .18218E+00 .86099E+04 .10000E+01 .18177E+00 .86298E+04 .10000E+01 .18137E+00 .86497E+04 .10000E+01 .18096E+00 .86696E+04 .10000E+01 .18056E+00 .86896E+04 .10000E+01 .18016E+00 .87096E+04 .10000E+01 .17976E+00 .87297E+04 .10000E+01 .17936E+00 .87498E+04 .10000E+01 .17896E+00 .87700E+04 .10000E+01 .17856E+00 .87902E+04 .10000E+01 .17816E+00 .88105E+04 .10000E+01 .17777E+00 .88308E+04 .10000E+01 .17737E+00 .88512E+04 .10000E+01 .17697E+00 .88716E+04 .10000E+01 .17658E+00 .88920E+04 .10000E+01 .17619E+00 .89125E+04 .10000E+01 .17579E+00 .89331E+04 .10000E+01 .17540E+00 .89536E+04 .10000E+01 .17501E+00 .89743E+04 .10000E+01 .17462E+00 .89950E+04 .10000E+01 .17423E+00 .90157E+04 .10000E+01 .17384E+00 .90365E+04 .10000E+01 .17345E+00 .90573E+04 .10000E+01 .17307E+00 .90782E+04 .10000E+01 .17268E+00 .90991E+04 .10000E+01 .17230E+00 .91201E+04 .10000E+01 .17191E+00 .91411E+04 .10000E+01 .17153E+00 .91622E+04 .10000E+01 .17115E+00 .91833E+04 .10000E+01 .17076E+00 .92045E+04 .10000E+01 .17038E+00 .92257E+04 .10000E+01 .17000E+00 .92470E+04 .10000E+01 .16962E+00 .92683E+04 .10000E+01 .16924E+00 .92897E+04 .10000E+01 .16886E+00 .93111E+04 .10000E+01 .16849E+00 .93325E+04 .10000E+01 .16811E+00 .93541E+04 .10000E+01 .16773E+00 .93756E+04 .10000E+01 .16736E+00 .93972E+04 .10000E+01 .16699E+00 .94189E+04 .10000E+01 .16661E+00 .94406E+04 .10000E+01 .16624E+00 .94624E+04 .10000E+01 .16587E+00 .94842E+04 .10000E+01 .16550E+00 .95060E+04 .10000E+01 .16513E+00 .95280E+04 .10000E+01 .16476E+00 .95499E+04 .10000E+01 .16439E+00 .95719E+04 .10000E+01 .16402E+00 .95940E+04 .10000E+01 .16365E+00 .96161E+04 .10000E+01 .16329E+00 .96383E+04 .10000E+01 .16292E+00 .96605E+04 .10000E+01 .16256E+00 .96828E+04 .10000E+01 .16219E+00 .97051E+04 .10000E+01 .16183E+00 .97275E+04 .10000E+01 .16147E+00 .97499E+04 .10000E+01 .16111E+00 .97724E+04 .10000E+01 .16074E+00 .97949E+04 .10000E+01 .16038E+00 .98175E+04 .10000E+01 .16002E+00 .98401E+04 .10000E+01 .15967E+00 .98628E+04 .10000E+01 .15931E+00 .98855E+04 .10000E+01 .15895E+00 .99083E+04 .10000E+01 .15859E+00 .99312E+04 .10000E+01 .15824E+00 .99541E+04 .10000E+01 .15788E+00 .99770E+04 .10000E+01 .15753E+00 .10000E+05 .10000E+01 .15718E+00 .10023E+05 .10000E+01 .15682E+00 .10046E+05 .10000E+01 .15647E+00 .10069E+05 .10000E+01 .15612E+00 .10093E+05 .10000E+01 .15577E+00 .10116E+05 .10000E+01 .15542E+00 .10139E+05 .10000E+01 .15507E+00 .10162E+05 .10000E+01 .15472E+00 .10186E+05 .10000E+01 .15438E+00 .10209E+05 .10000E+01 .15403E+00 .10233E+05 .10000E+01 .15368E+00 .10257E+05 .10000E+01 .15334E+00 .10280E+05 .10000E+01 .15299E+00 .10304E+05 .10000E+01 .15265E+00 .10328E+05 .10000E+01 .15231E+00 .10351E+05 .10000E+01 .15197E+00 .10375E+05 .10000E+01 .15162E+00 .10399E+05 .10000E+01 .15128E+00 .10423E+05 .10000E+01 .15094E+00 .10447E+05 .10000E+01 .15060E+00 .10471E+05 .10000E+01 .15027E+00 .10495E+05 .10000E+01 .14993E+00 .10520E+05 .10000E+01 .14959E+00 .10544E+05 .10000E+01 .14925E+00 .10568E+05 .10000E+01 .14892E+00 .10593E+05 .10000E+01 .14858E+00 .10617E+05 .10000E+01 .14825E+00 .10641E+05 .10000E+01 .14792E+00 .10666E+05 .10000E+01 .14758E+00 .10691E+05 .10000E+01 .14725E+00 .10715E+05 .10000E+01 .14692E+00 .10740E+05 .10000E+01 .14659E+00 .10765E+05 .10000E+01 .14626E+00 .10789E+05 .10000E+01 .14593E+00 .10814E+05 .10000E+01 .14560E+00 .10839E+05 .10000E+01 .14527E+00 .10864E+05 .10000E+01 .14495E+00 .10889E+05 .10000E+01 .14462E+00 .10914E+05 .10000E+01 .14429E+00 .10940E+05 .10000E+01 .14397E+00 .10965E+05 .10000E+01 .14365E+00 .10990E+05 .10000E+01 .14332E+00 .11015E+05 .10000E+01 .14300E+00 .11041E+05 .10000E+01 .14268E+00 .11066E+05 .10000E+01 .14236E+00 .11092E+05 .10000E+01 .14203E+00 .11117E+05 .10000E+01 .14171E+00 .11143E+05 .10000E+01 .14140E+00 .11169E+05 .10000E+01 .14108E+00 .11194E+05 .10000E+01 .14076E+00 .11220E+05 .10000E+01 .14044E+00 .11246E+05 .10000E+01 .14012E+00 .11272E+05 .10000E+01 .13981E+00 .11298E+05 .10000E+01 .13949E+00 .11324E+05 .10000E+01 .13918E+00 .11350E+05 .10000E+01 .13886E+00 .11376E+05 .10000E+01 .13855E+00 .11402E+05 .10000E+01 .13824E+00 .11429E+05 .10000E+01 .13793E+00 .11455E+05 .10000E+01 .13762E+00 .11482E+05 .10000E+01 .13731E+00 .11508E+05 .10000E+01 .13700E+00 .11535E+05 .10000E+01 .13669E+00 .11561E+05 .10000E+01 .13638E+00 .11588E+05 .10000E+01 .13607E+00 .11614E+05 .10000E+01 .13576E+00 .11641E+05 .10000E+01 .13546E+00 .11668E+05 .10000E+01 .13515E+00 .11695E+05 .10000E+01 .13485E+00 .11722E+05 .10000E+01 .13454E+00 .11749E+05 .10000E+01 .13424E+00 .11776E+05 .10000E+01 .13393E+00 .11803E+05 .10000E+01 .13363E+00 .11830E+05 .10000E+01 .13333E+00 .11858E+05 .10000E+01 .13303E+00 .11885E+05 .10000E+01 .13273E+00 .11912E+05 .10000E+01 .13243E+00 .11940E+05 .10000E+01 .13213E+00 .11967E+05 .10000E+01 .13183E+00 .11995E+05 .10000E+01 .13153E+00 .12023E+05 .10000E+01 .13123E+00 .12050E+05 .10000E+01 .13094E+00 .12078E+05 .10000E+01 .13064E+00 .12106E+05 .10000E+01 .13035E+00 .12134E+05 .10000E+01 .13005E+00 .12162E+05 .10000E+01 .12976E+00 .12190E+05 .10000E+01 .12946E+00 .12218E+05 .10000E+01 .12917E+00 .12246E+05 .10000E+01 .12888E+00 .12274E+05 .10000E+01 .12859E+00 .12303E+05 .10000E+01 .12830E+00 .12331E+05 .10000E+01 .12801E+00 .12359E+05 .10000E+01 .12772E+00 .12388E+05 .10000E+01 .12743E+00 .12417E+05 .10000E+01 .12714E+00 .12445E+05 .10000E+01 .12685E+00 .12474E+05 .10000E+01 .12656E+00 .12503E+05 .10000E+01 .12628E+00 .12531E+05 .10000E+01 .12599E+00 .12560E+05 .10000E+01 .12571E+00 .12589E+05 .10000E+01 .12542E+00 .12618E+05 .10000E+01 .12514E+00 .12647E+05 .10000E+01 .12486E+00 .12677E+05 .10000E+01 .12457E+00 .12706E+05 .10000E+01 .12429E+00 .12735E+05 .10000E+01 .12401E+00 .12764E+05 .10000E+01 .12373E+00 .12794E+05 .10000E+01 .12345E+00 .12823E+05 .10000E+01 .12317E+00 .12853E+05 .10000E+01 .12289E+00 .12882E+05 .10000E+01 .12261E+00 .12912E+05 .10000E+01 .12233E+00 .12942E+05 .10000E+01 .12206E+00 .12972E+05 .10000E+01 .12178E+00 .13002E+05 .10000E+01 .12150E+00 .13032E+05 .10000E+01 .12123E+00 .13062E+05 .10000E+01 .12095E+00 .13092E+05 .10000E+01 .12068E+00 .13122E+05 .10000E+01 .12041E+00 .13152E+05 .10000E+01 .12013E+00 .13183E+05 .10000E+01 .11986E+00 .13213E+05 .10000E+01 .11959E+00 .13243E+05 .10000E+01 .11932E+00 .13274E+05 .10000E+01 .11905E+00 .13305E+05 .10000E+01 .11878E+00 .13335E+05 .10000E+01 .11851E+00 .13366E+05 .10000E+01 .11824E+00 .13397E+05 .10000E+01 .11797E+00 .13428E+05 .10000E+01 .11770E+00 .13459E+05 .10000E+01 .11744E+00 .13490E+05 .10000E+01 .11717E+00 .13521E+05 .10000E+01 .11690E+00 .13552E+05 .10000E+01 .11664E+00 .13583E+05 .10000E+01 .11637E+00 .13614E+05 .10000E+01 .11611E+00 .13646E+05 .10000E+01 .11585E+00 .13677E+05 .10000E+01 .11558E+00 .13709E+05 .10000E+01 .11532E+00 .13740E+05 .10000E+01 .11506E+00 .13772E+05 .10000E+01 .11480E+00 .13804E+05 .10000E+01 .11454E+00 .13836E+05 .10000E+01 .11428E+00 .13868E+05 .10000E+01 .11402E+00 .13900E+05 .10000E+01 .11376E+00 .13932E+05 .10000E+01 .11350E+00 .13964E+05 .10000E+01 .11324E+00 .13996E+05 .10000E+01 .11299E+00 .14028E+05 .10000E+01 .11273E+00 .14060E+05 .10000E+01 .11247E+00 .14093E+05 .10000E+01 .11222E+00 .14125E+05 .10000E+01 .11196E+00 .14158E+05 .10000E+01 .11171E+00 .14191E+05 .10000E+01 .11146E+00 .14223E+05 .10000E+01 .11120E+00 .14256E+05 .10000E+01 .11095E+00 .14289E+05 .10000E+01 .11070E+00 .14322E+05 .10000E+01 .11045E+00 .14355E+05 .10000E+01 .11020E+00 .14388E+05 .10000E+01 .10995E+00 .14421E+05 .10000E+01 .10970E+00 .14454E+05 .10000E+01 .10945E+00 .14488E+05 .10000E+01 .10920E+00 .14521E+05 .10000E+01 .10895E+00 .14555E+05 .10000E+01 .10870E+00 .14588E+05 .10000E+01 .10846E+00 .14622E+05 .10000E+01 .10821E+00 .14655E+05 .10000E+01 .10796E+00 .14689E+05 .10000E+01 .10772E+00 .14723E+05 .10000E+01 .10747E+00 .14757E+05 .10000E+01 .10723E+00 .14791E+05 .10000E+01 .10698E+00 .14825E+05 .10000E+01 .10674E+00 .14859E+05 .10000E+01 .10650E+00 .14894E+05 .10000E+01 .10626E+00 .14928E+05 .10000E+01 .10601E+00 .14962E+05 .10000E+01 .10577E+00 .14997E+05 .10000E+01 .10553E+00 .15031E+05 .10000E+01 .10529E+00 .15066E+05 .10000E+01 .10505E+00 .15101E+05 .10000E+01 .10481E+00 .15136E+05 .10000E+01 .10458E+00 .15171E+05 .10000E+01 .10434E+00 .15205E+05 .10000E+01 .10410E+00 .15241E+05 .10000E+01 .10386E+00 .15276E+05 .10000E+01 .10363E+00 .15311E+05 .10000E+01 .10339E+00 .15346E+05 .10000E+01 .10316E+00 .15382E+05 .10000E+01 .10292E+00 .15417E+05 .10000E+01 .10269E+00 .15453E+05 .10000E+01 .10245E+00 .15488E+05 .10000E+01 .10222E+00 .15524E+05 .10000E+01 .10199E+00 .15560E+05 .10000E+01 .10176E+00 .15596E+05 .10000E+01 .10152E+00 .15631E+05 .10000E+01 .10129E+00 .15668E+05 .10000E+01 .10106E+00 .15704E+05 .10000E+01 .10083E+00 .15740E+05 .10000E+01 .10060E+00 .15776E+05 .10000E+01 .10037E+00 .15812E+05 .10000E+01 .10015E+00 .15849E+05 .10000E+01 .99917E-01 .15885E+05 .10000E+01 .99690E-01 .15922E+05 .10000E+01 .99463E-01 .15959E+05 .10000E+01 .99236E-01 .15996E+05 .10000E+01 .99010E-01 .16032E+05 .10000E+01 .98785E-01 .16069E+05 .10000E+01 .98560E-01 .16106E+05 .10000E+01 .98335E-01 .16144E+05 .10000E+01 .98111E-01 .16181E+05 .10000E+01 .97888E-01 .16218E+05 .10000E+01 .97665E-01 .16255E+05 .10000E+01 .97443E-01 .16293E+05 .10000E+01 .97221E-01 .16331E+05 .10000E+01 .96999E-01 .16368E+05 .10000E+01 .96778E-01 .16406E+05 .10000E+01 .96558E-01 .16444E+05 .10000E+01 .96338E-01 .16482E+05 .10000E+01 .96118E-01 .16520E+05 .10000E+01 .95899E-01 .16558E+05 .10000E+01 .95680E-01 .16596E+05 .10000E+01 .95462E-01 .16634E+05 .10000E+01 .95245E-01 .16672E+05 .10000E+01 .95028E-01 .16711E+05 .10000E+01 .94811E-01 .16749E+05 .10000E+01 .94595E-01 .16788E+05 .10000E+01 .94379E-01 .16827E+05 .10000E+01 .94164E-01 .16866E+05 .10000E+01 .93950E-01 .16904E+05 .10000E+01 .93735E-01 .16943E+05 .10000E+01 .93522E-01 .16982E+05 .10000E+01 .93309E-01 .17022E+05 .10000E+01 .93096E-01 .17061E+05 .10000E+01 .92884E-01 .17100E+05 .10000E+01 .92672E-01 .17140E+05 .10000E+01 .92460E-01 .17179E+05 .10000E+01 .92250E-01 .17219E+05 .10000E+01 .92039E-01 .17258E+05 .10000E+01 .91829E-01 .17298E+05 .10000E+01 .91620E-01 .17338E+05 .10000E+01 .91411E-01 .17378E+05 .10000E+01 .91202E-01 .17418E+05 .10000E+01 .90994E-01 .17458E+05 .10000E+01 .90787E-01 .17498E+05 .10000E+01 .90580E-01 .17539E+05 .10000E+01 .90373E-01 .17579E+05 .10000E+01 .90167E-01 .17620E+05 .10000E+01 .89961E-01 .17660E+05 .10000E+01 .89756E-01 .17701E+05 .10000E+01 .89551E-01 .17742E+05 .10000E+01 .89347E-01 .17783E+05 .10000E+01 .89143E-01 .17824E+05 .10000E+01 .88940E-01 .17865E+05 .10000E+01 .88737E-01 .17906E+05 .10000E+01 .88534E-01 .17947E+05 .10000E+01 .88332E-01 .17989E+05 .10000E+01 .88131E-01 .18030E+05 .10000E+01 .87930E-01 .18072E+05 .10000E+01 .87729E-01 .18113E+05 .10000E+01 .87529E-01 .18155E+05 .10000E+01 .87329E-01 .18197E+05 .10000E+01 .87130E-01 .18239E+05 .10000E+01 .86931E-01 .18281E+05 .10000E+01 .86732E-01 .18323E+05 .10000E+01 .86534E-01 .18365E+05 .10000E+01 .86337E-01 .18408E+05 .10000E+01 .86140E-01 .18450E+05 .10000E+01 .85943E-01 .18493E+05 .10000E+01 .85747E-01 .18535E+05 .10000E+01 .85551E-01 .18578E+05 .10000E+01 .85356E-01 .18621E+05 .10000E+01 .85161E-01 .18664E+05 .10000E+01 .84966E-01 .18707E+05 .10000E+01 .84772E-01 .18750E+05 .10000E+01 .84579E-01 .18793E+05 .10000E+01 .84386E-01 .18836E+05 .10000E+01 .84193E-01 .18880E+05 .10000E+01 .84001E-01 .18923E+05 .10000E+01 .83809E-01 .18967E+05 .10000E+01 .83617E-01 .19011E+05 .10000E+01 .83426E-01 .19055E+05 .10000E+01 .83236E-01 .19099E+05 .10000E+01 .83046E-01 .19143E+05 .10000E+01 .82856E-01 .19187E+05 .10000E+01 .82667E-01 .19231E+05 .10000E+01 .82478E-01 .19275E+05 .10000E+01 .82290E-01 .19320E+05 .10000E+01 .82102E-01 .19364E+05 .10000E+01 .81914E-01 .19409E+05 .10000E+01 .81727E-01 .19454E+05 .10000E+01 .81540E-01 .19498E+05 .10000E+01 .81354E-01 .19543E+05 .10000E+01 .81168E-01 .19588E+05 .10000E+01 .80983E-01 .19634E+05 .10000E+01 .80797E-01 .19679E+05 .10000E+01 .80613E-01 .19724E+05 .10000E+01 .80429E-01 .19770E+05 .10000E+01 .80245E-01 .19815E+05 .10000E+01 .80062E-01 .19861E+05 .10000E+01 .79879E-01 .19907E+05 .10000E+01 .79696E-01 .19953E+05 .10000E+01 .79514E-01 .19999E+05 .10000E+01 .79332E-01 .20045E+05 .10000E+01 .79151E-01 .20091E+05 .10000E+01 .78970E-01 .20137E+05 .10000E+01 .78789E-01 .20184E+05 .10000E+01 .78609E-01 .20230E+05 .10000E+01 .78430E-01 .20277E+05 .10000E+01 .78250E-01 .20324E+05 .10000E+01 .78071E-01 .20370E+05 .10000E+01 .77893E-01 .20417E+05 .10000E+01 .77715E-01 .20464E+05 .10000E+01 .77537E-01 .20512E+05 .10000E+01 .77360E-01 .20559E+05 .10000E+01 .77183E-01 .20606E+05 .10000E+01 .77007E-01 .20654E+05 .10000E+01 .76831E-01 .20701E+05 .10000E+01 .76655E-01 .20749E+05 .10000E+01 .76480E-01 .20797E+05 .10000E+01 .76305E-01 .20845E+05 .10000E+01 .76130E-01 .20893E+05 .10000E+01 .75956E-01 .20941E+05 .10000E+01 .75783E-01 .20989E+05 .10000E+01 .75609E-01 .21038E+05 .10000E+01 .75436E-01 .21086E+05 .10000E+01 .75264E-01 .21135E+05 .10000E+01 .75092E-01 .21184E+05 .10000E+01 .74920E-01 .21232E+05 .10000E+01 .74749E-01 .21281E+05 .10000E+01 .74578E-01 .21330E+05 .10000E+01 .74407E-01 .21380E+05 .10000E+01 .74237E-01 .21429E+05 .10000E+01 .74067E-01 .21478E+05 .10000E+01 .73898E-01 .21528E+05 .10000E+01 .73729E-01 .21577E+05 .10000E+01 .73560E-01 .21627E+05 .10000E+01 .73392E-01 .21677E+05 .10000E+01 .73224E-01 .21727E+05 .10000E+01 .73056E-01 .21777E+05 .10000E+01 .72889E-01 .21827E+05 .10000E+01 .72722E-01 .21878E+05 .10000E+01 .72556E-01 .21928E+05 .10000E+01 .72390E-01 .21979E+05 .10000E+01 .72224E-01 .22029E+05 .10000E+01 .72059E-01 .22080E+05 .10000E+01 .71894E-01 .22131E+05 .10000E+01 .71730E-01 .22182E+05 .10000E+01 .71566E-01 .22233E+05 .10000E+01 .71402E-01 .22284E+05 .10000E+01 .71239E-01 .22336E+05 .10000E+01 .71076E-01 .22387E+05 .10000E+01 .70913E-01 .22439E+05 .10000E+01 .70751E-01 .22491E+05 .10000E+01 .70589E-01 .22542E+05 .10000E+01 .70427E-01 .22594E+05 .10000E+01 .70266E-01 .22646E+05 .10000E+01 .70105E-01 .22699E+05 .10000E+01 .69945E-01 .22751E+05 .10000E+01 .69785E-01 .22803E+05 .10000E+01 .69625E-01 .22856E+05 .10000E+01 .69466E-01 .22909E+05 .10000E+01 .69307E-01 .22961E+05 .10000E+01 .69148E-01 .23014E+05 .10000E+01 .68990E-01 .23067E+05 .10000E+01 .68832E-01 .23121E+05 .10000E+01 .68674E-01 .23174E+05 .10000E+01 .68517E-01 .23227E+05 .10000E+01 .68360E-01 .23281E+05 .10000E+01 .68204E-01 .23335E+05 .10000E+01 .68048E-01 .23388E+05 .10000E+01 .67892E-01 .23442E+05 .10000E+01 .67736E-01 .23496E+05 .10000E+01 .67581E-01 .23550E+05 .10000E+01 .67427E-01 .23605E+05 .10000E+01 .67272E-01 .23659E+05 .10000E+01 .67118E-01 .23714E+05 .10000E+01 .66964E-01 .23768E+05 .10000E+01 .66811E-01 .23823E+05 .10000E+01 .66658E-01 .23878E+05 .10000E+01 .66505E-01 .23933E+05 .10000E+01 .66353E-01 .23988E+05 .10000E+01 .66201E-01 .24044E+05 .10000E+01 .66050E-01 .24099E+05 .10000E+01 .65898E-01 .24155E+05 .10000E+01 .65748E-01 .24210E+05 .10000E+01 .65597E-01 .24266E+05 .10000E+01 .65447E-01 .24322E+05 .10000E+01 .65297E-01 .24378E+05 .10000E+01 .65147E-01 .24434E+05 .10000E+01 .64998E-01 .24491E+05 .10000E+01 .64849E-01 .24547E+05 .10000E+01 .64701E-01 .24604E+05 .10000E+01 .64553E-01 .24660E+05 .10000E+01 .64405E-01 .24717E+05 .10000E+01 .64257E-01 .24774E+05 .10000E+01 .64110E-01 .24831E+05 .10000E+01 .63963E-01 .24889E+05 .10000E+01 .63817E-01 .24946E+05 .10000E+01 .63670E-01 .25003E+05 .10000E+01 .63525E-01 .25061E+05 .10000E+01 .63379E-01 .25119E+05 .10000E+01 .63234E-01 .25177E+05 .10000E+01 .63089E-01 .25235E+05 .10000E+01 .62945E-01 .25293E+05 .10000E+01 .62800E-01 .25351E+05 .10000E+01 .62656E-01 .25410E+05 .10000E+01 .62513E-01 .25468E+05 .10000E+01 .62370E-01 .25527E+05 .10000E+01 .62227E-01 .25586E+05 .10000E+01 .62084E-01 .25645E+05 .10000E+01 .61942E-01 .25704E+05 .10000E+01 .61800E-01 .25763E+05 .10000E+01 .61659E-01 .25823E+05 .10000E+01 .61517E-01 .25882E+05 .10000E+01 .61376E-01 .25942E+05 .10000E+01 .61236E-01 .26002E+05 .10000E+01 .61095E-01 .26062E+05 .10000E+01 .60955E-01 .26122E+05 .10000E+01 .60816E-01 .26182E+05 .10000E+01 .60676E-01 .26242E+05 .10000E+01 .60537E-01 .26303E+05 .10000E+01 .60399E-01 .26363E+05 .10000E+01 .60260E-01 .26424E+05 .10000E+01 .60122E-01 .26485E+05 .10000E+01 .59984E-01 .26546E+05 .10000E+01 .59847E-01 .26607E+05 .10000E+01 .59710E-01 .26669E+05 .10000E+01 .59573E-01 .26730E+05 .10000E+01 .59436E-01 .26792E+05 .10000E+01 .59300E-01 .26853E+05 .10000E+01 .59164E-01 .26915E+05 .10000E+01 .59029E-01 .26977E+05 .10000E+01 .58893E-01 .27040E+05 .10000E+01 .58758E-01 .27102E+05 .10000E+01 .58624E-01 .27164E+05 .10000E+01 .58489E-01 .27227E+05 .10000E+01 .58355E-01 .27290E+05 .10000E+01 .58221E-01 .27353E+05 .10000E+01 .58088E-01 .27416E+05 .10000E+01 .57955E-01 .27479E+05 .10000E+01 .57822E-01 .27542E+05 .10000E+01 .57689E-01 .27606E+05 .10000E+01 .57557E-01 .27669E+05 .10000E+01 .57425E-01 .27733E+05 .10000E+01 .57294E-01 .27797E+05 .10000E+01 .57162E-01 .27861E+05 .10000E+01 .57031E-01 .27925E+05 .10000E+01 .56900E-01 .27990E+05 .10000E+01 .56770E-01 .28054E+05 .10000E+01 .56640E-01 .28119E+05 .10000E+01 .56510E-01 .28184E+05 .10000E+01 .56380E-01 .28249E+05 .10000E+01 .56251E-01 .28314E+05 .10000E+01 .56122E-01 .28379E+05 .10000E+01 .55994E-01 .28445E+05 .10000E+01 .55865E-01 .28510E+05 .10000E+01 .55737E-01 .28576E+05 .10000E+01 .55609E-01 .28642E+05 .10000E+01 .55482E-01 .28708E+05 .10000E+01 .55355E-01 .28774E+05 .10000E+01 .55228E-01 .28840E+05 .10000E+01 .55101E-01 .28907E+05 .10000E+01 .54975E-01 .28973E+05 .10000E+01 .54849E-01 .29040E+05 .10000E+01 .54723E-01 .29107E+05 .10000E+01 .54597E-01 .29174E+05 .10000E+01 .54472E-01 .29242E+05 .10000E+01 .54347E-01 .29309E+05 .10000E+01 .54223E-01 .29376E+05 .10000E+01 .54098E-01 .29444E+05 .10000E+01 .53974E-01 .29512E+05 .10000E+01 .53850E-01 .29580E+05 .10000E+01 .53727E-01 .29648E+05 .10000E+01 .53604E-01 .29717E+05 .10000E+01 .53481E-01 .29785E+05 .10000E+01 .53358E-01 .29854E+05 .10000E+01 .53236E-01 .29923E+05 .10000E+01 .53114E-01 .29992E+05 .10000E+01 .52992E-01 .30061E+05 .10000E+01 .52870E-01 .30130E+05 .10000E+01 .52749E-01 .30200E+05 .10000E+01 .52628E-01 .30269E+05 .10000E+01 .52507E-01 .30339E+05 .10000E+01 .52387E-01 .30409E+05 .10000E+01 .52267E-01 .30479E+05 .10000E+01 .52147E-01 .30549E+05 .10000E+01 .52027E-01 .30620E+05 .10000E+01 .51908E-01 .30690E+05 .10000E+01 .51789E-01 .30761E+05 .10000E+01 .51670E-01 .30832E+05 .10000E+01 .51552E-01 .30903E+05 .10000E+01 .51433E-01 .30974E+05 .10000E+01 .51315E-01 .31046E+05 .10000E+01 .51198E-01 .31117E+05 .10000E+01 .51080E-01 .31189E+05 .10000E+01 .50963E-01 .31261E+05 .10000E+01 .50846E-01 .31333E+05 .10000E+01 .50730E-01 .31405E+05 .10000E+01 .50613E-01 .31477E+05 .10000E+01 .50497E-01 .31550E+05 .10000E+01 .50381E-01 .31623E+05 .10000E+01 .50266E-01 .31696E+05 .10000E+01 .50150E-01 .31769E+05 .10000E+01 .50035E-01 .31842E+05 .10000E+01 .49920E-01 .31915E+05 .10000E+01 .49806E-01 .31989E+05 .10000E+01 .49692E-01 .32063E+05 .10000E+01 .49578E-01 .32137E+05 .10000E+01 .49464E-01 .32211E+05 .10000E+01 .49350E-01 .32285E+05 .10000E+01 .49237E-01 .32359E+05 .10000E+01 .49124E-01 .32434E+05 .10000E+01 .49011E-01 .32509E+05 .10000E+01 .48899E-01 .32584E+05 .10000E+01 .48787E-01 .32659E+05 .10000E+01 .48675E-01 .32734E+05 .10000E+01 .48563E-01 .32810E+05 .10000E+01 .48452E-01 .32885E+05 .10000E+01 .48341E-01 .32961E+05 .10000E+01 .48230E-01 .33037E+05 .10000E+01 .48119E-01 .33113E+05 .10000E+01 .48009E-01 .33189E+05 .10000E+01 .47898E-01 .33266E+05 .10000E+01 .47789E-01 .33343E+05 .10000E+01 .47679E-01 .33420E+05 .10000E+01 .47569E-01 .33497E+05 .10000E+01 .47460E-01 .33574E+05 .10000E+01 .47351E-01 .33651E+05 .10000E+01 .47243E-01 .33729E+05 .10000E+01 .47134E-01 .33806E+05 .10000E+01 .47026E-01 .33884E+05 .10000E+01 .46918E-01 .33963E+05 .10000E+01 .46811E-01 .34041E+05 .10000E+01 .46703E-01 .34119E+05 .10000E+01 .46596E-01 .34198E+05 .10000E+01 .46489E-01 .34277E+05 .10000E+01 .46382E-01 .34356E+05 .10000E+01 .46276E-01 .34435E+05 .10000E+01 .46170E-01 .34514E+05 .10000E+01 .46064E-01 .34594E+05 .10000E+01 .45958E-01 .34674E+05 .10000E+01 .45853E-01 .34754E+05 .10000E+01 .45747E-01 .34834E+05 .10000E+01 .45642E-01 .34914E+05 .10000E+01 .45538E-01 .34995E+05 .10000E+01 .45433E-01 .35075E+05 .10000E+01 .45329E-01 .35156E+05 .10000E+01 .45225E-01 .35237E+05 .10000E+01 .45121E-01 .35318E+05 .10000E+01 .45017E-01 .35400E+05 .10000E+01 .44914E-01 .35481E+05 .10000E+01 .44811E-01 .35563E+05 .10000E+01 .44708E-01 .35645E+05 .10000E+01 .44605E-01 .35727E+05 .10000E+01 .44503E-01 .35810E+05 .10000E+01 .44401E-01 .35892E+05 .10000E+01 .44299E-01 .35975E+05 .10000E+01 .44197E-01 .36058E+05 .10000E+01 .44096E-01 .36141E+05 .10000E+01 .43995E-01 .36224E+05 .10000E+01 .43894E-01 .36308E+05 .10000E+01 .43793E-01 .36392E+05 .10000E+01 .43692E-01 .36475E+05 .10000E+01 .43592E-01 .36559E+05 .10000E+01 .43492E-01 .36644E+05 .10000E+01 .43392E-01 .36728E+05 .10000E+01 .43293E-01 .36813E+05 .10000E+01 .43193E-01 .36898E+05 .10000E+01 .43094E-01 .36983E+05 .10000E+01 .42995E-01 .37068E+05 .10000E+01 .42896E-01 .37154E+05 .10000E+01 .42798E-01 .37239E+05 .10000E+01 .42700E-01 .37325E+05 .10000E+01 .42602E-01 .37411E+05 .10000E+01 .42504E-01 .37497E+05 .10000E+01 .42406E-01 .37584E+05 .10000E+01 .42309E-01 .37670E+05 .10000E+01 .42212E-01 .37757E+05 .10000E+01 .42115E-01 .37844E+05 .10000E+01 .42018E-01 .37932E+05 .10000E+01 .41922E-01 .38019E+05 .10000E+01 .41825E-01 .38107E+05 .10000E+01 .41729E-01 .38194E+05 .10000E+01 .41634E-01 .38282E+05 .10000E+01 .41538E-01 .38371E+05 .10000E+01 .41443E-01 .38459E+05 .10000E+01 .41347E-01 .38548E+05 .10000E+01 .41253E-01 .38637E+05 .10000E+01 .41158E-01 .38726E+05 .10000E+01 .41063E-01 .38815E+05 .10000E+01 .40969E-01 .38905E+05 .10000E+01 .40875E-01 .38994E+05 .10000E+01 .40781E-01 .39084E+05 .10000E+01 .40687E-01 .39174E+05 .10000E+01 .40594E-01 .39264E+05 .10000E+01 .40501E-01 .39355E+05 .10000E+01 .40408E-01 .39446E+05 .10000E+01 .40315E-01 .39537E+05 .10000E+01 .40222E-01 .39628E+05 .10000E+01 .40130E-01 .39719E+05 .10000E+01 .40038E-01 .39811E+05 .10000E+01 .39946E-01 .39902E+05 .10000E+01 .39854E-01 .39994E+05 .10000E+01 .39763E-01 .40087E+05 .10000E+01 .39671E-01 .40179E+05 .10000E+01 .39580E-01 .40272E+05 .10000E+01 .39489E-01 .40365E+05 .10000E+01 .39399E-01 .40458E+05 .10000E+01 .39308E-01 .40551E+05 .10000E+01 .39218E-01 .40644E+05 .10000E+01 .39128E-01 .40738E+05 .10000E+01 .39038E-01 .40832E+05 .10000E+01 .38948E-01 .40926E+05 .10000E+01 .38859E-01 .41020E+05 .10000E+01 .38770E-01 .41115E+05 .10000E+01 .38681E-01 .41210E+05 .10000E+01 .38592E-01 .41305E+05 .10000E+01 .38503E-01 .41400E+05 .10000E+01 .38415E-01 .41495E+05 .10000E+01 .38327E-01 .41591E+05 .10000E+01 .38239E-01 .41687E+05 .10000E+01 .38151E-01 .41783E+05 .10000E+01 .38063E-01 .41879E+05 .10000E+01 .37976E-01 .41976E+05 .10000E+01 .37889E-01 .42073E+05 .10000E+01 .37802E-01 .42170E+05 .10000E+01 .37715E-01 .42267E+05 .10000E+01 .37628E-01 .42364E+05 .10000E+01 .37542E-01 .42462E+05 .10000E+01 .37455E-01 .42560E+05 .10000E+01 .37369E-01 .42658E+05 .10000E+01 .37284E-01 .42756E+05 .10000E+01 .37198E-01 .42855E+05 .10000E+01 .37113E-01 .42954E+05 .10000E+01 .37027E-01 .43053E+05 .10000E+01 .36942E-01 .43152E+05 .10000E+01 .36857E-01 .43251E+05 .10000E+01 .36773E-01 .43351E+05 .10000E+01 .36688E-01 .43451E+05 .10000E+01 .36604E-01 .43551E+05 .10000E+01 .36520E-01 .43652E+05 .10000E+01 .36436E-01 .43752E+05 .10000E+01 .36352E-01 .43853E+05 .10000E+01 .36269E-01 .43954E+05 .10000E+01 .36186E-01 .44055E+05 .10000E+01 .36102E-01 .44157E+05 .10000E+01 .36020E-01 .44259E+05 .10000E+01 .35937E-01 .44361E+05 .10000E+01 .35854E-01 .44463E+05 .10000E+01 .35772E-01 .44566E+05 .10000E+01 .35690E-01 .44668E+05 .10000E+01 .35608E-01 .44771E+05 .10000E+01 .35526E-01 .44875E+05 .10000E+01 .35444E-01 .44978E+05 .10000E+01 .35363E-01 .45082E+05 .10000E+01 .35282E-01 .45186E+05 .10000E+01 .35201E-01 .45290E+05 .10000E+01 .35120E-01 .45394E+05 .10000E+01 .35039E-01 .45499E+05 .10000E+01 .34959E-01 .45604E+05 .10000E+01 .34878E-01 .45709E+05 .10000E+01 .34798E-01 .45814E+05 .10000E+01 .34718E-01 .45920E+05 .10000E+01 .34639E-01 .46026E+05 .10000E+01 .34559E-01 .46132E+05 .10000E+01 .34480E-01 .46238E+05 .10000E+01 .34400E-01 .46345E+05 .10000E+01 .34321E-01 .46452E+05 .10000E+01 .34242E-01 .46559E+05 .10000E+01 .34164E-01 .46666E+05 .10000E+01 .34085E-01 .46774E+05 .10000E+01 .34007E-01 .46881E+05 .10000E+01 .33929E-01 .46989E+05 .10000E+01 .33851E-01 .47098E+05 .10000E+01 .33773E-01 .47206E+05 .10000E+01 .33696E-01 .47315E+05 .10000E+01 .33618E-01 .47424E+05 .10000E+01 .33541E-01 .47534E+05 .10000E+01 .33464E-01 .47643E+05 .10000E+01 .33387E-01 .47753E+05 .10000E+01 .33310E-01 .47863E+05 .10000E+01 .33234E-01 .47973E+05 .10000E+01 .33157E-01 .48084E+05 .10000E+01 .33081E-01 .48195E+05 .10000E+01 .33005E-01 .48306E+05 .10000E+01 .32929E-01 .48417E+05 .10000E+01 .32854E-01 .48529E+05 .10000E+01 .32778E-01 .48641E+05 .10000E+01 .32703E-01 .48753E+05 .10000E+01 .32628E-01 .48865E+05 .10000E+01 .32553E-01 .48978E+05 .10000E+01 .32478E-01 .49091E+05 .10000E+01 .32404E-01 .49204E+05 .10000E+01 .32329E-01 .49317E+05 .10000E+01 .32255E-01 .49431E+05 .10000E+01 .32181E-01 .49545E+05 .10000E+01 .32107E-01 .49659E+05 .10000E+01 .32033E-01 .49774E+05 .10000E+01 .31959E-01 .49888E+05 .10000E+01 .31886E-01 .50003E+05 .10000E+01 .31813E-01 .50119E+05 .10000E+01 .31740E-01 .50234E+05 .10000E+01 .31667E-01 .50350E+05 .10000E+01 .31594E-01 .50466E+05 .10000E+01 .31521E-01 .50582E+05 .10000E+01 .31449E-01 .50699E+05 .10000E+01 .31377E-01 .50816E+05 .10000E+01 .31305E-01 .50933E+05 .10000E+01 .31233E-01 .51051E+05 .10000E+01 .31161E-01 .51168E+05 .10000E+01 .31089E-01 .51286E+05 .10000E+01 .31018E-01 .51404E+05 .10000E+01 .30947E-01 .51523E+05 .10000E+01 .30875E-01 .51642E+05 .10000E+01 .30804E-01 .51761E+05 .10000E+01 .30734E-01 .51880E+05 .10000E+01 .30663E-01 .52000E+05 .10000E+01 .30593E-01 .52119E+05 .10000E+01 .30522E-01 .52240E+05 .10000E+01 .30452E-01 .52360E+05 .10000E+01 .30382E-01 .52481E+05 .10000E+01 .30312E-01 .52602E+05 .10000E+01 .30243E-01 .52723E+05 .10000E+01 .30173E-01 .52845E+05 .10000E+01 .30104E-01 .52966E+05 .10000E+01 .30035E-01 .53088E+05 .10000E+01 .29966E-01 .53211E+05 .10000E+01 .29897E-01 .53333E+05 .10000E+01 .29828E-01 .53456E+05 .10000E+01 .29760E-01 .53580E+05 .10000E+01 .29691E-01 .53703E+05 .10000E+01 .29623E-01 .53827E+05 .10000E+01 .29555E-01 .53951E+05 .10000E+01 .29487E-01 .54075E+05 .10000E+01 .29419E-01 .54200E+05 .10000E+01 .29352E-01 .54325E+05 .10000E+01 .29284E-01 .54450E+05 .10000E+01 .29217E-01 .54576E+05 .10000E+01 .29150E-01 .54702E+05 .10000E+01 .29083E-01 .54828E+05 .10000E+01 .29016E-01 .54954E+05 .10000E+01 .28949E-01 .55081E+05 .10000E+01 .28883E-01 .55208E+05 .10000E+01 .28816E-01 .55335E+05 .10000E+01 .28750E-01 .55463E+05 .10000E+01 .28684E-01 .55590E+05 .10000E+01 .28618E-01 .55719E+05 .10000E+01 .28552E-01 .55847E+05 .10000E+01 .28487E-01 .55976E+05 .10000E+01 .28421E-01 .56105E+05 .10000E+01 .28356E-01 .56234E+05 .10000E+01 .28291E-01 .56364E+05 .10000E+01 .28226E-01 .56494E+05 .10000E+01 .28161E-01 .56624E+05 .10000E+01 .28096E-01 .56754E+05 .10000E+01 .28032E-01 .56885E+05 .10000E+01 .27967E-01 .57016E+05 .10000E+01 .27903E-01 .57148E+05 .10000E+01 .27839E-01 .57280E+05 .10000E+01 .27775E-01 .57412E+05 .10000E+01 .27711E-01 .57544E+05 .10000E+01 .27647E-01 .57677E+05 .10000E+01 .27584E-01 .57810E+05 .10000E+01 .27520E-01 .57943E+05 .10000E+01 .27457E-01 .58076E+05 .10000E+01 .27394E-01 .58210E+05 .10000E+01 .27331E-01 .58345E+05 .10000E+01 .27268E-01 .58479E+05 .10000E+01 .27206E-01 .58614E+05 .10000E+01 .27143E-01 .58749E+05 .10000E+01 .27081E-01 .58884E+05 .10000E+01 .27019E-01 .59020E+05 .10000E+01 .26956E-01 .59156E+05 .10000E+01 .26894E-01 .59293E+05 .10000E+01 .26833E-01 .59429E+05 .10000E+01 .26771E-01 .59566E+05 .10000E+01 .26709E-01 .59704E+05 .10000E+01 .26648E-01 .59841E+05 .10000E+01 .26587E-01 .59979E+05 .10000E+01 .26526E-01 .60117E+05 .10000E+01 .26465E-01 .60256E+05 .10000E+01 .26404E-01 .60395E+05 .10000E+01 .26343E-01 .60534E+05 .10000E+01 .26283E-01 .60674E+05 .10000E+01 .26222E-01 .60814E+05 .10000E+01 .26162E-01 .60954E+05 .10000E+01 .26102E-01 .61094E+05 .10000E+01 .26042E-01 .61235E+05 .10000E+01 .25982E-01 .61376E+05 .10000E+01 .25922E-01 .61518E+05 .10000E+01 .25863E-01 .61660E+05 .10000E+01 .25803E-01 .61802E+05 .10000E+01 .25744E-01 .61944E+05 .10000E+01 .25685E-01 .62087E+05 .10000E+01 .25626E-01 .62230E+05 .10000E+01 .25567E-01 .62373E+05 .10000E+01 .25508E-01 .62517E+05 .10000E+01 .25450E-01 .62661E+05 .10000E+01 .25391E-01 .62806E+05 .10000E+01 .25333E-01 .62951E+05 .10000E+01 .25274E-01 .63096E+05 .10000E+01 .25216E-01 .63241E+05 .10000E+01 .25158E-01 .63387E+05 .10000E+01 .25101E-01 .63533E+05 .10000E+01 .25043E-01 .63680E+05 .10000E+01 .24985E-01 .63826E+05 .10000E+01 .24928E-01 .63973E+05 .10000E+01 .24871E-01 .64121E+05 .10000E+01 .24813E-01 .64269E+05 .10000E+01 .24756E-01 .64417E+05 .10000E+01 .24699E-01 .64565E+05 .10000E+01 .24643E-01 .64714E+05 .10000E+01 .24586E-01 .64863E+05 .10000E+01 .24530E-01 .65013E+05 .10000E+01 .24473E-01 .65163E+05 .10000E+01 .24417E-01 .65313E+05 .10000E+01 .24361E-01 .65464E+05 .10000E+01 .24305E-01 .65615E+05 .10000E+01 .24249E-01 .65766E+05 .10000E+01 .24193E-01 .65917E+05 .10000E+01 .24138E-01 .66069E+05 .10000E+01 .24082E-01 .66222E+05 .10000E+01 .24027E-01 .66374E+05 .10000E+01 .23972E-01 .66527E+05 .10000E+01 .23916E-01 .66681E+05 .10000E+01 .23861E-01 .66834E+05 .10000E+01 .23807E-01 .66988E+05 .10000E+01 .23752E-01 .67143E+05 .10000E+01 .23697E-01 .67298E+05 .10000E+01 .23643E-01 .67453E+05 .10000E+01 .23588E-01 .67608E+05 .10000E+01 .23534E-01 .67764E+05 .10000E+01 .23480E-01 .67920E+05 .10000E+01 .23426E-01 .68077E+05 .10000E+01 .23372E-01 .68234E+05 .10000E+01 .23319E-01 .68391E+05 .10000E+01 .23265E-01 .68549E+05 .10000E+01 .23211E-01 .68707E+05 .10000E+01 .23158E-01 .68865E+05 .10000E+01 .23105E-01 .69024E+05 .10000E+01 .23052E-01 .69183E+05 .10000E+01 .22999E-01 .69343E+05 .10000E+01 .22946E-01 .69502E+05 .10000E+01 .22893E-01 .69663E+05 .10000E+01 .22841E-01 .69823E+05 .10000E+01 .22788E-01 .69984E+05 .10000E+01 .22736E-01 .70146E+05 .10000E+01 .22683E-01 .70307E+05 .10000E+01 .22631E-01 .70469E+05 .10000E+01 .22579E-01 .70632E+05 .10000E+01 .22527E-01 .70795E+05 .10000E+01 .22476E-01 .70958E+05 .10000E+01 .22424E-01 .71121E+05 .10000E+01 .22372E-01 .71285E+05 .10000E+01 .22321E-01 .71450E+05 .10000E+01 .22270E-01 .71614E+05 .10000E+01 .22218E-01 .71779E+05 .10000E+01 .22167E-01 .71945E+05 .10000E+01 .22116E-01 .72111E+05 .10000E+01 .22066E-01 .72277E+05 .10000E+01 .22015E-01 .72444E+05 .10000E+01 .21964E-01 .72611E+05 .10000E+01 .21914E-01 .72778E+05 .10000E+01 .21863E-01 .72946E+05 .10000E+01 .21813E-01 .73114E+05 .10000E+01 .21763E-01 .73282E+05 .10000E+01 .21713E-01 .73451E+05 .10000E+01 .21663E-01 .73621E+05 .10000E+01 .21613E-01 .73790E+05 .10000E+01 .21563E-01 .73961E+05 .10000E+01 .21514E-01 .74131E+05 .10000E+01 .21464E-01 .74302E+05 .10000E+01 .21415E-01 .74473E+05 .10000E+01 .21366E-01 .74645E+05 .10000E+01 .21317E-01 .74817E+05 .10000E+01 .21268E-01 .74989E+05 .10000E+01 .21219E-01 .75162E+05 .10000E+01 .21170E-01 .75336E+05 .10000E+01 .21121E-01 .75509E+05 .10000E+01 .21073E-01 .75683E+05 .10000E+01 .21024E-01 .75858E+05 .10000E+01 .20976E-01 .76033E+05 .10000E+01 .20928E-01 .76208E+05 .10000E+01 .20880E-01 .76384E+05 .10000E+01 .20832E-01 .76560E+05 .10000E+01 .20784E-01 .76736E+05 .10000E+01 .20736E-01 .76913E+05 .10000E+01 .20688E-01 .77090E+05 .10000E+01 .20641E-01 .77268E+05 .10000E+01 .20593E-01 .77446E+05 .10000E+01 .20546E-01 .77625E+05 .10000E+01 .20499E-01 .77804E+05 .10000E+01 .20452E-01 .77983E+05 .10000E+01 .20405E-01 .78163E+05 .10000E+01 .20358E-01 .78343E+05 .10000E+01 .20311E-01 .78524E+05 .10000E+01 .20264E-01 .78705E+05 .10000E+01 .20218E-01 .78886E+05 .10000E+01 .20171E-01 .79068E+05 .10000E+01 .20125E-01 .79250E+05 .10000E+01 .20079E-01 .79433E+05 .10000E+01 .20032E-01 .79616E+05 .10000E+01 .19986E-01 .79799E+05 .10000E+01 .19940E-01 .79983E+05 .10000E+01 .19895E-01 .80168E+05 .10000E+01 .19849E-01 .80353E+05 .10000E+01 .19803E-01 .80538E+05 .10000E+01 .19758E-01 .80724E+05 .10000E+01 .19712E-01 .80910E+05 .10000E+01 .19667E-01 .81096E+05 .10000E+01 .19622E-01 .81283E+05 .10000E+01 .19577E-01 .81470E+05 .10000E+01 .19532E-01 .81658E+05 .10000E+01 .19487E-01 .81846E+05 .10000E+01 .19442E-01 .82035E+05 .10000E+01 .19397E-01 .82224E+05 .10000E+01 .19353E-01 .82414E+05 .10000E+01 .19308E-01 .82604E+05 .10000E+01 .19264E-01 .82794E+05 .10000E+01 .19219E-01 .82985E+05 .10000E+01 .19175E-01 .83176E+05 .10000E+01 .19131E-01 .83368E+05 .10000E+01 .19087E-01 .83560E+05 .10000E+01 .19043E-01 .83753E+05 .10000E+01 .18999E-01 .83946E+05 .10000E+01 .18956E-01 .84140E+05 .10000E+01 .18912E-01 .84333E+05 .10000E+01 .18869E-01 .84528E+05 .10000E+01 .18825E-01 .84723E+05 .10000E+01 .18782E-01 .84918E+05 .10000E+01 .18739E-01 .85114E+05 .10000E+01 .18696E-01 .85310E+05 .10000E+01 .18653E-01 .85507E+05 .10000E+01 .18610E-01 .85704E+05 .10000E+01 .18567E-01 .85901E+05 .10000E+01 .18524E-01 .86099E+05 .10000E+01 .18482E-01 .86298E+05 .10000E+01 .18439E-01 .86497E+05 .10000E+01 .18397E-01 .86696E+05 .10000E+01 .18355E-01 .86896E+05 .10000E+01 .18312E-01 .87096E+05 .10000E+01 .18270E-01 .87297E+05 .10000E+01 .18228E-01 .87498E+05 .10000E+01 .18186E-01 .87700E+05 .10000E+01 .18145E-01 .87902E+05 .10000E+01 .18103E-01 .88105E+05 .10000E+01 .18061E-01 .88308E+05 .10000E+01 .18020E-01 .88512E+05 .10000E+01 .17978E-01 .88716E+05 .10000E+01 .17937E-01 .88920E+05 .10000E+01 .17896E-01 .89125E+05 .10000E+01 .17855E-01 .89331E+05 .10000E+01 .17814E-01 .89536E+05 .10000E+01 .17773E-01 .89743E+05 .10000E+01 .17732E-01 .89950E+05 .10000E+01 .17691E-01 .90157E+05 .10000E+01 .17650E-01 .90365E+05 .10000E+01 .17610E-01 .90573E+05 .10000E+01 .17569E-01 .90782E+05 .10000E+01 .17529E-01 .90991E+05 .10000E+01 .17489E-01 .91201E+05 .10000E+01 .17448E-01 .91411E+05 .10000E+01 .17408E-01 .91622E+05 .10000E+01 .17368E-01 .91833E+05 .10000E+01 .17328E-01 .92045E+05 .10000E+01 .17288E-01 .92257E+05 .10000E+01 .17249E-01 .92470E+05 .10000E+01 .17209E-01 .92683E+05 .10000E+01 .17169E-01 .92897E+05 .10000E+01 .17130E-01 .93111E+05 .10000E+01 .17091E-01 .93325E+05 .10000E+01 .17051E-01 .93541E+05 .10000E+01 .17012E-01 .93756E+05 .10000E+01 .16973E-01 .93972E+05 .10000E+01 .16934E-01 .94189E+05 .10000E+01 .16895E-01 .94406E+05 .10000E+01 .16856E-01 .94624E+05 .10000E+01 .16817E-01 .94842E+05 .10000E+01 .16779E-01 .95060E+05 .10000E+01 .16740E-01 .95280E+05 .10000E+01 .16702E-01 .95499E+05 .10000E+01 .16663E-01 .95719E+05 .10000E+01 .16625E-01 .95940E+05 .10000E+01 .16587E-01 .96161E+05 .10000E+01 .16549E-01 .96383E+05 .10000E+01 .16511E-01 .96605E+05 .10000E+01 .16473E-01 .96828E+05 .10000E+01 .16435E-01 .97051E+05 .10000E+01 .16397E-01 .97275E+05 .10000E+01 .16359E-01 .97499E+05 .10000E+01 .16322E-01 .97724E+05 .10000E+01 .16284E-01 .97949E+05 .10000E+01 .16247E-01 .98175E+05 .10000E+01 .16209E-01 .98401E+05 .10000E+01 .16172E-01 .98628E+05 .10000E+01 .16135E-01 .98855E+05 .10000E+01 .16098E-01 .99083E+05 .10000E+01 .16061E-01 .99312E+05 .10000E+01 .16024E-01 .99541E+05 .10000E+01 .15987E-01 .99770E+05 .10000E+01 .15950E-01 .10000E+06 .10000E+01 .15913E-01 .10000E+31 gwave2-20170109/examples/lpf.sp0000644001226200000360000000025613034766135013045 00000000000000* hspice deck for simple RC low-pass filter R1 in out 10k C1 out GND 0.01u Vin in GND 0.0 AC=1.0 .ac dec 1000 100 100k .graph ac v(in) v(out) .option POST=2 probe .end gwave2-20170109/examples/aoi.W0000644001226200000360000043422013034766135012622 00000000000000* CAZM-format output from * TRANSIENT ANALYSIS Time Clk a1 a2 b1 b2 out 0 3 3 3 3 3 3.0092e-06 2.5e-11 3 3 3 3 3 3.0092e-06 5e-11 2.9999 3 3 3 3 3.0092e-06 1.5e-10 2.9997 3 3 3 3 3.0092e-06 2.8975e-10 2.9995 3 3 3 3 3.0092e-06 5.59e-10 2.999 3 3 3 3 3.0092e-06 5.96e-10 3.0008 3 3 3 3 3.0092e-06 6.33e-10 3.0047 3 3 3 3 3.0092e-06 6.7e-10 3.0088 3 3 3 3 3.0092e-06 7.07e-10 3.013 3 3 3 3 3.0092e-06 7.2775e-10 3.0122 3 3 3 3 3.0092e-06 7.485e-10 3.0115 3 3 3 3 3.0092e-06 7.9e-10 3.01 3 3 3 3 3.0092e-06 8.2113e-10 3.0003 3 3 3 3 3.0092e-06 8.5787e-10 2.9846 3 3 3 3 3.0092e-06 8.9462e-10 2.9569 3 3 3 3 3.0092e-06 9.37e-10 2.925 3 3 3 3 3.0092e-06 9.7656e-10 2.8716 3 3 3 3 3.0092e-06 1.0557e-09 2.7227 3 3 3 3 3.0092e-06 1.2931e-09 1.874 3 3 3 3 3.0092e-06 1.5888e-09 0.85438 3 3 3 3 3.0092e-06 2.12e-09 0.088 3 3 3 3 3.0092e-06 2.17e-09 0.071529 3 3 3 3 3.0092e-06 2.265e-09 0.048902 3 3 3 3 3.0092e-06 2.36e-09 0.031329 3 3 3 3 3.0092e-06 2.5e-09 0.015 3 3 3 3 3.0092e-06 2.55e-09 0.013123 3 3 3 3 3.0092e-06 2.65e-09 0.0093686 3 3 3 3 3.0092e-06 2.775e-09 0.0046758 3 3 3 3 3.0092e-06 3e-09 0.001 3 3 3 3 3.0092e-06 3.05e-09 0.00082935 3 3 3 3 3.0092e-06 3.15e-09 0.00048805 3 3 3 3 3.0092e-06 3.55e-09 -0.0004456 3 3 3 3 3.0092e-06 4.05e-09 -0.0013125 3 3 3 3 3.0092e-06 4.55e-09 -0.0021795 3 3 3 3 3.0092e-06 5.05e-09 -0.0030464 3 3 3 3 3.0092e-06 5.6e-09 -0.004 3 3 3 3 3.0092e-06 5.6258e-09 -0.0074333 3 3 3 3 3.0092e-06 5.6515e-09 -0.010867 3 3 3 3 3.0092e-06 5.6772e-09 -0.012802 3 3 3 3 3.0092e-06 5.703e-09 -0.014 3 3 3 3 3.0092e-06 5.7287e-09 -0.0073786 3 3 3 3 3.0092e-06 5.7587e-09 0.00033571 3 3 3 3 3.0092e-06 5.7887e-09 0.017545 3 3 3 3 3.0092e-06 5.823e-09 0.047 3 3 3 3 3.0092e-06 5.8551e-09 0.10675 3 3 3 3 3.0092e-06 5.9194e-09 0.22626 3 3 3 3 3.0092e-06 6.1764e-09 1.0372 3 3 3 3 3.0092e-06 6.5584e-09 1.7959 3 3 3 3 3.0092e-06 6.9404e-09 2.4882 3 3 3 3 3.0092e-06 7.351e-09 2.835 3 3 3 3 3.0092e-06 7.401e-09 2.8527 3 3 3 3 3.0092e-06 7.501e-09 2.8852 3 3 3 3 3.0092e-06 7.6532e-09 2.9163 3 3 3 3 3.0092e-06 7.8055e-09 2.9444 3 3 3 3 3.0092e-06 7.96e-09 2.963 3 3 3 3 3.0092e-06 8.01e-09 2.9666 3 3 3 3 3.0092e-06 8.11e-09 2.9728 3 3 3 3 3.0092e-06 8.245e-09 2.9811 3 3 3 3 3.0092e-06 8.5e-09 2.99 3 3 3 3 3.0092e-06 8.55e-09 2.9909 3 3 3 3 3.0092e-06 8.65e-09 2.9926 3 3 3 3 3.0092e-06 8.775e-09 2.9947 3 3 3 3 3.0092e-06 9e-09 2.997 3 3 3 3 3.0092e-06 9.05e-09 2.9971 3 3 3 3 3.0092e-06 9.15e-09 2.9975 3 3 3 3 3.0092e-06 9.4e-09 2.9982 3 3 3 3 3.0092e-06 9.65e-09 2.999 3 3 3 3 3.0092e-06 1e-08 3 3 3 3 3 3.0092e-06 1.005e-08 2.9999 3 3 3 3 3.0092e-06 1.015e-08 2.9997 3 3 3 3 3.0092e-06 1.029e-08 2.9995 3 3 3 3 3.0092e-06 1.0559e-08 2.999 3 3 3 3 3.0092e-06 1.0569e-08 2.9995 3 3 3 3 3.0092e-06 1.0579e-08 3 3 3 3 3 3.0092e-06 1.059e-08 3.0005 3 3 3 3 3.0092e-06 1.06e-08 3.001 3 3 3 3 3.0092e-06 1.061e-08 3.0021 3 3 3 3 3.0092e-06 1.0626e-08 3.0039 3 3 3 3 3.0092e-06 1.0642e-08 3.0056 3 3 3 3 3.0092e-06 1.0663e-08 3.008 3 3 3 3 3.0092e-06 1.0674e-08 3.0092 3 3 3 3 3.0092e-06 1.0685e-08 3.0105 3 3 3 3 3.0092e-06 1.0696e-08 3.0117 3 3 3 3 3.0092e-06 1.0707e-08 3.013 3 3 3 3 3.0092e-06 1.0718e-08 3.0126 3 3 3 3 3.0092e-06 1.0739e-08 3.0119 3 3 3 3 3.0092e-06 1.0759e-08 3.0111 3 3 3 3 3.0092e-06 1.079e-08 3.01 3 3 3 3 3.0092e-06 1.0805e-08 3.0055 3 3 3 3 3.0092e-06 1.0819e-08 3.001 3 3 3 3 3.0092e-06 1.0834e-08 2.9965 3 3 3 3 3.0092e-06 1.0848e-08 2.992 3 3 3 3 3.0092e-06 1.0863e-08 2.9811 3 3 3 3 3.0092e-06 1.0885e-08 2.9643 3 3 3 3 3.0092e-06 1.0907e-08 2.9476 3 3 3 3 3.0092e-06 1.0937e-08 2.925 3 3 3 3 3.0092e-06 1.0953e-08 2.9037 3 3 3 3 3.0092e-06 1.0968e-08 2.8825 3 3 3 3 3.0092e-06 1.0984e-08 2.8612 3 3 3 3 3.0092e-06 1.1e-08 2.84 3 3 3 3 3.0092e-06 1.1016e-08 2.8068 3 3 3 3 3.0092e-06 1.1032e-08 2.7721 3 3 3 3 3.0092e-06 1.1049e-08 2.7373 3 3 3 3 3.0092e-06 1.1066e-08 2.701 3 3 3 3 3.0092e-06 1.1077e-08 2.6667 3 3 3 3 3.0092e-06 1.1089e-08 2.6325 3 3 3 3 3.0092e-06 1.1101e-08 2.5982 3 3 3 3 3.0092e-06 1.1112e-08 2.564 3 3 3 3 3.0092e-06 1.1124e-08 2.521 3 3 3 3 3.0092e-06 1.114e-08 2.4603 3 3 3 3 3.0092e-06 1.1156e-08 2.3995 3 3 3 3 3.0092e-06 1.1177e-08 2.321 3 3 3 3 3.0092e-06 1.1189e-08 2.2795 3 3 3 3 3.0092e-06 1.1201e-08 2.238 3 3 3 3 3.0092e-06 1.1212e-08 2.1965 3 3 3 3 3.0092e-06 1.1224e-08 2.155 3 3 3 3 3.0092e-06 1.1236e-08 2.1072 3 3 3 3 3.0092e-06 1.1254e-08 2.0329 3 3 3 3 3.0092e-06 1.1272e-08 1.9587 3 3 3 3 3.0092e-06 1.1297e-08 1.858 3 3 3 3 3.0092e-06 1.131e-08 1.8053 3 3 3 3 3.0092e-06 1.1323e-08 1.7525 3 3 3 3 3.0092e-06 1.1336e-08 1.6997 3 3 3 3 3.0092e-06 1.1349e-08 1.647 3 3 3 3 3.0092e-06 1.1362e-08 1.5978 3 3 3 3 3.0092e-06 1.138e-08 1.5288 3 3 3 3 3.0092e-06 1.1398e-08 1.4598 3 3 3 3 3.0092e-06 1.1422e-08 1.371 3 3 3 3 3.0092e-06 1.1435e-08 1.3175 3 3 3 3 3.0092e-06 1.1448e-08 1.264 3 3 3 3 3.0092e-06 1.1461e-08 1.2105 3 3 3 3 3.0092e-06 1.1474e-08 1.157 3 3 3 3 3.0092e-06 1.1478e-08 1.1375 3 3 3 3 3.0092e-06 1.1482e-08 1.118 3 3 3 3 3.0092e-06 1.1485e-08 1.0985 3 3 3 3 3.0092e-06 1.1489e-08 1.079 3 3 3 3 3.0092e-06 1.1492e-08 1.067 3 3 3 3 3.0092e-06 1.1494e-08 1.055 3 3 3 3 3.0092e-06 1.1497e-08 1.043 3 3 3 3 3.0092e-06 1.15e-08 1.031 3 3 3 3 3.0092e-06 1.1503e-08 1.0211 3 3 3 3 3.0092e-06 1.1508e-08 1.0031 3 3 3 3 3.0092e-06 1.1513e-08 0.9851 3 3 3 3 3.0092e-06 1.152e-08 0.959 3 3 3 3 3.0092e-06 1.1524e-08 0.95375 3 3 3 3 3.0092e-06 1.1527e-08 0.9485 3 3 3 3 3.0092e-06 1.1534e-08 0.938 3 3 3 3 3.0092e-06 1.1539e-08 0.92903 3 3 3 3 3.0092e-06 1.1545e-08 0.91878 3 3 3 3 3.0092e-06 1.1551e-08 0.90853 3 3 3 3 3.0092e-06 1.1558e-08 0.897 3 3 3 3 3.0092e-06 1.1562e-08 0.89325 3 3 3 3 3.0092e-06 1.1566e-08 0.8895 3 3 3 3 3.0092e-06 1.1571e-08 0.88575 3 3 3 3 3.0092e-06 1.1575e-08 0.882 3 3 3 3 3.0092e-06 1.1579e-08 0.8735 3 3 3 3 3.0092e-06 1.1586e-08 0.86 3 3 3 3 3.0092e-06 1.1593e-08 0.8465 3 3 3 3 3.0092e-06 1.1602e-08 0.828 3 3 3 3 3.0092e-06 1.1607e-08 0.8165 3 3 3 3 3.0092e-06 1.1612e-08 0.805 3 3 3 3 3.0092e-06 1.1617e-08 0.7935 3 3 3 3 3.0092e-06 1.1622e-08 0.782 3 3 3 3 3.0092e-06 1.1627e-08 0.76988 3 3 3 3 3.0092e-06 1.1635e-08 0.74988 3 3 3 3 3.0092e-06 1.1644e-08 0.72988 3 3 3 3 3.0092e-06 1.1655e-08 0.702 3 3 3 3 3.0092e-06 1.1661e-08 0.68875 3 3 3 3 3.0092e-06 1.1667e-08 0.6755 3 3 3 3 3.0092e-06 1.1679e-08 0.649 3 3 3 3 3.0092e-06 1.1688e-08 0.62724 3 3 3 3 3.0092e-06 1.1705e-08 0.58674 3 3 3 3 3.0092e-06 1.1722e-08 0.54624 3 3 3 3 3.0092e-06 1.1746e-08 0.487 3 3 3 3 3.0092e-06 1.1751e-08 0.47616 3 3 3 3 3.0092e-06 1.1756e-08 0.46533 3 3 3 3 3.0092e-06 1.1767e-08 0.44366 3 3 3 3 3.0092e-06 1.1774e-08 0.43024 3 2.9758 3 3 -0.0026514 1.178e-08 0.41683 3 2.9516 3 3 -0.0051477 1.1786e-08 0.40341 3 2.9273 3 3 -0.0072105 1.1793e-08 0.39 3 2.9031 3 3 -0.0088735 1.18e-08 0.3796 3 2.8789 3 3 -0.010148 1.1813e-08 0.3588 3 2.8304 3 3 -0.012305 1.183e-08 0.3308 3 2.7652 3 3 -0.01411 1.1863e-08 0.278 3 2.6422 3 3 -0.015716 1.1875e-08 0.26375 3 2.5966 3 3 -0.01593 1.1887e-08 0.2495 3 2.5509 3 3 -0.016113 1.1912e-08 0.221 3 2.4596 3 3 -0.016399 1.1925e-08 0.20925 3 2.4112 3 3 -0.016498 1.1938e-08 0.1975 3 2.3528 3 3 -0.017568 1.1951e-08 0.18575 3 2.2913 3 3 -0.018753 1.1964e-08 0.174 3 2.2299 3 3 -0.019553 1.1973e-08 0.1675 3 2.1874 3 3 -0.01992 1.1982e-08 0.161 3 2.1449 3 3 -0.020246 1.2e-08 0.148 3 2.0598 3 3 -0.020789 1.2014e-08 0.14125 3 1.9961 3 3 -0.021001 1.2041e-08 0.12775 3 1.8685 3 3 -0.021317 1.2071e-08 0.11275 3 1.7244 3 3 -0.021881 1.212e-08 0.088 3 1.4829 3 3 -0.022722 1.2141e-08 0.081 3 1.3793 3 3 -0.023038 1.2163e-08 0.074 3 1.2756 3 3 -0.023374 1.2184e-08 0.067 3 1.1744 3 3 -0.023501 1.2205e-08 0.06 3 1.08 3 3 -0.023161 1.2226e-08 0.056069 3 0.98556 3 3 -0.023213 1.2269e-08 0.048208 3 0.79667 3 3 -0.020541 1.2312e-08 0.040208 3 0.60444 3 3 -0.0089887 1.2378e-08 0.028 3 0.45502 3 3 -0.0031315 1.2409e-08 0.02475 3 0.38699 3 3 -0.0024191 1.2439e-08 0.0215 3 0.31896 3 3 -0.0019083 1.247e-08 0.01825 3 0.25093 3 3 -0.0017065 1.25e-08 0.015 3 0.1829 3 3 -0.0015835 1.2521e-08 0.01423 3 0.13717 3 3 -0.0015229 1.2541e-08 0.013461 3 0.09145 3 3 -0.0014761 1.2562e-08 0.012691 3 0.045725 3 3 -0.0014692 1.2582e-08 0.011922 3 0 3 3 -0.0014433 1.2603e-08 0.011152 3 0 3 3 -0.0010186 1.2643e-08 0.0096126 3 0 3 3 -0.00041753 1.2696e-08 0.0076323 3 0 3 3 -9.5845e-05 1.2793e-08 0.004 3 0 3 3 1.6993e-05 1.2843e-08 0.0032754 3 0 3 3 1.1106e-05 1.2895e-08 0.0025254 3 0 3 3 1.0846e-05 1.2946e-08 0.0017754 3 0 3 3 1.1906e-05 1.3e-08 0.001 3 0 3 3 1.1323e-05 1.305e-08 0.00082935 3 0 3 3 1.0219e-05 1.3123e-08 0.00057935 3 0 3 3 1.0447e-05 1.3196e-08 0.00032935 3 0 3 3 1.0863e-05 1.3293e-08 0 3 0 3 3 1.0076e-05 1.3343e-08 -8.6693e-05 3 0 3 3 9.9925e-06 1.3443e-08 -0.00026008 3 0 3 3 9.8788e-06 1.3843e-08 -0.00095362 3 0 3 3 7.7595e-06 1.4343e-08 -0.0018205 3 0 3 3 6.9458e-06 1.4843e-08 -0.0026875 3 0 3 3 7.5014e-06 1.5343e-08 -0.0035544 3 0 3 3 6.945e-06 1.56e-08 -0.004 3 0 3 3 8.2315e-06 1.5615e-08 -0.006 3 0 3 3 1.1401e-05 1.563e-08 -0.008 3 0 3 3 1.2643e-05 1.5645e-08 -0.01 3 0 3 3 1.2568e-05 1.566e-08 -0.012 3 0 3 3 1.2627e-05 1.5671e-08 -0.0125 3 0 3 3 1.222e-05 1.5682e-08 -0.013 3 0 3 3 1.2832e-05 1.5692e-08 -0.0135 3 0 3 3 1.3025e-05 1.5703e-08 -0.014 3 0 3 3 1.2877e-05 1.5714e-08 -0.011236 3 0 3 3 1.2244e-05 1.5731e-08 -0.0067357 3 0 3 3 1.2353e-05 1.5749e-08 -0.0022357 3 0 3 3 1.2484e-05 1.5773e-08 0.004 3 0 3 3 1.1996e-05 1.5785e-08 0.01475 3 0 3 3 1.1977e-05 1.5798e-08 0.0255 3 0 3 3 1.2699e-05 1.581e-08 0.03625 3 0 3 3 1.2866e-05 1.5823e-08 0.047 3 0 3 3 1.2737e-05 1.5836e-08 0.07025 3 0 3 3 1.2048e-05 1.5861e-08 0.11675 3 0 3 3 1.1916e-05 1.5885e-08 0.16325 3 0 3 3 1.2023e-05 1.5923e-08 0.233 3 0 3 3 1.1376e-05 1.5941e-08 0.289 3 0 3 3 1.1457e-05 1.5959e-08 0.345 3 0 3 3 1.2314e-05 1.5976e-08 0.401 3 0 3 3 1.2485e-05 1.5994e-08 0.457 3 0 3 3 1.235e-05 1.5995e-08 0.4605 3 0 3 3 1.3819e-05 1.5996e-08 0.464 3 0 3 3 1.4524e-05 1.5997e-08 0.471 3 0 3 3 1.4294e-05 1.5998e-08 0.47375 3 0 3 3 1.4255e-05 1.5999e-08 0.4765 3 0 3 3 1.4426e-05 1.6e-08 0.482 3 0 3 3 1.437e-05 1.6001e-08 0.48582 3 0 3 3 1.4109e-05 1.6003e-08 0.49345 3 0 3 3 1.4009e-05 1.6012e-08 0.52399 3 0 3 3 1.3296e-05 1.604e-08 0.61899 3 0 3 3 1.1562e-05 1.6068e-08 0.71399 3 0 3 3 1.2026e-05 1.6112e-08 0.862 3 0 3 3 1.0949e-05 1.6132e-08 0.91575 3 0 3 3 1.1267e-05 1.6151e-08 0.9695 3 0 3 3 1.2194e-05 1.6171e-08 1.0232 3 0 3 3 1.235e-05 1.6191e-08 1.077 3 0 3 3 1.2226e-05 1.6203e-08 1.1072 3 0 3 3 1.2075e-05 1.6214e-08 1.1375 3 0 3 3 1.2756e-05 1.6226e-08 1.1678 3 0 3 3 1.2931e-05 1.6238e-08 1.198 3 0 3 3 1.2797e-05 1.6246e-08 1.2175 3 0 3 3 1.2527e-05 1.6254e-08 1.237 3 0 3 3 1.3079e-05 1.6263e-08 1.2565 3 0 3 3 1.3253e-05 1.6271e-08 1.276 3 0 3 3 1.3123e-05 1.6279e-08 1.2914 3 0 3 3 1.2562e-05 1.6291e-08 1.3134 3 0 3 3 1.2775e-05 1.6303e-08 1.3354 3 0 3 3 1.2917e-05 1.6318e-08 1.364 3 0 3 3 1.2553e-05 1.6326e-08 1.3802 3 0 3 3 1.247e-05 1.6335e-08 1.3965 3 0 3 3 1.3062e-05 1.6344e-08 1.4128 3 0 3 3 1.3221e-05 1.6352e-08 1.429 3 0 3 3 1.3102e-05 1.636e-08 1.4447 3 0 3 3 1.2591e-05 1.6368e-08 1.4605 3 0 3 3 1.3094e-05 1.6384e-08 1.492 3 0 3 3 1.2753e-05 1.639e-08 1.503 3 0 3 3 1.2862e-05 1.6396e-08 1.514 3 0 3 3 1.3388e-05 1.6401e-08 1.525 3 0 3 3 1.3519e-05 1.6407e-08 1.536 3 0 3 3 1.3425e-05 1.6413e-08 1.5416 3 0 3 3 1.294e-05 1.6421e-08 1.5496 3 0 3 3 1.3105e-05 1.6429e-08 1.5576 3 0 3 3 1.3234e-05 1.644e-08 1.568 3 0 3 3 1.2917e-05 1.6445e-08 1.5757 3 0 3 3 1.2919e-05 1.6451e-08 1.5835 3 0 3 3 1.3415e-05 1.6457e-08 1.5912 3 0 3 3 1.3555e-05 1.6462e-08 1.599 3 0 3 3 1.3455e-05 1.6467e-08 1.61 3 0 3 3 1.2982e-05 1.6473e-08 1.621 3 0 3 3 1.3391e-05 1.6479e-08 1.632 3 0 3 3 1.3573e-05 1.6484e-08 1.643 3 0 3 3 1.3442e-05 1.6488e-08 1.6508 3 0 3 3 1.3235e-05 1.6492e-08 1.6585 3 0 3 3 1.3623e-05 1.65e-08 1.674 3 0 3 3 1.3384e-05 1.6506e-08 1.6858 3 0 3 3 1.2898e-05 1.6514e-08 1.7011 3 0 3 3 1.3148e-05 1.6522e-08 1.7163 3 0 3 3 1.3293e-05 1.6531e-08 1.735 3 0 3 3 1.3022e-05 1.6537e-08 1.7472 3 0 3 3 1.2931e-05 1.6542e-08 1.7595 3 0 3 3 1.341e-05 1.6547e-08 1.7717 3 0 3 3 1.3559e-05 1.6553e-08 1.784 3 0 3 3 1.3452e-05 1.6559e-08 1.7962 3 0 3 3 1.2982e-05 1.6569e-08 1.8207 3 0 3 3 1.2871e-05 1.6585e-08 1.8557 3 0 3 3 1.2638e-05 1.6616e-08 1.924 3 0 3 3 1.1636e-05 1.6627e-08 1.9473 3 0 3 3 1.2095e-05 1.6638e-08 1.9705 3 0 3 3 1.2849e-05 1.6649e-08 1.9937 3 0 3 3 1.2973e-05 1.666e-08 2.017 3 0 3 3 1.2878e-05 1.6671e-08 2.0376 3 0 3 3 1.2217e-05 1.6693e-08 2.0788 3 0 3 3 1.2087e-05 1.6719e-08 2.1265 3 0 3 3 1.202e-05 1.6762e-08 2.208 3 0 3 3 1.1116e-05 1.678e-08 2.2362 3 0 3 3 1.1415e-05 1.6798e-08 2.2645 3 0 3 3 1.2307e-05 1.6834e-08 2.321 3 0 3 3 1.1645e-05 1.6858e-08 2.3595 3 0 3 3 1.1009e-05 1.6883e-08 2.398 3 0 3 3 1.1889e-05 1.6931e-08 2.475 3 0 3 3 1.1215e-05 1.6948e-08 2.4992 3 0 3 3 1.1483e-05 1.6965e-08 2.5235 3 0 3 3 1.2356e-05 1.6983e-08 2.5477 3 0 3 3 1.2512e-05 1.7e-08 2.572 3 0 3 3 1.2389e-05 1.7017e-08 2.59 3 0 3 3 1.1585e-05 1.7045e-08 2.6193 3 0 3 3 1.1736e-05 1.7073e-08 2.6485 3 0 3 3 1.1884e-05 1.7112e-08 2.689 3 0 3 3 1.1297e-05 1.7132e-08 2.7037 3 0 3 3 1.1277e-05 1.7152e-08 2.7185 3 0 3 3 1.2164e-05 1.7172e-08 2.7332 3 0 3 3 1.2346e-05 1.7192e-08 2.748 3 0 3 3 1.2201e-05 1.7212e-08 2.7589 3 0 3 3 1.1352e-05 1.7252e-08 2.7807 3 0 3 3 1.1221e-05 1.7291e-08 2.8024 3 0 3 3 1.1339e-05 1.7351e-08 2.835 3 0 3 3 1.0588e-05 1.7379e-08 2.845 3 0 3 3 1.0683e-05 1.7407e-08 2.855 3 0 3 3 1.1706e-05 1.7436e-08 2.865 3 0 3 3 1.1886e-05 1.7464e-08 2.875 3 0 3 3 1.1739e-05 1.7469e-08 2.8765 3 0 3 3 1.2817e-05 1.7475e-08 2.878 3 0 3 3 1.3505e-05 1.748e-08 2.8795 3 0 3 3 1.3548e-05 1.7485e-08 2.881 3 0 3 3 1.3517e-05 1.7489e-08 2.882 3 0 3 3 1.3292e-05 1.7492e-08 2.883 3 0 3 3 1.3663e-05 1.75e-08 2.885 3 0 3 3 1.3437e-05 1.7506e-08 2.8862 3 0 3 3 1.2961e-05 1.7517e-08 2.8885 3 0 3 3 1.2849e-05 1.7562e-08 2.8977 3 0 3 3 1.134e-05 1.7629e-08 2.9114 3 0 3 3 1.014e-05 1.7696e-08 2.9252 3 0 3 3 1.0584e-05 1.7769e-08 2.94 3 0 3 3 1.0061e-05 1.7817e-08 2.9457 3 0 3 3 9.7515e-06 1.7864e-08 2.9515 3 0 3 3 1.0874e-05 1.796e-08 2.963 3 0 3 3 9.9485e-06 1.7966e-08 2.9635 3 0 3 3 1.2535e-05 1.7971e-08 2.964 3 0 3 3 1.3515e-05 1.7977e-08 2.9645 3 0 3 3 1.3428e-05 1.7983e-08 2.965 3 0 3 3 1.3491e-05 1.7987e-08 2.9653 3 0 3 3 1.3196e-05 1.7991e-08 2.9655 3 0 3 3 1.3579e-05 1.8e-08 2.966 3 0 3 3 1.334e-05 1.8006e-08 2.9664 3 0 3 3 1.2838e-05 1.8019e-08 2.9672 3 0 3 3 1.2723e-05 1.807e-08 2.9703 3 0 3 3 1.113e-05 1.8143e-08 2.9748 3 0 3 3 9.9836e-06 1.8217e-08 2.9793 3 0 3 3 1.043e-05 1.8293e-08 2.984 3 0 3 3 9.966e-06 1.8343e-08 2.9854 3 0 3 3 9.6652e-06 1.8395e-08 2.9869 3 0 3 3 1.0743e-05 1.8446e-08 2.9884 3 0 3 3 1.093e-05 1.85e-08 2.99 3 0 3 3 1.0716e-05 1.855e-08 2.9909 3 0 3 3 9.7081e-06 1.8623e-08 2.9921 3 0 3 3 1.014e-05 1.8697e-08 2.9934 3 0 3 3 1.0295e-05 1.8793e-08 2.995 3 0 3 3 9.6689e-06 1.8843e-08 2.9955 3 0 3 3 9.6482e-06 1.8895e-08 2.996 3 0 3 3 1.0752e-05 1.8946e-08 2.9965 3 0 3 3 1.0922e-05 1.9e-08 2.997 3 0 3 3 1.0723e-05 1.905e-08 2.9971 3 0 3 3 9.7085e-06 1.915e-08 2.9975 3 0 3 3 9.5924e-06 1.94e-08 2.9982 3 0 3 3 8.2023e-06 1.965e-08 2.999 3 0 3 3 7.9633e-06 2e-08 3 3 0 3 3 7.7498e-06 2.005e-08 2.9999 3 0 3 3 9.5384e-06 2.015e-08 2.9997 3 0 3 3 9.743e-06 2.029e-08 2.9995 3 0 3 3 8.9644e-06 2.0559e-08 2.999 3 0 3 3 8.0879e-06 2.0569e-08 2.9995 3 0 3 3 1.1817e-05 2.058e-08 3 3 0 3 3 1.3069e-05 2.059e-08 3.0005 3 0 3 3 1.2923e-05 2.06e-08 3.001 3 0 3 3 1.3034e-05 2.061e-08 3.0021 3 0 3 3 1.2315e-05 2.0626e-08 3.0039 3 0 3 3 1.2463e-05 2.0642e-08 3.0056 3 0 3 3 1.2613e-05 2.0663e-08 3.008 3 0 3 3 1.2158e-05 2.0674e-08 3.0092 3 0 3 3 1.2146e-05 2.0685e-08 3.0105 3 0 3 3 1.2827e-05 2.0696e-08 3.0117 3 0 3 3 1.2989e-05 2.0707e-08 3.013 3 0 3 3 1.2866e-05 2.0718e-08 3.0126 3 0 3 3 1.2216e-05 2.0739e-08 3.0119 3 0 3 3 1.2158e-05 2.076e-08 3.0111 3 0 3 3 1.2269e-05 2.079e-08 3.01 3 0 3 3 1.1687e-05 2.0804e-08 3.0055 3 0 3 3 1.176e-05 2.0819e-08 3.001 3 0 3 3 1.2545e-05 2.0834e-08 2.9965 3 0 3 3 1.271e-05 2.0848e-08 2.992 3 0 3 3 1.2582e-05 2.0862e-08 2.9811 3 0 3 3 1.1842e-05 2.0885e-08 2.9643 3 0 3 3 1.2046e-05 2.0907e-08 2.9476 3 0 3 3 1.2198e-05 2.0937e-08 2.925 3 0 3 3 1.1686e-05 2.0953e-08 2.9037 3 0 3 3 1.165e-05 2.0968e-08 2.8825 3 0 3 3 1.2448e-05 2.1e-08 2.84 3 0 3 3 1.1864e-05 2.1017e-08 2.8052 3 0 3 3 1.1602e-05 2.1033e-08 2.7705 3 0 3 3 1.2385e-05 2.1066e-08 2.701 3 0 3 3 1.1809e-05 2.1078e-08 2.6667 3 0 3 3 1.206e-05 2.1089e-08 2.6325 3 0 3 3 1.2796e-05 2.11e-08 2.5982 3 0 3 3 1.2938e-05 2.1112e-08 2.564 3 0 3 3 1.2829e-05 2.1123e-08 2.521 3 0 3 3 1.216e-05 2.114e-08 2.4603 3 0 3 3 1.2424e-05 2.1156e-08 2.3995 3 0 3 3 1.2581e-05 2.1177e-08 2.321 3 0 3 3 1.2167e-05 2.1189e-08 2.2795 3 0 3 3 1.2069e-05 2.12e-08 2.238 3 0 3 3 1.2758e-05 2.1212e-08 2.1965 3 0 3 3 1.2929e-05 2.1224e-08 2.155 3 0 3 3 1.2798e-05 2.1236e-08 2.1072 3 0 3 3 1.213e-05 2.1254e-08 2.0329 3 0 3 3 1.2297e-05 2.1272e-08 1.9587 3 0 3 3 1.244e-05 2.1297e-08 1.858 3 0 3 3 1.1962e-05 2.131e-08 1.8053 3 0 3 3 1.1925e-05 2.1323e-08 1.7525 3 0 3 3 1.2658e-05 2.1349e-08 1.647 3 0 3 3 1.2133e-05 2.1367e-08 1.578 3 0 3 3 1.1482e-05 2.1385e-08 1.509 3 0 3 3 1.225e-05 2.1422e-08 1.371 3 0 3 3 1.1679e-05 2.1435e-08 1.3175 3 0 3 3 1.1899e-05 2.1448e-08 1.264 3 0 3 3 1.2669e-05 2.1461e-08 1.2105 3 0 3 3 1.2818e-05 2.1474e-08 1.157 3 0 3 3 1.2703e-05 2.1478e-08 1.1375 3 0 3 3 1.3186e-05 2.1481e-08 1.118 3 0 3 3 1.3703e-05 2.1489e-08 1.079 3 0 3 3 1.3387e-05 2.1492e-08 1.067 3 0 3 3 1.3481e-05 2.1495e-08 1.055 3 0 3 3 1.3866e-05 2.1497e-08 1.043 3 0 3 3 1.3986e-05 2.15e-08 1.031 3 0 3 3 1.3908e-05 2.1503e-08 1.0211 3 0 3 3 1.3555e-05 2.1508e-08 1.0031 3 0 3 3 1.3516e-05 2.1513e-08 0.9851 3 0 3 3 1.3598e-05 2.152e-08 0.959 3 0 3 3 1.3289e-05 2.1523e-08 0.95375 3 0 3 3 1.331e-05 2.1527e-08 0.9485 3 0 3 3 1.372e-05 2.1534e-08 0.938 3 0 3 3 1.3473e-05 2.1539e-08 0.92903 3 0 3 3 1.3024e-05 2.1545e-08 0.91878 3 0 3 3 1.3341e-05 2.1551e-08 0.90853 3 0 3 3 1.3499e-05 2.1558e-08 0.897 3 0 3 3 1.3301e-05 2.1562e-08 0.89325 3 0 3 3 1.3172e-05 2.1566e-08 0.8895 3 0 3 3 1.3588e-05 2.1571e-08 0.88575 3 0 3 3 1.3734e-05 2.1575e-08 0.882 3 0 3 3 1.3633e-05 2.1579e-08 0.8735 3 0 3 3 1.3214e-05 2.1586e-08 0.86 3 0 3 3 1.3281e-05 2.1593e-08 0.8465 3 0 3 3 1.3388e-05 2.1602e-08 0.828 3 0 3 3 1.3068e-05 2.1607e-08 0.8165 3 0 3 3 1.3016e-05 2.1612e-08 0.805 3 0 3 3 1.3481e-05 2.1617e-08 0.7935 3 0 3 3 1.3624e-05 2.1622e-08 0.782 3 0 3 3 1.3522e-05 2.1627e-08 0.76988 3 0 3 3 1.3071e-05 2.1635e-08 0.74988 3 0 3 3 1.3118e-05 2.1643e-08 0.72988 3 0 3 3 1.3224e-05 2.1655e-08 0.702 3 0 3 3 1.2866e-05 2.1661e-08 0.68875 3 0 3 3 1.2838e-05 2.1667e-08 0.6755 3 0 3 3 1.3349e-05 2.1673e-08 0.66225 3 0 3 3 1.3493e-05 2.1679e-08 0.649 3 0 3 3 1.3389e-05 2.1685e-08 0.63449 3 0 3 3 1.2898e-05 2.1697e-08 0.60548 3 0 3 3 1.2785e-05 2.1714e-08 0.56498 3 0 3 3 1.2566e-05 2.1746e-08 0.487 3 0 3 3 1.1568e-05 2.1751e-08 0.47616 3 0 3 3 1.2797e-05 2.1757e-08 0.46533 3 0 3 3 1.3513e-05 2.1762e-08 0.45449 3 0 3 3 1.3542e-05 2.1767e-08 0.44366 3 0 3 3 1.3521e-05 2.1772e-08 0.43282 2.9804 0 3 3 1.303e-05 2.1779e-08 0.41941 2.9562 0 3 3 1.1496e-05 2.1785e-08 0.40599 2.932 0 3 3 1.3871e-05 2.1793e-08 0.39 2.9031 0 3 3 1.4013e-05 2.18e-08 0.3786 2.8766 0 3 3 1.3216e-05 2.1814e-08 0.3558 2.8234 0 3 3 1.2218e-05 2.1832e-08 0.3278 2.7582 0 3 3 1.2683e-05 2.1863e-08 0.278 2.6422 0 3 3 1.0264e-05 2.1875e-08 0.26375 2.5966 0 3 3 1.2281e-05 2.1887e-08 0.2495 2.5509 0 3 3 1.2235e-05 2.1912e-08 0.221 2.4596 0 3 3 1.3526e-05 2.1925e-08 0.20925 2.4112 0 3 3 1.1876e-05 2.1938e-08 0.1975 2.3528 0 3 3 1.3639e-05 2.1951e-08 0.18575 2.2913 0 3 3 1.2875e-05 2.1964e-08 0.174 2.2299 0 3 3 1.3725e-05 2.1966e-08 0.17237 2.2193 0 3 3 1.4073e-05 2.1968e-08 0.17075 2.2087 0 3 3 1.4452e-05 2.1971e-08 0.16913 2.198 0 3 3 1.4575e-05 2.1973e-08 0.1675 2.1874 0 3 3 1.47e-05 2.1975e-08 0.16588 2.1768 0.009375 3 3 0.00014151 2.198e-08 0.16262 2.1555 0.028125 3 3 0.00029293 2.1986e-08 0.15775 2.1236 0.05625 3 3 0.00062232 2.2e-08 0.148 2.0598 0.1125 3 3 0.0011011 2.201e-08 0.14294 2.012 0.15469 3 3 0.0013432 2.203e-08 0.13281 1.9163 0.23906 3 3 0.0018034 2.206e-08 0.11781 1.7738 0.36406 3 3 0.0022158 2.212e-08 0.088 1.4829 0.60822 3 3 0.0021822 2.2141e-08 0.081 1.3793 0.66644 3 3 0.0013651 2.2162e-08 0.074 1.2756 0.72466 3 3 0.00037702 2.2184e-08 0.067 1.1744 0.78288 3 3 -0.0009437 2.2205e-08 0.06 1.08 0.8411 3 3 -0.0014551 2.2226e-08 0.056069 0.98556 0.89932 3 3 0.00024684 2.2269e-08 0.048208 0.79667 1.0158 3 3 0.0048712 2.2312e-08 0.040208 0.60444 1.1342 3 3 0.010065 2.2378e-08 0.028 0.45502 1.2768 3 3 0.017228 2.2408e-08 0.02475 0.38699 1.3326 3 3 0.018338 2.2439e-08 0.0215 0.31896 1.3884 3 3 0.019178 2.247e-08 0.01825 0.25093 1.4442 3 3 0.019656 2.25e-08 0.015 0.1829 1.5 3 3 0.019942 2.252e-08 0.01423 0.13717 1.5375 3 3 0.02006 2.2541e-08 0.013461 0.09145 1.575 3 3 0.020218 2.2561e-08 0.012691 0.045725 1.6125 3 3 0.020156 2.2582e-08 0.011922 0 1.65 3 3 0.020207 2.2602e-08 0.011152 0 1.6875 3 3 0.020368 2.2643e-08 0.0096126 0 1.7625 3 3 0.020792 2.2696e-08 0.0076323 0 1.8581 3 3 0.021172 2.2793e-08 0.004 0 2.0324 3 3 0.02131 2.2843e-08 0.0032754 0 2.1225 3 3 0.021314 2.2894e-08 0.0025362 0 2.2144 3 3 0.021314 2.2945e-08 0.0017971 0 2.3063 3 3 0.021273 2.2997e-08 0.0010435 0 2.4 3 3 0.021281 2.2998e-08 0.0010326 0 2.4007 3 3 0.021227 2.2999e-08 0.0010217 0 2.4014 3 3 0.02118 2.3e-08 0.001 0 2.4027 3 3 0.021058 2.3001e-08 0.00099616 0 2.4037 3 3 0.020952 2.3003e-08 0.00098848 0 2.4058 3 3 0.020713 2.3012e-08 0.00095776 0 2.4139 3 3 0.019864 2.3048e-08 0.0008349 0 2.4464 3 3 0.016652 2.3122e-08 0.0005849 0 2.5124 3 3 0.012983 2.3195e-08 0.0003349 0 2.5785 3 3 0.011562 2.3293e-08 0 0 2.6671 3 3 0.010864 2.3343e-08 -8.6693e-05 0 2.7122 3 3 0.010776 2.3435e-08 -0.00024664 0 2.7954 3 3 0.010666 2.3527e-08 -0.00040659 0 2.8786 3 3 0.010629 2.3662e-08 -0.00063979 0 3 3 3 0.010557 2.3712e-08 -0.00072648 0 3 3 3 0.0068097 2.3812e-08 -0.00089987 0 3 3 3 0.0017713 2.4212e-08 -0.0015934 0 3 3 3 -0.00067032 2.4697e-08 -0.0024335 0 3 3 3 0.00035515 2.5197e-08 -0.0033004 0 3 3 3 -0.00017995 2.56e-08 -0.004 0 3 3 3 9.7588e-05 2.5615e-08 -0.006 0 3 3 3 8.3951e-05 2.563e-08 -0.008 0 3 3 3 9.2393e-05 2.566e-08 -0.012 0 3 3 3 0.00011351 2.5671e-08 -0.0125 0 3 3 3 9.8969e-05 2.5681e-08 -0.013 0 3 3 3 0.00010013 2.5692e-08 -0.0135 0 3 3 3 0.00010216 2.5703e-08 -0.014 0 3 3 3 0.00010058 2.5714e-08 -0.011236 0 3 3 3 9.752e-05 2.5731e-08 -0.0067357 0 3 3 3 9.8531e-05 2.5749e-08 -0.0022357 0 3 3 3 9.9181e-05 2.5773e-08 0.004 0 3 3 3 9.5984e-05 2.5785e-08 0.01475 0 3 3 3 9.5751e-05 2.5798e-08 0.0255 0 3 3 3 0.00010021 2.5823e-08 0.047 0 3 3 3 9.686e-05 2.5842e-08 0.081875 0 3 3 3 9.0884e-05 2.5867e-08 0.12837 0 3 3 3 9.4999e-05 2.5892e-08 0.17488 0 3 3 3 9.634e-05 2.5923e-08 0.233 0 3 3 3 9.2647e-05 2.5941e-08 0.289 0 3 3 3 9.1351e-05 2.5958e-08 0.345 0 3 3 3 9.8041e-05 2.5976e-08 0.401 0 3 3 3 9.9398e-05 2.5994e-08 0.457 0 3 3 3 9.8292e-05 2.5995e-08 0.4605 0 3 3 3 9.9671e-05 2.5996e-08 0.464 0 3 3 3 9.9411e-05 2.5997e-08 0.471 0 3 3 3 9.9495e-05 2.5998e-08 0.47375 0 3 3 3 9.9941e-05 2.5998e-08 0.4765 0 3 3 3 9.935e-05 2.6e-08 0.482 0 3 3 3 9.9543e-05 2.6001e-08 0.48582 0 3 3 3 0.00010056 2.6003e-08 0.49345 0 3 3 3 0.00010094 2.6012e-08 0.52399 0 3 3 3 0.00010132 2.604e-08 0.61899 0 3 3 3 9.5706e-05 2.6068e-08 0.71399 0 3 3 3 9.3371e-05 2.6112e-08 0.862 0 3 3 3 8.9627e-05 2.6132e-08 0.91575 0 3 3 3 8.9599e-05 2.6152e-08 0.9695 0 3 3 3 9.7217e-05 2.6171e-08 1.0232 0 3 3 3 9.8581e-05 2.6191e-08 1.077 0 3 3 3 9.7461e-05 2.6203e-08 1.1072 0 3 3 3 9.6467e-05 2.6215e-08 1.1375 0 3 3 3 0.00010045 2.6226e-08 1.1678 0 3 3 3 0.0001014 2.6238e-08 1.198 0 3 3 3 0.00010065 2.6246e-08 1.2175 0 3 3 3 9.9416e-05 2.6255e-08 1.237 0 3 3 3 0.00010147 2.6263e-08 1.2565 0 3 3 3 0.00010211 2.6271e-08 1.276 0 3 3 3 0.00010162 2.6279e-08 1.2914 0 3 3 3 9.9508e-05 2.6291e-08 1.3134 0 3 3 3 0.00010067 2.6303e-08 1.3354 0 3 3 3 0.00010123 2.6318e-08 1.364 0 3 3 3 9.9645e-05 2.6327e-08 1.3802 0 3 3 3 9.9141e-05 2.6335e-08 1.3965 0 3 3 3 0.00010145 2.6343e-08 1.4128 0 3 3 3 0.00010205 2.6352e-08 1.429 0 3 3 3 0.00010159 2.636e-08 1.4447 0 3 3 3 9.9683e-05 2.6368e-08 1.4605 0 3 3 3 0.00010149 2.6376e-08 1.4763 0 3 3 3 0.00010216 2.6384e-08 1.492 0 3 3 3 0.00010165 2.639e-08 1.503 0 3 3 3 0.00010112 2.6395e-08 1.514 0 3 3 3 0.00010185 2.6401e-08 1.525 0 3 3 3 0.00010211 2.6407e-08 1.536 0 3 3 3 0.00010192 2.6413e-08 1.5416 0 3 3 3 0.00010115 2.6421e-08 1.5496 0 3 3 3 0.00010169 2.6429e-08 1.5576 0 3 3 3 0.00010194 2.644e-08 1.568 0 3 3 3 0.00010123 2.6446e-08 1.5757 0 3 3 3 0.00010121 2.6451e-08 1.5835 0 3 3 3 0.00010188 2.6456e-08 1.5912 0 3 3 3 0.00010206 2.6462e-08 1.599 0 3 3 3 0.00010193 2.6468e-08 1.61 0 3 3 3 0.00010128 2.6473e-08 1.621 0 3 3 3 0.00010185 2.6478e-08 1.632 0 3 3 3 0.00010209 2.6484e-08 1.643 0 3 3 3 0.00010191 2.6488e-08 1.6508 0 3 3 3 0.00010188 2.6492e-08 1.6585 0 3 3 3 0.00010173 2.6496e-08 1.6662 0 3 3 3 0.00010169 2.65e-08 1.674 0 3 3 3 0.00010172 2.6504e-08 1.6819 0 3 3 3 0.00010185 2.6512e-08 1.6971 0 3 3 3 0.00010191 2.6519e-08 1.7124 0 3 3 3 0.0001019 2.6531e-08 1.735 0 3 3 3 0.00010115 2.6536e-08 1.7472 0 3 3 3 0.0001012 2.6542e-08 1.7595 0 3 3 3 0.00010188 2.6548e-08 1.7717 0 3 3 3 0.00010206 2.6553e-08 1.784 0 3 3 3 0.00010193 2.6558e-08 1.7962 0 3 3 3 0.00010128 2.657e-08 1.8207 0 3 3 3 0.00010114 2.6585e-08 1.8557 0 3 3 3 9.9798e-05 2.6616e-08 1.924 0 3 3 3 9.345e-05 2.6627e-08 1.9473 0 3 3 3 9.6709e-05 2.6638e-08 1.9705 0 3 3 3 0.00010089 2.6649e-08 1.9937 0 3 3 3 0.00010145 2.666e-08 2.017 0 3 3 3 0.00010101 2.6671e-08 2.0376 0 3 3 3 9.7361e-05 2.6693e-08 2.0788 0 3 3 3 9.6731e-05 2.6718e-08 2.1265 0 3 3 3 9.5903e-05 2.6762e-08 2.208 0 3 3 3 8.8025e-05 2.678e-08 2.2362 0 3 3 3 9.0819e-05 2.6798e-08 2.2645 0 3 3 3 9.8092e-05 2.6834e-08 2.321 0 3 3 3 9.2419e-05 2.6858e-08 2.3595 0 3 3 3 8.6465e-05 2.6882e-08 2.398 0 3 3 3 9.5002e-05 2.6931e-08 2.475 0 3 3 3 8.8157e-05 2.6948e-08 2.4992 0 3 3 3 9.1406e-05 2.6966e-08 2.5235 0 3 3 3 9.8434e-05 2.6983e-08 2.5477 0 3 3 3 9.9442e-05 2.7e-08 2.572 0 3 3 3 9.8622e-05 2.7017e-08 2.59 0 3 3 3 9.2185e-05 2.7045e-08 2.6193 0 3 3 3 9.3841e-05 2.7073e-08 2.6485 0 3 3 3 9.4938e-05 2.7112e-08 2.689 0 3 3 3 8.9691e-05 2.7132e-08 2.7037 0 3 3 3 8.9415e-05 2.7152e-08 2.7185 0 3 3 3 9.7098e-05 2.7172e-08 2.7332 0 3 3 3 9.849e-05 2.7192e-08 2.748 0 3 3 3 9.7345e-05 2.7212e-08 2.7589 0 3 3 3 8.9956e-05 2.7252e-08 2.7807 0 3 3 3 8.9007e-05 2.7292e-08 2.8024 0 3 3 3 8.9914e-05 2.7351e-08 2.835 0 3 3 3 8.2007e-05 2.7379e-08 2.845 0 3 3 3 8.302e-05 2.7408e-08 2.855 0 3 3 3 9.347e-05 2.7436e-08 2.865 0 3 3 3 9.5052e-05 2.7464e-08 2.875 0 3 3 3 9.3722e-05 2.7469e-08 2.8765 0 3 3 3 0.00010051 2.7474e-08 2.878 0 3 3 3 0.00010223 2.748e-08 2.8795 0 3 3 3 0.00010177 2.7485e-08 2.881 0 3 3 3 0.0001021 2.7489e-08 2.882 0 3 3 3 0.00010195 2.7493e-08 2.883 0 3 3 3 0.00010167 2.75e-08 2.885 0 3 3 3 0.00010185 2.7506e-08 2.8862 0 3 3 3 0.00010121 2.7517e-08 2.8885 0 3 3 3 0.00010107 2.7562e-08 2.8977 0 3 3 3 8.8462e-05 2.7629e-08 2.9114 0 3 3 3 7.866e-05 2.7696e-08 2.9252 0 3 3 3 8.0065e-05 2.7769e-08 2.94 0 3 3 3 7.7169e-05 2.7817e-08 2.9457 0 3 3 3 7.1444e-05 2.7865e-08 2.9515 0 3 3 3 8.5152e-05 2.796e-08 2.963 0 3 3 3 7.3509e-05 2.7966e-08 2.9635 0 3 3 3 9.813e-05 2.7972e-08 2.964 0 3 3 3 0.00010313 2.7977e-08 2.9645 0 3 3 3 0.00010117 2.7983e-08 2.965 0 3 3 3 0.00010261 2.7987e-08 2.9653 0 3 3 3 0.00010189 2.7992e-08 2.9655 0 3 3 3 0.00010174 2.7996e-08 2.9657 0 3 3 3 0.00010181 2.8e-08 2.966 0 3 3 3 0.00010176 2.8004e-08 2.9663 0 3 3 3 0.00010179 2.8013e-08 2.9668 0 3 3 3 0.00010179 2.8047e-08 2.9689 0 3 3 3 9.2614e-05 2.812e-08 2.9734 0 3 3 3 7.7236e-05 2.8193e-08 2.9779 0 3 3 3 7.7713e-05 2.8293e-08 2.984 0 3 3 3 7.0176e-05 2.8343e-08 2.9854 0 3 3 3 6.9997e-05 2.8395e-08 2.9869 0 3 3 3 8.3858e-05 2.8447e-08 2.9884 0 3 3 3 8.5658e-05 2.85e-08 2.99 0 3 3 3 8.3468e-05 2.855e-08 2.9909 0 3 3 3 7.0651e-05 2.8623e-08 2.9921 0 3 3 3 7.6575e-05 2.8696e-08 2.9934 0 3 3 3 7.83e-05 2.8793e-08 2.995 0 3 3 3 7.0358e-05 2.8843e-08 2.9955 0 3 3 3 7.0006e-05 2.8895e-08 2.996 0 3 3 3 8.3853e-05 2.8947e-08 2.9965 0 3 3 3 8.5662e-05 2.9e-08 2.997 0 3 3 3 8.3464e-05 2.905e-08 2.9971 0 3 3 3 7.0651e-05 2.915e-08 2.9975 0 3 3 3 6.9391e-05 2.94e-08 2.9982 0 3 3 3 4.7685e-05 2.965e-08 2.999 0 3 3 3 4.4682e-05 3e-08 3 0 3 3 3 3.986e-05 3.005e-08 2.9999 0 3 3 3 6.8507e-05 3.015e-08 2.9997 0 3 3 3 7.1324e-05 3.029e-08 2.9995 0 3 3 3 6.0219e-05 3.0559e-08 2.999 0 3 3 3 4.6112e-05 3.0569e-08 2.9995 0 3 3 3 9.3102e-05 3.0579e-08 3 0 3 3 3 0.00010308 3.059e-08 3.0005 0 3 3 3 0.0001001 3.06e-08 3.001 0 3 3 3 0.00010242 3.061e-08 3.0021 0 3 3 3 9.8073e-05 3.0626e-08 3.0039 0 3 3 3 9.9112e-05 3.0642e-08 3.0056 0 3 3 3 9.9954e-05 3.0663e-08 3.008 0 3 3 3 9.7147e-05 3.0674e-08 3.0092 0 3 3 3 9.7028e-05 3.0685e-08 3.0105 0 3 3 3 0.00010075 3.0696e-08 3.0117 0 3 3 3 0.00010156 3.0707e-08 3.013 0 3 3 3 0.00010092 3.0718e-08 3.0126 0 3 3 3 9.7354e-05 3.0739e-08 3.0119 0 3 3 3 9.7234e-05 3.076e-08 3.0111 0 3 3 3 9.7804e-05 3.079e-08 3.01 0 3 3 3 9.3404e-05 3.0805e-08 3.0055 0 3 3 3 9.396e-05 3.0819e-08 3.001 0 3 3 3 9.9474e-05 3.0834e-08 2.9965 0 3 3 3 0.00010051 3.0848e-08 2.992 0 3 3 3 9.9678e-05 3.0862e-08 2.9811 0 3 3 3 9.4454e-05 3.0885e-08 2.9643 0 3 3 3 9.6354e-05 3.0907e-08 2.9476 0 3 3 3 9.737e-05 3.0937e-08 2.925 0 3 3 3 9.3359e-05 3.0953e-08 2.9037 0 3 3 3 9.297e-05 3.0969e-08 2.8825 0 3 3 3 9.8925e-05 3.1e-08 2.84 0 3 3 3 9.434e-05 3.1017e-08 2.8052 0 3 3 3 9.2454e-05 3.1033e-08 2.7705 0 3 3 3 9.8551e-05 3.1049e-08 2.7357 0 3 3 3 9.9883e-05 3.1066e-08 2.701 0 3 3 3 9.8803e-05 3.1078e-08 2.6667 0 3 3 3 9.6778e-05 3.1089e-08 2.6325 0 3 3 3 0.00010049 3.1101e-08 2.5982 0 3 3 3 0.0001015 3.1112e-08 2.564 0 3 3 3 0.00010071 3.1123e-08 2.521 0 3 3 3 9.694e-05 3.114e-08 2.4603 0 3 3 3 9.8899e-05 3.1156e-08 2.3995 0 3 3 3 9.9778e-05 3.1177e-08 2.321 0 3 3 3 9.7222e-05 3.1189e-08 2.2795 0 3 3 3 9.6447e-05 3.12e-08 2.238 0 3 3 3 0.00010046 3.1212e-08 2.1965 0 3 3 3 0.00010139 3.1224e-08 2.155 0 3 3 3 0.00010066 3.1236e-08 2.1072 0 3 3 3 9.6737e-05 3.1254e-08 2.0329 0 3 3 3 9.8137e-05 3.1272e-08 1.9587 0 3 3 3 9.8952e-05 3.1297e-08 1.858 0 3 3 3 9.5687e-05 3.131e-08 1.8053 0 3 3 3 9.5331e-05 3.1323e-08 1.7525 0 3 3 3 0.00010002 3.1349e-08 1.647 0 3 3 3 9.6481e-05 3.1367e-08 1.578 0 3 3 3 9.1244e-05 3.1386e-08 1.509 0 3 3 3 9.7673e-05 3.1422e-08 1.371 0 3 3 3 9.2652e-05 3.1435e-08 1.3175 0 3 3 3 9.5083e-05 3.1448e-08 1.264 0 3 3 3 0.00010014 3.1474e-08 1.157 0 3 3 3 9.6323e-05 3.1478e-08 1.1375 0 3 3 3 0.00010125 3.1481e-08 1.118 0 3 3 3 0.00010195 3.1489e-08 1.079 0 3 3 3 0.00010151 3.1492e-08 1.067 0 3 3 3 0.00010192 3.1495e-08 1.055 0 3 3 3 0.00010132 3.15e-08 1.031 0 3 3 3 0.00010167 3.1504e-08 1.0161 0 3 3 3 0.00010181 3.1509e-08 0.99815 0 3 3 3 0.00010193 3.1514e-08 0.98015 0 3 3 3 0.00010193 3.152e-08 0.959 0 3 3 3 0.00010199 3.1523e-08 0.95375 0 3 3 3 0.00010198 3.1527e-08 0.9485 0 3 3 3 0.0001016 3.1531e-08 0.94325 0 3 3 3 0.00010148 3.1534e-08 0.938 0 3 3 3 0.00010156 3.1537e-08 0.93202 0 3 3 3 0.00010193 3.1544e-08 0.92177 0 3 3 3 0.00010204 3.155e-08 0.91152 0 3 3 3 0.00010199 3.1558e-08 0.897 0 3 3 3 0.00010184 3.1562e-08 0.89325 0 3 3 3 0.0001018 3.1567e-08 0.8895 0 3 3 3 0.00010178 3.1571e-08 0.88575 0 3 3 3 0.00010178 3.1575e-08 0.882 0 3 3 3 0.00010178 3.1579e-08 0.8735 0 3 3 3 0.00010179 3.1586e-08 0.86 0 3 3 3 0.00010197 3.1593e-08 0.8465 0 3 3 3 0.00010202 3.1602e-08 0.828 0 3 3 3 0.00010167 3.1607e-08 0.8165 0 3 3 3 0.00010149 3.1612e-08 0.805 0 3 3 3 0.00010186 3.1617e-08 0.7935 0 3 3 3 0.00010198 3.1622e-08 0.782 0 3 3 3 0.00010189 3.1627e-08 0.76988 0 3 3 3 0.00010152 3.1635e-08 0.74988 0 3 3 3 0.00010176 3.1643e-08 0.72988 0 3 3 3 0.00010189 3.1655e-08 0.702 0 3 3 3 0.00010108 3.1661e-08 0.68875 0 3 3 3 0.00010092 3.1667e-08 0.6755 0 3 3 3 0.00010186 3.1673e-08 0.66225 0 3 3 3 0.00010212 3.1679e-08 0.649 0 3 3 3 0.00010193 3.1685e-08 0.63449 0 3 3 3 0.00010101 3.1697e-08 0.60548 0 3 3 3 0.00010082 3.1714e-08 0.56498 0 3 3 3 9.9437e-05 3.1746e-08 0.487 0 3 3 3 9.2787e-05 3.1751e-08 0.47616 0 3 3 3 0.0001004 3.1756e-08 0.46533 0 3 3 3 0.00010227 3.1762e-08 0.45449 0 3 3 3 0.00010174 3.1767e-08 0.44366 0 3 3 3 0.00010212 3.1772e-08 0.43282 0 2.9804 3 3 -0.0023935 3.1779e-08 0.41941 0 2.9562 3 3 -0.0055484 3.1785e-08 0.40599 0 2.932 3 3 -0.0086009 3.1793e-08 0.39 0 2.9031 3 3 -0.011942 3.18e-08 0.3786 0 2.8766 3 3 -0.014617 3.1814e-08 0.3558 0 2.8234 3 3 -0.019503 3.1832e-08 0.3278 0 2.7582 3 3 -0.02437 3.1863e-08 0.278 0 2.6422 3 3 -0.030691 3.1875e-08 0.26375 0 2.5966 3 3 -0.032381 3.1887e-08 0.2495 0 2.5509 3 3 -0.033941 3.1912e-08 0.221 0 2.4596 3 3 -0.036403 3.1925e-08 0.20925 0 2.4112 3 3 -0.037327 3.1938e-08 0.1975 0 2.3528 3 3 -0.0394 3.1951e-08 0.18575 0 2.2913 3 3 -0.041674 3.1964e-08 0.174 0 2.2299 3 3 -0.043577 3.1973e-08 0.1675 0 2.1874 3 3 -0.044661 3.1982e-08 0.161 0 2.1449 3 3 -0.045673 3.1991e-08 0.1545 0 2.1024 3 3 -0.046664 3.2e-08 0.148 0 2.0598 3 3 -0.047456 3.2009e-08 0.1435 0 2.0173 3 3 -0.048092 3.2027e-08 0.1345 0 1.9323 3 3 -0.049214 3.2057e-08 0.1195 0 1.7902 3 3 -0.05055 3.2087e-08 0.1045 0 1.6439 3 3 -0.051812 3.212e-08 0.088 0 1.4829 3 3 -0.052669 3.2141e-08 0.081 0 1.3793 3 3 -0.052811 3.2163e-08 0.074 0 1.2756 3 3 -0.052808 3.2184e-08 0.067 0 1.1744 3 3 -0.052313 3.2205e-08 0.06 0 1.08 3 3 -0.05098 3.2226e-08 0.056069 0 0.98556 3 3 -0.049721 3.2269e-08 0.048208 0 0.79667 3 3 -0.045637 3.2312e-08 0.040208 0 0.60444 3 3 -0.029393 3.2378e-08 0.028 0 0.45502 3 3 -0.009494 3.2409e-08 0.02475 0 0.38699 3 3 -0.0064571 3.2439e-08 0.0215 0 0.31896 3 3 -0.0041502 3.25e-08 0.015 0 0.1829 3 3 -0.0021283 3.2521e-08 0.01423 0 0.13717 3 3 -0.0019341 3.2541e-08 0.013461 0 0.09145 3 3 -0.0017744 3.2561e-08 0.012691 0 0.045725 3 3 -0.0016285 3.2582e-08 0.011922 0 0 3 3 -0.0015538 3.2603e-08 0.011152 0 0 3 3 -0.0010642 3.2643e-08 0.0096126 0 0 3 3 -0.00044219 3.2696e-08 0.0076323 0 0 3 3 -0.00010574 3.2793e-08 0.004 0 0 3 3 1.8349e-05 3.2843e-08 0.0032754 0 0 3 3 1.1539e-05 3.2895e-08 0.0025254 0 0 3 3 2.4658e-05 3.2946e-08 0.0017754 0 0 3 3 0 3.3e-08 0.001 0 0 3 3 2.3904e-05 3.305e-08 0.00082935 0 0 3 3 1.4722e-05 3.3123e-08 0.00057935 0 0 3 3 1.5001e-05 3.3196e-08 0.00032935 0 0 3 3 3.3458e-06 3.3293e-08 0 0 0 3 3 1.8319e-05 3.3343e-08 -8.6693e-05 0 0 3 3 7.4709e-06 3.3443e-08 -0.00026008 0 0 3 3 1.5266e-05 3.3843e-08 -0.00095362 0 0 3 3 0 3.4343e-08 -0.0018205 0 0 3 3 1.3646e-05 3.4843e-08 -0.0026875 0 0 3 3 1.2236e-06 3.5343e-08 -0.0035544 0 0 3 3 1.2238e-05 3.56e-08 -0.004 0 0 3 3 4.097e-06 3.5615e-08 -0.006 0 0 3 3 1.2355e-05 3.563e-08 -0.008 0 0 3 3 1.021e-05 3.566e-08 -0.012 0 0 3 3 1.1765e-05 3.5671e-08 -0.0125 0 0 3 3 1.0872e-05 3.5681e-08 -0.013 0 0 3 3 1.115e-05 3.5692e-08 -0.0135 0 0 3 3 1.1323e-05 3.5703e-08 -0.014 0 0 3 3 1.4054e-05 3.5714e-08 -0.011236 0 0 3 3 1.3025e-05 3.5731e-08 -0.0067357 0 0 3 3 1.3076e-05 3.5749e-08 -0.0022357 0 0 3 3 1.3264e-05 3.5773e-08 0.004 0 0 3 3 1.2265e-05 3.5786e-08 0.01475 0 0 3 3 1.2294e-05 3.5798e-08 0.0255 0 0 3 3 1.3012e-05 3.5823e-08 0.047 0 0 3 3 1.2502e-05 3.5842e-08 0.081875 0 0 3 3 1.1749e-05 3.5867e-08 0.12837 0 0 3 3 1.2196e-05 3.5892e-08 0.17488 0 0 3 3 1.2379e-05 3.5923e-08 0.233 0 0 3 3 1.1921e-05 3.5941e-08 0.289 0 0 3 3 1.1782e-05 3.5959e-08 0.345 0 0 3 3 1.2627e-05 3.5976e-08 0.401 0 0 3 3 1.2819e-05 3.5994e-08 0.457 0 0 3 3 1.2667e-05 3.5995e-08 0.4605 0 0 3 3 1.38e-05 3.5996e-08 0.464 0 0 3 3 1.4243e-05 3.5997e-08 0.471 0 0 3 3 1.4098e-05 3.5998e-08 0.47375 0 0 3 3 1.4121e-05 3.5999e-08 0.4765 0 0 3 3 1.4171e-05 3.5999e-08 0.47925 0 0 3 3 1.4194e-05 3.6e-08 0.482 0 0 3 3 1.4185e-05 3.6001e-08 0.48454 0 0 3 3 1.4141e-05 3.6002e-08 0.48963 0 0 3 3 1.4121e-05 3.6008e-08 0.50999 0 0 3 3 1.3736e-05 3.6032e-08 0.59142 0 0 3 3 1.23e-05 3.606e-08 0.68642 0 0 3 3 1.2205e-05 3.6112e-08 0.862 0 0 3 3 1.1103e-05 3.6132e-08 0.91575 0 0 3 3 1.155e-05 3.6152e-08 0.9695 0 0 3 3 1.2521e-05 3.6171e-08 1.0232 0 0 3 3 1.2764e-05 3.6191e-08 1.077 0 0 3 3 1.2571e-05 3.6203e-08 1.1072 0 0 3 3 1.2452e-05 3.6215e-08 1.1375 0 0 3 3 1.313e-05 3.6226e-08 1.1678 0 0 3 3 1.3501e-05 3.6238e-08 1.198 0 0 3 3 1.3216e-05 3.6246e-08 1.2175 0 0 3 3 1.3024e-05 3.6255e-08 1.237 0 0 3 3 1.3566e-05 3.6271e-08 1.276 0 0 3 3 1.3198e-05 3.6283e-08 1.298 0 0 3 3 1.2615e-05 3.6295e-08 1.32 0 0 3 3 1.3236e-05 3.6318e-08 1.364 0 0 3 3 1.2798e-05 3.6327e-08 1.3802 0 0 3 3 1.2948e-05 3.6335e-08 1.3965 0 0 3 3 1.3559e-05 3.6352e-08 1.429 0 0 3 3 1.3143e-05 3.636e-08 1.4447 0 0 3 3 1.3047e-05 3.6368e-08 1.4605 0 0 3 3 1.3595e-05 3.6376e-08 1.4763 0 0 3 3 1.3747e-05 3.6384e-08 1.492 0 0 3 3 1.3634e-05 3.639e-08 1.503 0 0 3 3 1.3407e-05 3.6396e-08 1.514 0 0 3 3 1.3819e-05 3.6401e-08 1.525 0 0 3 3 1.3966e-05 3.6407e-08 1.536 0 0 3 3 1.386e-05 3.6413e-08 1.5416 0 0 3 3 1.3434e-05 3.6421e-08 1.5496 0 0 3 3 1.3591e-05 3.6429e-08 1.5576 0 0 3 3 1.3709e-05 3.644e-08 1.568 0 0 3 3 1.3418e-05 3.6445e-08 1.5757 0 0 3 3 1.3418e-05 3.6451e-08 1.5835 0 0 3 3 1.3859e-05 3.6456e-08 1.5912 0 0 3 3 1.3983e-05 3.6462e-08 1.599 0 0 3 3 1.3894e-05 3.6468e-08 1.61 0 0 3 3 1.3474e-05 3.6473e-08 1.621 0 0 3 3 1.3837e-05 3.6479e-08 1.632 0 0 3 3 1.3999e-05 3.6484e-08 1.643 0 0 3 3 1.3883e-05 3.6488e-08 1.6508 0 0 3 3 1.3708e-05 3.6492e-08 1.6585 0 0 3 3 1.4023e-05 3.6496e-08 1.6662 0 0 3 3 1.4148e-05 3.65e-08 1.674 0 0 3 3 1.4062e-05 3.6504e-08 1.6819 0 0 3 3 1.3731e-05 3.6512e-08 1.6971 0 0 3 3 1.3668e-05 3.6519e-08 1.7124 0 0 3 3 1.3734e-05 3.6531e-08 1.735 0 0 3 3 1.3386e-05 3.6536e-08 1.7472 0 0 3 3 1.3414e-05 3.6542e-08 1.7595 0 0 3 3 1.386e-05 3.6548e-08 1.7717 0 0 3 3 1.3982e-05 3.6553e-08 1.784 0 0 3 3 1.3894e-05 3.6559e-08 1.7962 0 0 3 3 1.3475e-05 3.6569e-08 1.8207 0 0 3 3 1.3375e-05 3.6585e-08 1.8557 0 0 3 3 1.3138e-05 3.6616e-08 1.924 0 0 3 3 1.2119e-05 3.6627e-08 1.9473 0 0 3 3 1.2589e-05 3.6638e-08 1.9705 0 0 3 3 1.3348e-05 3.6649e-08 1.9937 0 0 3 3 1.3472e-05 3.666e-08 2.017 0 0 3 3 1.3377e-05 3.6671e-08 2.0376 0 0 3 3 1.2715e-05 3.6693e-08 2.0788 0 0 3 3 1.2583e-05 3.6719e-08 2.1265 0 0 3 3 1.2509e-05 3.6762e-08 2.208 0 0 3 3 1.1548e-05 3.678e-08 2.2362 0 0 3 3 1.1866e-05 3.6798e-08 2.2645 0 0 3 3 1.2806e-05 3.6834e-08 2.321 0 0 3 3 1.2111e-05 3.6858e-08 2.3595 0 0 3 3 1.1427e-05 3.6883e-08 2.398 0 0 3 3 1.2369e-05 3.6931e-08 2.475 0 0 3 3 1.0675e-05 3.6948e-08 2.4992 0 0 3 3 1.146e-05 3.6965e-08 2.5235 0 0 3 3 1.2373e-05 3.6983e-08 2.5477 0 0 3 3 1.3095e-05 3.7e-08 2.572 0 0 3 3 1.283e-05 3.7017e-08 2.59 0 0 3 3 1.1988e-05 3.7045e-08 2.6193 0 0 3 3 1.2146e-05 3.7073e-08 2.6485 0 0 3 3 1.1644e-05 3.7112e-08 2.689 0 0 3 3 1.1943e-05 3.7132e-08 2.7037 0 0 3 3 1.1572e-05 3.7152e-08 2.7185 0 0 3 3 1.2432e-05 3.7192e-08 2.748 0 0 3 3 1.1391e-05 3.7222e-08 2.7644 0 0 3 3 1.0763e-05 3.7262e-08 2.7862 0 0 3 3 1.1209e-05 3.7302e-08 2.8079 0 0 3 3 1.1245e-05 3.7351e-08 2.835 0 0 3 3 1.1362e-05 3.7379e-08 2.845 0 0 3 3 1.085e-05 3.7407e-08 2.855 0 0 3 3 1.1817e-05 3.7436e-08 2.865 0 0 3 3 1.2228e-05 3.7464e-08 2.875 0 0 3 3 1.1893e-05 3.7469e-08 2.8765 0 0 3 3 1.3024e-05 3.7474e-08 2.878 0 0 3 3 1.3633e-05 3.748e-08 2.8795 0 0 3 3 1.3645e-05 3.7485e-08 2.881 0 0 3 3 1.3636e-05 3.7489e-08 2.882 0 0 3 3 1.3457e-05 3.7493e-08 2.883 0 0 3 3 1.3723e-05 3.7496e-08 2.884 0 0 3 3 1.3836e-05 3.75e-08 2.885 0 0 3 3 1.3759e-05 3.7504e-08 2.8858 0 0 3 3 1.3473e-05 3.7511e-08 2.8873 0 0 3 3 1.3398e-05 3.7541e-08 2.8934 0 0 3 3 1.2177e-05 3.7609e-08 2.9072 0 0 3 3 1.036e-05 3.7676e-08 2.9209 0 0 3 3 1.0259e-05 3.7769e-08 2.94 0 0 3 3 9.8892e-06 3.7817e-08 2.9457 0 0 3 3 9.6927e-06 3.7864e-08 2.9515 0 0 3 3 1.0758e-05 3.796e-08 2.963 0 0 3 3 9.8085e-06 3.7966e-08 2.9635 0 0 3 3 1.2322e-05 3.7971e-08 2.964 0 0 3 3 1.3159e-05 3.7977e-08 2.9645 0 0 3 3 1.3041e-05 3.7983e-08 2.965 0 0 3 3 1.3126e-05 3.7987e-08 2.9653 0 0 3 3 1.2905e-05 3.7992e-08 2.9655 0 0 3 3 1.315e-05 3.7996e-08 2.9657 0 0 3 3 1.3258e-05 3.8e-08 2.966 0 0 3 3 1.3183e-05 3.8004e-08 2.9663 0 0 3 3 1.2912e-05 3.8013e-08 2.9668 0 0 3 3 1.2844e-05 3.8047e-08 2.9689 0 0 3 3 1.1627e-05 3.812e-08 2.9734 0 0 3 3 9.9538e-06 3.8193e-08 2.9779 0 0 3 3 1.0261e-05 3.8293e-08 2.984 0 0 3 3 9.6016e-06 3.8343e-08 2.9854 0 0 3 3 9.663e-06 3.8395e-08 2.9869 0 0 3 3 1.0594e-05 3.8447e-08 2.9884 0 0 3 3 1.0883e-05 3.85e-08 2.99 0 0 3 3 1.0892e-05 3.855e-08 2.9909 0 0 3 3 9.7638e-06 3.8623e-08 2.9921 0 0 3 3 1.0202e-05 3.8696e-08 2.9934 0 0 3 3 9.7066e-06 3.8793e-08 2.995 0 0 3 3 1.0328e-05 3.8843e-08 2.9955 0 0 3 3 9.5265e-06 3.8895e-08 2.996 0 0 3 3 1.0903e-05 3.8946e-08 2.9965 0 0 3 3 1.0319e-05 3.9e-08 2.997 0 0 3 3 1.1205e-05 3.905e-08 2.9971 0 0 3 3 9.8214e-06 3.915e-08 2.9975 0 0 3 3 9.8648e-06 3.94e-08 2.9982 0 0 3 3 7.0999e-06 3.965e-08 2.999 0 0 3 3 8.9077e-06 4e-08 3 0 0 3 3 6.0401e-06 4.005e-08 2.9999 0 0 3 3 8.9783e-06 4.015e-08 2.9997 0 0 3 3 9.2288e-06 4.029e-08 2.9995 0 0 3 3 1.0425e-05 4.0559e-08 2.999 0 0 3 3 6.2009e-06 4.0569e-08 2.9995 0 0 3 3 1.0854e-05 4.058e-08 3 0 0 3 3 1.2073e-05 4.059e-08 3.0005 0 0 3 3 1.1807e-05 4.06e-08 3.001 0 0 3 3 1.2009e-05 4.061e-08 3.0021 0 0 3 3 1.1444e-05 4.0626e-08 3.0039 0 0 3 3 1.1552e-05 4.0642e-08 3.0056 0 0 3 3 1.167e-05 4.0663e-08 3.008 0 0 3 3 1.132e-05 4.0674e-08 3.0092 0 0 3 3 1.131e-05 4.0685e-08 3.0105 0 0 3 3 1.1811e-05 4.0696e-08 3.0117 0 0 3 3 1.1931e-05 4.0707e-08 3.013 0 0 3 3 1.1839e-05 4.0718e-08 3.0126 0 0 3 3 1.1362e-05 4.0739e-08 3.0119 0 0 3 3 1.1322e-05 4.0759e-08 3.0111 0 0 3 3 1.1405e-05 4.079e-08 3.01 0 0 3 3 1.0941e-05 4.0805e-08 3.0055 0 0 3 3 1.0998e-05 4.0819e-08 3.001 0 0 3 3 1.1612e-05 4.0833e-08 2.9965 0 0 3 3 1.1741e-05 4.0848e-08 2.992 0 0 3 3 1.164e-05 4.0862e-08 2.9811 0 0 3 3 1.1062e-05 4.0885e-08 2.9643 0 0 3 3 1.123e-05 4.0907e-08 2.9476 0 0 3 3 1.1352e-05 4.0937e-08 2.925 0 0 3 3 1.0938e-05 4.0953e-08 2.9037 0 0 3 3 1.0906e-05 4.0969e-08 2.8825 0 0 3 3 1.1539e-05 4.1e-08 2.84 0 0 3 3 1.1078e-05 4.1016e-08 2.8052 0 0 3 3 1.0865e-05 4.1033e-08 2.7705 0 0 3 3 1.1491e-05 4.1049e-08 2.7357 0 0 3 3 1.1648e-05 4.1066e-08 2.701 0 0 3 3 1.1525e-05 4.1077e-08 2.6667 0 0 3 3 1.1289e-05 4.1089e-08 2.6325 0 0 3 3 1.1771e-05 4.11e-08 2.5982 0 0 3 3 1.1911e-05 4.1112e-08 2.564 0 0 3 3 1.1804e-05 4.1123e-08 2.521 0 0 3 3 1.1317e-05 4.114e-08 2.4603 0 0 3 3 1.1525e-05 4.1156e-08 2.3995 0 0 3 3 1.1644e-05 4.1177e-08 2.321 0 0 3 3 1.1329e-05 4.1189e-08 2.2795 0 0 3 3 1.1249e-05 4.1201e-08 2.238 0 0 3 3 1.1763e-05 4.1212e-08 2.1965 0 0 3 3 1.1892e-05 4.1224e-08 2.155 0 0 3 3 1.1793e-05 4.1236e-08 2.1072 0 0 3 3 1.1295e-05 4.1254e-08 2.0329 0 0 3 3 1.1429e-05 4.1272e-08 1.9587 0 0 3 3 1.1538e-05 4.1297e-08 1.858 0 0 3 3 1.1165e-05 4.131e-08 1.8053 0 0 3 3 1.1133e-05 4.1323e-08 1.7525 0 0 3 3 1.1693e-05 4.1349e-08 1.647 0 0 3 3 1.1293e-05 4.1367e-08 1.578 0 0 3 3 1.0764e-05 4.1386e-08 1.509 0 0 3 3 1.1386e-05 4.1422e-08 1.371 0 0 3 3 1.0926e-05 4.1435e-08 1.3175 0 0 3 3 1.111e-05 4.1448e-08 1.264 0 0 3 3 1.1702e-05 4.1474e-08 1.157 0 0 3 3 1.128e-05 4.1478e-08 1.1375 0 0 3 3 1.1978e-05 4.1481e-08 1.118 0 0 3 3 1.2291e-05 4.1489e-08 1.079 0 0 3 3 1.21e-05 4.1492e-08 1.067 0 0 3 3 1.2184e-05 4.1494e-08 1.055 0 0 3 3 1.2298e-05 4.15e-08 1.031 0 0 3 3 1.2232e-05 4.1504e-08 1.0161 0 0 3 3 1.2063e-05 4.1509e-08 0.99815 0 0 3 3 1.2186e-05 4.1514e-08 0.98015 0 0 3 3 1.2252e-05 4.152e-08 0.959 0 0 3 3 1.2161e-05 4.1523e-08 0.95375 0 0 3 3 1.2119e-05 4.1527e-08 0.9485 0 0 3 3 1.2262e-05 4.1531e-08 0.94325 0 0 3 3 1.2315e-05 4.1534e-08 0.938 0 0 3 3 1.2279e-05 4.1538e-08 0.93202 0 0 3 3 1.2134e-05 4.1544e-08 0.92177 0 0 3 3 1.2148e-05 4.155e-08 0.91152 0 0 3 3 1.2186e-05 4.1558e-08 0.897 0 0 3 3 1.2027e-05 4.1562e-08 0.89325 0 0 3 3 1.2024e-05 4.1567e-08 0.8895 0 0 3 3 1.2226e-05 4.1571e-08 0.88575 0 0 3 3 1.2287e-05 4.1575e-08 0.882 0 0 3 3 1.2245e-05 4.1579e-08 0.8735 0 0 3 3 1.2052e-05 4.1586e-08 0.86 0 0 3 3 1.2096e-05 4.1593e-08 0.8465 0 0 3 3 1.2149e-05 4.1602e-08 0.828 0 0 3 3 1.1977e-05 4.1607e-08 0.8165 0 0 3 3 1.1941e-05 4.1612e-08 0.805 0 0 3 3 1.2181e-05 4.1617e-08 0.7935 0 0 3 3 1.2256e-05 4.1622e-08 0.782 0 0 3 3 1.2203e-05 4.1627e-08 0.76988 0 0 3 3 1.1969e-05 4.1635e-08 0.74988 0 0 3 3 1.2005e-05 4.1643e-08 0.72988 0 0 3 3 1.2064e-05 4.1655e-08 0.702 0 0 3 3 1.1847e-05 4.1661e-08 0.68875 0 0 3 3 1.1825e-05 4.1667e-08 0.6755 0 0 3 3 1.2121e-05 4.1673e-08 0.66225 0 0 3 3 1.2205e-05 4.1679e-08 0.649 0 0 3 3 1.2144e-05 4.1685e-08 0.63449 0 0 3 3 1.1859e-05 4.1697e-08 0.60548 0 0 3 3 1.1793e-05 4.1714e-08 0.56498 0 0 3 3 1.1623e-05 4.1746e-08 0.487 0 0 3 3 1.0859e-05 4.1751e-08 0.47616 0 0 3 3 1.1782e-05 4.1757e-08 0.46533 0 0 3 3 1.2216e-05 4.1762e-08 0.45449 0 0 3 3 1.2208e-05 4.1767e-08 0.44366 0 0 3 3 1.2214e-05 4.1772e-08 0.43282 0 0 3 2.9804 -0.00077465 4.1779e-08 0.41941 0 0 3 2.9562 -0.0019316 4.1785e-08 0.40599 0 0 3 2.932 -0.0031912 4.1793e-08 0.39 0 0 3 2.9031 -0.0045157 4.18e-08 0.3786 0 0 3 2.8766 -0.0055274 4.1814e-08 0.3558 0 0 3 2.8234 -0.007331 4.1832e-08 0.3278 0 0 3 2.7582 -0.0090371 4.1863e-08 0.278 0 0 3 2.6422 -0.011167 4.1875e-08 0.26375 0 0 3 2.5966 -0.01171 4.1887e-08 0.2495 0 0 3 2.5509 -0.012235 4.1912e-08 0.221 0 0 3 2.4596 -0.013203 4.1925e-08 0.20925 0 0 3 2.4112 -0.013633 4.1938e-08 0.1975 0 0 3 2.3528 -0.014459 4.1951e-08 0.18575 0 0 3 2.2913 -0.015433 4.1964e-08 0.174 0 0 3 2.2299 -0.01629 4.1966e-08 0.17237 0 0 3 2.2193 -0.016417 4.1969e-08 0.17075 0 0 3 2.2087 -0.016568 4.1971e-08 0.16913 0 0 3 2.198 -0.016634 4.1973e-08 0.1675 0 0 3 2.1874 -0.01676 4.1975e-08 0.16588 0.009375 0.009375 3 2.1768 -0.016719 4.198e-08 0.16262 0.028125 0.028125 3 2.1555 -0.016662 4.1986e-08 0.15775 0.05625 0.05625 3 2.1236 -0.018307 4.2e-08 0.148 0.1125 0.1125 3 2.0598 -0.021235 4.201e-08 0.14294 0.15469 0.15469 3 2.012 -0.021999 4.203e-08 0.13281 0.23906 0.23906 3 1.9163 -0.0217 4.206e-08 0.11781 0.36406 0.36406 3 1.7738 -0.013918 4.212e-08 0.088 0.60822 0.60822 3 1.4829 0.029825 4.2141e-08 0.081 0.66644 0.66644 3 1.3793 0.055537 4.2163e-08 0.074 0.72466 0.72466 3 1.2756 0.083402 4.2184e-08 0.067 0.78288 0.78288 3 1.1744 0.11562 4.2205e-08 0.06 0.8411 0.8411 3 1.08 0.15268 4.2226e-08 0.056069 0.89932 0.89932 3 0.98556 0.20117 4.2269e-08 0.048208 1.0158 1.0158 3 0.79667 0.32629 4.2312e-08 0.040208 1.1342 1.1342 3 0.60444 0.50013 4.2378e-08 0.028 1.2768 1.2768 3 0.45502 0.77889 4.2409e-08 0.02475 1.3326 1.3326 3 0.38699 0.88822 4.2439e-08 0.0215 1.3884 1.3884 3 0.31896 0.99234 4.25e-08 0.015 1.5 1.5 3 0.1829 1.1602 4.2521e-08 0.01423 1.5375 1.5375 3 0.13717 1.1983 4.2541e-08 0.013461 1.575 1.575 3 0.09145 1.232 4.2561e-08 0.012691 1.6125 1.6125 3 0.045725 1.2563 4.2582e-08 0.011922 1.65 1.65 3 0 1.2698 4.2603e-08 0.011152 1.6875 1.6875 3 0 1.2678 4.2643e-08 0.0096126 1.7625 1.7625 3 0 1.2364 4.2696e-08 0.0076323 1.8581 1.8581 3 0 1.1219 4.2793e-08 0.004 2.0324 2.0324 3 0 0.76635 4.2843e-08 0.0032754 2.1225 2.1225 3 0 0.57621 4.2894e-08 0.0025362 2.2144 2.2144 3 0 0.42289 4.2945e-08 0.0017971 2.3063 2.3063 3 0 0.31076 4.2997e-08 0.0010435 2.4 2.4 3 0 0.23001 4.2998e-08 0.0010326 2.4007 2.4007 3 0 0.22891 4.2999e-08 0.0010217 2.4014 2.4014 3 0 0.2279 4.3e-08 0.001 2.4027 2.4027 3 0 0.22574 4.3001e-08 0.00099616 2.4037 2.4037 3 0 0.22421 4.3003e-08 0.00098848 2.4058 2.4058 3 0 0.22115 4.3012e-08 0.00095776 2.4139 2.4139 3 0 0.20957 4.3048e-08 0.0008349 2.4464 2.4464 3 0 0.17027 4.3122e-08 0.0005849 2.5124 2.5124 3 0 0.11592 4.3195e-08 0.0003349 2.5785 2.5785 3 0 0.083527 4.3293e-08 0 2.6671 2.6671 3 0 0.058023 4.3343e-08 -8.6693e-05 2.7122 2.7122 3 0 0.050571 4.3435e-08 -0.00024664 2.7954 2.7954 3 0 0.039497 4.3527e-08 -0.00040659 2.8786 2.8786 3 0 0.032477 4.3662e-08 -0.00063979 3 3 3 0 0.026037 4.3712e-08 -0.00072648 3 3 3 0 0.020576 4.3812e-08 -0.00089987 3 3 3 0 0.013258 4.4212e-08 -0.0015934 3 3 3 0 0.0059291 4.4696e-08 -0.0024335 3 3 3 0 0.0045566 4.5197e-08 -0.0033004 3 3 3 0 0.0028806 4.56e-08 -0.004 3 3 3 0 0.0024812 4.5615e-08 -0.006 3 3 3 0 0.0024703 4.563e-08 -0.008 3 3 3 0 0.002479 4.566e-08 -0.012 3 3 3 0 0.0023976 4.5671e-08 -0.0125 3 3 3 0 0.0023863 4.5681e-08 -0.013 3 3 3 0 0.002384 4.5692e-08 -0.0135 3 3 3 0 0.002347 4.5703e-08 -0.014 3 3 3 0 0.0023787 4.5714e-08 -0.011236 3 3 3 0 0.0023564 4.5731e-08 -0.0067357 3 3 3 0 0.0023563 4.5749e-08 -0.0022357 3 3 3 0 0.002347 4.5773e-08 0.004 3 3 3 0 0.0023272 4.5786e-08 0.01475 3 3 3 0 0.0023313 4.5798e-08 0.0255 3 3 3 0 0.0023408 4.5823e-08 0.047 3 3 3 0 0.0023208 4.5842e-08 0.081875 3 3 3 0 0.0023029 4.5867e-08 0.12837 3 3 3 0 0.0023079 4.5892e-08 0.17488 3 3 3 0 0.0022473 4.5923e-08 0.233 3 3 3 0 0.0022648 4.5941e-08 0.289 3 3 3 0 0.0022388 4.5959e-08 0.345 3 3 3 0 0.0022596 4.5976e-08 0.401 3 3 3 0 0.0022448 4.5994e-08 0.457 3 3 3 0 0.0022677 4.5995e-08 0.4605 3 3 3 0 0.0022897 4.5995e-08 0.464 3 3 3 0 0.0022989 4.5997e-08 0.471 3 3 3 0 0.0022956 4.5998e-08 0.47375 3 3 3 0 0.0022956 4.5999e-08 0.4765 3 3 3 0 0.0022974 4.5999e-08 0.47925 3 3 3 0 0.0022985 4.6e-08 0.482 3 3 3 0 0.0022981 4.6001e-08 0.48454 3 3 3 0 0.0022962 4.6002e-08 0.48963 3 3 3 0 0.0022954 4.6008e-08 0.50999 3 3 3 0 0.0022819 4.6032e-08 0.59142 3 3 3 0 0.0022226 4.606e-08 0.68642 3 3 3 0 0.0021969 4.6112e-08 0.862 3 3 3 0 0.001942 4.6132e-08 0.91575 3 3 3 0 0.0019081 4.6151e-08 0.9695 3 3 3 0 0.0018943 4.6171e-08 1.0232 3 3 3 0 0.0019067 4.6191e-08 1.077 3 3 3 0 0.0018889 4.6203e-08 1.1072 3 3 3 0 0.0019018 4.6214e-08 1.1375 3 3 3 0 0.0018967 4.6226e-08 1.1678 3 3 3 0 0.0019245 4.6238e-08 1.198 3 3 3 0 0.0019104 4.6246e-08 1.2175 3 3 3 0 0.0019031 4.6254e-08 1.237 3 3 3 0 0.0019068 4.6271e-08 1.276 3 3 3 0 0.001908 4.6283e-08 1.298 3 3 3 0 0.0018906 4.6294e-08 1.32 3 3 3 0 0.0019069 4.6318e-08 1.364 3 3 3 0 0.0018674 4.6327e-08 1.3802 3 3 3 0 0.0018914 4.6335e-08 1.3965 3 3 3 0 0.0018895 4.6352e-08 1.429 3 3 3 0 0.0019057 4.636e-08 1.4447 3 3 3 0 0.0018956 4.6368e-08 1.4605 3 3 3 0 0.0019146 4.6376e-08 1.4763 3 3 3 0 0.0018931 4.6384e-08 1.492 3 3 3 0 0.0019228 4.639e-08 1.503 3 3 3 0 0.0019009 4.6395e-08 1.514 3 3 3 0 0.0019184 4.6401e-08 1.525 3 3 3 0 0.0018887 4.6407e-08 1.536 3 3 3 0 0.0019166 4.6413e-08 1.5416 3 3 3 0 0.0018957 4.6421e-08 1.5496 3 3 3 0 0.0019218 4.6429e-08 1.5576 3 3 3 0 0.0018848 4.644e-08 1.568 3 3 3 0 0.0019137 4.6445e-08 1.5757 3 3 3 0 0.001897 4.6451e-08 1.5835 3 3 3 0 0.0019294 4.6456e-08 1.5912 3 3 3 0 0.0018766 4.6462e-08 1.599 3 3 3 0 0.0019037 4.6467e-08 1.61 3 3 3 0 0.001898 4.6473e-08 1.621 3 3 3 0 0.0019215 4.6479e-08 1.632 3 3 3 0 0.0018915 4.6484e-08 1.643 3 3 3 0 0.0019486 4.6488e-08 1.6508 3 3 3 0 0.0019166 4.6492e-08 1.6585 3 3 3 0 0.0019121 4.6496e-08 1.6662 3 3 3 0 0.001889 4.65e-08 1.674 3 3 3 0 0.0019105 4.6504e-08 1.6819 3 3 3 0 0.0018924 4.6512e-08 1.6971 3 3 3 0 0.0019379 4.6519e-08 1.7124 3 3 3 0 0.00188 4.6531e-08 1.735 3 3 3 0 0.0018901 4.6536e-08 1.7472 3 3 3 0 0.0018608 4.6542e-08 1.7595 3 3 3 0 0.0018769 4.6547e-08 1.7717 3 3 3 0 0.0018349 4.6553e-08 1.784 3 3 3 0 0.0018542 4.6559e-08 1.7962 3 3 3 0 0.0018477 4.657e-08 1.8207 3 3 3 0 0.0018704 4.6585e-08 1.8557 3 3 3 0 0.0017891 4.6616e-08 1.924 3 3 3 0 0.0018204 4.6627e-08 1.9473 3 3 3 0 0.0017722 4.6638e-08 1.9705 3 3 3 0 0.0017819 4.6649e-08 1.9937 3 3 3 0 0.001754 4.666e-08 2.017 3 3 3 0 0.0018045 4.6671e-08 2.0376 3 3 3 0 0.0017657 4.6693e-08 2.0788 3 3 3 0 0.0017383 4.6719e-08 2.1265 3 3 3 0 0.0016396 4.6762e-08 2.208 3 3 3 0 0.0017167 4.678e-08 2.2362 3 3 3 0 0.0016453 4.6798e-08 2.2645 3 3 3 0 0.0016613 4.6834e-08 2.321 3 3 3 0 0.0013475 4.6858e-08 2.3595 3 3 3 0 0.0013344 4.6883e-08 2.398 3 3 3 0 0.0013247 4.6931e-08 2.475 3 3 3 0 0.0013191 4.6948e-08 2.4992 3 3 3 0 0.0013172 4.6965e-08 2.5235 3 3 3 0 0.001321 4.6983e-08 2.5477 3 3 3 0 0.0013209 4.7e-08 2.572 3 3 3 0 0.0013219 4.7017e-08 2.59 3 3 3 0 0.0013119 4.7045e-08 2.6193 3 3 3 0 0.0013125 4.7073e-08 2.6485 3 3 3 0 0.001301 4.7112e-08 2.689 3 3 3 0 0.0013015 4.7132e-08 2.7037 3 3 3 0 0.0012947 4.7152e-08 2.7185 3 3 3 0 0.0013057 4.7192e-08 2.748 3 3 3 0 0.0012828 4.7222e-08 2.7644 3 3 3 0 0.0012761 4.7262e-08 2.7862 3 3 3 0 0.0012693 4.7302e-08 2.8079 3 3 3 0 0.0012816 4.7351e-08 2.835 3 3 3 0 0.0012493 4.7379e-08 2.845 3 3 3 0 0.0012571 4.7408e-08 2.855 3 3 3 0 0.0012614 4.7436e-08 2.865 3 3 3 0 0.0012877 4.7464e-08 2.875 3 3 3 0 0.0012623 4.7469e-08 2.8765 3 3 3 0 0.0013034 4.7475e-08 2.878 3 3 3 0 0.0012937 4.748e-08 2.8795 3 3 3 0 0.0013101 4.7485e-08 2.881 3 3 3 0 0.0012984 4.7489e-08 2.882 3 3 3 0 0.0013058 4.7492e-08 2.883 3 3 3 0 0.0012945 4.7496e-08 2.884 3 3 3 0 0.0013309 4.75e-08 2.885 3 3 3 0 0.0013244 4.7504e-08 2.8858 3 3 3 0 0.0013114 4.7511e-08 2.8873 3 3 3 0 0.001292 4.7541e-08 2.8934 3 3 3 0 0.0012935 4.7608e-08 2.9072 3 3 3 0 0.0011904 4.7676e-08 2.9209 3 3 3 0 0.0011541 4.7769e-08 2.94 3 3 3 0 0.00099603 4.7817e-08 2.9457 3 3 3 0 0.0010243 4.7864e-08 2.9515 3 3 3 0 0.00091042 4.796e-08 2.963 3 3 3 0 0.00093234 4.7966e-08 2.9635 3 3 3 0 0.00093216 4.7972e-08 2.964 3 3 3 0 0.00093269 4.7977e-08 2.9645 3 3 3 0 0.00093416 4.7983e-08 2.965 3 3 3 0 0.00093321 4.7987e-08 2.9653 3 3 3 0 0.00093264 4.7991e-08 2.9655 3 3 3 0 0.00093325 4.7996e-08 2.9657 3 3 3 0 0.00093311 4.8e-08 2.966 3 3 3 0 0.00093316 4.8004e-08 2.9663 3 3 3 0 0.00093237 4.8013e-08 2.9668 3 3 3 0 0.00093212 4.8047e-08 2.9689 3 3 3 0 0.00092497 4.812e-08 2.9734 3 3 3 0 0.00091431 4.8193e-08 2.9779 3 3 3 0 0.00090541 4.8293e-08 2.984 3 3 3 0 0.00089241 4.8343e-08 2.9854 3 3 3 0 0.00088623 4.8395e-08 2.9869 3 3 3 0 0.00089444 4.8446e-08 2.9884 3 3 3 0 0.00089172 4.85e-08 2.99 3 3 3 0 0.0008908 4.855e-08 2.9909 3 3 3 0 0.00086969 4.8623e-08 2.9921 3 3 3 0 0.0008727 4.8696e-08 2.9934 3 3 3 0 0.00085741 4.8793e-08 2.995 3 3 3 0 0.00085535 4.8843e-08 2.9955 3 3 3 0 0.00084323 4.8895e-08 2.996 3 3 3 0 0.00086393 4.8947e-08 2.9965 3 3 3 0 0.00085734 4.9e-08 2.997 3 3 3 0 0.00087159 4.905e-08 2.9971 3 3 3 0 0.00082816 4.915e-08 2.9975 3 3 3 0 0.00077438 4.94e-08 2.9982 3 3 3 0 0.00067155 4.965e-08 2.999 3 3 3 0 0.0006272 5e-08 3 3 3 3 0 0.00056707 5.005e-08 2.9999 3 3 3 0 0.00058146 5.015e-08 2.9997 3 3 3 0 0.00057656 5.029e-08 2.9995 3 3 3 0 0.0005794 5.0559e-08 2.999 3 3 3 0 0.0005348 5.0569e-08 2.9995 3 3 3 0 0.00057952 5.058e-08 3 3 3 3 0 0.0005808 5.059e-08 3.0005 3 3 3 0 0.00061449 5.06e-08 3.001 3 3 3 0 0.00057406 5.061e-08 3.0021 3 3 3 0 0.00058122 5.0626e-08 3.0039 3 3 3 0 0.00058762 5.0642e-08 3.0056 3 3 3 0 0.0005866 5.0663e-08 3.008 3 3 3 0 0.00058829 5.0674e-08 3.0092 3 3 3 0 0.00058389 5.0685e-08 3.0105 3 3 3 0 0.00058886 5.0696e-08 3.0117 3 3 3 0 0.00058762 5.0707e-08 3.013 3 3 3 0 0.00058738 5.0718e-08 3.0126 3 3 3 0 0.00058391 5.0739e-08 3.0119 3 3 3 0 0.000583 5.0759e-08 3.0111 3 3 3 0 0.00058133 5.079e-08 3.01 3 3 3 0 0.00057987 5.0804e-08 3.0055 3 3 3 0 0.0005783 5.0819e-08 3.001 3 3 3 0 0.00058369 5.0833e-08 2.9965 3 3 3 0 0.00058424 5.0848e-08 2.992 3 3 3 0 0.00058476 5.0862e-08 2.9811 3 3 3 0 0.00057814 5.0885e-08 2.9643 3 3 3 0 0.00058064 5.0907e-08 2.9476 3 3 3 0 0.00057731 5.0937e-08 2.925 3 3 3 0 0.00057681 5.0953e-08 2.9037 3 3 3 0 0.00057389 5.0968e-08 2.8825 3 3 3 0 0.00058148 5.1e-08 2.84 3 3 3 0 0.00057578 5.1016e-08 2.8052 3 3 3 0 0.00057534 5.1033e-08 2.7705 3 3 3 0 0.00058051 5.105e-08 2.7357 3 3 3 0 0.00058113 5.1066e-08 2.701 3 3 3 0 0.0005806 5.1077e-08 2.6667 3 3 3 0 0.00057682 5.1089e-08 2.6325 3 3 3 0 0.00058184 5.11e-08 2.5982 3 3 3 0 0.00058185 5.1112e-08 2.564 3 3 3 0 0.00058408 5.1124e-08 2.521 3 3 3 0 0.0005766 5.114e-08 2.4603 3 3 3 0 0.00057913 5.1156e-08 2.3995 3 3 3 0 0.00058034 5.1177e-08 2.321 3 3 3 0 0.00057667 5.1189e-08 2.2795 3 3 3 0 0.00057559 5.1201e-08 2.238 3 3 3 0 0.00058103 5.1212e-08 2.1965 3 3 3 0 0.00058148 5.1224e-08 2.155 3 3 3 0 0.0005827 5.1236e-08 2.1072 3 3 3 0 0.00057565 5.1254e-08 2.0329 3 3 3 0 0.00057646 5.1272e-08 1.9587 3 3 3 0 0.00057353 5.1297e-08 1.858 3 3 3 0 0.00057516 5.131e-08 1.8053 3 3 3 0 0.00057193 5.1323e-08 1.7525 3 3 3 0 0.00057852 5.1349e-08 1.647 3 3 3 0 0.00056954 5.1367e-08 1.578 3 3 3 0 0.00056512 5.1385e-08 1.509 3 3 3 0 0.00057154 5.1422e-08 1.371 3 3 3 0 0.00056793 5.1435e-08 1.3175 3 3 3 0 0.00056966 5.1448e-08 1.264 3 3 3 0 0.00057793 5.1474e-08 1.157 3 3 3 0 0.00056872 5.1478e-08 1.1375 3 3 3 0 0.00058169 5.1481e-08 1.118 3 3 3 0 0.00058633 5.1489e-08 1.079 3 3 3 0 0.00058316 5.1492e-08 1.067 3 3 3 0 0.00058456 5.1494e-08 1.055 3 3 3 0 0.00058653 5.15e-08 1.031 3 3 3 0 0.00058525 5.1504e-08 1.0161 3 3 3 0 0.00058291 5.1509e-08 0.99815 3 3 3 0 0.00058468 5.1514e-08 0.98015 3 3 3 0 0.00058545 5.152e-08 0.959 3 3 3 0 0.00058425 5.1524e-08 0.95375 3 3 3 0 0.00058367 5.1527e-08 0.9485 3 3 3 0 0.00058583 5.153e-08 0.94325 3 3 3 0 0.00058651 5.1534e-08 0.938 3 3 3 0 0.00058602 5.1538e-08 0.93202 3 3 3 0 0.00058386 5.1543e-08 0.92177 3 3 3 0 0.00058409 5.1549e-08 0.91152 3 3 3 0 0.00058457 5.1558e-08 0.897 3 3 3 0 0.00058244 5.1562e-08 0.89325 3 3 3 0 0.00058245 5.1566e-08 0.8895 3 3 3 0 0.00058526 5.1571e-08 0.88575 3 3 3 0 0.00058598 5.1575e-08 0.882 3 3 3 0 0.00058545 5.1579e-08 0.8735 3 3 3 0 0.00058276 5.1586e-08 0.86 3 3 3 0 0.00058344 5.1593e-08 0.8465 3 3 3 0 0.00058406 5.1602e-08 0.828 3 3 3 0 0.0005818 5.1607e-08 0.8165 3 3 3 0 0.00058135 5.1612e-08 0.805 3 3 3 0 0.00058463 5.1617e-08 0.7935 3 3 3 0 0.00058548 5.1622e-08 0.782 3 3 3 0 0.00058484 5.1627e-08 0.76988 3 3 3 0 0.00058165 5.1635e-08 0.74988 3 3 3 0 0.00058227 5.1644e-08 0.72988 3 3 3 0 0.00058294 5.1655e-08 0.702 3 3 3 0 0.00058009 5.1661e-08 0.68875 3 3 3 0 0.00057981 5.1667e-08 0.6755 3 3 3 0 0.00058383 5.1673e-08 0.66225 3 3 3 0 0.00058477 5.1679e-08 0.649 3 3 3 0 0.00058404 5.1685e-08 0.63449 3 3 3 0 0.00058018 5.1697e-08 0.60548 3 3 3 0 0.00057946 5.1714e-08 0.56498 3 3 3 0 0.00057332 5.1746e-08 0.487 3 3 3 0 0.00056667 5.1751e-08 0.47616 3 3 3 0 0.00057691 5.1757e-08 0.46533 3 3 3 0 0.00058189 5.1767e-08 0.44366 3 3 3 0 0.00058166 5.1774e-08 0.43024 3 3 2.9758 0 -0.0026672 5.178e-08 0.41683 3 3 2.9516 0 -0.0059634 5.1793e-08 0.39 3 3 2.9031 0 -0.012032 5.1803e-08 0.3744 3 3 2.8668 0 -0.015751 5.182e-08 0.3464 3 3 2.8016 0 -0.021729 5.1838e-08 0.3184 3 3 2.7363 0 -0.026457 5.1863e-08 0.278 3 3 2.6422 0 -0.031608 5.1875e-08 0.26375 3 3 2.5966 0 -0.033391 5.1888e-08 0.2495 3 3 2.5509 0 -0.035038 5.1912e-08 0.221 3 3 2.4596 0 -0.037723 5.1925e-08 0.20925 3 3 2.4112 0 -0.038684 5.1938e-08 0.1975 3 3 2.3528 0 -0.04087 5.1951e-08 0.18575 3 3 2.2913 0 -0.043252 5.1964e-08 0.174 3 3 2.2299 0 -0.045239 5.1966e-08 0.17237 3 3 2.2193 0 -0.045552 5.1968e-08 0.17075 3 3 2.2087 0 -0.045906 5.1973e-08 0.1675 3 3 2.1874 0 -0.046364 5.1976e-08 0.16506 3 3 2.1715 0.014062 -0.046608 5.1983e-08 0.16019 3 3 2.1396 0.042188 -0.047063 5.199e-08 0.15531 3 3 2.1077 0.070313 -0.047475 5.2e-08 0.148 3 3 2.0598 0.1125 -0.047984 5.2008e-08 0.14378 3 3 2.02 0.14766 -0.048296 5.2025e-08 0.13534 3 3 1.9403 0.21797 -0.048902 5.2055e-08 0.12034 3 3 1.7985 0.34297 -0.049589 5.2085e-08 0.10534 3 3 1.6521 0.46797 -0.05042 5.212e-08 0.088 3 3 1.4829 0.60822 -0.050471 5.2141e-08 0.081 3 3 1.3793 0.66644 -0.04966 5.2162e-08 0.074 3 3 1.2756 0.72466 -0.048522 5.2184e-08 0.067 3 3 1.1744 0.78288 -0.04636 5.2205e-08 0.06 3 3 1.08 0.8411 -0.042698 5.2226e-08 0.056069 3 3 0.98556 0.89932 -0.03905 5.2269e-08 0.048208 3 3 0.79667 1.0158 -0.031514 5.2312e-08 0.040208 3 3 0.60444 1.1342 -0.014002 5.2378e-08 0.028 3 3 0.45502 1.2768 -0.0040514 5.2408e-08 0.02475 3 3 0.38699 1.3326 -0.0030438 5.2439e-08 0.0215 3 3 0.31896 1.3884 -0.0023348 5.25e-08 0.015 3 3 0.1829 1.5 -0.0018451 5.2521e-08 0.01423 3 3 0.13717 1.5375 -0.0017913 5.2541e-08 0.013461 3 3 0.09145 1.575 -0.0016923 5.2582e-08 0.011922 3 3 0 1.65 -0.0016186 5.2613e-08 0.010767 3 3 0 1.7062 -0.00047328 5.2665e-08 0.0087867 3 3 0 1.8027 0.0006734 5.2718e-08 0.0068063 3 3 0 1.8977 0.0010771 5.2793e-08 0.004 3 3 0 2.0324 0.001278 5.2843e-08 0.0032754 3 3 0 2.1225 0.0012993 5.2894e-08 0.0025362 3 3 0 2.2144 0.0013194 5.2945e-08 0.0017971 3 3 0 2.3063 0.0012942 5.2997e-08 0.0010435 3 3 0 2.4 0.0013118 5.2998e-08 0.0010326 3 3 0 2.4007 0.0012799 5.2999e-08 0.0010217 3 3 0 2.4014 0.0012688 5.3e-08 0.001 3 3 0 2.4027 0.0012259 5.3001e-08 0.00099616 3 3 0 2.4037 0.0012242 5.3003e-08 0.00098848 3 3 0 2.4058 0.0012039 5.3012e-08 0.00095776 3 3 0 2.4139 0.001347 5.3048e-08 0.0008349 3 3 0 2.4464 0.00093656 5.3122e-08 0.0005849 3 3 0 2.5124 0.00089444 5.3195e-08 0.0003349 3 3 0 2.5785 0.00091215 5.3293e-08 0 3 3 0 2.6671 0.00085488 5.3343e-08 -8.6693e-05 3 3 0 2.7122 0.00088017 5.3435e-08 -0.00024664 3 3 0 2.7954 0.00081641 5.3528e-08 -0.00040659 3 3 0 2.8786 0.00086207 5.3662e-08 -0.00063979 3 3 0 3 0.00082959 5.3712e-08 -0.00072648 3 3 0 3 0.00061568 5.3812e-08 -0.00089987 3 3 0 3 0.00045652 5.4212e-08 -0.0015934 3 3 0 3 0.00029019 5.4696e-08 -0.0024335 3 3 0 3 0.00036829 5.5197e-08 -0.0033004 3 3 0 3 0.00028717 5.56e-08 -0.004 3 3 0 3 0.00032665 5.5615e-08 -0.006 3 3 0 3 0.00031429 5.563e-08 -0.008 3 3 0 3 0.00031112 5.566e-08 -0.012 3 3 0 3 0.00032183 5.5671e-08 -0.0125 3 3 0 3 0.00032027 5.5682e-08 -0.013 3 3 0 3 0.00032352 5.5692e-08 -0.0135 3 3 0 3 0.00032854 5.5703e-08 -0.014 3 3 0 3 0.00032407 5.5714e-08 -0.011236 3 3 0 3 0.00032359 5.5731e-08 -0.0067357 3 3 0 3 0.00032088 5.5749e-08 -0.0022357 3 3 0 3 0.00032605 5.5773e-08 0.004 3 3 0 3 0.00031833 5.5785e-08 0.01475 3 3 0 3 0.00031943 5.5798e-08 0.0255 3 3 0 3 0.00032057 5.5823e-08 0.047 3 3 0 3 0.00031962 5.5842e-08 0.081875 3 3 0 3 0.00031713 5.5867e-08 0.12837 3 3 0 3 0.0003193 5.5892e-08 0.17488 3 3 0 3 0.00031981 5.5923e-08 0.233 3 3 0 3 0.00031781 5.5941e-08 0.289 3 3 0 3 0.00031692 5.5958e-08 0.345 3 3 0 3 0.00032078 5.5976e-08 0.401 3 3 0 3 0.00032079 5.5994e-08 0.457 3 3 0 3 0.00032135 5.5995e-08 0.4605 3 3 0 3 0.00032385 5.5995e-08 0.464 3 3 0 3 0.00032458 5.5997e-08 0.471 3 3 0 3 0.00032434 5.5998e-08 0.47375 3 3 0 3 0.00032452 5.5998e-08 0.4765 3 3 0 3 0.00032442 5.5999e-08 0.47925 3 3 0 3 0.00032431 5.6e-08 0.482 3 3 0 3 0.00032436 5.6001e-08 0.48454 3 3 0 3 0.00032452 5.6002e-08 0.48963 3 3 0 3 0.00032459 5.6008e-08 0.50999 3 3 0 3 0.00032427 5.6032e-08 0.59142 3 3 0 3 0.00031997 5.606e-08 0.68642 3 3 0 3 0.00031886 5.6112e-08 0.862 3 3 0 3 0.00031192 5.6132e-08 0.91575 3 3 0 3 0.00031356 5.6151e-08 0.9695 3 3 0 3 0.00031756 5.6171e-08 1.0232 3 3 0 3 0.00031956 5.6191e-08 1.077 3 3 0 3 0.00031938 5.6203e-08 1.1072 3 3 0 3 0.00031857 5.6214e-08 1.1375 3 3 0 3 0.00032166 5.6226e-08 1.1678 3 3 0 3 0.00032198 5.6238e-08 1.198 3 3 0 3 0.0003217 5.6246e-08 1.2175 3 3 0 3 0.00032081 5.6254e-08 1.237 3 3 0 3 0.0003229 5.6271e-08 1.276 3 3 0 3 0.00032148 5.6283e-08 1.298 3 3 0 3 0.00031878 5.6294e-08 1.32 3 3 0 3 0.00032166 5.6318e-08 1.364 3 3 0 3 0.00031963 5.6326e-08 1.3802 3 3 0 3 0.00032044 5.6335e-08 1.3965 3 3 0 3 0.0003229 5.6352e-08 1.429 3 3 0 3 0.00032123 5.636e-08 1.4447 3 3 0 3 0.0003209 5.6368e-08 1.4605 3 3 0 3 0.00032301 5.6376e-08 1.4763 3 3 0 3 0.00032359 5.6384e-08 1.492 3 3 0 3 0.00032316 5.639e-08 1.503 3 3 0 3 0.0003224 5.6395e-08 1.514 3 3 0 3 0.00032366 5.6401e-08 1.525 3 3 0 3 0.00032412 5.6407e-08 1.536 3 3 0 3 0.00032379 5.6413e-08 1.5416 3 3 0 3 0.00032247 5.6421e-08 1.5496 3 3 0 3 0.00032305 5.6429e-08 1.5576 3 3 0 3 0.00032344 5.644e-08 1.568 3 3 0 3 0.00032246 5.6446e-08 1.5757 3 3 0 3 0.00032245 5.6451e-08 1.5835 3 3 0 3 0.00032376 5.6456e-08 1.5912 3 3 0 3 0.00032414 5.6462e-08 1.599 3 3 0 3 0.00032387 5.6467e-08 1.61 3 3 0 3 0.00032262 5.6473e-08 1.621 3 3 0 3 0.0003237 5.6478e-08 1.632 3 3 0 3 0.00032418 5.6484e-08 1.643 3 3 0 3 0.00032384 5.6488e-08 1.6508 3 3 0 3 0.00032341 5.6492e-08 1.6585 3 3 0 3 0.0003241 5.6496e-08 1.6662 3 3 0 3 0.00032439 5.65e-08 1.674 3 3 0 3 0.00032419 5.6504e-08 1.6819 3 3 0 3 0.00032345 5.6512e-08 1.6971 3 3 0 3 0.00032332 5.652e-08 1.7124 3 3 0 3 0.00032348 5.6531e-08 1.735 3 3 0 3 0.00032236 5.6536e-08 1.7472 3 3 0 3 0.00032244 5.6542e-08 1.7595 3 3 0 3 0.00032377 5.6547e-08 1.7717 3 3 0 3 0.00032413 5.6553e-08 1.784 3 3 0 3 0.00032387 5.6558e-08 1.7962 3 3 0 3 0.00032262 5.657e-08 1.8207 3 3 0 3 0.00032232 5.6585e-08 1.8557 3 3 0 3 0.00032124 5.6616e-08 1.924 3 3 0 3 0.00031631 5.6627e-08 1.9473 3 3 0 3 0.00031868 5.6638e-08 1.9705 3 3 0 3 0.000321 5.6649e-08 1.9937 3 3 0 3 0.00032185 5.666e-08 2.017 3 3 0 3 0.00032224 5.6671e-08 2.0376 3 3 0 3 0.00031894 5.6693e-08 2.0788 3 3 0 3 0.00031796 5.6718e-08 2.1265 3 3 0 3 0.00031578 5.6762e-08 2.208 3 3 0 3 0.00031114 5.678e-08 2.2362 3 3 0 3 0.0003113 5.6798e-08 2.2645 3 3 0 3 0.000316 5.6834e-08 2.321 3 3 0 3 0.00031208 5.6858e-08 2.3595 3 3 0 3 0.00030822 5.6882e-08 2.398 3 3 0 3 0.0003133 5.6931e-08 2.475 3 3 0 3 0.00030606 5.6948e-08 2.4992 3 3 0 3 0.0003093 5.6966e-08 2.5235 3 3 0 3 0.00031428 5.6983e-08 2.5477 3 3 0 3 0.00031648 5.7e-08 2.572 3 3 0 3 0.00031808 5.7017e-08 2.59 3 3 0 3 0.00031206 5.7045e-08 2.6193 3 3 0 3 0.00031394 5.7073e-08 2.6485 3 3 0 3 0.00031134 5.7112e-08 2.689 3 3 0 3 0.00031015 5.7132e-08 2.7037 3 3 0 3 0.00030755 5.7152e-08 2.7185 3 3 0 3 0.0003134 5.7192e-08 2.748 3 3 0 3 0.0003083 5.7222e-08 2.7644 3 3 0 3 0.0003014 5.7262e-08 2.7862 3 3 0 3 0.00030427 5.7301e-08 2.8079 3 3 0 3 0.00030386 5.7351e-08 2.835 3 3 0 3 0.00030291 5.7379e-08 2.845 3 3 0 3 0.00029959 5.7408e-08 2.855 3 3 0 3 0.00030734 5.7436e-08 2.865 3 3 0 3 0.00031017 5.7464e-08 2.875 3 3 0 3 0.00031031 5.7469e-08 2.8765 3 3 0 3 0.00031635 5.7475e-08 2.878 3 3 0 3 0.00031946 5.748e-08 2.8795 3 3 0 3 0.00031949 5.7485e-08 2.881 3 3 0 3 0.00031947 5.7489e-08 2.882 3 3 0 3 0.00031865 5.7492e-08 2.883 3 3 0 3 0.00031976 5.7496e-08 2.884 3 3 0 3 0.00032024 5.75e-08 2.885 3 3 0 3 0.00031991 5.7504e-08 2.8858 3 3 0 3 0.00031871 5.7511e-08 2.8873 3 3 0 3 0.00031839 5.7541e-08 2.8934 3 3 0 3 0.00030975 5.7608e-08 2.9072 3 3 0 3 0.00029539 5.7676e-08 2.9209 3 3 0 3 0.00029164 5.7769e-08 2.94 3 3 0 3 0.00028743 5.7817e-08 2.9457 3 3 0 3 0.00028443 5.7865e-08 2.9515 3 3 0 3 0.00029454 5.796e-08 2.963 3 3 0 3 0.00028285 5.7966e-08 2.9635 3 3 0 3 0.00030552 5.7972e-08 2.964 3 3 0 3 0.00031185 5.7977e-08 2.9645 3 3 0 3 0.00031046 5.7983e-08 2.965 3 3 0 3 0.00031146 5.7987e-08 2.9653 3 3 0 3 0.00031006 5.7991e-08 2.9655 3 3 0 3 0.0003113 5.7996e-08 2.9657 3 3 0 3 0.00031189 5.8e-08 2.966 3 3 0 3 0.00031148 5.8004e-08 2.9663 3 3 0 3 0.00031007 5.8013e-08 2.9668 3 3 0 3 0.00030971 5.8047e-08 2.9689 3 3 0 3 0.00030018 5.812e-08 2.9734 3 3 0 3 0.00028565 5.8193e-08 2.9779 3 3 0 3 0.0002886 5.8293e-08 2.984 3 3 0 3 0.00027884 5.8343e-08 2.9854 3 3 0 3 0.00028006 5.8395e-08 2.9869 3 3 0 3 0.00028664 5.8446e-08 2.9884 3 3 0 3 0.00029313 5.85e-08 2.99 3 3 0 3 0.00029023 5.855e-08 2.9909 3 3 0 3 0.00027989 5.8623e-08 2.9921 3 3 0 3 0.00028058 5.8697e-08 2.9934 3 3 0 3 0.00028216 5.8793e-08 2.995 3 3 0 3 0.00027334 5.8843e-08 2.9955 3 3 0 3 0.00027184 5.8895e-08 2.996 3 3 0 3 0.00028248 5.8947e-08 2.9965 3 3 0 3 0.00028904 5.9e-08 2.997 3 3 0 3 0.0002847 5.905e-08 2.9971 3 3 0 3 0.00027356 5.915e-08 2.9975 3 3 0 3 0.00026686 5.94e-08 2.9982 3 3 0 3 0.00024668 5.965e-08 2.999 3 3 0 3 0.00023722 6e-08 3 3 3 0 3 0.00022994 6.005e-08 2.9999 3 3 0 3 0.00025214 6.015e-08 2.9997 3 3 0 3 0.00025531 6.029e-08 2.9995 3 3 0 3 0.00025907 6.0559e-08 2.999 3 3 0 3 0.00021527 6.0569e-08 2.9995 3 3 0 3 0.00026754 6.058e-08 3 3 3 0 3 0.00028023 6.06e-08 3.001 3 3 0 3 0.00030204 6.0615e-08 3.0027 3 3 0 3 0.0002807 6.0631e-08 3.0045 3 3 0 3 0.00027322 6.0647e-08 3.0062 3 3 0 3 0.00028247 6.0663e-08 3.008 3 3 0 3 0.00026516 6.0674e-08 3.0092 3 3 0 3 0.00026924 6.0685e-08 3.0105 3 3 0 3 0.00027141 6.0696e-08 3.0117 3 3 0 3 0.00027348 6.0707e-08 3.013 3 3 0 3 0.0002719 6.0718e-08 3.0126 3 3 0 3 0.00026802 6.0739e-08 3.0119 3 3 0 3 0.0002678 6.0759e-08 3.0111 3 3 0 3 0.00026844 6.079e-08 3.01 3 3 0 3 0.0002654 6.0805e-08 3.0055 3 3 0 3 0.00026737 6.0819e-08 3.001 3 3 0 3 0.00027422 6.0848e-08 2.992 3 3 0 3 0.00026928 6.087e-08 2.9756 3 3 0 3 0.00026155 6.0892e-08 2.9589 3 3 0 3 0.00026873 6.0914e-08 2.9421 3 3 0 3 0.00027207 6.0937e-08 2.925 3 3 0 3 0.00027093 6.0953e-08 2.9037 3 3 0 3 0.00026709 6.0969e-08 2.8825 3 3 0 3 0.00027381 6.0984e-08 2.8612 3 3 0 3 0.00027608 6.1e-08 2.84 3 3 0 3 0.00027522 6.1016e-08 2.8068 3 3 0 3 0.00026823 6.1032e-08 2.7721 3 3 0 3 0.00027381 6.1049e-08 2.7373 3 3 0 3 0.00027387 6.1066e-08 2.701 3 3 0 3 0.00027345 6.1078e-08 2.6667 3 3 0 3 0.00027169 6.1089e-08 2.6325 3 3 0 3 0.00027695 6.1101e-08 2.5982 3 3 0 3 0.00027838 6.1112e-08 2.564 3 3 0 3 0.00027729 6.1124e-08 2.521 3 3 0 3 0.00027207 6.114e-08 2.4603 3 3 0 3 0.00027451 6.1156e-08 2.3995 3 3 0 3 0.00027583 6.1177e-08 2.321 3 3 0 3 0.00027231 6.1189e-08 2.2795 3 3 0 3 0.00027133 6.1201e-08 2.238 3 3 0 3 0.00027685 6.1224e-08 2.155 3 3 0 3 0.00027295 6.1242e-08 2.0833 3 3 0 3 0.00026574 6.126e-08 2.009 3 3 0 3 0.00027287 6.1278e-08 1.9348 3 3 0 3 0.00027154 6.1297e-08 1.858 3 3 0 3 0.00027193 6.131e-08 1.8053 3 3 0 3 0.00026944 6.1323e-08 1.7525 3 3 0 3 0.00027537 6.1349e-08 1.647 3 3 0 3 0.00027113 6.1367e-08 1.578 3 3 0 3 0.00026439 6.1385e-08 1.509 3 3 0 3 0.00027214 6.1404e-08 1.44 3 3 0 3 0.00027446 6.1422e-08 1.371 3 3 0 3 0.00027263 6.1435e-08 1.3175 3 3 0 3 0.0002695 6.1448e-08 1.264 3 3 0 3 0.00027534 6.1461e-08 1.2105 3 3 0 3 0.00027702 6.1474e-08 1.157 3 3 0 3 0.00027572 6.1478e-08 1.1375 3 3 0 3 0.00027836 6.1482e-08 1.118 3 3 0 3 0.00027927 6.1485e-08 1.0985 3 3 0 3 0.00027914 6.1489e-08 1.079 3 3 0 3 0.00027923 6.1492e-08 1.067 3 3 0 3 0.00027923 6.1494e-08 1.055 3 3 0 3 0.00027886 6.1497e-08 1.043 3 3 0 3 0.00027873 6.15e-08 1.031 3 3 0 3 0.00027882 6.1503e-08 1.0211 3 3 0 3 0.00027917 6.1508e-08 1.0031 3 3 0 3 0.00027931 6.1513e-08 0.9851 3 3 0 3 0.00027926 6.152e-08 0.959 3 3 0 3 0.00027891 6.1524e-08 0.95375 3 3 0 3 0.00027891 6.1527e-08 0.9485 3 3 0 3 0.00027909 6.1534e-08 0.938 3 3 0 3 0.00027898 6.1539e-08 0.92903 3 3 0 3 0.0002777 6.1545e-08 0.91878 3 3 0 3 0.00027885 6.1551e-08 0.90853 3 3 0 3 0.00027937 6.1558e-08 0.897 3 3 0 3 0.00027882 6.1562e-08 0.89325 3 3 0 3 0.00027844 6.1567e-08 0.8895 3 3 0 3 0.00027911 6.1571e-08 0.88575 3 3 0 3 0.00027938 6.1575e-08 0.882 3 3 0 3 0.00027919 6.1579e-08 0.8735 3 3 0 3 0.00027849 6.1586e-08 0.86 3 3 0 3 0.00027884 6.1593e-08 0.8465 3 3 0 3 0.00027908 6.1602e-08 0.828 3 3 0 3 0.0002781 6.1607e-08 0.8165 3 3 0 3 0.0002778 6.1612e-08 0.805 3 3 0 3 0.00027904 6.1622e-08 0.782 3 3 0 3 0.00027825 6.1629e-08 0.76382 3 3 0 3 0.00027556 6.1638e-08 0.74382 3 3 0 3 0.00027793 6.1646e-08 0.72382 3 3 0 3 0.0002789 6.1655e-08 0.702 3 3 0 3 0.00027789 6.1661e-08 0.68875 3 3 0 3 0.00027693 6.1667e-08 0.6755 3 3 0 3 0.00027878 6.1673e-08 0.66225 3 3 0 3 0.00027942 6.1679e-08 0.649 3 3 0 3 0.00027895 6.1685e-08 0.63449 3 3 0 3 0.00027705 6.1697e-08 0.60548 3 3 0 3 0.00027661 6.1714e-08 0.56498 3 3 0 3 0.00027474 6.1746e-08 0.487 3 3 0 3 0.000266 6.1751e-08 0.47616 3 3 0 3 0.00027615 6.1757e-08 0.46533 3 3 0 3 0.00027954 6.1762e-08 0.45449 3 3 0 3 0.00027906 6.1767e-08 0.44366 3 3 0 3 0.0002794 6.1772e-08 0.43282 3 3 0 2.9804 9.4453e-05 6.1779e-08 0.41941 3 3 0 2.9562 -0.00013694 6.1785e-08 0.40599 3 3 0 2.932 -0.00029805 6.1793e-08 0.39 3 3 0 2.9031 -0.00056799 6.18e-08 0.3786 3 3 0 2.8766 -0.0007174 6.1814e-08 0.3558 3 3 0 2.8234 -0.0010464 6.1832e-08 0.3278 3 3 0 2.7582 -0.0012192 6.1863e-08 0.278 3 3 0 2.6422 -0.0015176 6.1875e-08 0.26375 3 3 0 2.5966 -0.0015791 6.1887e-08 0.2495 3 3 0 2.5509 -0.0017215 6.1912e-08 0.221 3 3 0 2.4596 -0.0016818 6.1925e-08 0.20925 3 3 0 2.4112 -0.001712 6.1938e-08 0.1975 3 3 0 2.3528 -0.0017864 6.1951e-08 0.18575 3 3 0 2.2913 -0.0018614 6.1964e-08 0.174 3 3 0 2.2299 -0.0018751 6.1973e-08 0.1675 3 3 0 2.1874 -0.0019639 6.1982e-08 0.161 3 3 0 2.1449 -0.0019719 6.1991e-08 0.1545 3 3 0 2.1024 -0.0021518 6.2e-08 0.148 3 3 0 2.0598 -0.0021339 6.2009e-08 0.1435 3 3 0 2.0173 -0.0021676 6.2027e-08 0.1345 3 3 0 1.9323 -0.0021649 6.2057e-08 0.1195 3 3 0 1.7902 -0.0023056 6.2087e-08 0.1045 3 3 0 1.6439 -0.0024062 6.212e-08 0.088 3 3 0 1.4829 -0.0025129 6.2141e-08 0.081 3 3 0 1.3793 -0.0025115 6.2162e-08 0.074 3 3 0 1.2756 -0.0025322 6.2205e-08 0.06 3 3 0 1.08 -0.0024051 6.2237e-08 0.054104 3 3 0 0.93833 -0.0023577 6.228e-08 0.046104 3 3 0 0.74611 -0.0023343 6.2323e-08 0.038104 3 3 0 0.57686 -0.0021515 6.2378e-08 0.028 3 3 0 0.45502 -0.001411 6.2409e-08 0.02475 3 3 0 0.38699 -0.0013017 6.2439e-08 0.0215 3 3 0 0.31896 -0.0012111 6.25e-08 0.015 3 3 0 0.1829 -0.0012056 6.252e-08 0.01423 3 3 0 0.13717 -0.0011827 6.2541e-08 0.013461 3 3 0 0.09145 -0.0011869 6.2561e-08 0.012691 3 3 0 0.045725 -0.0011574 6.2582e-08 0.011922 3 3 0 0 -0.0011777 6.2603e-08 0.011152 3 3 0 0 -0.00078081 6.2644e-08 0.0096126 3 3 0 0 -0.00025136 6.2696e-08 0.0076323 3 3 0 0 5.8254e-05 6.2793e-08 0.004 3 3 0 0 0.00016665 6.2843e-08 0.0032754 3 3 0 0 0.0001691 6.2895e-08 0.0025254 3 3 0 0 0.00018311 6.2946e-08 0.0017754 3 3 0 0 0.00016289 6.3e-08 0.001 3 3 0 0 0.00018763 6.305e-08 0.00082935 3 3 0 0 0.00017416 6.3123e-08 0.00057935 3 3 0 0 0.00017426 6.3197e-08 0.00032935 3 3 0 0 0.0001645 6.3293e-08 0 3 3 0 0 0.00016722 6.3343e-08 -8.6693e-05 3 3 0 0 0.00016384 6.3443e-08 -0.00026008 3 3 0 0 0.00016497 6.3843e-08 -0.00095362 3 3 0 0 0.00016004 6.4343e-08 -0.0018205 3 3 0 0 0.0001593 6.4843e-08 -0.0026875 3 3 0 0 0.0001513 6.5343e-08 -0.0035544 3 3 0 0 0.00015134 6.56e-08 -0.004 3 3 0 0 0.00014454 6.5615e-08 -0.006 3 3 0 0 0.00015249 6.563e-08 -0.008 3 3 0 0 0.00015459 6.566e-08 -0.012 3 3 0 0 0.0001578 6.5671e-08 -0.0125 3 3 0 0 0.00015547 6.5681e-08 -0.013 3 3 0 0 0.00015606 6.5703e-08 -0.014 3 3 0 0 0.00015565 6.5719e-08 -0.0098536 3 3 0 0 0.00015438 6.5737e-08 -0.0053536 3 3 0 0 0.00015539 6.5754e-08 -0.00085357 3 3 0 0 0.00015576 6.5773e-08 0.004 3 3 0 0 0.00015534 6.5785e-08 0.01475 3 3 0 0 0.00015493 6.5798e-08 0.0255 3 3 0 0 0.00015595 6.581e-08 0.03625 3 3 0 0 0.00015623 6.5823e-08 0.047 3 3 0 0 0.00015602 6.5836e-08 0.07025 3 3 0 0 0.00015499 6.586e-08 0.11675 3 3 0 0 0.00015479 6.5886e-08 0.16325 3 3 0 0 0.00015495 6.5923e-08 0.233 3 3 0 0 0.00015385 6.5941e-08 0.289 3 3 0 0 0.00015398 6.5959e-08 0.345 3 3 0 0 0.00015541 6.5994e-08 0.457 3 3 0 0 0.00015436 6.5995e-08 0.4605 3 3 0 0 0.00015626 6.5996e-08 0.464 3 3 0 0 0.00015675 6.5997e-08 0.471 3 3 0 0 0.00015659 6.5998e-08 0.47375 3 3 0 0 0.00015676 6.5998e-08 0.4765 3 3 0 0 0.00015664 6.6e-08 0.482 3 3 0 0 0.00015668 6.6001e-08 0.48582 3 3 0 0 0.00015687 6.6003e-08 0.49345 3 3 0 0 0.00015694 6.6012e-08 0.52399 3 3 0 0 0.00015648 6.604e-08 0.61899 3 3 0 0 0.00015479 6.6068e-08 0.71399 3 3 0 0 0.00015447 6.6112e-08 0.862 3 3 0 0 0.00015365 6.6132e-08 0.91575 3 3 0 0 0.00015368 6.6152e-08 0.9695 3 3 0 0 0.0001552 6.6171e-08 1.0232 3 3 0 0 0.00015551 6.6191e-08 1.077 3 3 0 0 0.00015527 6.6203e-08 1.1072 3 3 0 0 0.00015504 6.6214e-08 1.1375 3 3 0 0 0.00015604 6.6226e-08 1.1678 3 3 0 0 0.0001563 6.6238e-08 1.198 3 3 0 0 0.0001561 6.6246e-08 1.2175 3 3 0 0 0.00015574 6.6255e-08 1.237 3 3 0 0 0.00015643 6.6271e-08 1.276 3 3 0 0 0.00015596 6.6283e-08 1.298 3 3 0 0 0.00015511 6.6294e-08 1.32 3 3 0 0 0.00015601 6.6318e-08 1.364 3 3 0 0 0.00015538 6.6326e-08 1.3802 3 3 0 0 0.00015562 6.6335e-08 1.3965 3 3 0 0 0.00015643 6.6344e-08 1.4128 3 3 0 0 0.0001566 6.6352e-08 1.429 3 3 0 0 0.00015647 6.636e-08 1.4447 3 3 0 0 0.00015583 6.6368e-08 1.4605 3 3 0 0 0.00015644 6.6376e-08 1.4763 3 3 0 0 0.00015668 6.6384e-08 1.492 3 3 0 0 0.0001565 6.639e-08 1.503 3 3 0 0 0.00015625 6.6396e-08 1.514 3 3 0 0 0.0001567 6.6401e-08 1.525 3 3 0 0 0.00015686 6.6407e-08 1.536 3 3 0 0 0.00015674 6.6413e-08 1.5416 3 3 0 0 0.00015628 6.6421e-08 1.5496 3 3 0 0 0.00015648 6.6429e-08 1.5576 3 3 0 0 0.00015661 6.644e-08 1.568 3 3 0 0 0.00015627 6.6446e-08 1.5757 3 3 0 0 0.00015627 6.6451e-08 1.5835 3 3 0 0 0.00015673 6.6462e-08 1.599 3 3 0 0 0.00015643 6.6467e-08 1.61 3 3 0 0 0.00015629 6.6473e-08 1.621 3 3 0 0 0.00015673 6.6484e-08 1.643 3 3 0 0 0.00015644 6.6488e-08 1.6508 3 3 0 0 0.00015656 6.6492e-08 1.6585 3 3 0 0 0.00015686 6.65e-08 1.674 3 3 0 0 0.00015668 6.6506e-08 1.6858 3 3 0 0 0.00015622 6.6514e-08 1.7011 3 3 0 0 0.00015652 6.6522e-08 1.7163 3 3 0 0 0.00015667 6.6531e-08 1.735 3 3 0 0 0.00015639 6.6537e-08 1.7472 3 3 0 0 0.00015628 6.6542e-08 1.7595 3 3 0 0 0.00015673 6.6553e-08 1.784 3 3 0 0 0.00015644 6.6561e-08 1.8023 3 3 0 0 0.00015578 6.6577e-08 1.8373 3 3 0 0 0.00015571 6.6593e-08 1.8723 3 3 0 0 0.00015583 6.6616e-08 1.924 3 3 0 0 0.00015506 6.6627e-08 1.9473 3 3 0 0 0.00015515 6.6638e-08 1.9705 3 3 0 0 0.00015614 6.6649e-08 1.9937 3 3 0 0 0.00015637 6.666e-08 2.017 3 3 0 0 0.0001562 6.6671e-08 2.0376 3 3 0 0 0.00015526 6.6693e-08 2.0788 3 3 0 0 0.00015508 6.6718e-08 2.1265 3 3 0 0 0.00015494 6.6762e-08 2.208 3 3 0 0 0.00015338 6.678e-08 2.2362 3 3 0 0 0.0001539 6.6798e-08 2.2645 3 3 0 0 0.0001554 6.6816e-08 2.2927 3 3 0 0 0.00015566 6.6834e-08 2.321 3 3 0 0 0.00015546 6.6852e-08 2.3496 3 3 0 0 0.00015409 6.6876e-08 2.3881 3 3 0 0 0.00015477 6.69e-08 2.4266 3 3 0 0 0.00015509 6.6931e-08 2.475 3 3 0 0 0.00015431 6.6948e-08 2.4992 3 3 0 0 0.00015409 6.6965e-08 2.5235 3 3 0 0 0.00015545 6.6983e-08 2.5477 3 3 0 0 0.00015576 6.7e-08 2.572 3 3 0 0 0.00015552 6.7017e-08 2.59 3 3 0 0 0.0001542 6.7045e-08 2.6193 3 3 0 0 0.00015447 6.7073e-08 2.6485 3 3 0 0 0.00015472 6.7112e-08 2.689 3 3 0 0 0.0001537 6.7132e-08 2.7037 3 3 0 0 0.00015365 6.7152e-08 2.7185 3 3 0 0 0.00015517 6.7172e-08 2.7332 3 3 0 0 0.00015549 6.7192e-08 2.748 3 3 0 0 0.00015524 6.7212e-08 2.7589 3 3 0 0 0.00015378 6.7252e-08 2.7807 3 3 0 0 0.00015355 6.7292e-08 2.8024 3 3 0 0 0.00015219 6.7351e-08 2.835 3 3 0 0 0.00015094 6.7379e-08 2.845 3 3 0 0 0.00015087 6.7407e-08 2.855 3 3 0 0 0.00015248 6.7436e-08 2.865 3 3 0 0 0.00015247 6.7464e-08 2.875 3 3 0 0 0.0001527 6.7469e-08 2.8765 3 3 0 0 0.0001543 6.7475e-08 2.878 3 3 0 0 0.00015501 6.748e-08 2.8795 3 3 0 0 0.00015498 6.7485e-08 2.881 3 3 0 0 0.000155 6.7489e-08 2.882 3 3 0 0 0.00015483 6.7493e-08 2.883 3 3 0 0 0.00015503 6.7496e-08 2.884 3 3 0 0 0.00015512 6.75e-08 2.885 3 3 0 0 0.00015506 6.7504e-08 2.8858 3 3 0 0 0.00015483 6.7511e-08 2.8873 3 3 0 0 0.00015478 6.7541e-08 2.8934 3 3 0 0 0.00015297 6.7608e-08 2.9072 3 3 0 0 0.00015007 6.7676e-08 2.9209 3 3 0 0 0.00014987 6.7769e-08 2.94 3 3 0 0 0.00014763 6.7817e-08 2.9457 3 3 0 0 0.00014789 6.7864e-08 2.9515 3 3 0 0 0.00014922 6.796e-08 2.963 3 3 0 0 0.00014856 6.7966e-08 2.9635 3 3 0 0 0.00015308 6.7971e-08 2.964 3 3 0 0 0.00015447 6.7977e-08 2.9645 3 3 0 0 0.00015423 6.7983e-08 2.965 3 3 0 0 0.00015441 6.7987e-08 2.9653 3 3 0 0 0.00015407 6.7992e-08 2.9655 3 3 0 0 0.00015439 6.7996e-08 2.9657 3 3 0 0 0.00015454 6.8e-08 2.966 3 3 0 0 0.00015444 6.8004e-08 2.9663 3 3 0 0 0.00015408 6.8013e-08 2.9668 3 3 0 0 0.00015399 6.8047e-08 2.9689 3 3 0 0 0.0001516 6.812e-08 2.9734 3 3 0 0 0.00014812 6.8193e-08 2.9779 3 3 0 0 0.00014745 6.8293e-08 2.984 3 3 0 0 0.00014616 6.8343e-08 2.9854 3 3 0 0 0.00014563 6.8395e-08 2.9869 3 3 0 0 0.00014779 6.8446e-08 2.9884 3 3 0 0 0.00014876 6.85e-08 2.99 3 3 0 0 0.00014819 6.855e-08 2.9909 3 3 0 0 0.00014544 6.8623e-08 2.9921 3 3 0 0 0.00014572 6.8697e-08 2.9934 3 3 0 0 0.00014389 6.8793e-08 2.995 3 3 0 0 0.00014524 6.8843e-08 2.9955 3 3 0 0 0.00014381 6.8895e-08 2.996 3 3 0 0 0.00014673 6.8946e-08 2.9965 3 3 0 0 0.0001449 6.9e-08 2.997 3 3 0 0 0.00014918 6.905e-08 2.9971 3 3 0 0 0.0001438 6.915e-08 2.9975 3 3 0 0 0.0001449 6.94e-08 2.9982 3 3 0 0 0.00013038 6.965e-08 2.999 3 3 0 0 0.00013753 7e-08 3 3 3 0 0 0.00012618 7.005e-08 2.9999 3 3 0 0 0.0001367 7.015e-08 2.9997 3 3 0 0 0.00014036 7.029e-08 2.9995 3 3 0 0 0.00013721 7.0559e-08 2.999 3 3 0 0 0.00012976 7.0569e-08 2.9995 3 3 0 0 0.00014067 7.058e-08 3 3 3 0 0 0.00014366 7.06e-08 3.001 3 3 0 0 0.00014152 7.0615e-08 3.0027 3 3 0 0 0.00014056 7.0631e-08 3.0045 3 3 0 0 0.00014519 7.0647e-08 3.0062 3 3 0 0 0.00014656 7.0663e-08 3.008 3 3 0 0 0.00014539 7.0674e-08 3.0092 3 3 0 0 0.00014487 7.0685e-08 3.0105 3 3 0 0 0.0001463 7.0696e-08 3.0117 3 3 0 0 0.00014751 7.0707e-08 3.013 3 3 0 0 0.00014657 7.0718e-08 3.0126 3 3 0 0 0.00014508 7.0739e-08 3.0119 3 3 0 0 0.00014466 7.0759e-08 3.0111 3 3 0 0 0.00014517 7.079e-08 3.01 3 3 0 0 0.00014318 7.0804e-08 3.0055 3 3 0 0 0.0001435 7.0819e-08 3.001 3 3 0 0 0.00014583 7.0848e-08 2.992 3 3 0 0 0.00014415 7.087e-08 2.9756 3 3 0 0 0.00014161 7.0892e-08 2.9589 3 3 0 0 0.00014424 7.0914e-08 2.9421 3 3 0 0 0.00014502 7.0937e-08 2.925 3 3 0 0 0.00014432 7.0953e-08 2.9037 3 3 0 0 0.00014324 7.0968e-08 2.8825 3 3 0 0 0.00014552 7.0984e-08 2.8612 3 3 0 0 0.00014613 7.1e-08 2.84 3 3 0 0 0.00014566 7.1016e-08 2.8068 3 3 0 0 0.00014336 7.1032e-08 2.7721 3 3 0 0 0.00014534 7.1049e-08 2.7373 3 3 0 0 0.00014602 7.1066e-08 2.701 3 3 0 0 0.00014536 7.1078e-08 2.6667 3 3 0 0 0.00014463 7.1089e-08 2.6325 3 3 0 0 0.00014639 7.1101e-08 2.5982 3 3 0 0 0.00014688 7.1112e-08 2.564 3 3 0 0 0.0001465 7.1124e-08 2.521 3 3 0 0 0.00014474 7.114e-08 2.4603 3 3 0 0 0.00014553 7.1156e-08 2.3995 3 3 0 0 0.00014596 7.1177e-08 2.321 3 3 0 0 0.0001448 7.1189e-08 2.2795 3 3 0 0 0.00014449 7.1201e-08 2.238 3 3 0 0 0.00014635 7.1224e-08 2.155 3 3 0 0 0.00014504 7.1242e-08 2.0833 3 3 0 0 0.00014277 7.126e-08 2.009 3 3 0 0 0.000145 7.1278e-08 1.9348 3 3 0 0 0.00014571 7.1297e-08 1.858 3 3 0 0 0.00014504 7.131e-08 1.8053 3 3 0 0 0.00014413 7.1323e-08 1.7525 3 3 0 0 0.00014608 7.1349e-08 1.647 3 3 0 0 0.00014468 7.1367e-08 1.578 3 3 0 0 0.00014257 7.1386e-08 1.509 3 3 0 0 0.00014499 7.1404e-08 1.44 3 3 0 0 0.00014572 7.1422e-08 1.371 3 3 0 0 0.00014515 7.1435e-08 1.3175 3 3 0 0 0.00014414 7.1448e-08 1.264 3 3 0 0 0.00014607 7.1461e-08 1.2105 3 3 0 0 0.00014662 7.1474e-08 1.157 3 3 0 0 0.0001462 7.1478e-08 1.1375 3 3 0 0 0.00014724 7.1482e-08 1.118 3 3 0 0 0.00014787 7.1485e-08 1.0985 3 3 0 0 0.0001479 7.1489e-08 1.079 3 3 0 0 0.00014788 7.1492e-08 1.067 3 3 0 0 0.00014773 7.1494e-08 1.055 3 3 0 0 0.00014786 7.1497e-08 1.043 3 3 0 0 0.00014794 7.15e-08 1.031 3 3 0 0 0.00014789 7.1503e-08 1.0211 3 3 0 0 0.00014773 7.1508e-08 1.0031 3 3 0 0 0.00014774 7.1513e-08 0.9851 3 3 0 0 0.00014779 7.152e-08 0.959 3 3 0 0 0.00014746 7.1524e-08 0.95375 3 3 0 0 0.00014747 7.1527e-08 0.9485 3 3 0 0 0.00014783 7.1534e-08 0.938 3 3 0 0 0.00014762 7.1539e-08 0.92903 3 3 0 0 0.00014695 7.1545e-08 0.91878 3 3 0 0 0.00014748 7.1551e-08 0.90853 3 3 0 0 0.00014774 7.1558e-08 0.897 3 3 0 0 0.00014745 7.1562e-08 0.89325 3 3 0 0 0.00014725 7.1566e-08 0.8895 3 3 0 0 0.00014774 7.1571e-08 0.88575 3 3 0 0 0.00014792 7.1575e-08 0.882 3 3 0 0 0.0001478 7.1579e-08 0.8735 3 3 0 0 0.00014729 7.1586e-08 0.86 3 3 0 0 0.00014743 7.1593e-08 0.8465 3 3 0 0 0.00014758 7.1602e-08 0.828 3 3 0 0 0.00014708 7.1607e-08 0.8165 3 3 0 0 0.00014696 7.1612e-08 0.805 3 3 0 0 0.00014764 7.1622e-08 0.782 3 3 0 0 0.00014721 7.163e-08 0.76382 3 3 0 0 0.00014614 7.1638e-08 0.74382 3 3 0 0 0.00014705 7.1646e-08 0.72382 3 3 0 0 0.00014743 7.1655e-08 0.702 3 3 0 0 0.00014702 7.1661e-08 0.68875 3 3 0 0 0.00014662 7.1667e-08 0.6755 3 3 0 0 0.00014747 7.1673e-08 0.66225 3 3 0 0 0.00014775 7.1679e-08 0.649 3 3 0 0 0.00014754 7.1685e-08 0.63449 3 3 0 0 0.00014669 7.1697e-08 0.60548 3 3 0 0 0.00014649 7.1714e-08 0.56498 3 3 0 0 0.00014586 7.1746e-08 0.487 3 3 0 0 0.000143 7.1751e-08 0.47616 3 3 0 0 0.00014639 7.1757e-08 0.46533 3 3 0 0 0.00014779 7.1762e-08 0.45449 3 3 0 0 0.0001477 7.1767e-08 0.44366 3 3 0 0 0.00014776 7.1772e-08 0.43282 2.9804 2.9804 0 0 -0.0030649 7.1779e-08 0.41941 2.9562 2.9562 0 0 -0.007275 7.1785e-08 0.40599 2.932 2.932 0 0 -0.011402 7.1793e-08 0.39 2.9031 2.9031 0 0 -0.015687 7.18e-08 0.3786 2.8766 2.8766 0 0 -0.018988 7.1814e-08 0.3558 2.8234 2.8234 0 0 -0.025114 7.1832e-08 0.3278 2.7582 2.7582 0 0 -0.030937 7.1863e-08 0.278 2.6422 2.6422 0 0 -0.03796 7.1875e-08 0.26375 2.5966 2.5966 0 0 -0.039781 7.1887e-08 0.2495 2.5509 2.5509 0 0 -0.04148 7.1912e-08 0.221 2.4596 2.4596 0 0 -0.044427 7.1925e-08 0.20925 2.4112 2.4112 0 0 -0.045667 7.1938e-08 0.1975 2.3528 2.3528 0 0 -0.048313 7.1951e-08 0.18575 2.2913 2.2913 0 0 -0.051765 7.1964e-08 0.174 2.2299 2.2299 0 0 -0.05494 7.1973e-08 0.1675 2.1874 2.1874 0 0 -0.056867 7.1982e-08 0.161 2.1449 2.1449 0 0 -0.058742 7.1991e-08 0.1545 2.1024 2.1024 0 0 -0.060585 7.2e-08 0.148 2.0598 2.0598 0 0 -0.062289 7.2009e-08 0.1435 2.0173 2.0173 0 0 -0.063918 7.2027e-08 0.1345 1.9323 1.9323 0 0 -0.06721 7.2057e-08 0.1195 1.7902 1.7902 0 0 -0.072565 7.2087e-08 0.1045 1.6439 1.6439 0 0 -0.078944 7.212e-08 0.088 1.4829 1.4829 0 0 -0.086549 7.2141e-08 0.081 1.3793 1.3793 0 0 -0.092583 7.2162e-08 0.074 1.2756 1.2756 0 0 -0.10631 7.2205e-08 0.06 1.08 1.08 0 0 -0.11286 7.2237e-08 0.054104 0.93833 0.93833 0 0 -0.063563 7.228e-08 0.046104 0.74611 0.74611 0 0 0.080731 7.2323e-08 0.038104 0.57686 0.57686 0 0 0.40948 7.2378e-08 0.028 0.45502 0.45502 0 0 1.033 7.2408e-08 0.02475 0.38699 0.38699 0 0 1.4097 7.2439e-08 0.0215 0.31896 0.31896 0 0 1.7208 7.25e-08 0.015 0.1829 0.1829 0 0 2.1533 7.252e-08 0.01423 0.13717 0.13717 0 0 2.2516 7.2541e-08 0.013461 0.09145 0.09145 0 0 2.3433 7.2561e-08 0.012691 0.045725 0.045725 0 0 2.4232 7.2582e-08 0.011922 0 0 0 0 2.4937 7.2602e-08 0.011152 0 0 0 0 2.5536 7.2644e-08 0.0096126 0 0 0 0 2.6603 7.2696e-08 0.0076323 0 0 0 0 2.7627 7.2793e-08 0.004 0 0 0 0 2.8787 7.2843e-08 0.0032754 0 0 0 0 2.9093 7.2895e-08 0.0025254 0 0 0 0 2.9358 7.2946e-08 0.0017754 0 0 0 0 2.9545 7.3e-08 0.001 0 0 0 0 2.9681 7.305e-08 0.00082935 0 0 0 0 2.9759 7.3123e-08 0.00057935 0 0 0 0 2.9852 7.3197e-08 0.00032935 0 0 0 0 2.9909 7.3293e-08 0 0 0 0 0 2.9953 7.3343e-08 -8.6693e-05 0 0 0 0 2.9964 7.3443e-08 -0.00026008 0 0 0 0 2.9982 7.3843e-08 -0.00095362 0 0 0 0 3.0002 7.4343e-08 -0.0018205 0 0 0 0 2.9999 7.4843e-08 -0.0026875 0 0 0 0 3 7.5343e-08 -0.0035544 0 0 0 0 3 7.56e-08 -0.004 0 0 0 0 3 7.5615e-08 -0.006 0 0 0 0 3 7.563e-08 -0.008 0 0 0 0 3 7.566e-08 -0.012 0 0 0 0 3 7.5671e-08 -0.0125 0 0 0 0 3 7.5681e-08 -0.013 0 0 0 0 3 7.5703e-08 -0.014 0 0 0 0 3 7.5719e-08 -0.0098536 0 0 0 0 3 7.5737e-08 -0.0053536 0 0 0 0 3 7.5754e-08 -0.00085357 0 0 0 0 3 7.5773e-08 0.004 0 0 0 0 3 7.5786e-08 0.01475 0 0 0 0 3 7.5798e-08 0.0255 0 0 0 0 3 7.581e-08 0.03625 0 0 0 0 3 7.5823e-08 0.047 0 0 0 0 3 7.5836e-08 0.07025 0 0 0 0 3 7.586e-08 0.11675 0 0 0 0 3 7.5886e-08 0.16325 0 0 0 0 3 7.5923e-08 0.233 0 0 0 0 3 7.5941e-08 0.289 0 0 0 0 3 7.5959e-08 0.345 0 0 0 0 3 7.5994e-08 0.457 0 0 0 0 3 7.5995e-08 0.4605 0 0 0 0 3 7.5996e-08 0.464 0 0 0 0 3 7.5997e-08 0.471 0 0 0 0 3 7.5998e-08 0.47375 0 0 0 0 3 7.5998e-08 0.4765 0 0 0 0 3 7.6e-08 0.482 0 0 0 0 3 7.6001e-08 0.48582 0 0 0 0 3 7.6003e-08 0.49345 0 0 0 0 3 7.6012e-08 0.52399 0 0 0 0 3 7.604e-08 0.61899 0 0 0 0 3 7.6068e-08 0.71399 0 0 0 0 3 7.6112e-08 0.862 0 0 0 0 3 7.6132e-08 0.91575 0 0 0 0 3 7.6152e-08 0.9695 0 0 0 0 3 7.6171e-08 1.0232 0 0 0 0 3 7.6191e-08 1.077 0 0 0 0 3 7.6203e-08 1.1072 0 0 0 0 3 7.6214e-08 1.1375 0 0 0 0 3 7.6226e-08 1.1678 0 0 0 0 3 7.6238e-08 1.198 0 0 0 0 3 7.6246e-08 1.2175 0 0 0 0 3 7.6255e-08 1.237 0 0 0 0 3 7.6271e-08 1.276 0 0 0 0 3 7.6283e-08 1.298 0 0 0 0 3 7.6294e-08 1.32 0 0 0 0 3 7.6318e-08 1.364 0 0 0 0 3 7.6327e-08 1.3802 0 0 0 0 3 7.6335e-08 1.3965 0 0 0 0 3 7.6343e-08 1.4128 0 0 0 0 3 7.6352e-08 1.429 0 0 0 0 3 7.636e-08 1.4447 0 0 0 0 3 7.6368e-08 1.4605 0 0 0 0 3 7.6376e-08 1.4763 0 0 0 0 3 7.6384e-08 1.492 0 0 0 0 3 7.639e-08 1.503 0 0 0 0 3 7.6396e-08 1.514 0 0 0 0 3 7.6401e-08 1.525 0 0 0 0 3 7.6407e-08 1.536 0 0 0 0 3 7.6413e-08 1.5416 0 0 0 0 3 7.6421e-08 1.5496 0 0 0 0 3 7.6429e-08 1.5576 0 0 0 0 3 7.644e-08 1.568 0 0 0 0 3 7.6446e-08 1.5757 0 0 0 0 3 7.6451e-08 1.5835 0 0 0 0 3 7.6462e-08 1.599 0 0 0 0 3 7.6468e-08 1.61 0 0 0 0 3 7.6473e-08 1.621 0 0 0 0 3 7.6484e-08 1.643 0 0 0 0 3 7.6488e-08 1.6508 0 0 0 0 3 7.6492e-08 1.6585 0 0 0 0 3 7.65e-08 1.674 0 0 0 0 3 7.6506e-08 1.6858 0 0 0 0 3 7.6514e-08 1.7011 0 0 0 0 3 7.6522e-08 1.7163 0 0 0 0 3 7.6531e-08 1.735 0 0 0 0 3 7.6537e-08 1.7472 0 0 0 0 3 7.6542e-08 1.7595 0 0 0 0 3 7.6553e-08 1.784 0 0 0 0 3 7.6561e-08 1.8023 0 0 0 0 3 7.6577e-08 1.8373 0 0 0 0 3 7.6593e-08 1.8723 0 0 0 0 3 7.6616e-08 1.924 0 0 0 0 3 7.6627e-08 1.9473 0 0 0 0 3 7.6638e-08 1.9705 0 0 0 0 3 7.6649e-08 1.9937 0 0 0 0 3 7.666e-08 2.017 0 0 0 0 3 7.6671e-08 2.0376 0 0 0 0 3 7.6693e-08 2.0788 0 0 0 0 3 7.6718e-08 2.1265 0 0 0 0 3 7.6762e-08 2.208 0 0 0 0 3 7.678e-08 2.2362 0 0 0 0 3 7.6798e-08 2.2645 0 0 0 0 3 7.6816e-08 2.2927 0 0 0 0 3 7.6834e-08 2.321 0 0 0 0 3 7.6852e-08 2.3496 0 0 0 0 3 7.6876e-08 2.3881 0 0 0 0 3 7.69e-08 2.4266 0 0 0 0 3 7.6931e-08 2.475 0 0 0 0 3 7.6948e-08 2.4992 0 0 0 0 3 7.6965e-08 2.5235 0 0 0 0 3 7.6983e-08 2.5477 0 0 0 0 3 7.7e-08 2.572 0 0 0 0 3 7.7017e-08 2.59 0 0 0 0 3 7.7045e-08 2.6193 0 0 0 0 3 7.7073e-08 2.6485 0 0 0 0 3 7.7112e-08 2.689 0 0 0 0 3 7.7132e-08 2.7037 0 0 0 0 3 7.7152e-08 2.7185 0 0 0 0 3 7.7172e-08 2.7332 0 0 0 0 3 7.7192e-08 2.748 0 0 0 0 3 7.7212e-08 2.7589 0 0 0 0 3 7.7252e-08 2.7807 0 0 0 0 3 7.7292e-08 2.8024 0 0 0 0 3 7.7351e-08 2.835 0 0 0 0 3 7.7379e-08 2.845 0 0 0 0 3 7.7407e-08 2.855 0 0 0 0 3 7.7436e-08 2.865 0 0 0 0 3 7.7464e-08 2.875 0 0 0 0 3 7.7469e-08 2.8765 0 0 0 0 3 7.7475e-08 2.878 0 0 0 0 3 7.748e-08 2.8795 0 0 0 0 3 7.7485e-08 2.881 0 0 0 0 3 7.7489e-08 2.882 0 0 0 0 3 7.7493e-08 2.883 0 0 0 0 3 7.7496e-08 2.884 0 0 0 0 3 7.75e-08 2.885 0 0 0 0 3 7.7504e-08 2.8858 0 0 0 0 3 7.7511e-08 2.8873 0 0 0 0 3 7.7541e-08 2.8934 0 0 0 0 3 7.7608e-08 2.9072 0 0 0 0 3 7.7676e-08 2.9209 0 0 0 0 3 7.7769e-08 2.94 0 0 0 0 3 7.7817e-08 2.9457 0 0 0 0 3 7.7864e-08 2.9515 0 0 0 0 3 7.796e-08 2.963 0 0 0 0 3 7.7966e-08 2.9635 0 0 0 0 3 7.7971e-08 2.964 0 0 0 0 3 7.7977e-08 2.9645 0 0 0 0 3 7.7983e-08 2.965 0 0 0 0 3 7.7987e-08 2.9653 0 0 0 0 3 7.7992e-08 2.9655 0 0 0 0 3 7.7996e-08 2.9657 0 0 0 0 3 7.8e-08 2.966 0 0 0 0 3 7.8004e-08 2.9663 0 0 0 0 3 7.8013e-08 2.9668 0 0 0 0 3 7.8047e-08 2.9689 0 0 0 0 3 7.812e-08 2.9734 0 0 0 0 3 7.8193e-08 2.9779 0 0 0 0 3 7.8293e-08 2.984 0 0 0 0 3 7.8343e-08 2.9854 0 0 0 0 3 7.8395e-08 2.9869 0 0 0 0 3 7.8446e-08 2.9884 0 0 0 0 3 7.85e-08 2.99 0 0 0 0 3 7.855e-08 2.9909 0 0 0 0 3 7.8623e-08 2.9921 0 0 0 0 3 7.8697e-08 2.9934 0 0 0 0 3 7.8793e-08 2.995 0 0 0 0 3 7.8843e-08 2.9955 0 0 0 0 3 7.8895e-08 2.996 0 0 0 0 3 7.8946e-08 2.9965 0 0 0 0 3 7.9e-08 2.997 0 0 0 0 3 7.905e-08 2.9971 0 0 0 0 3 7.915e-08 2.9975 0 0 0 0 3 7.94e-08 2.9982 0 0 0 0 3 7.965e-08 2.999 0 0 0 0 3 8e-08 3 0 0 0 0 3 8.005e-08 2.9999 0 0 0 0 3 8.015e-08 2.9997 0 0 0 0 3 8.029e-08 2.9995 0 0 0 0 3 8.0559e-08 2.999 0 0 0 0 3 8.0569e-08 2.9995 0 0 0 0 3 8.0579e-08 3 0 0 0 0 3 8.06e-08 3.001 0 0 0 0 3 8.0615e-08 3.0027 0 0 0 0 3 8.0631e-08 3.0045 0 0 0 0 3 8.0647e-08 3.0062 0 0 0 0 3 8.0663e-08 3.008 0 0 0 0 3 8.0674e-08 3.0092 0 0 0 0 3 8.0685e-08 3.0105 0 0 0 0 3 8.0696e-08 3.0117 0 0 0 0 3 8.0707e-08 3.013 0 0 0 0 3 8.0718e-08 3.0126 0 0 0 0 3 8.0739e-08 3.0119 0 0 0 0 3 8.0759e-08 3.0111 0 0 0 0 3 8.079e-08 3.01 0 0 0 0 3 8.0804e-08 3.0055 0 0 0 0 3 8.0819e-08 3.001 0 0 0 0 3 8.0848e-08 2.992 0 0 0 0 3 8.087e-08 2.9756 0 0 0 0 3 8.0892e-08 2.9589 0 0 0 0 3 8.0914e-08 2.9421 0 0 0 0 3 8.0937e-08 2.925 0 0 0 0 3 8.0953e-08 2.9037 0 0 0 0 3 8.0968e-08 2.8825 0 0 0 0 3 8.0984e-08 2.8612 0 0 0 0 3 8.1e-08 2.84 0 0 0 0 3 8.1016e-08 2.8068 0 0 0 0 3 8.1032e-08 2.7721 0 0 0 0 3 8.1049e-08 2.7373 0 0 0 0 3 8.1066e-08 2.701 0 0 0 0 3 8.1078e-08 2.6667 0 0 0 0 3 8.1089e-08 2.6325 0 0 0 0 3 8.1101e-08 2.5982 0 0 0 0 3 8.1112e-08 2.564 0 0 0 0 3 8.1124e-08 2.521 0 0 0 0 3 8.114e-08 2.4603 0 0 0 0 3 8.1156e-08 2.3995 0 0 0 0 3 8.1177e-08 2.321 0 0 0 0 3 8.1189e-08 2.2795 0 0 0 0 3 8.12e-08 2.238 0 0 0 0 3 8.1212e-08 2.1965 0 0 0 0 3 8.1224e-08 2.155 0 0 0 0 3 8.1236e-08 2.1072 0 0 0 0 3 8.1254e-08 2.0329 0 0 0 0 3 8.1272e-08 1.9587 0 0 0 0 3 8.1297e-08 1.858 0 0 0 0 3 8.131e-08 1.8053 0 0 0 0 3 8.1323e-08 1.7525 0 0 0 0 3 8.1349e-08 1.647 0 0 0 0 3 8.1367e-08 1.578 0 0 0 0 3 8.1386e-08 1.509 0 0 0 0 3 8.1404e-08 1.44 0 0 0 0 3 8.1422e-08 1.371 0 0 0 0 3 8.1435e-08 1.3175 0 0 0 0 3 8.1448e-08 1.264 0 0 0 0 3 8.1461e-08 1.2105 0 0 0 0 3 8.1474e-08 1.157 0 0 0 0 3 8.1478e-08 1.1375 0 0 0 0 3 8.1482e-08 1.118 0 0 0 0 3 8.1485e-08 1.0985 0 0 0 0 3 8.1489e-08 1.079 0 0 0 0 3 8.1492e-08 1.067 0 0 0 0 3 8.1494e-08 1.055 0 0 0 0 3 8.1497e-08 1.043 0 0 0 0 3 8.15e-08 1.031 0 0 0 0 3 8.1503e-08 1.0211 0 0 0 0 3 8.1508e-08 1.0031 0 0 0 0 3 8.1513e-08 0.9851 0 0 0 0 3 8.152e-08 0.959 0 0 0 0 3 8.1524e-08 0.95375 0 0 0 0 3 8.1527e-08 0.9485 0 0 0 0 3 8.1534e-08 0.938 0 0 0 0 3 8.1539e-08 0.92903 0 0 0 0 3 8.1545e-08 0.91878 0 0 0 0 3 8.1551e-08 0.90853 0 0 0 0 3 8.1558e-08 0.897 0 0 0 0 3 8.1562e-08 0.89325 0 0 0 0 3 8.1566e-08 0.8895 0 0 0 0 3 8.1571e-08 0.88575 0 0 0 0 3 8.1575e-08 0.882 0 0 0 0 3 8.1579e-08 0.8735 0 0 0 0 3 8.1586e-08 0.86 0 0 0 0 3 8.1593e-08 0.8465 0 0 0 0 3 8.1602e-08 0.828 0 0 0 0 3 8.1607e-08 0.8165 0 0 0 0 3 8.1612e-08 0.805 0 0 0 0 3 8.1617e-08 0.7935 0 0 0 0 3 8.1622e-08 0.782 0 0 0 0 3 8.1627e-08 0.76988 0 0 0 0 3 8.1635e-08 0.74988 0 0 0 0 3 8.1643e-08 0.72988 0 0 0 0 3 8.1655e-08 0.702 0 0 0 0 3 8.1661e-08 0.68875 0 0 0 0 3 8.1667e-08 0.6755 0 0 0 0 3 8.1679e-08 0.649 0 0 0 0 3 8.1688e-08 0.62724 0 0 0 0 3 8.1705e-08 0.58674 0 0 0 0 3 8.1722e-08 0.54624 0 0 0 0 3 8.1746e-08 0.487 0 0 0 0 3 8.1758e-08 0.46275 0 0 0 0 3 8.1769e-08 0.4385 0 0 0 0 3 8.1793e-08 0.39 0 0 0 0 3 8.181e-08 0.362 0 0 0 0 3 8.1828e-08 0.334 0 0 0 0 3 8.1863e-08 0.278 0 0 0 0 3 8.1875e-08 0.26375 0 0 0 0 3 8.1887e-08 0.2495 0 0 0 0 3 8.19e-08 0.23525 0 0 0 0 3 8.1912e-08 0.221 0 0 0 0 3 8.1924e-08 0.20993 0 0 0 0 3 8.1937e-08 0.19818 0 0 0 0 3 8.195e-08 0.18643 0 0 0 0 3 8.1964e-08 0.174 0 0 0 0 3 8.1966e-08 0.17237 0 0 0 0 3 8.1969e-08 0.17075 0 0 0 0 3 8.1971e-08 0.16913 0 0 0 0 3 8.1973e-08 0.1675 0 0 0 0 3 8.1975e-08 0.16588 0 0.009375 0 0 3.0002 8.198e-08 0.16262 0 0.028125 0 0 3.0004 8.1986e-08 0.15775 0 0.05625 0 0 3.0008 8.1993e-08 0.15288 0 0.084375 0 0 3.0014 8.2e-08 0.148 0 0.1125 0 0 3.0021 8.2007e-08 0.14462 0 0.14063 0 0 3.0029 8.202e-08 0.13788 0 0.19688 0 0 3.0046 8.205e-08 0.12287 0 0.32188 0 0 3.0084 8.208e-08 0.10787 0 0.44688 0 0 3.0117 8.212e-08 0.088 0 0.60822 0 0 3.0144 8.2141e-08 0.081 0 0.66644 0 0 3.0138 8.2163e-08 0.074 0 0.72466 0 0 3.0128 8.2205e-08 0.06 0 0.8411 0 0 3.0088 8.2237e-08 0.054104 0 0.92842 0 0 3.0054 8.228e-08 0.046104 0 1.0469 0 0 3.001 8.2323e-08 0.038104 0 1.1654 0 0 2.9974 8.2378e-08 0.028 0 1.2768 0 0 2.9944 8.2408e-08 0.02475 0 1.3326 0 0 2.9937 8.2439e-08 0.0215 0 1.3884 0 0 2.993 8.2469e-08 0.01825 0 1.4442 0 0 2.9925 8.25e-08 0.015 0 1.5 0 0 2.9921 8.253e-08 0.013855 0 1.5558 0 0 2.9919 8.2591e-08 0.011565 0 1.6674 0 0 2.9915 8.2665e-08 0.0088148 0 1.8014 0 0 2.9913 8.2793e-08 0.004 0 2.0324 0 0 2.9915 8.2843e-08 0.0032754 0 2.1225 0 0 2.9916 8.2894e-08 0.0025362 0 2.2144 0 0 2.9905 8.2945e-08 0.0017971 0 2.3063 0 0 2.9879 8.2997e-08 0.0010435 0 2.4 0 0 2.9856 8.2998e-08 0.0010326 0 2.4007 0 0 2.9856 8.2998e-08 0.0010217 0 2.4014 0 0 2.9856 8.3e-08 0.001 0 2.4027 0 0 2.9855 8.3001e-08 0.00099616 0 2.4037 0 0 2.9855 8.3003e-08 0.00098848 0 2.4058 0 0 2.9854 8.3012e-08 0.00095776 0 2.4139 0 0 2.9853 8.3048e-08 0.0008349 0 2.4464 0 0 2.9848 8.3122e-08 0.0005849 0 2.5124 0 0 2.9852 8.3195e-08 0.0003349 0 2.5785 0 0 2.9856 8.3293e-08 0 0 2.6671 0 0 2.9862 8.3343e-08 -8.6693e-05 0 2.7122 0 0 2.9865 8.3435e-08 -0.00024664 0 2.7954 0 0 2.9869 8.3528e-08 -0.00040659 0 2.8786 0 0 2.9873 8.3662e-08 -0.00063979 0 3 0 0 2.9878 8.3712e-08 -0.00072648 0 3 0 0 2.9886 8.3812e-08 -0.00089987 0 3 0 0 2.9905 8.4212e-08 -0.0015934 0 3 0 0 2.9965 8.4697e-08 -0.0024335 0 3 0 0 2.999 8.5196e-08 -0.0033004 0 3 0 0 2.9996 8.56e-08 -0.004 0 3 0 0 2.9996 8.5615e-08 -0.006 0 3 0 0 2.9996 8.563e-08 -0.008 0 3 0 0 2.9996 8.566e-08 -0.012 0 3 0 0 2.9996 8.5671e-08 -0.0125 0 3 0 0 2.9996 8.5681e-08 -0.013 0 3 0 0 2.9996 8.5692e-08 -0.0135 0 3 0 0 2.9996 8.5703e-08 -0.014 0 3 0 0 2.9996 8.5714e-08 -0.011236 0 3 0 0 2.9996 8.5731e-08 -0.0067357 0 3 0 0 2.9996 8.5749e-08 -0.0022357 0 3 0 0 2.9996 8.5773e-08 0.004 0 3 0 0 2.9996 8.5786e-08 0.01475 0 3 0 0 2.9996 8.5798e-08 0.0255 0 3 0 0 2.9996 8.581e-08 0.03625 0 3 0 0 2.9996 8.5823e-08 0.047 0 3 0 0 2.9996 8.5836e-08 0.07025 0 3 0 0 2.9996 8.586e-08 0.11675 0 3 0 0 2.9996 8.5886e-08 0.16325 0 3 0 0 2.9996 8.5923e-08 0.233 0 3 0 0 2.9996 8.5941e-08 0.289 0 3 0 0 2.9996 8.5958e-08 0.345 0 3 0 0 2.9996 8.5994e-08 0.457 0 3 0 0 2.9996 8.5995e-08 0.4605 0 3 0 0 2.9996 8.5996e-08 0.464 0 3 0 0 2.9996 8.5996e-08 0.4675 0 3 0 0 2.9996 8.5997e-08 0.471 0 3 0 0 2.9996 8.5998e-08 0.47375 0 3 0 0 2.9996 8.5999e-08 0.4765 0 3 0 0 2.9996 8.5999e-08 0.47925 0 3 0 0 2.9996 8.6e-08 0.482 0 3 0 0 2.9996 8.6001e-08 0.48454 0 3 0 0 2.9996 8.6002e-08 0.48963 0 3 0 0 2.9996 8.6008e-08 0.50999 0 3 0 0 2.9996 8.6032e-08 0.59142 0 3 0 0 2.9996 8.606e-08 0.68642 0 3 0 0 2.9996 8.6112e-08 0.862 0 3 0 0 2.9996 8.6132e-08 0.91575 0 3 0 0 2.9996 8.6152e-08 0.9695 0 3 0 0 2.9996 8.6171e-08 1.0232 0 3 0 0 2.9996 8.6191e-08 1.077 0 3 0 0 2.9996 8.6203e-08 1.1072 0 3 0 0 2.9996 8.6214e-08 1.1375 0 3 0 0 2.9996 8.6238e-08 1.198 0 3 0 0 2.9996 8.6246e-08 1.2175 0 3 0 0 2.9996 8.6255e-08 1.237 0 3 0 0 2.9996 8.6271e-08 1.276 0 3 0 0 2.9996 8.6283e-08 1.298 0 3 0 0 2.9996 8.6294e-08 1.32 0 3 0 0 2.9996 8.6306e-08 1.342 0 3 0 0 2.9996 8.6318e-08 1.364 0 3 0 0 2.9996 8.6327e-08 1.3802 0 3 0 0 2.9996 8.6335e-08 1.3965 0 3 0 0 2.9996 8.6343e-08 1.4128 0 3 0 0 2.9996 8.6352e-08 1.429 0 3 0 0 2.9996 8.636e-08 1.4447 0 3 0 0 2.9996 8.6368e-08 1.4605 0 3 0 0 2.9996 8.6376e-08 1.4763 0 3 0 0 2.9996 8.6384e-08 1.492 0 3 0 0 2.9996 8.639e-08 1.503 0 3 0 0 2.9996 8.6396e-08 1.514 0 3 0 0 2.9996 8.6401e-08 1.525 0 3 0 0 2.9996 8.6407e-08 1.536 0 3 0 0 2.9996 8.6413e-08 1.5416 0 3 0 0 2.9996 8.6421e-08 1.5496 0 3 0 0 2.9996 8.6429e-08 1.5576 0 3 0 0 2.9996 8.644e-08 1.568 0 3 0 0 2.9996 8.6446e-08 1.5757 0 3 0 0 2.9996 8.6451e-08 1.5835 0 3 0 0 2.9996 8.6457e-08 1.5912 0 3 0 0 2.9996 8.6462e-08 1.599 0 3 0 0 2.9996 8.6468e-08 1.61 0 3 0 0 2.9996 8.6473e-08 1.621 0 3 0 0 2.9996 8.6479e-08 1.632 0 3 0 0 2.9996 8.6484e-08 1.643 0 3 0 0 2.9996 8.6488e-08 1.6508 0 3 0 0 2.9996 8.6492e-08 1.6585 0 3 0 0 2.9996 8.65e-08 1.674 0 3 0 0 2.9996 8.6506e-08 1.6858 0 3 0 0 2.9996 8.6514e-08 1.7011 0 3 0 0 2.9996 8.6522e-08 1.7163 0 3 0 0 2.9996 8.6531e-08 1.735 0 3 0 0 2.9996 8.6537e-08 1.7472 0 3 0 0 2.9996 8.6542e-08 1.7595 0 3 0 0 2.9996 8.6553e-08 1.784 0 3 0 0 2.9996 8.6561e-08 1.8023 0 3 0 0 2.9996 8.6577e-08 1.8373 0 3 0 0 2.9996 8.6593e-08 1.8723 0 3 0 0 2.9996 8.6616e-08 1.924 0 3 0 0 2.9996 8.6627e-08 1.9473 0 3 0 0 2.9996 8.6638e-08 1.9705 0 3 0 0 2.9996 8.6649e-08 1.9937 0 3 0 0 2.9996 8.666e-08 2.017 0 3 0 0 2.9996 8.6671e-08 2.0376 0 3 0 0 2.9996 8.6693e-08 2.0788 0 3 0 0 2.9996 8.6719e-08 2.1265 0 3 0 0 2.9996 8.6762e-08 2.208 0 3 0 0 2.9996 8.678e-08 2.2362 0 3 0 0 2.9996 8.6798e-08 2.2645 0 3 0 0 2.9996 8.6816e-08 2.2927 0 3 0 0 2.9996 8.6834e-08 2.321 0 3 0 0 2.9996 8.6852e-08 2.3496 0 3 0 0 2.9996 8.6876e-08 2.3881 0 3 0 0 2.9996 8.69e-08 2.4266 0 3 0 0 2.9996 8.6931e-08 2.475 0 3 0 0 2.9996 8.6948e-08 2.4992 0 3 0 0 2.9996 8.6965e-08 2.5235 0 3 0 0 2.9996 8.6983e-08 2.5477 0 3 0 0 2.9996 8.7e-08 2.572 0 3 0 0 2.9996 8.7017e-08 2.59 0 3 0 0 2.9996 8.7045e-08 2.6193 0 3 0 0 2.9996 8.7073e-08 2.6485 0 3 0 0 2.9996 8.7112e-08 2.689 0 3 0 0 2.9996 8.7132e-08 2.7037 0 3 0 0 2.9996 8.7152e-08 2.7185 0 3 0 0 2.9996 8.7172e-08 2.7332 0 3 0 0 2.9996 8.7192e-08 2.748 0 3 0 0 2.9996 8.7212e-08 2.7589 0 3 0 0 2.9996 8.7252e-08 2.7807 0 3 0 0 2.9996 8.7291e-08 2.8024 0 3 0 0 2.9996 8.7351e-08 2.835 0 3 0 0 2.9996 8.7379e-08 2.845 0 3 0 0 2.9996 8.7407e-08 2.855 0 3 0 0 2.9996 8.7436e-08 2.865 0 3 0 0 2.9996 8.7464e-08 2.875 0 3 0 0 2.9996 8.7469e-08 2.8765 0 3 0 0 2.9996 8.7474e-08 2.878 0 3 0 0 2.9996 8.748e-08 2.8795 0 3 0 0 2.9996 8.7485e-08 2.881 0 3 0 0 2.9996 8.7489e-08 2.882 0 3 0 0 2.9996 8.7493e-08 2.883 0 3 0 0 2.9996 8.7496e-08 2.884 0 3 0 0 2.9996 8.75e-08 2.885 0 3 0 0 2.9996 8.7504e-08 2.8858 0 3 0 0 2.9996 8.7511e-08 2.8873 0 3 0 0 2.9996 8.7541e-08 2.8934 0 3 0 0 2.9996 8.7608e-08 2.9072 0 3 0 0 2.9996 8.7676e-08 2.9209 0 3 0 0 2.9996 8.7769e-08 2.94 0 3 0 0 2.9997 8.7817e-08 2.9457 0 3 0 0 2.9996 8.7864e-08 2.9515 0 3 0 0 2.9996 8.7912e-08 2.9573 0 3 0 0 2.9996 8.796e-08 2.963 0 3 0 0 2.9996 8.7966e-08 2.9635 0 3 0 0 2.9996 8.7972e-08 2.964 0 3 0 0 2.9996 8.7977e-08 2.9645 0 3 0 0 2.9996 8.7983e-08 2.965 0 3 0 0 2.9996 8.7987e-08 2.9653 0 3 0 0 2.9996 8.7992e-08 2.9655 0 3 0 0 2.9996 8.7996e-08 2.9657 0 3 0 0 2.9996 8.8e-08 2.966 0 3 0 0 2.9996 8.8004e-08 2.9663 0 3 0 0 2.9996 8.8013e-08 2.9668 0 3 0 0 2.9996 8.8047e-08 2.9689 0 3 0 0 2.9996 8.812e-08 2.9734 0 3 0 0 2.9996 8.8193e-08 2.9779 0 3 0 0 2.9996 8.8293e-08 2.984 0 3 0 0 2.9997 8.8343e-08 2.9854 0 3 0 0 2.9997 8.8395e-08 2.9869 0 3 0 0 2.9996 8.8446e-08 2.9884 0 3 0 0 2.9996 8.85e-08 2.99 0 3 0 0 2.9996 8.855e-08 2.9909 0 3 0 0 2.9997 8.8623e-08 2.9921 0 3 0 0 2.9996 8.8697e-08 2.9934 0 3 0 0 2.9996 8.8793e-08 2.995 0 3 0 0 2.9997 8.8843e-08 2.9955 0 3 0 0 2.9997 8.8895e-08 2.996 0 3 0 0 2.9996 8.8946e-08 2.9965 0 3 0 0 2.9996 8.9e-08 2.997 0 3 0 0 2.9996 8.905e-08 2.9971 0 3 0 0 2.9997 8.915e-08 2.9975 0 3 0 0 2.9997 8.94e-08 2.9982 0 3 0 0 2.9998 8.965e-08 2.999 0 3 0 0 2.9997 9e-08 3 0 3 0 0 2.9999 9.005e-08 2.9999 0 3 0 0 2.9999 9.015e-08 2.9997 0 3 0 0 2.9999 9.029e-08 2.9995 0 3 0 0 2.9999 9.0559e-08 2.999 0 3 0 0 2.9999 9.0569e-08 2.9995 0 3 0 0 2.9999 9.0579e-08 3 0 3 0 0 2.9999 9.06e-08 3.001 0 3 0 0 2.9999 9.0615e-08 3.0027 0 3 0 0 2.9999 9.0631e-08 3.0045 0 3 0 0 2.9999 9.0647e-08 3.0062 0 3 0 0 2.9999 9.0663e-08 3.008 0 3 0 0 2.9999 9.0674e-08 3.0092 0 3 0 0 2.9999 9.0685e-08 3.0105 0 3 0 0 2.9999 9.0696e-08 3.0117 0 3 0 0 2.9999 9.0707e-08 3.013 0 3 0 0 2.9999 9.0718e-08 3.0126 0 3 0 0 2.9999 9.0739e-08 3.0119 0 3 0 0 2.9999 9.0759e-08 3.0111 0 3 0 0 2.9999 9.079e-08 3.01 0 3 0 0 2.9999 9.0804e-08 3.0055 0 3 0 0 2.9999 9.0819e-08 3.001 0 3 0 0 2.9999 9.0848e-08 2.992 0 3 0 0 2.9999 9.087e-08 2.9756 0 3 0 0 2.9999 9.0892e-08 2.9589 0 3 0 0 2.9999 9.0914e-08 2.9421 0 3 0 0 2.9999 9.0937e-08 2.925 0 3 0 0 2.9999 9.0953e-08 2.9037 0 3 0 0 2.9999 9.0968e-08 2.8825 0 3 0 0 2.9999 9.0984e-08 2.8612 0 3 0 0 2.9999 9.1e-08 2.84 0 3 0 0 2.9999 9.1016e-08 2.8068 0 3 0 0 2.9999 9.1032e-08 2.7721 0 3 0 0 2.9999 9.1049e-08 2.7373 0 3 0 0 2.9999 9.1066e-08 2.701 0 3 0 0 2.9999 9.1078e-08 2.6667 0 3 0 0 2.9999 9.1089e-08 2.6325 0 3 0 0 2.9999 9.1101e-08 2.5982 0 3 0 0 2.9999 9.1112e-08 2.564 0 3 0 0 2.9999 9.1124e-08 2.521 0 3 0 0 2.9999 9.114e-08 2.4603 0 3 0 0 2.9999 9.1156e-08 2.3995 0 3 0 0 2.9999 9.1177e-08 2.321 0 3 0 0 2.9999 9.1189e-08 2.2795 0 3 0 0 2.9999 9.12e-08 2.238 0 3 0 0 2.9999 9.1224e-08 2.155 0 3 0 0 2.9999 9.1242e-08 2.0833 0 3 0 0 2.9999 9.126e-08 2.009 0 3 0 0 2.9999 9.1278e-08 1.9348 0 3 0 0 2.9999 9.1297e-08 1.858 0 3 0 0 2.9999 9.131e-08 1.8053 0 3 0 0 2.9999 9.1323e-08 1.7525 0 3 0 0 2.9999 9.1349e-08 1.647 0 3 0 0 2.9999 9.1367e-08 1.578 0 3 0 0 2.9999 9.1386e-08 1.509 0 3 0 0 2.9999 9.1404e-08 1.44 0 3 0 0 2.9999 9.1422e-08 1.371 0 3 0 0 2.9999 9.1435e-08 1.3175 0 3 0 0 2.9999 9.1448e-08 1.264 0 3 0 0 2.9999 9.1461e-08 1.2105 0 3 0 0 2.9999 9.1474e-08 1.157 0 3 0 0 2.9999 9.1478e-08 1.1375 0 3 0 0 2.9999 9.1482e-08 1.118 0 3 0 0 2.9999 9.1485e-08 1.0985 0 3 0 0 2.9999 9.1489e-08 1.079 0 3 0 0 2.9999 9.1492e-08 1.067 0 3 0 0 2.9999 9.1494e-08 1.055 0 3 0 0 2.9999 9.1497e-08 1.043 0 3 0 0 2.9999 9.15e-08 1.031 0 3 0 0 2.9999 9.1503e-08 1.0211 0 3 0 0 2.9999 9.1508e-08 1.0031 0 3 0 0 2.9999 9.1513e-08 0.9851 0 3 0 0 2.9999 9.152e-08 0.959 0 3 0 0 2.9999 9.1524e-08 0.95375 0 3 0 0 2.9999 9.1527e-08 0.9485 0 3 0 0 2.9999 9.1534e-08 0.938 0 3 0 0 2.9999 9.1539e-08 0.92903 0 3 0 0 2.9999 9.1545e-08 0.91878 0 3 0 0 2.9999 9.1551e-08 0.90853 0 3 0 0 2.9999 9.1558e-08 0.897 0 3 0 0 2.9999 9.1562e-08 0.89325 0 3 0 0 2.9999 9.1566e-08 0.8895 0 3 0 0 2.9999 9.1571e-08 0.88575 0 3 0 0 2.9999 9.1575e-08 0.882 0 3 0 0 2.9999 9.1579e-08 0.8735 0 3 0 0 2.9999 9.1586e-08 0.86 0 3 0 0 2.9999 9.1593e-08 0.8465 0 3 0 0 2.9999 9.1602e-08 0.828 0 3 0 0 2.9999 9.1607e-08 0.8165 0 3 0 0 2.9999 9.1612e-08 0.805 0 3 0 0 2.9999 9.1622e-08 0.782 0 3 0 0 2.9999 9.163e-08 0.76382 0 3 0 0 2.9999 9.1638e-08 0.74382 0 3 0 0 2.9999 9.1646e-08 0.72382 0 3 0 0 2.9999 9.1655e-08 0.702 0 3 0 0 2.9999 9.1661e-08 0.68875 0 3 0 0 2.9999 9.1667e-08 0.6755 0 3 0 0 2.9999 9.1673e-08 0.66225 0 3 0 0 2.9999 9.1679e-08 0.649 0 3 0 0 2.9999 9.1685e-08 0.63449 0 3 0 0 2.9999 9.1697e-08 0.60548 0 3 0 0 2.9999 9.1714e-08 0.56498 0 3 0 0 2.9999 9.1746e-08 0.487 0 3 0 0 2.9999 9.1751e-08 0.47616 0 3 0 0 2.9999 9.1756e-08 0.46533 0 3 0 0 2.9999 9.1762e-08 0.45449 0 3 0 0 2.9999 9.1767e-08 0.44366 0 3 0 0 2.9999 9.1772e-08 0.43282 0 2.9804 0 0 2.9996 9.1779e-08 0.41941 0 2.9562 0 0 2.9993 9.1785e-08 0.40599 0 2.932 0 0 2.9991 9.1793e-08 0.39 0 2.9031 0 0 2.9987 9.18e-08 0.3786 0 2.8766 0 0 2.9986 9.1814e-08 0.3558 0 2.8234 0 0 2.9982 9.1832e-08 0.3278 0 2.7582 0 0 2.9977 9.1863e-08 0.278 0 2.6422 0 0 2.9969 9.1875e-08 0.26375 0 2.5966 0 0 2.9966 9.1888e-08 0.2495 0 2.5509 0 0 2.9963 9.1912e-08 0.221 0 2.4596 0 0 2.9958 9.1925e-08 0.20925 0 2.4112 0 0 2.9956 9.1938e-08 0.1975 0 2.3528 0 0 2.9952 9.1951e-08 0.18575 0 2.2913 0 0 2.995 9.1964e-08 0.174 0 2.2299 0 0 2.9946 9.1966e-08 0.17237 0 2.2193 0 0 2.9946 9.1969e-08 0.17075 0 2.2087 0 0 2.9945 9.1971e-08 0.16913 0 2.198 0 0 2.9944 9.1973e-08 0.1675 0 2.1874 0 0 2.9945 9.1975e-08 0.16588 0.009375 2.1768 0 0 2.9944 9.198e-08 0.16262 0.028125 2.1555 0 0 2.9944 9.1987e-08 0.15775 0.05625 2.1236 0 0 2.9943 9.2e-08 0.148 0.1125 2.0598 0 0 2.9947 9.201e-08 0.14294 0.15469 2.012 0 0 2.9949 9.203e-08 0.13281 0.23906 1.9163 0 0 2.995 9.206e-08 0.11781 0.36406 1.7738 0 0 2.9944 9.212e-08 0.088 0.60822 1.4829 0 0 2.9927 9.2141e-08 0.081 0.66644 1.3793 0 0 2.9918 9.2163e-08 0.074 0.72466 1.2756 0 0 2.9907 9.2205e-08 0.06 0.8411 1.08 0 0 2.9885 9.2237e-08 0.054104 0.92842 0.93833 0 0 2.9874 9.228e-08 0.046104 1.0469 0.74611 0 0 2.986 9.2323e-08 0.038104 1.1654 0.57686 0 0 2.9855 9.2378e-08 0.028 1.2768 0.45502 0 0 2.987 9.2405e-08 0.02509 1.3268 0.3941 0 0 2.9879 9.2433e-08 0.022179 1.3768 0.33318 0 0 2.9887 9.2463e-08 0.018929 1.4325 0.26515 0 0 2.9895 9.25e-08 0.015 1.5 0.1829 0 0 2.9901 9.2521e-08 0.01423 1.5375 0.13717 0 0 2.9905 9.2541e-08 0.013461 1.575 0.09145 0 0 2.9908 9.2561e-08 0.012691 1.6125 0.045725 0 0 2.991 9.2582e-08 0.011922 1.65 0 0 0 2.9912 9.2602e-08 0.011152 1.6875 0 0 0 2.9924 9.2644e-08 0.0096126 1.7625 0 0 0 2.9952 9.2696e-08 0.0076323 1.8581 0 0 0 2.9994 9.2793e-08 0.004 2.0324 0 0 0 3.0052 9.2843e-08 0.0032754 2.1225 0 0 0 3.0072 9.2894e-08 0.0025362 2.2144 0 0 0 3.0081 9.2945e-08 0.0017971 2.3063 0 0 0 3.0071 9.2997e-08 0.0010435 2.4 0 0 0 3.0061 9.2998e-08 0.0010326 2.4007 0 0 0 3.0061 9.2998e-08 0.0010217 2.4014 0 0 0 3.0061 9.2999e-08 0.0010109 2.402 0 0 0 3.0061 9.3e-08 0.001 2.4027 0 0 0 3.0061 9.3001e-08 0.00099744 2.4034 0 0 0 3.0061 9.3002e-08 0.00099232 2.4047 0 0 0 3.0061 9.3008e-08 0.00097184 2.4102 0 0 0 3.006 9.3032e-08 0.00088993 2.4318 0 0 0 3.0059 9.3105e-08 0.00063993 2.4979 0 0 0 3.0048 9.3179e-08 0.00038993 2.564 0 0 0 3.0038 9.3293e-08 0 2.6671 0 0 0 3.0028 9.3343e-08 -8.6693e-05 2.7122 0 0 0 3.0025 9.3435e-08 -0.00024664 2.7954 0 0 0 3.002 9.3527e-08 -0.00040659 2.8786 0 0 0 3.0015 9.3662e-08 -0.00063979 3 0 0 0 3.0012 9.3712e-08 -0.00072648 3 0 0 0 3.001 9.3812e-08 -0.00089987 3 0 0 0 3.0008 9.4212e-08 -0.0015934 3 0 0 0 3.0001 9.4697e-08 -0.0024335 3 0 0 0 3 9.5196e-08 -0.0033004 3 0 0 0 3 9.56e-08 -0.004 3 0 0 0 3 9.5615e-08 -0.006 3 0 0 0 3 9.563e-08 -0.008 3 0 0 0 3 9.566e-08 -0.012 3 0 0 0 3 9.5671e-08 -0.0125 3 0 0 0 3 9.5682e-08 -0.013 3 0 0 0 3 9.5703e-08 -0.014 3 0 0 0 3 9.5719e-08 -0.0098536 3 0 0 0 3 9.5737e-08 -0.0053536 3 0 0 0 3 9.5754e-08 -0.00085357 3 0 0 0 3 9.5773e-08 0.004 3 0 0 0 3 9.5786e-08 0.01475 3 0 0 0 3 9.5798e-08 0.0255 3 0 0 0 3 9.581e-08 0.03625 3 0 0 0 3 9.5823e-08 0.047 3 0 0 0 3 9.5836e-08 0.07025 3 0 0 0 3 9.586e-08 0.11675 3 0 0 0 3 9.5885e-08 0.16325 3 0 0 0 3 9.5923e-08 0.233 3 0 0 0 3 9.5941e-08 0.289 3 0 0 0 3 9.5958e-08 0.345 3 0 0 0 3 9.5994e-08 0.457 3 0 0 0 3 9.5995e-08 0.4605 3 0 0 0 3 9.5996e-08 0.464 3 0 0 0 3 9.5997e-08 0.471 3 0 0 0 3 9.5998e-08 0.47375 3 0 0 0 3 9.5999e-08 0.4765 3 0 0 0 3 9.6e-08 0.482 3 0 0 0 3 9.6001e-08 0.48582 3 0 0 0 3 9.6003e-08 0.49345 3 0 0 0 3 9.6012e-08 0.52399 3 0 0 0 3 9.604e-08 0.61899 3 0 0 0 3 9.6068e-08 0.71399 3 0 0 0 3 9.6112e-08 0.862 3 0 0 0 3 9.6132e-08 0.91575 3 0 0 0 3 9.6152e-08 0.9695 3 0 0 0 3 9.6171e-08 1.0232 3 0 0 0 3 9.6191e-08 1.077 3 0 0 0 3 9.6203e-08 1.1072 3 0 0 0 3 9.6214e-08 1.1375 3 0 0 0 3 9.6226e-08 1.1678 3 0 0 0 3 9.6238e-08 1.198 3 0 0 0 3 9.6246e-08 1.2175 3 0 0 0 3 9.6255e-08 1.237 3 0 0 0 3 9.6271e-08 1.276 3 0 0 0 3 9.6283e-08 1.298 3 0 0 0 3 9.6294e-08 1.32 3 0 0 0 3 9.6318e-08 1.364 3 0 0 0 3 9.6327e-08 1.3802 3 0 0 0 3 9.6335e-08 1.3965 3 0 0 0 3 9.6343e-08 1.4128 3 0 0 0 3 9.6352e-08 1.429 3 0 0 0 3 9.636e-08 1.4447 3 0 0 0 3 9.6368e-08 1.4605 3 0 0 0 3 9.6376e-08 1.4763 3 0 0 0 3 9.6384e-08 1.492 3 0 0 0 3 9.639e-08 1.503 3 0 0 0 3 9.6396e-08 1.514 3 0 0 0 3 9.6401e-08 1.525 3 0 0 0 3 9.6407e-08 1.536 3 0 0 0 3 9.6413e-08 1.5416 3 0 0 0 3 9.6421e-08 1.5496 3 0 0 0 3 9.6429e-08 1.5576 3 0 0 0 3 9.644e-08 1.568 3 0 0 0 3 9.6445e-08 1.5757 3 0 0 0 3 9.6451e-08 1.5835 3 0 0 0 3 9.6462e-08 1.599 3 0 0 0 3 9.6468e-08 1.61 3 0 0 0 3 9.6473e-08 1.621 3 0 0 0 3 9.6484e-08 1.643 3 0 0 0 3 9.6488e-08 1.6508 3 0 0 0 3 9.6492e-08 1.6585 3 0 0 0 3 9.65e-08 1.674 3 0 0 0 3 9.6506e-08 1.6858 3 0 0 0 3 9.6514e-08 1.7011 3 0 0 0 3 9.6521e-08 1.7163 3 0 0 0 3 9.6531e-08 1.735 3 0 0 0 3 9.6537e-08 1.7472 3 0 0 0 3 9.6542e-08 1.7595 3 0 0 0 3 9.6553e-08 1.784 3 0 0 0 3 9.6561e-08 1.8023 3 0 0 0 3 9.6577e-08 1.8373 3 0 0 0 3 9.6593e-08 1.8723 3 0 0 0 3 9.6616e-08 1.924 3 0 0 0 3 9.6627e-08 1.9473 3 0 0 0 3 9.6638e-08 1.9705 3 0 0 0 3 9.6649e-08 1.9937 3 0 0 0 3 9.666e-08 2.017 3 0 0 0 3 9.6671e-08 2.0376 3 0 0 0 3 9.6693e-08 2.0788 3 0 0 0 3 9.6719e-08 2.1265 3 0 0 0 3 9.6762e-08 2.208 3 0 0 0 3 9.678e-08 2.2362 3 0 0 0 3 9.6798e-08 2.2645 3 0 0 0 3 9.6816e-08 2.2927 3 0 0 0 3 9.6834e-08 2.321 3 0 0 0 3 9.6852e-08 2.3496 3 0 0 0 3 9.6876e-08 2.3881 3 0 0 0 3 9.6901e-08 2.4266 3 0 0 0 3 9.6931e-08 2.475 3 0 0 0 3 9.6948e-08 2.4992 3 0 0 0 3 9.6966e-08 2.5235 3 0 0 0 3 9.6983e-08 2.5477 3 0 0 0 3 9.7e-08 2.572 3 0 0 0 3 9.7017e-08 2.59 3 0 0 0 3 9.7045e-08 2.6193 3 0 0 0 3 9.7073e-08 2.6485 3 0 0 0 3 9.7112e-08 2.689 3 0 0 0 3 9.7132e-08 2.7037 3 0 0 0 3 9.7152e-08 2.7185 3 0 0 0 3 9.7172e-08 2.7332 3 0 0 0 3 9.7192e-08 2.748 3 0 0 0 3 9.7212e-08 2.7589 3 0 0 0 3 9.7252e-08 2.7807 3 0 0 0 3 9.7291e-08 2.8024 3 0 0 0 3 9.7351e-08 2.835 3 0 0 0 3 9.7379e-08 2.845 3 0 0 0 3 9.7408e-08 2.855 3 0 0 0 3 9.7436e-08 2.865 3 0 0 0 3 9.7464e-08 2.875 3 0 0 0 3 9.7469e-08 2.8765 3 0 0 0 3 9.7474e-08 2.878 3 0 0 0 3 9.748e-08 2.8795 3 0 0 0 3 9.7485e-08 2.881 3 0 0 0 3 9.7489e-08 2.882 3 0 0 0 3 9.7493e-08 2.883 3 0 0 0 3 9.7496e-08 2.884 3 0 0 0 3 9.75e-08 2.885 3 0 0 0 3 9.7504e-08 2.8858 3 0 0 0 3 9.7511e-08 2.8873 3 0 0 0 3 9.7541e-08 2.8934 3 0 0 0 3 9.7608e-08 2.9072 3 0 0 0 3 9.7676e-08 2.9209 3 0 0 0 3 9.7769e-08 2.94 3 0 0 0 3 9.7817e-08 2.9457 3 0 0 0 3 9.7865e-08 2.9515 3 0 0 0 3 9.796e-08 2.963 3 0 0 0 3 9.7966e-08 2.9635 3 0 0 0 3 9.7972e-08 2.964 3 0 0 0 3 9.7977e-08 2.9645 3 0 0 0 3 9.7983e-08 2.965 3 0 0 0 3 9.7987e-08 2.9653 3 0 0 0 3 9.7992e-08 2.9655 3 0 0 0 3 9.7996e-08 2.9657 3 0 0 0 3 9.8e-08 2.966 3 0 0 0 3 9.8004e-08 2.9663 3 0 0 0 3 9.8013e-08 2.9668 3 0 0 0 3 9.8047e-08 2.9689 3 0 0 0 3 9.812e-08 2.9734 3 0 0 0 3 9.8193e-08 2.9779 3 0 0 0 3 9.8293e-08 2.984 3 0 0 0 3 9.8343e-08 2.9854 3 0 0 0 3 9.8395e-08 2.9869 3 0 0 0 3 9.8446e-08 2.9884 3 0 0 0 3 9.85e-08 2.99 3 0 0 0 3 9.855e-08 2.9909 3 0 0 0 3 9.8623e-08 2.9921 3 0 0 0 3 9.8697e-08 2.9934 3 0 0 0 3 9.8793e-08 2.995 3 0 0 0 3 9.8843e-08 2.9955 3 0 0 0 3 9.8895e-08 2.996 3 0 0 0 3 9.8947e-08 2.9965 3 0 0 0 3 9.9e-08 2.997 3 0 0 0 3 9.905e-08 2.9971 3 0 0 0 3 9.915e-08 2.9975 3 0 0 0 3 9.94e-08 2.9982 3 0 0 0 3 9.965e-08 2.999 3 0 0 0 3 1e-07 3 3 0 0 0 3 1.0005e-07 2.9999 3 0 0 0 3 1.0015e-07 2.9997 3 0 0 0 3 1.0029e-07 2.9995 3 0 0 0 3 1.0056e-07 2.999 3 0 0 0 3 1.0057e-07 2.9995 3 0 0 0 3 1.0058e-07 3 3 0 0 0 3 1.006e-07 3.001 3 0 0 0 3 1.0062e-07 3.0027 3 0 0 0 3 1.0063e-07 3.0045 3 0 0 0 3 1.0065e-07 3.0062 3 0 0 0 3 1.0066e-07 3.008 3 0 0 0 3 1.0067e-07 3.0092 3 0 0 0 3 1.0068e-07 3.0105 3 0 0 0 3 1.007e-07 3.0117 3 0 0 0 3 1.0071e-07 3.013 3 0 0 0 3 1.0072e-07 3.0126 3 0 0 0 3 1.0074e-07 3.0119 3 0 0 0 3 1.0076e-07 3.0111 3 0 0 0 3 1.0079e-07 3.01 3 0 0 0 3 1.008e-07 3.0055 3 0 0 0 3 1.0082e-07 3.001 3 0 0 0 3 1.0085e-07 2.992 3 0 0 0 3 1.0087e-07 2.9756 3 0 0 0 3 1.0089e-07 2.9589 3 0 0 0 3 1.0091e-07 2.9421 3 0 0 0 3 1.0094e-07 2.925 3 0 0 0 3 1.0095e-07 2.9037 3 0 0 0 3 1.0097e-07 2.8825 3 0 0 0 3 1.0098e-07 2.8612 3 0 0 0 3 1.01e-07 2.84 3 0 0 0 3 1.0102e-07 2.8068 3 0 0 0 3 1.0103e-07 2.7721 3 0 0 0 3 1.0105e-07 2.7373 3 0 0 0 3 1.0107e-07 2.701 3 0 0 0 3 1.0108e-07 2.6667 3 0 0 0 3 1.0109e-07 2.6325 3 0 0 0 3 1.011e-07 2.5982 3 0 0 0 3 1.0111e-07 2.564 3 0 0 0 3 1.0112e-07 2.521 3 0 0 0 3 1.0114e-07 2.4603 3 0 0 0 3 1.0116e-07 2.3995 3 0 0 0 3 1.0118e-07 2.321 3 0 0 0 3 1.0119e-07 2.2795 3 0 0 0 3 1.012e-07 2.238 3 0 0 0 3 1.0121e-07 2.1965 3 0 0 0 3 1.0122e-07 2.155 3 0 0 0 3 1.0124e-07 2.1072 3 0 0 0 3 1.0125e-07 2.0329 3 0 0 0 3 1.0127e-07 1.9587 3 0 0 0 3 1.013e-07 1.858 3 0 0 0 3 1.0131e-07 1.8053 3 0 0 0 3 1.0132e-07 1.7525 3 0 0 0 3 1.0135e-07 1.647 3 0 0 0 3 1.0137e-07 1.578 3 0 0 0 3 1.0139e-07 1.509 3 0 0 0 3 1.014e-07 1.44 3 0 0 0 3 1.0142e-07 1.371 3 0 0 0 3 1.0143e-07 1.3175 3 0 0 0 3 1.0145e-07 1.264 3 0 0 0 3 1.0146e-07 1.2105 3 0 0 0 3 1.0147e-07 1.157 3 0 0 0 3 1.0148e-07 1.1375 3 0 0 0 3 1.0148e-07 1.118 3 0 0 0 3 1.0149e-07 1.0985 3 0 0 0 3 1.0149e-07 1.079 3 0 0 0 3 1.0149e-07 1.067 3 0 0 0 3 1.0149e-07 1.055 3 0 0 0 3 1.015e-07 1.043 3 0 0 0 3 1.015e-07 1.031 3 0 0 0 3 1.015e-07 1.0211 3 0 0 0 3 1.0151e-07 1.0031 3 0 0 0 3 1.0151e-07 0.9851 3 0 0 0 3 1.0152e-07 0.959 3 0 0 0 3 1.0152e-07 0.95375 3 0 0 0 3 1.0153e-07 0.9485 3 0 0 0 3 1.0153e-07 0.938 3 0 0 0 3 1.0154e-07 0.92903 3 0 0 0 3 1.0155e-07 0.91878 3 0 0 0 3 1.0155e-07 0.90853 3 0 0 0 3 1.0156e-07 0.897 3 0 0 0 3 1.0156e-07 0.89325 3 0 0 0 3 1.0157e-07 0.8895 3 0 0 0 3 1.0157e-07 0.88575 3 0 0 0 3 1.0157e-07 0.882 3 0 0 0 3 1.0158e-07 0.8735 3 0 0 0 3 1.0159e-07 0.86 3 0 0 0 3 1.0159e-07 0.8465 3 0 0 0 3 1.016e-07 0.828 3 0 0 0 3 1.0161e-07 0.8165 3 0 0 0 3 1.0161e-07 0.805 3 0 0 0 3 1.0162e-07 0.7935 3 0 0 0 3 1.0162e-07 0.782 3 0 0 0 3 1.0163e-07 0.76988 3 0 0 0 3 1.0164e-07 0.74988 3 0 0 0 3 1.0164e-07 0.72988 3 0 0 0 3 1.0165e-07 0.702 3 0 0 0 3 1.0166e-07 0.68875 3 0 0 0 3 1.0167e-07 0.6755 3 0 0 0 3 1.0168e-07 0.649 3 0 0 0 3 1.0169e-07 0.62724 3 0 0 0 3 1.017e-07 0.58674 3 0 0 0 3 1.0172e-07 0.54624 3 0 0 0 3 1.0175e-07 0.487 3 0 0 0 3 1.0175e-07 0.47616 3 0 0 0 3 1.0176e-07 0.46533 3 0 0 0 3 1.0176e-07 0.45449 3 0 0 0 3 1.0177e-07 0.44366 3 0 0 0 3 1.0177e-07 0.43282 2.9804 0 0 0 3 1.0178e-07 0.41941 2.9562 0 0 0 3 1.0179e-07 0.40599 2.932 0 0 0 3 1.0179e-07 0.39 2.9031 0 0 0 2.9999 1.018e-07 0.3786 2.8766 0 0 0 2.9999 1.0181e-07 0.3558 2.8234 0 0 0 2.9998 1.0183e-07 0.3278 2.7582 0 0 0 2.9996 1.0186e-07 0.278 2.6422 0 0 0 2.9993 1.0188e-07 0.26375 2.5966 0 0 0 2.9992 1.0189e-07 0.2495 2.5509 0 0 0 2.9991 1.019e-07 0.23525 2.5053 0 0 0 2.999 1.0191e-07 0.221 2.4596 0 0 0 2.999 1.0192e-07 0.20993 2.414 0 0 0 2.9989 1.0194e-07 0.19818 2.3563 0 0 0 2.9987 1.0195e-07 0.18643 2.2949 0 0 0 2.9986 1.0196e-07 0.174 2.2299 0 0 0 2.9985 1.0197e-07 0.17237 2.2193 0 0 0 2.9985 1.0197e-07 0.17075 2.2087 0 0 0 2.9985 1.0197e-07 0.1675 2.1874 0 0 0 2.9984 1.0198e-07 0.16506 2.1715 0 0.014062 0 3 1.0198e-07 0.16019 2.1396 0 0.042188 0 3.0033 1.0199e-07 0.15531 2.1077 0 0.070313 0 3.0067 1.02e-07 0.148 2.0598 0 0.1125 0 3.011 1.0201e-07 0.14378 2.02 0 0.14766 0 3.0138 1.0203e-07 0.13534 1.9403 0 0.21797 0 3.0186 1.0206e-07 0.12034 1.7985 0 0.34297 0 3.0248 1.0209e-07 0.10534 1.6521 0 0.46797 0 3.0295 1.0212e-07 0.088 1.4829 0 0.60822 0 3.033 1.0214e-07 0.081 1.3793 0 0.66644 0 3.0308 1.0216e-07 0.074 1.2756 0 0.72466 0 3.0284 1.0221e-07 0.06 1.08 0 0.8411 0 3.0224 1.0224e-07 0.054104 0.93833 0 0.92842 0 3.0179 1.0228e-07 0.046104 0.74611 0 1.0469 0 3.0121 1.0232e-07 0.038104 0.57686 0 1.1654 0 3.0072 1.0238e-07 0.028 0.45502 0 1.2768 0 3.0014 1.0241e-07 0.02475 0.38699 0 1.3326 0 3.0004 1.0244e-07 0.0215 0.31896 0 1.3884 0 2.9996 1.0247e-07 0.01825 0.25093 0 1.4442 0 2.9992 1.025e-07 0.015 0.1829 0 1.5 0 2.9989 1.0252e-07 0.01423 0.13717 0 1.5375 0 2.9988 1.0254e-07 0.013461 0.09145 0 1.575 0 2.9986 1.0256e-07 0.012691 0.045725 0 1.6125 0 2.9986 1.0258e-07 0.011922 0 0 1.65 0 2.9985 1.026e-07 0.011152 0 0 1.6875 0 2.9988 1.0264e-07 0.0096126 0 0 1.7625 0 3.0001 1.027e-07 0.0076323 0 0 1.8581 0 3.0027 1.0279e-07 0.004 0 0 2.0324 0 3.0064 1.0284e-07 0.0032754 0 0 2.1225 0 3.0076 1.0289e-07 0.0025362 0 0 2.2144 0 3.0003 1.0295e-07 0.0017971 0 0 2.3063 0 2.9936 1.03e-07 0.0010435 0 0 2.4 0 2.989 1.03e-07 0.0010326 0 0 2.4007 0 2.9889 1.03e-07 0.0010217 0 0 2.4014 0 2.9888 1.03e-07 0.0010109 0 0 2.402 0 2.9887 1.03e-07 0.001 0 0 2.4027 0 2.9886 1.03e-07 0.00099744 0 0 2.4034 0 2.9885 1.03e-07 0.00099232 0 0 2.4047 0 2.9884 1.0301e-07 0.00097184 0 0 2.4102 0 2.9879 1.0303e-07 0.00088993 0 0 2.4318 0 2.9868 1.0311e-07 0.00063993 0 0 2.4979 0 2.9859 1.0318e-07 0.00038993 0 0 2.564 0 2.9866 1.0329e-07 0 0 0 2.6671 0 2.9875 1.0334e-07 -8.6693e-05 0 0 2.7122 0 2.9878 1.0344e-07 -0.00024664 0 0 2.7954 0 2.9882 1.0353e-07 -0.00040659 0 0 2.8786 0 2.9886 1.0366e-07 -0.00063979 0 0 3 0 2.989 1.0371e-07 -0.00072648 0 0 3 0 2.9896 1.0381e-07 -0.00089987 0 0 3 0 2.9918 1.0421e-07 -0.0015934 0 0 3 0 2.9982 1.047e-07 -0.0024335 0 0 3 0 2.9994 1.052e-07 -0.0033004 0 0 3 0 2.9996 1.056e-07 -0.004 0 0 3 0 2.9996 1.0562e-07 -0.006 0 0 3 0 2.9996 1.0563e-07 -0.008 0 0 3 0 2.9996 1.0566e-07 -0.012 0 0 3 0 2.9996 1.0567e-07 -0.0125 0 0 3 0 2.9996 1.0568e-07 -0.013 0 0 3 0 2.9996 1.0569e-07 -0.0135 0 0 3 0 2.9996 1.057e-07 -0.014 0 0 3 0 2.9996 1.0571e-07 -0.011236 0 0 3 0 2.9996 1.0573e-07 -0.0067357 0 0 3 0 2.9996 1.0575e-07 -0.0022357 0 0 3 0 2.9996 1.0577e-07 0.004 0 0 3 0 2.9996 1.0579e-07 0.01475 0 0 3 0 2.9996 1.058e-07 0.0255 0 0 3 0 2.9996 1.0581e-07 0.03625 0 0 3 0 2.9996 1.0582e-07 0.047 0 0 3 0 2.9996 1.0584e-07 0.07025 0 0 3 0 2.9996 1.0586e-07 0.11675 0 0 3 0 2.9996 1.0589e-07 0.16325 0 0 3 0 2.9996 1.0592e-07 0.233 0 0 3 0 2.9996 1.0594e-07 0.289 0 0 3 0 2.9996 1.0596e-07 0.345 0 0 3 0 2.9996 1.0599e-07 0.457 0 0 3 0 2.9996 1.0599e-07 0.4605 0 0 3 0 2.9996 1.06e-07 0.464 0 0 3 0 2.9996 1.06e-07 0.4675 0 0 3 0 2.9996 1.06e-07 0.471 0 0 3 0 2.9996 1.06e-07 0.47375 0 0 3 0 2.9996 1.06e-07 0.4765 0 0 3 0 2.9996 1.06e-07 0.47925 0 0 3 0 2.9996 1.06e-07 0.482 0 0 3 0 2.9996 1.06e-07 0.48454 0 0 3 0 2.9996 1.06e-07 0.48963 0 0 3 0 2.9996 1.0601e-07 0.50999 0 0 3 0 2.9996 1.0603e-07 0.59142 0 0 3 0 2.9996 1.0606e-07 0.68642 0 0 3 0 2.9996 1.0611e-07 0.862 0 0 3 0 2.9996 1.0613e-07 0.91575 0 0 3 0 2.9996 1.0615e-07 0.9695 0 0 3 0 2.9996 1.0617e-07 1.0232 0 0 3 0 2.9996 1.0619e-07 1.077 0 0 3 0 2.9996 1.062e-07 1.1072 0 0 3 0 2.9996 1.0621e-07 1.1375 0 0 3 0 2.9996 1.0624e-07 1.198 0 0 3 0 2.9996 1.0625e-07 1.2175 0 0 3 0 2.9996 1.0625e-07 1.237 0 0 3 0 2.9996 1.0627e-07 1.276 0 0 3 0 2.9996 1.0628e-07 1.298 0 0 3 0 2.9996 1.0629e-07 1.32 0 0 3 0 2.9996 1.0631e-07 1.342 0 0 3 0 2.9996 1.0632e-07 1.364 0 0 3 0 2.9996 1.0633e-07 1.3802 0 0 3 0 2.9996 1.0634e-07 1.3965 0 0 3 0 2.9996 1.0634e-07 1.4128 0 0 3 0 2.9996 1.0635e-07 1.429 0 0 3 0 2.9996 1.0636e-07 1.4447 0 0 3 0 2.9996 1.0637e-07 1.4605 0 0 3 0 2.9996 1.0638e-07 1.4763 0 0 3 0 2.9996 1.0638e-07 1.492 0 0 3 0 2.9996 1.0639e-07 1.503 0 0 3 0 2.9996 1.064e-07 1.514 0 0 3 0 2.9996 1.064e-07 1.525 0 0 3 0 2.9996 1.0641e-07 1.536 0 0 3 0 2.9996 1.0641e-07 1.5416 0 0 3 0 2.9996 1.0642e-07 1.5496 0 0 3 0 2.9996 1.0643e-07 1.5576 0 0 3 0 2.9996 1.0644e-07 1.568 0 0 3 0 2.9996 1.0645e-07 1.5757 0 0 3 0 2.9996 1.0645e-07 1.5835 0 0 3 0 2.9996 1.0646e-07 1.5912 0 0 3 0 2.9996 1.0646e-07 1.599 0 0 3 0 2.9996 1.0647e-07 1.61 0 0 3 0 2.9996 1.0647e-07 1.621 0 0 3 0 2.9996 1.0648e-07 1.632 0 0 3 0 2.9996 1.0648e-07 1.643 0 0 3 0 2.9996 1.0649e-07 1.6508 0 0 3 0 2.9996 1.0649e-07 1.6585 0 0 3 0 2.9996 1.065e-07 1.674 0 0 3 0 2.9996 1.0651e-07 1.6858 0 0 3 0 2.9996 1.0651e-07 1.7011 0 0 3 0 2.9996 1.0652e-07 1.7163 0 0 3 0 2.9996 1.0653e-07 1.735 0 0 3 0 2.9996 1.0654e-07 1.7472 0 0 3 0 2.9996 1.0654e-07 1.7595 0 0 3 0 2.9996 1.0655e-07 1.784 0 0 3 0 2.9996 1.0656e-07 1.8023 0 0 3 0 2.9996 1.0658e-07 1.8373 0 0 3 0 2.9996 1.0659e-07 1.8723 0 0 3 0 2.9996 1.0662e-07 1.924 0 0 3 0 2.9996 1.0663e-07 1.9473 0 0 3 0 2.9996 1.0664e-07 1.9705 0 0 3 0 2.9996 1.0665e-07 1.9937 0 0 3 0 2.9996 1.0666e-07 2.017 0 0 3 0 2.9996 1.0667e-07 2.0376 0 0 3 0 2.9996 1.0669e-07 2.0788 0 0 3 0 2.9996 1.0672e-07 2.1265 0 0 3 0 2.9996 1.0676e-07 2.208 0 0 3 0 2.9996 1.0678e-07 2.2362 0 0 3 0 2.9996 1.068e-07 2.2645 0 0 3 0 2.9996 1.0682e-07 2.2927 0 0 3 0 2.9996 1.0683e-07 2.321 0 0 3 0 2.9996 1.0685e-07 2.3496 0 0 3 0 2.9996 1.0688e-07 2.3881 0 0 3 0 2.9996 1.069e-07 2.4266 0 0 3 0 2.9996 1.0693e-07 2.475 0 0 3 0 2.9996 1.0695e-07 2.4992 0 0 3 0 2.9996 1.0697e-07 2.5235 0 0 3 0 2.9996 1.0698e-07 2.5477 0 0 3 0 2.9996 1.07e-07 2.572 0 0 3 0 2.9996 1.0702e-07 2.59 0 0 3 0 2.9996 1.0705e-07 2.6193 0 0 3 0 2.9996 1.0707e-07 2.6485 0 0 3 0 2.9996 1.0711e-07 2.689 0 0 3 0 2.9996 1.0713e-07 2.7037 0 0 3 0 2.9996 1.0715e-07 2.7185 0 0 3 0 2.9996 1.0717e-07 2.7332 0 0 3 0 2.9996 1.0719e-07 2.748 0 0 3 0 2.9996 1.0721e-07 2.7589 0 0 3 0 2.9996 1.0725e-07 2.7807 0 0 3 0 2.9996 1.0729e-07 2.8024 0 0 3 0 2.9996 1.0735e-07 2.835 0 0 3 0 2.9996 1.0738e-07 2.845 0 0 3 0 2.9996 1.0741e-07 2.855 0 0 3 0 2.9996 1.0744e-07 2.865 0 0 3 0 2.9996 1.0746e-07 2.875 0 0 3 0 2.9996 1.0747e-07 2.8765 0 0 3 0 2.9996 1.0747e-07 2.878 0 0 3 0 2.9996 1.0748e-07 2.8795 0 0 3 0 2.9996 1.0749e-07 2.881 0 0 3 0 2.9996 1.0749e-07 2.882 0 0 3 0 2.9996 1.0749e-07 2.883 0 0 3 0 2.9996 1.075e-07 2.884 0 0 3 0 2.9996 1.075e-07 2.885 0 0 3 0 2.9996 1.075e-07 2.8858 0 0 3 0 2.9996 1.0751e-07 2.8873 0 0 3 0 2.9996 1.0754e-07 2.8934 0 0 3 0 2.9996 1.0761e-07 2.9072 0 0 3 0 2.9997 1.0768e-07 2.9209 0 0 3 0 2.9997 1.0777e-07 2.94 0 0 3 0 2.9997 1.0782e-07 2.9457 0 0 3 0 2.9997 1.0786e-07 2.9515 0 0 3 0 2.9997 1.0791e-07 2.9573 0 0 3 0 2.9997 1.0796e-07 2.963 0 0 3 0 2.9997 1.0797e-07 2.9635 0 0 3 0 2.9997 1.0797e-07 2.964 0 0 3 0 2.9997 1.0798e-07 2.9645 0 0 3 0 2.9997 1.0798e-07 2.965 0 0 3 0 2.9997 1.0799e-07 2.9653 0 0 3 0 2.9997 1.0799e-07 2.9655 0 0 3 0 2.9997 1.08e-07 2.9657 0 0 3 0 2.9997 1.08e-07 2.966 0 0 3 0 2.9997 1.08e-07 2.9663 0 0 3 0 2.9997 1.0801e-07 2.9668 0 0 3 0 2.9997 1.0805e-07 2.9689 0 0 3 0 2.9997 1.0812e-07 2.9734 0 0 3 0 2.9997 1.0819e-07 2.9779 0 0 3 0 2.9997 1.0829e-07 2.984 0 0 3 0 2.9997 1.0834e-07 2.9854 0 0 3 0 2.9997 1.0839e-07 2.9869 0 0 3 0 2.9997 1.0845e-07 2.9884 0 0 3 0 2.9997 1.085e-07 2.99 0 0 3 0 2.9997 1.0855e-07 2.9909 0 0 3 0 2.9997 1.0862e-07 2.9921 0 0 3 0 2.9997 1.087e-07 2.9934 0 0 3 0 2.9997 1.0879e-07 2.995 0 0 3 0 2.9997 1.0884e-07 2.9955 0 0 3 0 2.9997 1.0889e-07 2.996 0 0 3 0 2.9997 1.0895e-07 2.9965 0 0 3 0 2.9997 1.09e-07 2.997 0 0 3 0 2.9997 1.0905e-07 2.9971 0 0 3 0 2.9997 1.0915e-07 2.9975 0 0 3 0 2.9997 1.094e-07 2.9982 0 0 3 0 2.9998 1.0965e-07 2.999 0 0 3 0 2.9998 1.1e-07 3 0 0 3 0 2.9999 1.1005e-07 2.9999 0 0 3 0 2.9998 1.1015e-07 2.9997 0 0 3 0 2.9998 1.1029e-07 2.9995 0 0 3 0 2.9998 1.1056e-07 2.999 0 0 3 0 2.9999 1.1057e-07 2.9995 0 0 3 0 2.9998 1.1058e-07 3 0 0 3 0 2.9998 1.106e-07 3.001 0 0 3 0 2.9998 1.1062e-07 3.0027 0 0 3 0 2.9998 1.1063e-07 3.0045 0 0 3 0 2.9998 1.1065e-07 3.0062 0 0 3 0 2.9998 1.1066e-07 3.008 0 0 3 0 2.9998 1.1067e-07 3.0092 0 0 3 0 2.9998 1.1069e-07 3.0105 0 0 3 0 2.9998 1.107e-07 3.0117 0 0 3 0 2.9998 1.1071e-07 3.013 0 0 3 0 2.9998 1.1072e-07 3.0126 0 0 3 0 2.9998 1.1074e-07 3.0119 0 0 3 0 2.9998 1.1076e-07 3.0111 0 0 3 0 2.9998 1.1079e-07 3.01 0 0 3 0 2.9998 1.108e-07 3.0055 0 0 3 0 2.9998 1.1082e-07 3.001 0 0 3 0 2.9998 1.1085e-07 2.992 0 0 3 0 2.9998 1.1087e-07 2.9756 0 0 3 0 2.9998 1.1089e-07 2.9589 0 0 3 0 2.9998 1.1091e-07 2.9421 0 0 3 0 2.9998 1.1094e-07 2.925 0 0 3 0 2.9998 1.1095e-07 2.9037 0 0 3 0 2.9998 1.1097e-07 2.8825 0 0 3 0 2.9998 1.1098e-07 2.8612 0 0 3 0 2.9998 1.11e-07 2.84 0 0 3 0 2.9998 1.1102e-07 2.8068 0 0 3 0 2.9998 1.1103e-07 2.7721 0 0 3 0 2.9998 1.1105e-07 2.7373 0 0 3 0 2.9998 1.1107e-07 2.701 0 0 3 0 2.9998 1.1108e-07 2.6667 0 0 3 0 2.9998 1.1109e-07 2.6325 0 0 3 0 2.9998 1.111e-07 2.5982 0 0 3 0 2.9998 1.1111e-07 2.564 0 0 3 0 2.9998 1.1112e-07 2.521 0 0 3 0 2.9998 1.1114e-07 2.4603 0 0 3 0 2.9998 1.1116e-07 2.3995 0 0 3 0 2.9998 1.1118e-07 2.321 0 0 3 0 2.9998 1.1119e-07 2.2795 0 0 3 0 2.9998 1.112e-07 2.238 0 0 3 0 2.9998 1.1122e-07 2.155 0 0 3 0 2.9998 1.1124e-07 2.0833 0 0 3 0 2.9998 1.1126e-07 2.009 0 0 3 0 2.9998 1.1128e-07 1.9348 0 0 3 0 2.9998 1.113e-07 1.858 0 0 3 0 2.9998 1.1131e-07 1.8053 0 0 3 0 2.9998 1.1132e-07 1.7525 0 0 3 0 2.9998 1.1135e-07 1.647 0 0 3 0 2.9998 1.1137e-07 1.578 0 0 3 0 2.9998 1.1139e-07 1.509 0 0 3 0 2.9998 1.114e-07 1.44 0 0 3 0 2.9998 1.1142e-07 1.371 0 0 3 0 2.9998 1.1143e-07 1.3175 0 0 3 0 2.9998 1.1145e-07 1.264 0 0 3 0 2.9998 1.1146e-07 1.2105 0 0 3 0 2.9998 1.1147e-07 1.157 0 0 3 0 2.9998 1.1148e-07 1.1375 0 0 3 0 2.9998 1.1148e-07 1.118 0 0 3 0 2.9998 1.1149e-07 1.0985 0 0 3 0 2.9998 1.1149e-07 1.079 0 0 3 0 2.9998 1.1149e-07 1.067 0 0 3 0 2.9998 1.1149e-07 1.055 0 0 3 0 2.9998 1.115e-07 1.043 0 0 3 0 2.9998 1.115e-07 1.031 0 0 3 0 2.9998 1.115e-07 1.0211 0 0 3 0 2.9998 1.1151e-07 1.0031 0 0 3 0 2.9998 1.1151e-07 0.9851 0 0 3 0 2.9998 1.1152e-07 0.959 0 0 3 0 2.9998 1.1152e-07 0.95375 0 0 3 0 2.9998 1.1153e-07 0.9485 0 0 3 0 2.9998 1.1153e-07 0.938 0 0 3 0 2.9998 1.1154e-07 0.92903 0 0 3 0 2.9998 1.1155e-07 0.91878 0 0 3 0 2.9998 1.1155e-07 0.90853 0 0 3 0 2.9998 1.1156e-07 0.897 0 0 3 0 2.9998 1.1156e-07 0.89325 0 0 3 0 2.9998 1.1157e-07 0.8895 0 0 3 0 2.9998 1.1157e-07 0.88575 0 0 3 0 2.9998 1.1157e-07 0.882 0 0 3 0 2.9998 1.1158e-07 0.8735 0 0 3 0 2.9998 1.1159e-07 0.86 0 0 3 0 2.9998 1.1159e-07 0.8465 0 0 3 0 2.9998 1.116e-07 0.828 0 0 3 0 2.9998 1.1161e-07 0.8165 0 0 3 0 2.9998 1.1161e-07 0.805 0 0 3 0 2.9998 1.1162e-07 0.782 0 0 3 0 2.9998 1.1163e-07 0.76382 0 0 3 0 2.9998 1.1164e-07 0.74382 0 0 3 0 2.9998 1.1165e-07 0.72382 0 0 3 0 2.9998 1.1165e-07 0.702 0 0 3 0 2.9998 1.1166e-07 0.68875 0 0 3 0 2.9998 1.1167e-07 0.6755 0 0 3 0 2.9998 1.1167e-07 0.66225 0 0 3 0 2.9998 1.1168e-07 0.649 0 0 3 0 2.9998 1.1168e-07 0.63449 0 0 3 0 2.9998 1.117e-07 0.60548 0 0 3 0 2.9998 1.1171e-07 0.56498 0 0 3 0 2.9998 1.1175e-07 0.487 0 0 3 0 2.9998 1.1175e-07 0.47616 0 0 3 0 2.9998 1.1176e-07 0.46533 0 0 3 0 2.9998 1.1176e-07 0.45449 0 0 3 0 2.9998 1.1177e-07 0.44366 0 0 3 0 2.9998 1.1177e-07 0.43282 0 0 2.9804 0 2.9993 1.1178e-07 0.41941 0 0 2.9562 0 2.9987 1.1179e-07 0.40599 0 0 2.932 0 2.9983 1.1179e-07 0.39 0 0 2.9031 0 2.9977 1.118e-07 0.3786 0 0 2.8766 0 2.9972 1.1181e-07 0.3558 0 0 2.8234 0 2.9962 1.1183e-07 0.3278 0 0 2.7582 0 2.9952 1.1186e-07 0.278 0 0 2.6422 0 2.9938 1.1188e-07 0.26375 0 0 2.5966 0 2.9933 1.1189e-07 0.2495 0 0 2.5509 0 2.9928 1.1191e-07 0.221 0 0 2.4596 0 2.9922 1.1192e-07 0.20925 0 0 2.4112 0 2.9918 1.1194e-07 0.1975 0 0 2.3528 0 2.9913 1.1195e-07 0.18575 0 0 2.2913 0 2.9907 1.1196e-07 0.174 0 0 2.2299 0 2.9902 1.1197e-07 0.17237 0 0 2.2193 0 2.9901 1.1197e-07 0.17075 0 0 2.2087 0 2.99 1.1197e-07 0.16913 0 0 2.198 0 2.9899 1.1197e-07 0.1675 0 0 2.1874 0 2.9899 1.1198e-07 0.16588 0 0.009375 2.1768 0.009375 2.9908 1.1198e-07 0.16262 0 0.028125 2.1555 0.028125 2.9931 1.1199e-07 0.15775 0 0.05625 2.1236 0.05625 2.997 1.12e-07 0.148 0 0.1125 2.0598 0.1125 2.998 1.1201e-07 0.14294 0 0.15469 2.012 0.15469 2.9978 1.1203e-07 0.13281 0 0.23906 1.9163 0.23906 2.9982 1.1206e-07 0.11781 0 0.36406 1.7738 0.36406 2.9996 1.1212e-07 0.088 0 0.60822 1.4829 0.60822 3.0002 1.1214e-07 0.081 0 0.66644 1.3793 0.66644 2.9959 1.1216e-07 0.074 0 0.72466 1.2756 0.72466 2.9914 1.1221e-07 0.06 0 0.8411 1.08 0.8411 2.9822 1.1224e-07 0.054104 0 0.92842 0.93833 0.92842 2.9759 1.1228e-07 0.046104 0 1.0469 0.74611 1.0469 2.9679 1.1232e-07 0.038104 0 1.1654 0.57686 1.1654 2.9636 1.1238e-07 0.028 0 1.2768 0.45502 1.2768 2.9663 1.1241e-07 0.02509 0 1.3268 0.3941 1.3268 2.967 1.1243e-07 0.022179 0 1.3768 0.33318 1.3768 2.9676 1.1246e-07 0.018929 0 1.4325 0.26515 1.4325 2.9682 1.125e-07 0.015 0 1.5 0.1829 1.5 2.9688 1.1252e-07 0.01423 0 1.5375 0.13717 1.5375 2.9691 1.1254e-07 0.013461 0 1.575 0.09145 1.575 2.9693 1.1256e-07 0.012691 0 1.6125 0.045725 1.6125 2.9695 1.1258e-07 0.011922 0 1.65 0 1.65 2.9697 1.126e-07 0.011152 0 1.6875 0 1.6875 2.975 1.1264e-07 0.0096126 0 1.7625 0 1.7625 2.9847 1.127e-07 0.0076323 0 1.8581 0 1.8581 2.9941 1.1279e-07 0.004 0 2.0324 0 2.0324 3.0067 1.1284e-07 0.0032754 0 2.1225 0 2.1225 3.0114 1.1289e-07 0.0025362 0 2.2144 0 2.2144 3.0078 1.1295e-07 0.0017971 0 2.3063 0 2.3063 3.0018 1.13e-07 0.0010435 0 2.4 0 2.4 2.9966 1.13e-07 0.0010326 0 2.4007 0 2.4007 2.9965 1.13e-07 0.0010217 0 2.4014 0 2.4014 2.9964 1.13e-07 0.0010109 0 2.402 0 2.402 2.9963 1.13e-07 0.001 0 2.4027 0 2.4027 2.9962 1.13e-07 0.00099744 0 2.4034 0 2.4034 2.9962 1.13e-07 0.00099232 0 2.4047 0 2.4047 2.9961 1.1301e-07 0.00097184 0 2.4102 0 2.4102 2.9956 1.1303e-07 0.00088993 0 2.4318 0 2.4318 2.9939 1.1311e-07 0.00063993 0 2.4979 0 2.4979 2.9912 1.1318e-07 0.00038993 0 2.564 0 2.564 2.9899 1.1329e-07 0 0 2.6671 0 2.6671 2.9885 1.1334e-07 -8.6693e-05 0 2.7122 0 2.7122 2.9881 1.1344e-07 -0.00024664 0 2.7954 0 2.7954 2.9876 1.1353e-07 -0.00040659 0 2.8786 0 2.8786 2.9873 1.1366e-07 -0.00063979 0 3 0 3 2.987 1.1371e-07 -0.00072648 0 3 0 3 2.9875 1.1381e-07 -0.00089987 0 3 0 3 2.9893 1.1421e-07 -0.0015934 0 3 0 3 2.9959 1.147e-07 -0.0024335 0 3 0 3 2.9987 1.152e-07 -0.0033004 0 3 0 3 2.9994 1.156e-07 -0.004 0 3 0 3 2.9994 1.1562e-07 -0.006 0 3 0 3 2.9995 1.1563e-07 -0.008 0 3 0 3 2.9994 1.1566e-07 -0.012 0 3 0 3 2.9995 1.1567e-07 -0.0125 0 3 0 3 2.9995 1.1568e-07 -0.013 0 3 0 3 2.9995 1.157e-07 -0.014 0 3 0 3 2.9995 1.1572e-07 -0.0098536 0 3 0 3 2.9995 1.1574e-07 -0.0053536 0 3 0 3 2.9995 1.1575e-07 -0.00085357 0 3 0 3 2.9995 1.1577e-07 0.004 0 3 0 3 2.9995 1.1579e-07 0.01475 0 3 0 3 2.9995 1.158e-07 0.0255 0 3 0 3 2.9995 1.1581e-07 0.03625 0 3 0 3 2.9995 1.1582e-07 0.047 0 3 0 3 2.9994 1.1584e-07 0.07025 0 3 0 3 2.9995 1.1586e-07 0.11675 0 3 0 3 2.9995 1.1589e-07 0.16325 0 3 0 3 2.9995 1.1592e-07 0.233 0 3 0 3 2.9995 1.1594e-07 0.289 0 3 0 3 2.9995 1.1596e-07 0.345 0 3 0 3 2.9995 1.1599e-07 0.457 0 3 0 3 2.9995 1.1599e-07 0.4605 0 3 0 3 2.9995 1.16e-07 0.464 0 3 0 3 2.9995 1.16e-07 0.471 0 3 0 3 2.9994 1.16e-07 0.47375 0 3 0 3 2.9994 1.16e-07 0.4765 0 3 0 3 2.9994 1.16e-07 0.482 0 3 0 3 2.9994 1.16e-07 0.48582 0 3 0 3 2.9994 1.16e-07 0.49345 0 3 0 3 2.9994 1.1601e-07 0.52399 0 3 0 3 2.9994 1.1604e-07 0.61899 0 3 0 3 2.9995 1.1607e-07 0.71399 0 3 0 3 2.9995 1.1611e-07 0.862 0 3 0 3 2.9995 1.1613e-07 0.91575 0 3 0 3 2.9995 1.1615e-07 0.9695 0 3 0 3 2.9995 1.1617e-07 1.0232 0 3 0 3 2.9995 1.1619e-07 1.077 0 3 0 3 2.9995 1.162e-07 1.1072 0 3 0 3 2.9995 1.1621e-07 1.1375 0 3 0 3 2.9995 1.1623e-07 1.1678 0 3 0 3 2.9995 1.1624e-07 1.198 0 3 0 3 2.9995 1.1625e-07 1.2175 0 3 0 3 2.9995 1.1625e-07 1.237 0 3 0 3 2.9995 1.1627e-07 1.276 0 3 0 3 2.9995 1.1628e-07 1.298 0 3 0 3 2.9995 1.1629e-07 1.32 0 3 0 3 2.9995 1.1632e-07 1.364 0 3 0 3 2.9995 1.1633e-07 1.3802 0 3 0 3 2.9995 1.1634e-07 1.3965 0 3 0 3 2.9995 1.1634e-07 1.4128 0 3 0 3 2.9995 1.1635e-07 1.429 0 3 0 3 2.9995 1.1636e-07 1.4447 0 3 0 3 2.9995 1.1637e-07 1.4605 0 3 0 3 2.9995 1.1638e-07 1.4763 0 3 0 3 2.9995 1.1638e-07 1.492 0 3 0 3 2.9995 1.1639e-07 1.503 0 3 0 3 2.9995 1.164e-07 1.514 0 3 0 3 2.9995 1.164e-07 1.525 0 3 0 3 2.9994 1.1641e-07 1.536 0 3 0 3 2.9995 1.1641e-07 1.5416 0 3 0 3 2.9995 1.1642e-07 1.5496 0 3 0 3 2.9995 1.1643e-07 1.5576 0 3 0 3 2.9995 1.1644e-07 1.568 0 3 0 3 2.9995 1.1645e-07 1.5757 0 3 0 3 2.9995 1.1645e-07 1.5835 0 3 0 3 2.9995 1.1646e-07 1.599 0 3 0 3 2.9995 1.1647e-07 1.61 0 3 0 3 2.9995 1.1647e-07 1.621 0 3 0 3 2.9995 1.1648e-07 1.643 0 3 0 3 2.9995 1.1649e-07 1.6508 0 3 0 3 2.9995 1.1649e-07 1.6585 0 3 0 3 2.9995 1.165e-07 1.674 0 3 0 3 2.9995 1.1651e-07 1.6858 0 3 0 3 2.9995 1.1651e-07 1.7011 0 3 0 3 2.9995 1.1652e-07 1.7163 0 3 0 3 2.9995 1.1653e-07 1.735 0 3 0 3 2.9995 1.1654e-07 1.7472 0 3 0 3 2.9995 1.1654e-07 1.7595 0 3 0 3 2.9995 1.1655e-07 1.784 0 3 0 3 2.9995 1.1656e-07 1.8023 0 3 0 3 2.9995 1.1658e-07 1.8373 0 3 0 3 2.9995 1.1659e-07 1.8723 0 3 0 3 2.9995 1.1662e-07 1.924 0 3 0 3 2.9995 1.1663e-07 1.9473 0 3 0 3 2.9995 1.1664e-07 1.9705 0 3 0 3 2.9995 1.1665e-07 1.9937 0 3 0 3 2.9995 1.1666e-07 2.017 0 3 0 3 2.9995 1.1667e-07 2.0376 0 3 0 3 2.9995 1.1669e-07 2.0788 0 3 0 3 2.9995 1.1672e-07 2.1265 0 3 0 3 2.9995 1.1676e-07 2.208 0 3 0 3 2.9995 1.1678e-07 2.2362 0 3 0 3 2.9995 1.168e-07 2.2645 0 3 0 3 2.9995 1.1682e-07 2.2927 0 3 0 3 2.9995 1.1683e-07 2.321 0 3 0 3 2.9995 1.1685e-07 2.3496 0 3 0 3 2.9995 1.1688e-07 2.3881 0 3 0 3 2.9995 1.169e-07 2.4266 0 3 0 3 2.9995 1.1693e-07 2.475 0 3 0 3 2.9995 1.1695e-07 2.4992 0 3 0 3 2.9995 1.1697e-07 2.5235 0 3 0 3 2.9995 1.1698e-07 2.5477 0 3 0 3 2.9995 1.17e-07 2.572 0 3 0 3 2.9995 1.1702e-07 2.59 0 3 0 3 2.9995 1.1705e-07 2.6193 0 3 0 3 2.9995 1.1707e-07 2.6485 0 3 0 3 2.9995 1.1711e-07 2.689 0 3 0 3 2.9995 1.1713e-07 2.7037 0 3 0 3 2.9995 1.1715e-07 2.7185 0 3 0 3 2.9995 1.1717e-07 2.7332 0 3 0 3 2.9995 1.1719e-07 2.748 0 3 0 3 2.9995 1.1721e-07 2.7589 0 3 0 3 2.9995 1.1725e-07 2.7807 0 3 0 3 2.9995 1.1729e-07 2.8024 0 3 0 3 2.9995 1.1735e-07 2.835 0 3 0 3 2.9995 1.1738e-07 2.845 0 3 0 3 2.9995 1.1741e-07 2.855 0 3 0 3 2.9995 1.1744e-07 2.865 0 3 0 3 2.9995 1.1746e-07 2.875 0 3 0 3 2.9995 1.1747e-07 2.8765 0 3 0 3 2.9995 1.1747e-07 2.878 0 3 0 3 2.9995 1.1748e-07 2.8795 0 3 0 3 2.9995 1.1749e-07 2.881 0 3 0 3 2.9995 1.1749e-07 2.882 0 3 0 3 2.9995 1.1749e-07 2.883 0 3 0 3 2.9995 1.175e-07 2.884 0 3 0 3 2.9995 1.175e-07 2.885 0 3 0 3 2.9995 1.175e-07 2.8858 0 3 0 3 2.9995 1.1751e-07 2.8873 0 3 0 3 2.9995 1.1754e-07 2.8934 0 3 0 3 2.9995 1.1761e-07 2.9072 0 3 0 3 2.9995 1.1768e-07 2.9209 0 3 0 3 2.9995 1.1777e-07 2.94 0 3 0 3 2.9996 1.1782e-07 2.9457 0 3 0 3 2.9996 1.1786e-07 2.9515 0 3 0 3 2.9997 1.1796e-07 2.963 0 3 0 3 2.9996 1.1797e-07 2.9635 0 3 0 3 2.9996 1.1797e-07 2.964 0 3 0 3 2.9996 1.1798e-07 2.9645 0 3 0 3 2.9996 1.1798e-07 2.965 0 3 0 3 2.9996 1.1799e-07 2.9653 0 3 0 3 2.9996 1.1799e-07 2.9655 0 3 0 3 2.9996 1.18e-07 2.9657 0 3 0 3 2.9996 1.18e-07 2.966 0 3 0 3 2.9996 1.18e-07 2.9663 0 3 0 3 2.9996 1.1801e-07 2.9668 0 3 0 3 2.9996 1.1805e-07 2.9689 0 3 0 3 2.9996 1.1812e-07 2.9734 0 3 0 3 2.9997 1.1819e-07 2.9779 0 3 0 3 2.9997 1.1829e-07 2.984 0 3 0 3 2.9997 1.1834e-07 2.9854 0 3 0 3 2.9997 1.1839e-07 2.9869 0 3 0 3 2.9997 1.1845e-07 2.9884 0 3 0 3 2.9996 1.185e-07 2.99 0 3 0 3 2.9997 1.1855e-07 2.9909 0 3 0 3 2.9997 1.1862e-07 2.9921 0 3 0 3 2.9997 1.187e-07 2.9934 0 3 0 3 2.9997 1.1879e-07 2.995 0 3 0 3 2.9997 1.1884e-07 2.9955 0 3 0 3 2.9997 1.1889e-07 2.996 0 3 0 3 2.9997 1.1895e-07 2.9965 0 3 0 3 2.9997 1.19e-07 2.997 0 3 0 3 2.9996 1.1905e-07 2.9971 0 3 0 3 2.9997 1.1915e-07 2.9975 0 3 0 3 2.9997 1.194e-07 2.9982 0 3 0 3 2.9997 1.1965e-07 2.999 0 3 0 3 2.9997 1.2e-07 3 0 3 0 3 2.9998 1.2005e-07 2.9999 0 3 0 3 2.9997 1.2015e-07 2.9997 0 3 0 3 2.9997 1.2029e-07 2.9995 0 3 0 3 2.9997 1.2056e-07 2.999 0 3 0 3 2.9998 1.2057e-07 2.9995 0 3 0 3 2.9997 1.2058e-07 3 0 3 0 3 2.9997 1.2059e-07 3.0005 0 3 0 3 2.9997 1.206e-07 3.001 0 3 0 3 2.9997 1.2061e-07 3.0021 0 3 0 3 2.9997 1.2063e-07 3.0039 0 3 0 3 2.9997 1.2064e-07 3.0056 0 3 0 3 2.9997 1.2066e-07 3.008 0 3 0 3 2.9997 1.2067e-07 3.0092 0 3 0 3 2.9997 1.2069e-07 3.0105 0 3 0 3 2.9997 1.2071e-07 3.013 0 3 0 3 2.9997 1.2072e-07 3.0124 0 3 0 3 2.9997 1.2074e-07 3.0117 0 3 0 3 2.9997 1.2076e-07 3.0109 0 3 0 3 2.9997 1.2079e-07 3.01 0 3 0 3 2.9997 1.208e-07 3.0055 0 3 0 3 2.9997 1.2082e-07 3.001 0 3 0 3 2.9997 1.2083e-07 2.9965 0 3 0 3 2.9997 1.2085e-07 2.992 0 3 0 3 2.9997 1.2086e-07 2.9811 0 3 0 3 2.9997 1.2088e-07 2.9643 0 3 0 3 2.9997 1.2091e-07 2.9476 0 3 0 3 2.9997 1.2094e-07 2.925 0 3 0 3 2.9997 1.2095e-07 2.9037 0 3 0 3 2.9997 1.2097e-07 2.8825 0 3 0 3 2.9997 1.2098e-07 2.8612 0 3 0 3 2.9997 1.21e-07 2.84 0 3 0 3 2.9997 1.2102e-07 2.8068 0 3 0 3 2.9997 1.2103e-07 2.7721 0 3 0 3 2.9997 1.2105e-07 2.7373 0 3 0 3 2.9997 1.2107e-07 2.701 0 3 0 3 2.9997 1.2108e-07 2.6667 0 3 0 3 2.9997 1.2109e-07 2.6325 0 3 0 3 2.9997 1.211e-07 2.5982 0 3 0 3 2.9997 1.2111e-07 2.564 0 3 0 3 2.9997 1.2112e-07 2.521 0 3 0 3 2.9997 1.2114e-07 2.4603 0 3 0 3 2.9997 1.2116e-07 2.3995 0 3 0 3 2.9997 1.2118e-07 2.321 0 3 0 3 2.9997 1.2119e-07 2.2795 0 3 0 3 2.9997 1.212e-07 2.238 0 3 0 3 2.9997 1.2122e-07 2.155 0 3 0 3 2.9997 1.2124e-07 2.0833 0 3 0 3 2.9997 1.2126e-07 2.009 0 3 0 3 2.9997 1.2128e-07 1.9348 0 3 0 3 2.9997 1.213e-07 1.858 0 3 0 3 2.9997 1.2131e-07 1.8053 0 3 0 3 2.9997 1.2132e-07 1.7525 0 3 0 3 2.9997 1.2135e-07 1.647 0 3 0 3 2.9997 1.2137e-07 1.578 0 3 0 3 2.9997 1.2139e-07 1.509 0 3 0 3 2.9997 1.214e-07 1.44 0 3 0 3 2.9997 1.2142e-07 1.371 0 3 0 3 2.9997 1.2143e-07 1.3175 0 3 0 3 2.9997 1.2145e-07 1.264 0 3 0 3 2.9997 1.2147e-07 1.157 0 3 0 3 2.9997 1.2148e-07 1.1375 0 3 0 3 2.9997 1.2148e-07 1.118 0 3 0 3 2.9997 1.2149e-07 1.0985 0 3 0 3 2.9997 1.2149e-07 1.079 0 3 0 3 2.9997 1.2149e-07 1.067 0 3 0 3 2.9997 1.2149e-07 1.055 0 3 0 3 2.9997 1.215e-07 1.043 0 3 0 3 2.9997 1.215e-07 1.031 0 3 0 3 2.9997 1.215e-07 1.0211 0 3 0 3 2.9997 1.2151e-07 1.0031 0 3 0 3 2.9997 1.2151e-07 0.9851 0 3 0 3 2.9997 1.2152e-07 0.959 0 3 0 3 2.9997 1.2152e-07 0.95375 0 3 0 3 2.9997 1.2153e-07 0.9485 0 3 0 3 2.9997 1.2153e-07 0.94325 0 3 0 3 2.9997 1.2153e-07 0.938 0 3 0 3 2.9997 1.2154e-07 0.93202 0 3 0 3 2.9997 1.2154e-07 0.92177 0 3 0 3 2.9997 1.2155e-07 0.91152 0 3 0 3 2.9997 1.2156e-07 0.897 0 3 0 3 2.9997 1.2156e-07 0.89325 0 3 0 3 2.9997 1.2157e-07 0.8895 0 3 0 3 2.9997 1.2157e-07 0.882 0 3 0 3 2.9997 1.2158e-07 0.86925 0 3 0 3 2.9997 1.2159e-07 0.85575 0 3 0 3 2.9997 1.2159e-07 0.84225 0 3 0 3 2.9997 1.216e-07 0.828 0 3 0 3 2.9997 1.2161e-07 0.8165 0 3 0 3 2.9997 1.2161e-07 0.805 0 3 0 3 2.9997 1.2162e-07 0.7935 0 3 0 3 2.9997 1.2162e-07 0.782 0 3 0 3 2.9997 1.2163e-07 0.76988 0 3 0 3 2.9997 1.2164e-07 0.74988 0 3 0 3 2.9997 1.2164e-07 0.72988 0 3 0 3 2.9997 1.2166e-07 0.702 0 3 0 3 2.9997 1.2166e-07 0.68875 0 3 0 3 2.9997 1.2167e-07 0.6755 0 3 0 3 2.9997 1.2168e-07 0.649 0 3 0 3 2.9997 1.2169e-07 0.62724 0 3 0 3 2.9997 1.217e-07 0.58674 0 3 0 3 2.9997 1.2172e-07 0.54624 0 3 0 3 2.9997 1.2175e-07 0.487 0 3 0 3 2.9997 1.2176e-07 0.46275 0 3 0 3 2.9997 1.2177e-07 0.4385 0 3 0 3 2.9997 1.2179e-07 0.39 0 3 0 3 2.9997 1.2181e-07 0.362 0 3 0 3 2.9997 1.2183e-07 0.334 0 3 0 3 2.9997 1.2186e-07 0.278 0 3 0 3 2.9997 1.2188e-07 0.26375 0 3 0 3 2.9997 1.2189e-07 0.2495 0 3 0 3 2.9997 1.219e-07 0.23525 0 3 0 3 2.9997 1.2191e-07 0.221 0 3 0 3 2.9997 1.2192e-07 0.20993 0 3 0 3 2.9997 1.2194e-07 0.19818 0 3 0 3 2.9997 1.2195e-07 0.18643 0 3 0 3 2.9997 1.2196e-07 0.174 0 3 0 3 2.9997 1.2197e-07 0.1675 0 3 0 3 2.9997 1.2198e-07 0.161 0 3 0 3 2.9997 1.2199e-07 0.1545 0 3 0 3 2.9997 1.22e-07 0.148 0 3 0 3 2.9997 1.2201e-07 0.1435 0 3 0 3 2.9997 1.2203e-07 0.1345 0 3 0 3 2.9997 1.2206e-07 0.1195 0 3 0 3 2.9997 1.2209e-07 0.1045 0 3 0 3 2.9997 1.2212e-07 0.088 0 3 0 3 2.9997 1.2214e-07 0.081 0 3 0 3 2.9997 1.2216e-07 0.074 0 3 0 3 2.9997 1.2218e-07 0.067 0 3 0 3 2.9997 1.222e-07 0.06 0 3 0 3 2.9997 1.2223e-07 0.056069 0 3 0 3 2.9997 1.2227e-07 0.048208 0 3 0 3 2.9997 1.2231e-07 0.040208 0 3 0 3 2.9997 1.2238e-07 0.028 0 3 0 3 2.9997 1.2241e-07 0.02475 0 3 0 3 2.9997 1.2244e-07 0.0215 0 3 0 3 2.9997 1.2247e-07 0.01825 0 3 0 3 2.9997 1.225e-07 0.015 0 3 0 3 2.9997 1.2253e-07 0.013855 0 3 0 3 2.9997 1.2259e-07 0.011565 0 3 0 3 2.9997 1.2266e-07 0.0088148 0 3 0 3 2.9997 1.2279e-07 0.004 0 3 0 3 2.9997 1.2284e-07 0.0032754 0 3 0 3 2.9997 1.2289e-07 0.0025254 0 3 0 3 2.9997 1.2295e-07 0.0017754 0 3 0 3 2.9997 1.23e-07 0.001 0 3 0 3 2.9997 1.2305e-07 0.00082935 0 3 0 3 2.9997 1.2312e-07 0.00057935 0 3 0 3 2.9997 1.232e-07 0.00032935 0 3 0 3 2.9997 1.2329e-07 0 0 3 0 3 2.9997 1.2334e-07 -8.6693e-05 0 3 0 3 2.9997 1.2344e-07 -0.00026008 0 3 0 3 2.9997 1.2384e-07 -0.00095362 0 3 0 3 2.9998 1.2434e-07 -0.0018205 0 3 0 3 2.9998 1.2484e-07 -0.0026875 0 3 0 3 2.9999 1.2534e-07 -0.0035544 0 3 0 3 2.9998 1.256e-07 -0.004 0 3 0 3 2.9999 1.2562e-07 -0.006 0 3 0 3 2.9998 1.2563e-07 -0.008 0 3 0 3 2.9998 1.2565e-07 -0.01 0 3 0 3 2.9998 1.2566e-07 -0.012 0 3 0 3 2.9998 1.2567e-07 -0.0125 0 3 0 3 2.9998 1.2568e-07 -0.013 0 3 0 3 2.9998 1.257e-07 -0.014 0 3 0 3 2.9998 1.2572e-07 -0.0098536 0 3 0 3 2.9998 1.2574e-07 -0.0053536 0 3 0 3 2.9998 1.2575e-07 -0.00085357 0 3 0 3 2.9998 1.2577e-07 0.004 0 3 0 3 2.9998 1.2579e-07 0.01475 0 3 0 3 2.9998 1.258e-07 0.0255 0 3 0 3 2.9998 1.2581e-07 0.03625 0 3 0 3 2.9998 1.2582e-07 0.047 0 3 0 3 2.9998 1.2584e-07 0.07025 0 3 0 3 2.9998 1.2586e-07 0.11675 0 3 0 3 2.9998 1.2589e-07 0.16325 0 3 0 3 2.9998 1.2592e-07 0.233 0 3 0 3 2.9998 1.2594e-07 0.289 0 3 0 3 2.9998 1.2596e-07 0.345 0 3 0 3 2.9998 1.2598e-07 0.401 0 3 0 3 2.9998 1.2599e-07 0.457 0 3 0 3 2.9998 1.2599e-07 0.4605 0 3 0 3 2.9998 1.26e-07 0.464 0 3 0 3 2.9998 1.26e-07 0.4675 0 3 0 3 2.9998 1.26e-07 0.471 0 3 0 3 2.9998 1.26e-07 0.47375 0 3 0 3 2.9998 1.26e-07 0.4765 0 3 0 3 2.9998 1.26e-07 0.47925 0 3 0 3 2.9998 1.26e-07 0.482 0 3 0 3 2.9998 1.26e-07 0.48454 0 3 0 3 2.9998 1.26e-07 0.48963 0 3 0 3 2.9998 1.2601e-07 0.50999 0 3 0 3 2.9998 1.2603e-07 0.59142 0 3 0 3 2.9998 1.2606e-07 0.68642 0 3 0 3 2.9998 1.2611e-07 0.862 0 3 0 3 2.9998 1.2613e-07 0.91575 0 3 0 3 2.9998 1.2615e-07 0.9695 0 3 0 3 2.9998 1.2619e-07 1.077 0 3 0 3 2.9998 1.262e-07 1.1072 0 3 0 3 2.9998 1.2621e-07 1.1375 0 3 0 3 2.9998 1.2624e-07 1.198 0 3 0 3 2.9998 1.2625e-07 1.2175 0 3 0 3 2.9998 1.2625e-07 1.237 0 3 0 3 2.9998 1.2626e-07 1.2565 0 3 0 3 2.9998 1.2627e-07 1.276 0 3 0 3 2.9998 1.2628e-07 1.2914 0 3 0 3 2.9998 1.2629e-07 1.3134 0 3 0 3 2.9998 1.263e-07 1.3354 0 3 0 3 2.9998 1.2632e-07 1.364 0 3 0 3 2.9998 1.2633e-07 1.3802 0 3 0 3 2.9998 1.2633e-07 1.3965 0 3 0 3 2.9998 1.2634e-07 1.4128 0 3 0 3 2.9998 1.2635e-07 1.429 0 3 0 3 2.9998 1.2636e-07 1.4447 0 3 0 3 2.9998 1.2637e-07 1.4605 0 3 0 3 2.9998 1.2638e-07 1.492 0 3 0 3 2.9998 1.2639e-07 1.503 0 3 0 3 2.9998 1.264e-07 1.514 0 3 0 3 2.9998 1.264e-07 1.525 0 3 0 3 2.9998 1.2641e-07 1.536 0 3 0 3 2.9998 1.2641e-07 1.5416 0 3 0 3 2.9998 1.2642e-07 1.5496 0 3 0 3 2.9998 1.2643e-07 1.5576 0 3 0 3 2.9998 1.2644e-07 1.568 0 3 0 3 2.9998 1.2645e-07 1.5757 0 3 0 3 2.9998 1.2645e-07 1.5835 0 3 0 3 2.9998 1.2646e-07 1.5912 0 3 0 3 2.9998 1.2646e-07 1.599 0 3 0 3 2.9998 1.2647e-07 1.61 0 3 0 3 2.9998 1.2647e-07 1.621 0 3 0 3 2.9998 1.2648e-07 1.632 0 3 0 3 2.9998 1.2648e-07 1.643 0 3 0 3 2.9998 1.2649e-07 1.6508 0 3 0 3 2.9998 1.2649e-07 1.6585 0 3 0 3 2.9998 1.265e-07 1.6662 0 3 0 3 2.9998 1.265e-07 1.674 0 3 0 3 2.9998 1.265e-07 1.6819 0 3 0 3 2.9998 1.2651e-07 1.6971 0 3 0 3 2.9998 1.2652e-07 1.7124 0 3 0 3 2.9998 1.2653e-07 1.735 0 3 0 3 2.9998 1.2654e-07 1.7472 0 3 0 3 2.9998 1.2654e-07 1.7595 0 3 0 3 2.9998 1.2655e-07 1.7717 0 3 0 3 2.9998 1.2655e-07 1.784 0 3 0 3 2.9998 1.2656e-07 1.7962 0 3 0 3 2.9998 1.2657e-07 1.8207 0 3 0 3 2.9998 1.2659e-07 1.8557 0 3 0 3 2.9998 1.2662e-07 1.924 0 3 0 3 2.9998 1.2663e-07 1.9473 0 3 0 3 2.9998 1.2664e-07 1.9705 0 3 0 3 2.9998 1.2666e-07 2.017 0 3 0 3 2.9998 1.2668e-07 2.0479 0 3 0 3 2.9998 1.267e-07 2.0956 0 3 0 3 2.9998 1.2673e-07 2.1434 0 3 0 3 2.9998 1.2676e-07 2.208 0 3 0 3 2.9998 1.2678e-07 2.2362 0 3 0 3 2.9998 1.268e-07 2.2645 0 3 0 3 2.9998 1.2682e-07 2.2927 0 3 0 3 2.9998 1.2683e-07 2.321 0 3 0 3 2.9998 1.2685e-07 2.3496 0 3 0 3 2.9998 1.2688e-07 2.3881 0 3 0 3 2.9998 1.269e-07 2.4266 0 3 0 3 2.9998 1.2693e-07 2.475 0 3 0 3 2.9998 1.2695e-07 2.4992 0 3 0 3 2.9998 1.2697e-07 2.5235 0 3 0 3 2.9998 1.2698e-07 2.5477 0 3 0 3 2.9998 1.27e-07 2.572 0 3 0 3 2.9998 1.2702e-07 2.59 0 3 0 3 2.9998 1.2705e-07 2.6193 0 3 0 3 2.9998 1.2707e-07 2.6485 0 3 0 3 2.9998 1.2711e-07 2.689 0 3 0 3 2.9998 1.2713e-07 2.7037 0 3 0 3 2.9998 1.2715e-07 2.7185 0 3 0 3 2.9998 1.2717e-07 2.7332 0 3 0 3 2.9998 1.2719e-07 2.748 0 3 0 3 2.9998 1.2721e-07 2.7589 0 3 0 3 2.9998 1.2725e-07 2.7807 0 3 0 3 2.9998 1.2729e-07 2.8024 0 3 0 3 2.9998 1.2735e-07 2.835 0 3 0 3 2.9998 1.2738e-07 2.845 0 3 0 3 2.9998 1.2741e-07 2.855 0 3 0 3 2.9998 1.2744e-07 2.865 0 3 0 3 2.9998 1.2746e-07 2.875 0 3 0 3 2.9998 1.2747e-07 2.8765 0 3 0 3 2.9998 1.2747e-07 2.878 0 3 0 3 2.9998 1.2748e-07 2.8795 0 3 0 3 2.9998 1.2748e-07 2.881 0 3 0 3 2.9998 1.2749e-07 2.882 0 3 0 3 2.9998 1.2749e-07 2.883 0 3 0 3 2.9998 1.275e-07 2.884 0 3 0 3 2.9998 1.275e-07 2.885 0 3 0 3 2.9998 1.275e-07 2.8858 0 3 0 3 2.9998 1.2751e-07 2.8873 0 3 0 3 2.9998 1.2754e-07 2.8934 0 3 0 3 2.9998 1.2761e-07 2.9072 0 3 0 3 2.9998 1.2768e-07 2.9209 0 3 0 3 2.9998 1.2777e-07 2.94 0 3 0 3 2.9999 1.2782e-07 2.9457 0 3 0 3 2.9999 1.2786e-07 2.9515 0 3 0 3 2.9998 1.2791e-07 2.9573 0 3 0 3 2.9998 1.2796e-07 2.963 0 3 0 3 2.9998 1.2797e-07 2.9635 0 3 0 3 2.9998 1.2797e-07 2.964 0 3 0 3 2.9998 1.2798e-07 2.9645 0 3 0 3 2.9998 1.2798e-07 2.965 0 3 0 3 2.9998 1.2799e-07 2.9653 0 3 0 3 2.9998 1.2799e-07 2.9655 0 3 0 3 2.9998 1.28e-07 2.9657 0 3 0 3 2.9998 1.28e-07 2.966 0 3 0 3 2.9998 1.28e-07 2.9663 0 3 0 3 2.9998 1.2801e-07 2.9668 0 3 0 3 2.9998 1.2805e-07 2.9689 0 3 0 3 2.9998 1.2812e-07 2.9734 0 3 0 3 2.9998 1.2819e-07 2.9779 0 3 0 3 2.9998 1.2829e-07 2.984 0 3 0 3 2.9999 1.2834e-07 2.9854 0 3 0 3 2.9999 1.2839e-07 2.9869 0 3 0 3 2.9998 1.2845e-07 2.9884 0 3 0 3 2.9998 1.285e-07 2.99 0 3 0 3 2.9998 1.2855e-07 2.9909 0 3 0 3 2.9999 1.2862e-07 2.9921 0 3 0 3 2.9999 1.287e-07 2.9934 0 3 0 3 2.9999 1.2879e-07 2.995 0 3 0 3 2.9999 1.2884e-07 2.9955 0 3 0 3 2.9999 1.2889e-07 2.996 0 3 0 3 2.9998 1.2895e-07 2.9965 0 3 0 3 2.9998 1.29e-07 2.997 0 3 0 3 2.9998 1.2905e-07 2.9971 0 3 0 3 2.9999 1.2915e-07 2.9975 0 3 0 3 2.9999 1.294e-07 2.9982 0 3 0 3 2.9999 1.2965e-07 2.999 0 3 0 3 2.9999 1.3e-07 3 0 3 0 3 2.9999 gwave2-20170109/examples/Readme0000644001226200000360000000170413034766135013037 00000000000000 example data files for demonstrating/testing gwave. name format description aoi.W cazm and-or-invert gate transient aoi.W.tr0 hspice and-or-invert gate transient lpf.ac0 hspice low pass filter nand.N.tr0 hspice nand gate transient nisrc.N.sw0 hspice nfet current source dc sweep pd1.N.tr0 hspice differential driver, transient pd2.N cazm differential driver, transient quickAC.ac0 hspice quickINV.tr0 hspice quickTRAN.tr0 hspice test1.tr0.binary hspice binary tlong.tr0.9601 hspice, new format tpwl.acs ACS transient rcsq.raw spice3 ascii squarewave into RC lowpass, transient diffpair.braw spice3 binary A few of the examples now include the source file that generated them: file: command to run: rcsq.sp SPICE_ASCIIRAWFILE=1 ngspice -r rcsq.raw -b rcsq.sp diffpair.sp ngspice -r diffpair.braw -b diffpair.sp lpf.sp hspice lpf.sp rlc.sp SPICE_ASCIIRAWFILE=1 ngspice -b -r rlc.raw rlc.sp ngspice -b -r rlc.braw rlc.sp gwave2-20170109/examples/nand.N.tr00000644001226200000360000017415513034766135013475 0000000000000000010004000000009601 * dospice hspice deck from nand.cmd+nand.gfa+nand.gloads 06/29/9912:39:15 Copyright (C) 1985-1997 by Avant! Corporation. 0 1 1 1 1 1 TIME v(clk v(a v(b v(y $&%# 0.00000E+000.25000E+010.00000E+000.00000E+000.25000E+010.25000E-100.25000E+01 0.00000E+000.00000E+000.25000E+010.50000E-100.25000E+010.00000E+000.00000E+00 0.25000E+010.14250E-090.25000E+010.00000E+000.00000E+000.25000E+010.23500E-09 0.25000E+010.00000E+000.00000E+000.25000E+010.37000E-090.25000E+010.00000E+00 0.00000E+000.25000E+010.39500E-090.25005E+010.00000E+000.00000E+000.25000E+01 0.42000E-090.25010E+010.00000E+000.00000E+000.25000E+010.47000E-090.25020E+01 0.00000E+000.00000E+000.25000E+010.48250E-090.25040E+010.00000E+000.00000E+00 0.25000E+010.49500E-090.25060E+010.00000E+000.00000E+000.25000E+010.50750E-09 0.25080E+010.00000E+000.00000E+000.25000E+010.52000E-090.25100E+010.00000E+00 0.00000E+000.25000E+010.53250E-090.25092E+010.00000E+000.00000E+000.25000E+01 0.54500E-090.25085E+010.00000E+000.00000E+000.25000E+010.55750E-090.25078E+01 0.00000E+000.00000E+000.25000E+010.57000E-090.25070E+010.00000E+000.00000E+00 0.25000E+010.58250E-090.24955E+010.00000E+000.00000E+000.25000E+010.60125E-09 0.24519E+010.00000E+000.00000E+000.25000E+010.62000E-090.23885E+010.00000E+00 0.00000E+000.25000E+010.64500E-090.23040E+010.00000E+000.00000E+000.25000E+01 0.66687E-090.21426E+010.00000E+000.00000E+000.25000E+010.71063E-090.17877E+01 0.00000E+000.00000E+000.25000E+010.78563E-090.10270E+010.00000E+000.00000E+00 0.25000E+010.86063E-090.50719E+000.00000E+000.00000E+000.25000E+010.94500E-09 0.85000E-010.00000E+000.00000E+000.25000E+010.95750E-090.67750E-010.00000E+00 0.00000E+000.25000E+010.97000E-090.50500E-010.00000E+000.00000E+000.25000E+01 0.98250E-090.33250E-010.00000E+000.00000E+000.25000E+010.99500E-090.16000E-01 0.00000E+000.00000E+000.25000E+010.10075E-080.13250E-010.00000E+000.00000E+00 0.25000E+010.10325E-080.77500E-020.00000E+000.00000E+000.25000E+010.10575E-08 0.40000E-020.00000E+000.00000E+000.25000E+010.10950E-080.10000E-020.00000E+00 0.00000E+000.25000E+010.11075E-080.10000E-020.00000E+000.00000E+000.25000E+01 0.11200E-080.10000E-020.00000E+000.00000E+000.25000E+010.11450E-080.10000E-02 0.00000E+000.00000E+000.25000E+010.11637E-080.81250E-030.00000E+000.00000E+00 0.25000E+010.11887E-080.56250E-030.00000E+000.00000E+000.25000E+010.12137E-08 0.31250E-030.00000E+000.00000E+000.25000E+010.12450E-080.00000E+000.00000E+00 0.00000E+000.25000E+010.12731E-080.37252E-040.00000E+000.00000E+000.25000E+01 0.13294E-080.11175E-030.00000E+000.00000E+000.25000E+010.15181E-080.36175E-03 0.00000E+000.00000E+000.25000E+010.17069E-080.61175E-030.00000E+000.00000E+00 0.25000E+010.20000E-080.10000E-020.00000E+000.00000E+000.25000E+010.20500E-08 0.76190E-030.00000E+000.00000E+000.25000E+010.21500E-080.28571E-030.00000E+00 0.00000E+000.25000E+010.22550E-08-.21429E-030.00000E+000.00000E+000.25000E+01 0.24200E-08-.10000E-020.00000E+000.00000E+000.25000E+010.24388E-08-.24792E-02 0.00000E+000.00000E+000.25000E+010.24575E-08-.42500E-020.00000E+000.00000E+00 0.25000E+010.24950E-08-.80000E-020.00000E+000.00000E+000.25000E+010.25075E-08 -.60000E-020.00000E+000.00000E+000.25000E+010.25200E-08-.40000E-020.00000E+00 0.00000E+000.25000E+010.25450E-080.00000E+000.00000E+000.00000E+000.25000E+01 0.25638E-080.28500E-010.00000E+000.00000E+000.25000E+010.25888E-080.66500E-01 0.00000E+000.00000E+000.25000E+010.26138E-080.17312E+000.00000E+000.00000E+00 0.25000E+010.26450E-080.33500E+000.00000E+000.00000E+000.25000E+010.26731E-08 0.58058E+000.00000E+000.00000E+000.25000E+010.27294E-080.10169E+010.00000E+00 0.00000E+000.25000E+010.28136E-080.15090E+010.00000E+000.00000E+000.25000E+01 0.29820E-080.23370E+010.00000E+000.00000E+000.25000E+010.30198E-080.23974E+01 0.00000E+000.00000E+000.25000E+010.30575E-080.24390E+010.00000E+000.00000E+00 0.25000E+010.31330E-080.24810E+010.00000E+000.00000E+000.25000E+010.31703E-08 0.24885E+010.00000E+000.00000E+000.25000E+010.32075E-080.24930E+010.00000E+00 0.00000E+000.25000E+010.32820E-080.24980E+010.00000E+000.00000E+000.25000E+01 0.32948E-080.24983E+010.00000E+000.00000E+000.25000E+010.33075E-080.24985E+01 0.00000E+000.00000E+000.25000E+010.33203E-080.24987E+010.00000E+000.00000E+00 0.25000E+010.33330E-080.24990E+010.00000E+000.00000E+000.25000E+010.33455E-08 0.24990E+010.00000E+000.00000E+000.25000E+010.33580E-080.24990E+010.00000E+00 0.00000E+000.25000E+010.33830E-080.24990E+010.00000E+000.00000E+000.25000E+01 0.33955E-080.24992E+010.00000E+000.00000E+000.25000E+010.34080E-080.24995E+01 0.00000E+000.00000E+000.25000E+010.34330E-080.25000E+010.00000E+000.00000E+00 0.25000E+010.34517E-080.25000E+010.00000E+000.00000E+000.25000E+010.34893E-08 0.25000E+010.00000E+000.00000E+000.25000E+010.36310E-080.25000E+010.00000E+00 0.00000E+000.25000E+010.37728E-080.25000E+010.00000E+000.00000E+000.25000E+01 0.40000E-080.25000E+010.00000E+000.00000E+000.25000E+010.40500E-080.25000E+01 0.00000E+000.00000E+000.25000E+010.41300E-080.25000E+010.00000E+000.00000E+00 0.25000E+010.42100E-080.25000E+010.00000E+000.00000E+000.25000E+010.43200E-08 0.25000E+010.00000E+000.00000E+000.25000E+010.43325E-080.25000E+010.00000E+00 0.00000E+000.25000E+010.43450E-080.25000E+010.00000E+000.00000E+000.25000E+01 0.43575E-080.25000E+010.00000E+000.00000E+000.25000E+010.43700E-080.25000E+01 0.00000E+000.00000E+000.25000E+010.43825E-080.25003E+010.00000E+000.00000E+00 0.25000E+010.44075E-080.25008E+010.00000E+000.00000E+000.25000E+010.44325E-08 0.25013E+010.00000E+000.00000E+000.25000E+010.44700E-080.25020E+010.00000E+00 0.00000E+000.25000E+010.44825E-080.25040E+010.00000E+000.00000E+000.25000E+01 0.44950E-080.25060E+010.00000E+000.00000E+000.25000E+010.45200E-080.25100E+01 0.00000E+000.00000E+000.25000E+010.45325E-080.25092E+010.00000E+000.00000E+00 0.25000E+010.45450E-080.25085E+010.00000E+000.00000E+000.25000E+010.45575E-08 0.25078E+010.00000E+000.00000E+000.25000E+010.45700E-080.25070E+010.00000E+00 0.00000E+000.25000E+010.45732E-080.25040E+010.00000E+000.00000E+000.25000E+01 0.45765E-080.25010E+010.00000E+000.00000E+000.25000E+010.45830E-080.24950E+01 0.00000E+000.00000E+000.25000E+010.45860E-080.24895E+010.00000E+000.00000E+00 0.25000E+010.45890E-080.24840E+010.00000E+000.00000E+000.25000E+010.45950E-08 0.24730E+010.00000E+000.00000E+000.25000E+010.45995E-080.24578E+010.00000E+00 0.00000E+000.25000E+010.46085E-080.24274E+010.00000E+000.00000E+000.25000E+01 0.46210E-080.23851E+010.00000E+000.00000E+000.25000E+010.46450E-080.23040E+01 0.00000E+000.00000E+000.25000E+010.46575E-080.22118E+010.00000E+000.00000E+00 0.25000E+010.46700E-080.21195E+010.00000E+000.00000E+000.25000E+010.46950E-08 0.19350E+010.00000E+000.00000E+000.25000E+010.46982E-080.19050E+010.00000E+00 0.00000E+000.25000E+010.47015E-080.18750E+010.00000E+000.00000E+000.25000E+01 0.47080E-080.18150E+010.00000E+000.00000E+000.25000E+010.47110E-080.17838E+01 0.00000E+000.00000E+000.25000E+010.47140E-080.17525E+010.00000E+000.00000E+00 0.25000E+010.47170E-080.17213E+010.00000E+000.00000E+000.25000E+010.47200E-08 0.16900E+010.00000E+000.00000E+000.25000E+010.47230E-080.16595E+010.00000E+00 0.00000E+000.25000E+010.47290E-080.15984E+010.00000E+000.00000E+000.25000E+01 0.47415E-080.14711E+010.00000E+000.00000E+000.25000E+010.47540E-080.13439E+01 0.00000E+000.00000E+000.25000E+010.47700E-080.11810E+010.00000E+000.00000E+00 0.25000E+010.47730E-080.11502E+010.00000E+000.00000E+000.25000E+010.47760E-08 0.11195E+010.00000E+000.00000E+000.25000E+010.47820E-080.10580E+010.00000E+00 0.00000E+000.25000E+010.47852E-080.10302E+010.00000E+000.00000E+000.25000E+01 0.47885E-080.10025E+010.00000E+000.00000E+000.25000E+010.47918E-080.97475E+00 0.00000E+000.00000E+000.25000E+010.47950E-080.94700E+000.00000E+000.00000E+00 0.25000E+010.47982E-080.92204E+000.00000E+000.00000E+000.25000E+010.48045E-08 0.87404E+000.00000E+000.00000E+000.25000E+010.48108E-080.82604E+000.00000E+00 0.00000E+000.25000E+010.48200E-080.75500E+000.00000E+000.00000E+000.25000E+01 0.48278E-080.70772E+000.00000E+000.00000E+000.25000E+010.48402E-080.63147E+00 0.00000E+000.00000E+000.25000E+010.48528E-080.55523E+000.00000E+000.00000E+00 0.25000E+010.48700E-080.45000E+000.00000E+000.00000E+000.25000E+010.48730E-08 0.43000E+000.00000E+000.00000E+000.25000E+010.48760E-080.41000E+000.00000E+00 0.00000E+000.25000E+010.48790E-080.39000E+000.00000E+000.00000E+000.25000E+01 0.48820E-080.37000E+000.00000E+000.00000E+000.25000E+010.48850E-080.35292E+00 0.00000E+000.00000E+000.25000E+010.48882E-080.33442E+000.00000E+000.00000E+00 0.25000E+010.48915E-080.31592E+000.00000E+000.00000E+000.25000E+010.48950E-08 0.29600E+000.00000E+000.00000E+000.25000E+010.48984E-080.28176E+000.00000E+00 0.00000E+000.25000E+010.49051E-080.25327E+000.00000E+000.00000E+000.25000E+01 0.49176E-080.20052E+000.00000E+000.00000E+000.25000E+010.49301E-080.14777E+00 0.00000E+000.00000E+000.25000E+010.49450E-080.85000E-010.00000E+000.00000E+00 0.25000E+010.49575E-080.67750E-010.00000E+000.00000E+000.25000E+010.49700E-08 0.50500E-010.00000E+000.00000E+000.25000E+010.49950E-080.16000E-010.00000E+00 0.00000E+000.25000E+010.50075E-080.13250E-010.00000E+000.00000E+000.25000E+01 0.50200E-080.10500E-010.00000E+000.00000E+000.25000E+010.50450E-080.50000E-02 0.00000E+000.00000E+000.25000E+010.50575E-080.40000E-020.00000E+000.00000E+00 0.25000E+010.50700E-080.30000E-020.00000E+000.00000E+000.25000E+010.50825E-08 0.20000E-020.00000E+000.00000E+000.25000E+010.50950E-080.10000E-020.00000E+00 0.00000E+000.25000E+010.51075E-080.10000E-020.00000E+000.00000E+000.25000E+01 0.51200E-080.10000E-020.00000E+000.00000E+000.25000E+010.51325E-080.10000E-02 0.00000E+000.00000E+000.25000E+010.51450E-080.10000E-020.00000E+000.00000E+00 0.25000E+010.51575E-080.87500E-030.00000E+000.00000E+000.25000E+010.51825E-08 0.62500E-030.00000E+000.00000E+000.25000E+010.52075E-080.37500E-030.00000E+00 0.00000E+000.25000E+010.52450E-080.00000E+000.00000E+000.00000E+000.25000E+01 0.52763E-080.41391E-040.00000E+000.00000E+000.25000E+010.53387E-080.12417E-03 0.00000E+000.00000E+000.25000E+010.55275E-080.37417E-030.00000E+000.00000E+00 0.25000E+010.57163E-080.62417E-030.00000E+000.00000E+000.25000E+010.60000E-08 0.10000E-020.00000E+000.00000E+000.25000E+010.60500E-080.76190E-030.00000E+00 0.00000E+000.25000E+010.61500E-080.28571E-030.00000E+000.00000E+000.25000E+01 0.62550E-08-.21429E-030.00000E+000.00000E+000.25000E+010.64200E-08-.10000E-02 0.00000E+000.00000E+000.25000E+010.64232E-08-.12500E-020.00000E+000.00000E+00 0.25000E+010.64265E-08-.15000E-020.00000E+000.00000E+000.25000E+010.64330E-08 -.20000E-020.00000E+000.00000E+000.25000E+010.64360E-08-.22500E-020.00000E+00 0.00000E+000.25000E+010.64390E-08-.25000E-020.00000E+000.00000E+000.25000E+01 0.64420E-08-.27500E-020.00000E+000.00000E+000.25000E+010.64450E-08-.30000E-02 0.00000E+000.00000E+000.25000E+010.64480E-08-.33000E-020.00000E+000.00000E+00 0.25000E+010.64540E-08-.39000E-020.00000E+000.00000E+000.25000E+010.64665E-08 -.51500E-020.00000E+000.00000E+000.25000E+010.64790E-08-.64000E-020.00000E+00 0.00000E+000.25000E+010.64950E-08-.80000E-020.00000E+000.00000E+000.25000E+01 0.65075E-08-.60000E-020.00000E+000.00000E+000.25000E+010.65200E-08-.40000E-02 0.00000E+000.00000E+000.25000E+010.65450E-080.00000E+000.00000E+000.00000E+00 0.25000E+010.65575E-080.19000E-010.00000E+000.00000E+000.25000E+010.65700E-08 0.38000E-010.00000E+000.00000E+000.25000E+010.65825E-080.57000E-010.00000E+00 0.00000E+000.25000E+010.65950E-080.76000E-010.00000E+000.00000E+000.25000E+01 0.66075E-080.14075E+000.00000E+000.00000E+000.25000E+010.66200E-080.20550E+00 0.00000E+000.00000E+000.25000E+010.66325E-080.27025E+000.00000E+000.00000E+00 0.25000E+010.66450E-080.33500E+000.00000E+000.00000E+000.25000E+010.66480E-08 0.36275E+000.00000E+000.00000E+000.25000E+010.66510E-080.39050E+000.00000E+00 0.00000E+000.25000E+010.66570E-080.44600E+000.00000E+000.00000E+000.25000E+01 0.66603E-080.47325E+000.00000E+000.00000E+000.25000E+010.66635E-080.50050E+00 0.00000E+000.00000E+000.25000E+010.66667E-080.52775E+000.00000E+000.00000E+00 0.25000E+010.66700E-080.55500E+000.00000E+000.00000E+000.25000E+010.66732E-08 0.58160E+000.00000E+000.00000E+000.25000E+010.66798E-080.63480E+000.00000E+00 0.00000E+000.25000E+010.66893E-080.71255E+000.00000E+000.00000E+000.25000E+01 0.67080E-080.86600E+000.00000E+000.00000E+000.25000E+010.67203E-080.95250E+00 0.00000E+000.00000E+000.25000E+010.67325E-080.10390E+010.00000E+000.00000E+00 0.25000E+010.67448E-080.11255E+010.00000E+000.00000E+000.25000E+010.67570E-08 0.12120E+010.00000E+000.00000E+000.25000E+010.67693E-080.12761E+010.00000E+00 0.00000E+000.25000E+010.67820E-080.13429E+010.00000E+000.00000E+000.25000E+01 0.67948E-080.14096E+010.00000E+000.00000E+000.25000E+010.68080E-080.14790E+01 0.00000E+000.00000E+000.25000E+010.68110E-080.14950E+010.00000E+000.00000E+00 0.25000E+010.68140E-080.15110E+010.00000E+000.00000E+000.25000E+010.68170E-08 0.15270E+010.00000E+000.00000E+000.25000E+010.68200E-080.15430E+010.00000E+00 0.00000E+000.25000E+010.68230E-080.15594E+010.00000E+000.00000E+000.25000E+01 0.68262E-080.15771E+010.00000E+000.00000E+000.25000E+010.68295E-080.15949E+01 0.00000E+000.00000E+000.25000E+010.68330E-080.16140E+010.00000E+000.00000E+00 0.25000E+010.68364E-080.16351E+010.00000E+000.00000E+000.25000E+010.68424E-08 0.16726E+010.00000E+000.00000E+000.25000E+010.68484E-080.17101E+010.00000E+00 0.00000E+000.25000E+010.68570E-080.17640E+010.00000E+000.00000E+000.25000E+01 0.68603E-080.17823E+010.00000E+000.00000E+000.25000E+010.68635E-080.18005E+01 0.00000E+000.00000E+000.25000E+010.68667E-080.18188E+010.00000E+000.00000E+00 0.25000E+010.68700E-080.18370E+010.00000E+000.00000E+000.25000E+010.68730E-08 0.18550E+010.00000E+000.00000E+000.25000E+010.68760E-080.18730E+010.00000E+00 0.00000E+000.25000E+010.68820E-080.19090E+010.00000E+000.00000E+000.25000E+01 0.68865E-080.19321E+010.00000E+000.00000E+000.25000E+010.68955E-080.19784E+01 0.00000E+000.00000E+000.25000E+010.69082E-080.20439E+010.00000E+000.00000E+00 0.25000E+010.69330E-080.21710E+010.00000E+000.00000E+000.25000E+010.69453E-08 0.22125E+010.00000E+000.00000E+000.25000E+010.69575E-080.22540E+010.00000E+00 0.00000E+000.25000E+010.69820E-080.23370E+010.00000E+000.00000E+000.25000E+01 0.69945E-080.23570E+010.00000E+000.00000E+000.25000E+010.70070E-080.23770E+01 0.00000E+000.00000E+000.25000E+010.70320E-080.24170E+010.00000E+000.00000E+00 0.25000E+010.70448E-080.24280E+010.00000E+000.00000E+000.25000E+010.70575E-08 0.24390E+010.00000E+000.00000E+000.25000E+010.70830E-080.24610E+010.00000E+00 0.00000E+000.25000E+010.70955E-080.24660E+010.00000E+000.00000E+000.25000E+01 0.71080E-080.24710E+010.00000E+000.00000E+000.25000E+010.71330E-080.24810E+01 0.00000E+000.00000E+000.25000E+010.71455E-080.24835E+010.00000E+000.00000E+00 0.25000E+010.71580E-080.24860E+010.00000E+000.00000E+000.25000E+010.71705E-08 0.24885E+010.00000E+000.00000E+000.25000E+010.71830E-080.24910E+010.00000E+00 0.00000E+000.25000E+010.71953E-080.24920E+010.00000E+000.00000E+000.25000E+01 0.72075E-080.24930E+010.00000E+000.00000E+000.25000E+010.72198E-080.24940E+01 0.00000E+000.00000E+000.25000E+010.72320E-080.24950E+010.00000E+000.00000E+00 0.25000E+010.72365E-080.24953E+010.00000E+000.00000E+000.25000E+010.72410E-08 0.24955E+010.00000E+000.00000E+000.25000E+010.72500E-080.24961E+010.00000E+00 0.00000E+000.25000E+010.72567E-080.24965E+010.00000E+000.42188E-010.25003E+01 0.72648E-080.24970E+010.00000E+000.92188E-010.25007E+010.72727E-080.24974E+01 0.00000E+000.14219E+000.25011E+010.72820E-080.24980E+010.00000E+000.20000E+00 0.25015E+010.72906E-080.24982E+010.00000E+000.25391E+000.25019E+010.73034E-08 0.24984E+010.00000E+000.33359E+000.25024E+010.73161E-080.24987E+010.00000E+00 0.41328E+000.25029E+010.73330E-080.24990E+010.00000E+000.55172E+000.25038E+01 0.73455E-080.24990E+010.00000E+000.76724E+000.25042E+010.73580E-080.24990E+01 0.00000E+000.98276E+000.25039E+010.73705E-080.24990E+010.00000E+000.11797E+01 0.25025E+010.73830E-080.24990E+010.00000E+000.13750E+010.25005E+010.73955E-08 0.24992E+010.00000E+000.15625E+010.24981E+010.74080E-080.24995E+010.00000E+00 0.17361E+010.24957E+010.74330E-080.25000E+010.00000E+000.20227E+010.24912E+01 0.74518E-080.25000E+010.00000E+000.20938E+010.24885E+010.74832E-080.25000E+01 0.00000E+000.22131E+010.24852E+010.75147E-080.25000E+010.00000E+000.23324E+01 0.24834E+010.75590E-080.25000E+010.00000E+000.25000E+010.24818E+010.75969E-08 0.25000E+010.00000E+000.25000E+010.24815E+010.76726E-080.25000E+010.00000E+00 0.25000E+010.24819E+010.77829E-080.25000E+010.00000E+000.25000E+010.24838E+01 0.80000E-080.25000E+010.00000E+000.25000E+010.24876E+010.80500E-080.25000E+01 0.00000E+000.25000E+010.24883E+010.81300E-080.25000E+010.00000E+000.25000E+01 0.24895E+010.82100E-080.25000E+010.00000E+000.25000E+010.24905E+010.83200E-08 0.25000E+010.00000E+000.25000E+010.24918E+010.83325E-080.25000E+010.00000E+00 0.25000E+010.24919E+010.83450E-080.25000E+010.00000E+000.25000E+010.24920E+01 0.83575E-080.25000E+010.00000E+000.25000E+010.24922E+010.83700E-080.25000E+01 0.00000E+000.25000E+010.24923E+010.83825E-080.25003E+010.00000E+000.25000E+01 0.24924E+010.84075E-080.25008E+010.00000E+000.25000E+010.24927E+010.84325E-08 0.25013E+010.00000E+000.25000E+010.24929E+010.84700E-080.25020E+010.00000E+00 0.25000E+010.24932E+010.84825E-080.25040E+010.00000E+000.25000E+010.24934E+01 0.84950E-080.25060E+010.00000E+000.25000E+010.24935E+010.85075E-080.25080E+01 0.00000E+000.25000E+010.24936E+010.85200E-080.25100E+010.00000E+000.25000E+01 0.24937E+010.85325E-080.25092E+010.00000E+000.25000E+010.24938E+010.85450E-08 0.25085E+010.00000E+000.25000E+010.24939E+010.85575E-080.25078E+010.00000E+00 0.25000E+010.24940E+010.85700E-080.25070E+010.00000E+000.25000E+010.24940E+01 0.85732E-080.25040E+010.00000E+000.25000E+010.24941E+010.85765E-080.25010E+01 0.00000E+000.25000E+010.24941E+010.85830E-080.24950E+010.00000E+000.25000E+01 0.24941E+010.85860E-080.24895E+010.00000E+000.25000E+010.24942E+010.85890E-08 0.24840E+010.00000E+000.25000E+010.24942E+010.85920E-080.24785E+010.00000E+00 0.25000E+010.24942E+010.85950E-080.24730E+010.00000E+000.25000E+010.24942E+01 0.85980E-080.24629E+010.00000E+000.25000E+010.24942E+010.86040E-080.24426E+01 0.00000E+000.25000E+010.24943E+010.86165E-080.24003E+010.00000E+000.25000E+01 0.24944E+010.86290E-080.23581E+010.00000E+000.25000E+010.24945E+010.86450E-08 0.23040E+010.00000E+000.25000E+010.24946E+010.86575E-080.22118E+010.00000E+00 0.25000E+010.24947E+010.86700E-080.21195E+010.00000E+000.25000E+010.24947E+01 0.86825E-080.20273E+010.00000E+000.25000E+010.24948E+010.86950E-080.19350E+01 0.00000E+000.25000E+010.24949E+010.86983E-080.19050E+010.00000E+000.25000E+01 0.24949E+010.87015E-080.18750E+010.00000E+000.25000E+010.24949E+010.87080E-08 0.18150E+010.00000E+000.25000E+010.24950E+010.87110E-080.17838E+010.00000E+00 0.25000E+010.24950E+010.87140E-080.17525E+010.00000E+000.25000E+010.24950E+01 0.87170E-080.17213E+010.00000E+000.25000E+010.24950E+010.87200E-080.16900E+01 0.00000E+000.25000E+010.24950E+010.87230E-080.16595E+010.00000E+000.25000E+01 0.24951E+010.87290E-080.15984E+010.00000E+000.25000E+010.24951E+010.87415E-08 0.14711E+010.00000E+000.25000E+010.24952E+010.87540E-080.13439E+010.00000E+00 0.25000E+010.24952E+010.87700E-080.11810E+010.00000E+000.25000E+010.24953E+01 0.87730E-080.11502E+010.00000E+000.25000E+010.24954E+010.87760E-080.11195E+01 0.00000E+000.25000E+010.24954E+010.87790E-080.10888E+010.00000E+000.25000E+01 0.24954E+010.87820E-080.10580E+010.00000E+000.25000E+010.24954E+010.87850E-08 0.10324E+010.00000E+000.25000E+010.24954E+010.87883E-080.10046E+010.00000E+00 0.25000E+010.24954E+010.87915E-080.97688E+000.00000E+000.25000E+010.24954E+01 0.87950E-080.94700E+000.00000E+000.25000E+010.24955E+010.87984E-080.92108E+00 0.00000E+000.25000E+010.24955E+010.88046E-080.87308E+000.00000E+000.25000E+01 0.24955E+010.88109E-080.82508E+000.00000E+000.25000E+010.24955E+010.88200E-08 0.75500E+000.00000E+000.25000E+010.24956E+010.88277E-080.70811E+000.00000E+00 0.25000E+010.24956E+010.88402E-080.63186E+000.00000E+000.25000E+010.24957E+01 0.88527E-080.55561E+000.00000E+000.25000E+010.24958E+010.88700E-080.45000E+00 0.00000E+000.25000E+010.24959E+010.88730E-080.43000E+000.00000E+000.25000E+01 0.24959E+010.88760E-080.41000E+000.00000E+000.25000E+010.24959E+010.88820E-08 0.37000E+000.00000E+000.25000E+010.24959E+010.88852E-080.35150E+000.00000E+00 0.25000E+010.24959E+010.88885E-080.33300E+000.00000E+000.25000E+010.24959E+01 0.88917E-080.31450E+000.00000E+000.25000E+010.24960E+010.88950E-080.29600E+00 0.00000E+000.25000E+010.24960E+010.88983E-080.28229E+000.00000E+000.25000E+01 0.24960E+010.89047E-080.25486E+000.00000E+000.25000E+010.24960E+010.89173E-08 0.20211E+000.00000E+000.25000E+010.24961E+010.89298E-080.14935E+000.00000E+00 0.25000E+010.24961E+010.89450E-080.85000E-010.00000E+000.25000E+010.24962E+01 0.89575E-080.67750E-010.00000E+000.25000E+010.24963E+010.89700E-080.50500E-01 0.00000E+000.25000E+010.24963E+010.89825E-080.33250E-010.00000E+000.25000E+01 0.24964E+010.89950E-080.16000E-010.00000E+000.25000E+010.24964E+010.90075E-08 0.13250E-010.00000E+000.25000E+010.24965E+010.90200E-080.10500E-010.00000E+00 0.25000E+010.24965E+010.90325E-080.77500E-020.00000E+000.25000E+010.24966E+01 0.90450E-080.50000E-020.00000E+000.25000E+010.24966E+010.90575E-080.40000E-02 0.00000E+000.25000E+010.24967E+010.90700E-080.30000E-020.00000E+000.25000E+01 0.24967E+010.90825E-080.20000E-020.00000E+000.25000E+010.24968E+010.90950E-08 0.10000E-020.00000E+000.25000E+010.24968E+010.91075E-080.10000E-020.00000E+00 0.25000E+010.24969E+010.91200E-080.10000E-020.00000E+000.25000E+010.24969E+01 0.91450E-080.10000E-020.00000E+000.25000E+010.24970E+010.91637E-080.81250E-03 0.00000E+000.25000E+010.24971E+010.91888E-080.56250E-030.00000E+000.25000E+01 0.24972E+010.92137E-080.31250E-030.00000E+000.25000E+010.24973E+010.92450E-08 0.00000E+000.00000E+000.25000E+010.24974E+010.92731E-080.37252E-040.00000E+00 0.25000E+010.24975E+010.93294E-080.11175E-030.00000E+000.25000E+010.24976E+01 0.95181E-080.36175E-030.00000E+000.25000E+010.24981E+010.97069E-080.61175E-03 0.00000E+000.25000E+010.24985E+010.10000E-070.10000E-020.00000E+000.25000E+01 0.24989E+010.10050E-070.76190E-030.00000E+000.25000E+010.24990E+010.10150E-07 0.28571E-030.00000E+000.25000E+010.24991E+010.10255E-07-.21429E-030.00000E+00 0.25000E+010.24992E+010.10420E-07-.10000E-020.00000E+000.25000E+010.24993E+01 0.10423E-07-.12500E-020.00000E+000.25000E+010.24993E+010.10426E-07-.15000E-02 0.00000E+000.25000E+010.24993E+010.10430E-07-.17500E-020.00000E+000.25000E+01 0.24993E+010.10433E-07-.20000E-020.00000E+000.25000E+010.24993E+010.10436E-07 -.22500E-020.00000E+000.25000E+010.24993E+010.10439E-07-.25000E-020.00000E+00 0.25000E+010.24993E+010.10445E-07-.30000E-020.00000E+000.25000E+010.24993E+01 0.10449E-07-.34500E-020.00000E+000.25000E+010.24993E+010.10458E-07-.43500E-02 0.00000E+000.25000E+010.24993E+010.10471E-07-.56000E-020.00000E+000.25000E+01 0.24994E+010.10495E-07-.80000E-020.00000E+000.25000E+010.24994E+010.10507E-07 -.60000E-020.00000E+000.25000E+010.24994E+010.10520E-07-.40000E-020.00000E+00 0.25000E+010.24994E+010.10533E-07-.20000E-020.00000E+000.25000E+010.24994E+01 0.10545E-070.00000E+000.00000E+000.25000E+010.24994E+010.10557E-070.19000E-01 0.00000E+000.25000E+010.24994E+010.10570E-070.38000E-010.00000E+000.25000E+01 0.24994E+010.10583E-070.57000E-010.00000E+000.25000E+010.24994E+010.10595E-07 0.76000E-010.00000E+000.25000E+010.24994E+010.10607E-070.14075E+000.00000E+00 0.25000E+010.24994E+010.10620E-070.20550E+000.00000E+000.25000E+010.24994E+01 0.10645E-070.33500E+000.00000E+000.25000E+010.24994E+010.10648E-070.36275E+00 0.00000E+000.25000E+010.24994E+010.10651E-070.39050E+000.00000E+000.25000E+01 0.24994E+010.10654E-070.41825E+000.00000E+000.25000E+010.24994E+010.10657E-07 0.44600E+000.00000E+000.25000E+010.24994E+010.10660E-070.47115E+000.00000E+00 0.25000E+010.24994E+010.10663E-070.49840E+000.00000E+000.25000E+010.24994E+01 0.10666E-070.52565E+000.00000E+000.25000E+010.24994E+010.10670E-070.55500E+00 0.00000E+000.25000E+010.24994E+010.10673E-070.58262E+000.00000E+000.25000E+01 0.24994E+010.10680E-070.63787E+000.00000E+000.25000E+010.24994E+010.10690E-07 0.71562E+000.00000E+000.25000E+010.24994E+010.10708E-070.86600E+000.00000E+00 0.25000E+010.24994E+010.10720E-070.95250E+000.00000E+000.25000E+010.24994E+01 0.10733E-070.10390E+010.00000E+000.25000E+010.24994E+010.10757E-070.12120E+01 0.00000E+000.25000E+010.24994E+010.10770E-070.12787E+010.00000E+000.25000E+01 0.24994E+010.10783E-070.13455E+010.00000E+000.25000E+010.24994E+010.10795E-07 0.14123E+010.00000E+000.25000E+010.24994E+010.10808E-070.14790E+010.00000E+00 0.25000E+010.24994E+010.10811E-070.14950E+010.00000E+000.25000E+010.24994E+01 0.10814E-070.15110E+010.00000E+000.25000E+010.24994E+010.10817E-070.15270E+01 0.00000E+000.25000E+010.24994E+010.10820E-070.15430E+010.00000E+000.25000E+01 0.24994E+010.10823E-070.15594E+010.00000E+000.25000E+010.24994E+010.10826E-07 0.15771E+010.00000E+000.25000E+010.24994E+010.10829E-070.15949E+010.00000E+00 0.25000E+010.24994E+010.10833E-070.16140E+010.00000E+000.25000E+010.24994E+01 0.10836E-070.16351E+010.00000E+000.25000E+010.24994E+010.10842E-070.16726E+01 0.00000E+000.25000E+010.24994E+010.10848E-070.17101E+010.00000E+000.25000E+01 0.24994E+010.10857E-070.17640E+010.00000E+000.25000E+010.24994E+010.10860E-07 0.17823E+010.00000E+000.25000E+010.24994E+010.10864E-070.18005E+010.00000E+00 0.25000E+010.24994E+010.10870E-070.18370E+010.00000E+000.25000E+010.24994E+01 0.10873E-070.18550E+010.00000E+000.25000E+010.24994E+010.10876E-070.18730E+01 0.00000E+000.25000E+010.24994E+010.10879E-070.18910E+010.00000E+000.25000E+01 0.24994E+010.10882E-070.19090E+010.00000E+000.25000E+010.24994E+010.10885E-07 0.19244E+010.00000E+000.25000E+010.24994E+010.10891E-070.19552E+010.00000E+00 0.25000E+010.24994E+010.10904E-070.20207E+010.00000E+000.25000E+010.24994E+01 0.10916E-070.20862E+010.00000E+000.25000E+010.24994E+010.10933E-070.21710E+01 0.00000E+000.25000E+010.24994E+010.10945E-070.22125E+010.00000E+000.25000E+01 0.24994E+010.10957E-070.22540E+010.00000E+000.25000E+010.24994E+010.10970E-07 0.22955E+010.00000E+000.25000E+010.24994E+010.10982E-070.23370E+010.00000E+00 0.25000E+010.24994E+010.10989E-070.23482E+010.00000E+000.25000E+010.24994E+01 0.10996E-070.23594E+010.00000E+000.25000E+010.24994E+010.11003E-070.23706E+01 0.00000E+000.25000E+010.24994E+010.11010E-070.23818E+010.00000E+000.25000E+01 0.24994E+010.11015E-070.23906E+010.00000E+000.24660E+010.24993E+010.11021E-07 0.23994E+010.00000E+000.24321E+010.24992E+010.11026E-070.24082E+010.00000E+00 0.23981E+010.24991E+010.11032E-070.24170E+010.00000E+000.23642E+010.24990E+01 0.11037E-070.24217E+010.00000E+000.23302E+010.24989E+010.11048E-070.24312E+01 0.00000E+000.22623E+010.24986E+010.11061E-070.24422E+010.00000E+000.21836E+01 0.24984E+010.11083E-070.24610E+010.00000E+000.20494E+010.24980E+010.11095E-07 0.24660E+010.00000E+000.19274E+010.24974E+010.11108E-070.24710E+010.00000E+00 0.17258E+010.24960E+010.11133E-070.24810E+010.00000E+000.12963E+010.24929E+01 0.11145E-070.24835E+010.00000E+000.10648E+010.24913E+010.11158E-070.24860E+01 0.00000E+000.85938E+000.24900E+010.11171E-070.24885E+010.00000E+000.66406E+00 0.24888E+010.11183E-070.24910E+010.00000E+000.48889E+000.24878E+010.11195E-07 0.24920E+010.00000E+000.42083E+000.24877E+010.11207E-070.24930E+010.00000E+00 0.35278E+000.24875E+010.11232E-070.24950E+010.00000E+000.21667E+000.24873E+01 0.11236E-070.24953E+010.00000E+000.19167E+000.24873E+010.11241E-070.24955E+01 0.00000E+000.16667E+000.24872E+010.11245E-070.24958E+010.00000E+000.14167E+00 0.24872E+010.11250E-070.24961E+010.00000E+000.11667E+000.24872E+010.11255E-07 0.24964E+010.28125E-010.91667E-010.24873E+010.11260E-070.24967E+010.60938E-01 0.62500E-010.24875E+010.11265E-070.24970E+010.93750E-010.33333E-010.24876E+01 0.11271E-070.24973E+010.13125E+000.00000E+000.24878E+010.11274E-070.24975E+01 0.14844E+000.00000E+000.24880E+010.11276E-070.24977E+010.16563E+000.00000E+00 0.24882E+010.11279E-070.24978E+010.18281E+000.00000E+000.24884E+010.11282E-07 0.24980E+010.20000E+000.00000E+000.24886E+010.11285E-070.24981E+010.21719E+00 0.00000E+000.24888E+010.11290E-070.24982E+010.25156E+000.00000E+000.24891E+01 0.11303E-070.24984E+010.33125E+000.00000E+000.24900E+010.11316E-070.24987E+01 0.41094E+000.00000E+000.24908E+010.11333E-070.24990E+010.55172E+000.00000E+00 0.24920E+010.11345E-070.24990E+010.76724E+000.00000E+000.24935E+010.11358E-07 0.24990E+010.98276E+000.00000E+000.24950E+010.11371E-070.24990E+010.11797E+01 0.00000E+000.24963E+010.11383E-070.24990E+010.13750E+010.00000E+000.24975E+01 0.11395E-070.24992E+010.15625E+010.00000E+000.24987E+010.11408E-070.24995E+01 0.17361E+010.00000E+000.24998E+010.11433E-070.25000E+010.20227E+010.00000E+00 0.25014E+010.11452E-070.25000E+010.20938E+010.00000E+000.25014E+010.11483E-07 0.25000E+010.22131E+010.00000E+000.25016E+010.11515E-070.25000E+010.23324E+01 0.00000E+000.25017E+010.11559E-070.25000E+010.25000E+010.00000E+000.25018E+01 0.11597E-070.25000E+010.25000E+010.00000E+000.25017E+010.11673E-070.25000E+01 0.25000E+010.00000E+000.25016E+010.11783E-070.25000E+010.25000E+010.00000E+00 0.25013E+010.12000E-070.25000E+010.25000E+010.00000E+000.25010E+010.12050E-07 0.25000E+010.25000E+010.00000E+000.25009E+010.12130E-070.25000E+010.25000E+01 0.00000E+000.25008E+010.12210E-070.25000E+010.25000E+010.00000E+000.25007E+01 0.12320E-070.25000E+010.25000E+010.00000E+000.25006E+010.12333E-070.25000E+01 0.25000E+010.00000E+000.25006E+010.12345E-070.25000E+010.25000E+010.00000E+00 0.25006E+010.12357E-070.25000E+010.25000E+010.00000E+000.25006E+010.12370E-07 0.25000E+010.25000E+010.00000E+000.25006E+010.12383E-070.25003E+010.25000E+01 0.00000E+000.25006E+010.12407E-070.25008E+010.25000E+010.00000E+000.25005E+01 0.12433E-070.25013E+010.25000E+010.00000E+000.25005E+010.12470E-070.25020E+01 0.25000E+010.00000E+000.25005E+010.12483E-070.25040E+010.25000E+010.00000E+00 0.25005E+010.12495E-070.25060E+010.25000E+010.00000E+000.25005E+010.12520E-07 0.25100E+010.25000E+010.00000E+000.25005E+010.12533E-070.25092E+010.25000E+01 0.00000E+000.25005E+010.12545E-070.25085E+010.25000E+010.00000E+000.25005E+01 0.12557E-070.25078E+010.25000E+010.00000E+000.25005E+010.12570E-070.25070E+01 0.25000E+010.00000E+000.25005E+010.12573E-070.25040E+010.25000E+010.00000E+00 0.25005E+010.12576E-070.25010E+010.25000E+010.00000E+000.25005E+010.12583E-07 0.24950E+010.25000E+010.00000E+000.25005E+010.12586E-070.24895E+010.25000E+01 0.00000E+000.25005E+010.12589E-070.24840E+010.25000E+010.00000E+000.25005E+01 0.12592E-070.24785E+010.25000E+010.00000E+000.25005E+010.12595E-070.24730E+01 0.25000E+010.00000E+000.25005E+010.12598E-070.24629E+010.25000E+010.00000E+00 0.25005E+010.12604E-070.24426E+010.25000E+010.00000E+000.25005E+010.12616E-07 0.24003E+010.25000E+010.00000E+000.25005E+010.12629E-070.23581E+010.25000E+01 0.00000E+000.25005E+010.12645E-070.23040E+010.25000E+010.00000E+000.25004E+01 0.12657E-070.22118E+010.25000E+010.00000E+000.25004E+010.12670E-070.21195E+01 0.25000E+010.00000E+000.25004E+010.12695E-070.19350E+010.25000E+010.00000E+00 0.25004E+010.12698E-070.19050E+010.25000E+010.00000E+000.25004E+010.12702E-07 0.18750E+010.25000E+010.00000E+000.25004E+010.12708E-070.18150E+010.25000E+01 0.00000E+000.25004E+010.12711E-070.17838E+010.25000E+010.00000E+000.25004E+01 0.12714E-070.17525E+010.25000E+010.00000E+000.25004E+010.12720E-070.16900E+01 0.25000E+010.00000E+000.25004E+010.12724E-070.16442E+010.25000E+010.00000E+00 0.25004E+010.12733E-070.15526E+010.25000E+010.00000E+000.25004E+010.12746E-07 0.14253E+010.25000E+010.00000E+000.25004E+010.12770E-070.11810E+010.25000E+01 0.00000E+000.25004E+010.12773E-070.11502E+010.25000E+010.00000E+000.25004E+01 0.12776E-070.11195E+010.25000E+010.00000E+000.25004E+010.12779E-070.10888E+01 0.25000E+010.00000E+000.25004E+010.12782E-070.10580E+010.25000E+010.00000E+00 0.25004E+010.12785E-070.10324E+010.25000E+010.00000E+000.25004E+010.12788E-07 0.10046E+010.25000E+010.00000E+000.25004E+010.12792E-070.97688E+000.25000E+01 0.00000E+000.25004E+010.12795E-070.94700E+000.25000E+010.00000E+000.25004E+01 0.12798E-070.92108E+000.25000E+010.00000E+000.25004E+010.12805E-070.87308E+00 0.25000E+010.00000E+000.25004E+010.12811E-070.82508E+000.25000E+010.00000E+00 0.25004E+010.12820E-070.75500E+000.25000E+010.00000E+000.25004E+010.12828E-07 0.70811E+000.25000E+010.00000E+000.25004E+010.12840E-070.63186E+000.25000E+01 0.00000E+000.25004E+010.12853E-070.55561E+000.25000E+010.00000E+000.25004E+01 0.12870E-070.45000E+000.25000E+010.00000E+000.25004E+010.12873E-070.43000E+00 0.25000E+010.00000E+000.25004E+010.12876E-070.41000E+000.25000E+010.00000E+00 0.25004E+010.12879E-070.39000E+000.25000E+010.00000E+000.25004E+010.12882E-07 0.37000E+000.25000E+010.00000E+000.25004E+010.12885E-070.35292E+000.25000E+01 0.00000E+000.25004E+010.12888E-070.33442E+000.25000E+010.00000E+000.25004E+01 0.12892E-070.31592E+000.25000E+010.00000E+000.25004E+010.12895E-070.29600E+00 0.25000E+010.00000E+000.25004E+010.12898E-070.28176E+000.25000E+010.00000E+00 0.25004E+010.12905E-070.25327E+000.25000E+010.00000E+000.25004E+010.12918E-07 0.20052E+000.25000E+010.00000E+000.25004E+010.12930E-070.14777E+000.25000E+01 0.00000E+000.25004E+010.12945E-070.85000E-010.25000E+010.00000E+000.25004E+01 0.12957E-070.67750E-010.25000E+010.00000E+000.25004E+010.12970E-070.50500E-01 0.25000E+010.00000E+000.25004E+010.12995E-070.16000E-010.25000E+010.00000E+00 0.25004E+010.13007E-070.13250E-010.25000E+010.00000E+000.25004E+010.13020E-07 0.10500E-010.25000E+010.00000E+000.25004E+010.13045E-070.50000E-020.25000E+01 0.00000E+000.25004E+010.13057E-070.40000E-020.25000E+010.00000E+000.25004E+01 0.13070E-070.30000E-020.25000E+010.00000E+000.25004E+010.13095E-070.10000E-02 0.25000E+010.00000E+000.25004E+010.13107E-070.10000E-020.25000E+010.00000E+00 0.25004E+010.13120E-070.10000E-020.25000E+010.00000E+000.25004E+010.13133E-07 0.10000E-020.25000E+010.00000E+000.25004E+010.13145E-070.10000E-020.25000E+01 0.00000E+000.25004E+010.13157E-070.87500E-030.25000E+010.00000E+000.25004E+01 0.13183E-070.62500E-030.25000E+010.00000E+000.25004E+010.13207E-070.37500E-03 0.25000E+010.00000E+000.25004E+010.13245E-070.00000E+000.25000E+010.00000E+00 0.25004E+010.13276E-070.41391E-040.25000E+010.00000E+000.25003E+010.13339E-07 0.12417E-030.25000E+010.00000E+000.25003E+010.13528E-070.37417E-030.25000E+01 0.00000E+000.25003E+010.13716E-070.62417E-030.25000E+010.00000E+000.25002E+01 0.14000E-070.10000E-020.25000E+010.00000E+000.25001E+010.14050E-070.76190E-03 0.25000E+010.00000E+000.25001E+010.14150E-070.28571E-030.25000E+010.00000E+00 0.25001E+010.14255E-07-.21429E-030.25000E+010.00000E+000.25001E+010.14420E-07 -.10000E-020.25000E+010.00000E+000.25001E+010.14423E-07-.12500E-020.25000E+01 0.00000E+000.25001E+010.14426E-07-.15000E-020.25000E+010.00000E+000.25001E+01 0.14433E-07-.20000E-020.25000E+010.00000E+000.25001E+010.14436E-07-.22500E-02 0.25000E+010.00000E+000.25001E+010.14439E-07-.25000E-020.25000E+010.00000E+00 0.25001E+010.14442E-07-.27500E-020.25000E+010.00000E+000.25001E+010.14445E-07 -.30000E-020.25000E+010.00000E+000.25001E+010.14448E-07-.33000E-020.25000E+01 0.00000E+000.25001E+010.14454E-07-.39000E-020.25000E+010.00000E+000.25001E+01 0.14466E-07-.51500E-020.25000E+010.00000E+000.25001E+010.14479E-07-.64000E-02 0.25000E+010.00000E+000.25001E+010.14495E-07-.80000E-020.25000E+010.00000E+00 0.25001E+010.14508E-07-.60000E-020.25000E+010.00000E+000.25001E+010.14520E-07 -.40000E-020.25000E+010.00000E+000.25001E+010.14545E-070.00000E+000.25000E+01 0.00000E+000.25001E+010.14558E-070.19000E-010.25000E+010.00000E+000.25001E+01 0.14570E-070.38000E-010.25000E+010.00000E+000.25001E+010.14582E-070.57000E-01 0.25000E+010.00000E+000.25001E+010.14595E-070.76000E-010.25000E+010.00000E+00 0.25001E+010.14608E-070.14075E+000.25000E+010.00000E+000.25001E+010.14620E-07 0.20550E+000.25000E+010.00000E+000.25001E+010.14632E-070.27025E+000.25000E+01 0.00000E+000.25001E+010.14645E-070.33500E+000.25000E+010.00000E+000.25001E+01 0.14648E-070.36275E+000.25000E+010.00000E+000.25001E+010.14651E-070.39050E+00 0.25000E+010.00000E+000.25001E+010.14654E-070.41825E+000.25000E+010.00000E+00 0.25001E+010.14657E-070.44600E+000.25000E+010.00000E+000.25001E+010.14660E-07 0.47115E+000.25000E+010.00000E+000.25001E+010.14663E-070.49840E+000.25000E+01 0.00000E+000.25001E+010.14667E-070.52565E+000.25000E+010.00000E+000.25001E+01 0.14670E-070.55500E+000.25000E+010.00000E+000.25001E+010.14673E-070.58262E+00 0.25000E+010.00000E+000.25001E+010.14680E-070.63787E+000.25000E+010.00000E+00 0.25001E+010.14690E-070.71562E+000.25000E+010.00000E+000.25001E+010.14708E-07 0.86600E+000.25000E+010.00000E+000.25001E+010.14720E-070.95250E+000.25000E+01 0.00000E+000.25001E+010.14732E-070.10390E+010.25000E+010.00000E+000.25001E+01 0.14757E-070.12120E+010.25000E+010.00000E+000.25001E+010.14770E-070.12787E+01 0.25000E+010.00000E+000.25001E+010.14782E-070.13455E+010.25000E+010.00000E+00 0.25001E+010.14795E-070.14123E+010.25000E+010.00000E+000.25001E+010.14808E-07 0.14790E+010.25000E+010.00000E+000.25001E+010.14811E-070.14950E+010.25000E+01 0.00000E+000.25001E+010.14814E-070.15110E+010.25000E+010.00000E+000.25001E+01 0.14817E-070.15270E+010.25000E+010.00000E+000.25001E+010.14820E-070.15430E+01 0.25000E+010.00000E+000.25001E+010.14823E-070.15594E+010.25000E+010.00000E+00 0.25001E+010.14826E-070.15771E+010.25000E+010.00000E+000.25001E+010.14830E-07 0.15949E+010.25000E+010.00000E+000.25001E+010.14833E-070.16140E+010.25000E+01 0.00000E+000.25001E+010.14836E-070.16351E+010.25000E+010.00000E+000.25001E+01 0.14842E-070.16726E+010.25000E+010.00000E+000.25001E+010.14848E-070.17101E+01 0.25000E+010.00000E+000.25001E+010.14857E-070.17640E+010.25000E+010.00000E+00 0.25001E+010.14860E-070.17823E+010.25000E+010.00000E+000.25001E+010.14863E-07 0.18005E+010.25000E+010.00000E+000.25001E+010.14870E-070.18370E+010.25000E+01 0.00000E+000.25001E+010.14873E-070.18550E+010.25000E+010.00000E+000.25001E+01 0.14876E-070.18730E+010.25000E+010.00000E+000.25001E+010.14879E-070.18910E+01 0.25000E+010.00000E+000.25001E+010.14882E-070.19090E+010.25000E+010.00000E+00 0.25001E+010.14885E-070.19244E+010.25000E+010.00000E+000.25001E+010.14891E-07 0.19552E+010.25000E+010.00000E+000.25001E+010.14904E-070.20207E+010.25000E+01 0.00000E+000.25001E+010.14917E-070.20862E+010.25000E+010.00000E+000.25001E+01 0.14933E-070.21710E+010.25000E+010.00000E+000.25001E+010.14945E-070.22125E+01 0.25000E+010.00000E+000.25001E+010.14958E-070.22540E+010.25000E+010.00000E+00 0.25001E+010.14982E-070.23370E+010.25000E+010.00000E+000.25001E+010.14994E-07 0.23570E+010.25000E+010.00000E+000.25001E+010.15007E-070.23770E+010.25000E+01 0.00000E+000.25001E+010.15032E-070.24170E+010.25000E+010.00000E+000.25001E+01 0.15045E-070.24280E+010.25000E+010.00000E+000.25001E+010.15058E-070.24390E+01 0.25000E+010.00000E+000.25001E+010.15083E-070.24610E+010.25000E+010.00000E+00 0.25001E+010.15095E-070.24660E+010.25000E+010.00000E+000.25001E+010.15108E-07 0.24710E+010.25000E+010.00000E+000.25001E+010.15133E-070.24810E+010.25000E+01 0.00000E+000.25001E+010.15146E-070.24835E+010.25000E+010.00000E+000.25001E+01 0.15158E-070.24860E+010.25000E+010.00000E+000.25001E+010.15183E-070.24910E+01 0.25000E+010.00000E+000.25001E+010.15195E-070.24920E+010.25000E+010.00000E+00 0.25001E+010.15207E-070.24930E+010.25000E+010.00000E+000.25001E+010.15232E-07 0.24950E+010.25000E+010.00000E+000.25001E+010.15237E-070.24953E+010.25000E+01 0.00000E+000.25001E+010.15241E-070.24955E+010.25000E+010.00000E+000.25001E+01 0.15246E-070.24958E+010.25000E+010.00000E+000.25001E+010.15250E-070.24961E+01 0.25000E+010.00000E+000.25001E+010.15254E-070.24964E+010.25000E+010.28125E-01 0.25003E+010.15263E-070.24968E+010.25000E+010.78125E-010.25007E+010.15270E-07 0.24973E+010.25000E+010.12812E+000.25011E+010.15282E-070.24980E+010.25000E+01 0.20000E+000.25016E+010.15292E-070.24982E+010.25000E+010.26094E+000.25021E+01 0.15305E-070.24984E+010.25000E+010.34062E+000.25027E+010.15317E-070.24987E+01 0.25000E+010.42031E+000.25032E+010.15333E-070.24990E+010.25000E+010.55172E+00 0.25037E+010.15346E-070.24990E+010.25000E+010.76724E+000.25027E+010.15358E-07 0.24990E+010.25000E+010.98276E+000.25002E+010.15383E-070.24990E+010.25000E+01 0.13750E+010.24869E+010.15395E-070.24992E+010.25000E+010.15625E+010.24748E+01 0.15408E-070.24995E+010.25000E+010.17361E+010.24614E+010.15433E-070.25000E+01 0.25000E+010.20227E+010.24269E+010.15452E-070.25000E+010.25000E+010.20938E+01 0.23954E+010.15483E-070.25000E+010.25000E+010.22131E+010.23407E+010.15515E-07 0.25000E+010.25000E+010.23324E+010.22821E+010.15559E-070.25000E+010.25000E+01 0.25000E+010.21932E+010.15597E-070.25000E+010.25000E+010.25000E+010.21141E+01 0.15673E-070.25000E+010.25000E+010.25000E+010.19564E+010.15783E-070.25000E+01 0.25000E+010.25000E+010.17287E+010.16000E-070.25000E+010.25000E+010.25000E+01 0.12934E+010.16050E-070.25000E+010.25000E+010.25000E+010.11977E+010.16130E-07 0.25000E+010.25000E+010.25000E+010.10483E+010.16210E-070.25000E+010.25000E+01 0.25000E+010.90737E+000.16320E-070.25000E+010.25000E+010.25000E+010.73132E+00 0.16332E-070.25000E+010.25000E+010.25000E+010.71285E+000.16345E-070.25000E+01 0.25000E+010.25000E+010.69458E+000.16370E-070.25000E+010.25000E+010.25000E+01 0.65896E+000.16389E-070.25004E+010.25000E+010.25000E+010.63343E+000.16414E-07 0.25009E+010.25000E+010.25000E+010.60003E+000.16439E-070.25014E+010.25000E+01 0.25000E+010.56791E+000.16470E-070.25020E+010.25000E+010.25000E+010.52956E+00 0.16483E-070.25040E+010.25000E+010.25000E+010.51493E+000.16495E-070.25060E+01 0.25000E+010.25000E+010.50047E+000.16520E-070.25100E+010.25000E+010.25000E+01 0.47247E+000.16532E-070.25092E+010.25000E+010.25000E+010.45910E+000.16545E-07 0.25085E+010.25000E+010.25000E+010.44587E+000.16570E-070.25070E+010.25000E+01 0.25000E+010.42034E+000.16573E-070.25040E+010.25000E+010.25000E+010.41712E+00 0.16577E-070.25010E+010.25000E+010.25000E+010.41390E+000.16583E-070.24950E+01 0.25000E+010.25000E+010.40755E+000.16586E-070.24895E+010.25000E+010.25000E+01 0.40464E+000.16589E-070.24840E+010.25000E+010.25000E+010.40175E+000.16592E-07 0.24785E+010.25000E+010.25000E+010.39888E+000.16595E-070.24730E+010.25000E+01 0.25000E+010.39602E+000.16598E-070.24629E+010.25000E+010.25000E+010.39319E+00 0.16604E-070.24426E+010.25000E+010.25000E+010.38755E+000.16617E-070.24003E+01 0.25000E+010.25000E+010.37604E+000.16629E-070.23581E+010.25000E+010.25000E+01 0.36481E+000.16645E-070.23040E+010.25000E+010.25000E+010.35084E+000.16658E-07 0.22118E+010.25000E+010.25000E+010.34039E+000.16670E-070.21195E+010.25000E+01 0.25000E+010.33007E+000.16695E-070.19350E+010.25000E+010.25000E+010.31023E+00 0.16698E-070.19050E+010.25000E+010.25000E+010.30773E+000.16702E-070.18750E+01 0.25000E+010.25000E+010.30524E+000.16708E-070.18150E+010.25000E+010.25000E+01 0.30033E+000.16711E-070.17838E+010.25000E+010.25000E+010.29809E+000.16714E-07 0.17525E+010.25000E+010.25000E+010.29586E+000.16717E-070.17213E+010.25000E+01 0.25000E+010.29364E+000.16720E-070.16900E+010.25000E+010.25000E+010.29144E+00 0.16723E-070.16595E+010.25000E+010.25000E+010.28925E+000.16729E-070.15984E+01 0.25000E+010.25000E+010.28492E+000.16742E-070.14711E+010.25000E+010.25000E+01 0.27607E+000.16754E-070.13439E+010.25000E+010.25000E+010.26747E+000.16770E-07 0.11810E+010.25000E+010.25000E+010.25681E+000.16773E-070.11502E+010.25000E+01 0.25000E+010.25486E+000.16776E-070.11195E+010.25000E+010.25000E+010.25291E+00 0.16779E-070.10888E+010.25000E+010.25000E+010.25098E+000.16782E-070.10580E+01 0.25000E+010.25000E+010.24906E+000.16785E-070.10324E+010.25000E+010.25000E+01 0.24717E+000.16788E-070.10046E+010.25000E+010.25000E+010.24512E+000.16791E-07 0.97688E+000.25000E+010.25000E+010.24308E+000.16795E-070.94700E+000.25000E+01 0.25000E+010.24091E+000.16798E-070.92108E+000.25000E+010.25000E+010.23884E+00 0.16805E-070.87308E+000.25000E+010.25000E+010.23503E+000.16811E-070.82508E+00 0.25000E+010.25000E+010.23128E+000.16820E-070.75500E+000.25000E+010.25000E+01 0.22589E+000.16828E-070.70811E+000.25000E+010.25000E+010.22149E+000.16840E-07 0.63186E+000.25000E+010.25000E+010.21443E+000.16853E-070.55561E+000.25000E+01 0.25000E+010.20757E+000.16870E-070.45000E+000.25000E+010.25000E+010.19841E+00 0.16873E-070.43000E+000.25000E+010.25000E+010.19687E+000.16876E-070.41000E+00 0.25000E+010.25000E+010.19533E+000.16879E-070.39000E+000.25000E+010.25000E+01 0.19380E+000.16882E-070.37000E+000.25000E+010.25000E+010.19228E+000.16885E-07 0.35292E+000.25000E+010.25000E+010.19078E+000.16888E-070.33442E+000.25000E+01 0.25000E+010.18916E+000.16891E-070.31592E+000.25000E+010.25000E+010.18755E+00 0.16895E-070.29600E+000.25000E+010.25000E+010.18584E+000.16898E-070.28176E+00 0.25000E+010.25000E+010.18420E+000.16905E-070.25327E+000.25000E+010.25000E+01 0.18096E+000.16918E-070.20052E+000.25000E+010.25000E+010.17509E+000.16930E-07 0.14777E+000.25000E+010.25000E+010.16941E+000.16945E-070.85000E-010.25000E+01 0.25000E+010.16286E+000.16958E-070.67750E-010.25000E+010.25000E+010.15763E+00 0.16970E-070.50500E-010.25000E+010.25000E+010.15247E+000.16995E-070.16000E-01 0.25000E+010.25000E+010.14262E+000.17007E-070.13250E-010.25000E+010.25000E+01 0.13799E+000.17020E-070.10500E-010.25000E+010.25000E+010.13344E+000.17045E-07 0.50000E-020.25000E+010.25000E+010.12475E+000.17058E-070.40000E-020.25000E+01 0.25000E+010.12068E+000.17070E-070.30000E-020.25000E+010.25000E+010.11668E+00 0.17095E-070.10000E-020.25000E+010.25000E+010.10903E+000.17107E-070.10000E-02 0.25000E+010.25000E+010.10545E+000.17120E-070.10000E-020.25000E+010.25000E+01 0.10193E+000.17145E-070.10000E-020.25000E+010.25000E+010.95207E-010.17164E-07 0.81250E-030.25000E+010.25000E+010.90566E-010.17189E-070.56250E-030.25000E+01 0.25000E+010.84575E-010.17214E-070.31250E-030.25000E+010.25000E+010.78967E-01 0.17245E-070.00000E+000.25000E+010.25000E+010.72460E-010.17273E-070.37252E-04 0.25000E+010.25000E+010.67242E-010.17329E-070.11175E-030.25000E+010.25000E+01 0.57541E-010.17518E-070.36175E-030.25000E+010.25000E+010.33621E-010.17707E-07 0.61175E-030.25000E+010.25000E+010.19543E-010.18000E-070.10000E-020.25000E+01 0.25000E+010.81048E-020.18050E-070.76190E-030.25000E+010.25000E+010.70919E-02 0.18150E-070.28571E-030.25000E+010.25000E+010.53344E-020.18255E-07-.21429E-03 0.25000E+010.25000E+010.39541E-020.18420E-07-.10000E-020.25000E+010.25000E+01 0.24564E-020.18423E-07-.12500E-020.25000E+010.25000E+010.24340E-020.18426E-07 -.15000E-020.25000E+010.25000E+010.24129E-020.18433E-07-.20000E-020.25000E+01 0.25000E+010.23737E-020.18436E-07-.22500E-020.25000E+010.25000E+010.23569E-02 0.18439E-07-.25000E-020.25000E+010.25000E+010.23373E-020.18442E-07-.27500E-02 0.25000E+010.25000E+010.23193E-020.18445E-07-.30000E-020.25000E+010.25000E+01 0.23028E-020.18448E-07-.33000E-020.25000E+010.25000E+010.22858E-020.18454E-07 -.39000E-020.25000E+010.25000E+010.22533E-020.18466E-07-.51500E-020.25000E+01 0.25000E+010.21770E-020.18479E-07-.64000E-020.25000E+010.25000E+010.21073E-02 0.18495E-07-.80000E-020.25000E+010.25000E+010.20143E-020.18507E-07-.60000E-02 0.25000E+010.25000E+010.19485E-020.18520E-07-.40000E-020.25000E+010.25000E+01 0.18808E-020.18545E-070.00000E+000.25000E+010.25000E+010.17604E-020.18558E-07 0.19000E-010.25000E+010.25000E+010.16998E-020.18570E-070.38000E-010.25000E+01 0.25000E+010.16436E-020.18595E-070.76000E-010.25000E+010.25000E+010.15316E-02 0.18607E-070.14075E+000.25000E+010.25000E+010.14795E-020.18620E-070.20550E+00 0.25000E+010.25000E+010.14315E-020.18645E-070.33500E+000.25000E+010.25000E+01 0.13343E-020.18648E-070.36275E+000.25000E+010.25000E+010.13270E-020.18651E-07 0.39050E+000.25000E+010.25000E+010.13155E-020.18657E-070.44600E+000.25000E+01 0.25000E+010.12930E-020.18660E-070.47325E+000.25000E+010.25000E+010.12817E-02 0.18663E-070.50050E+000.25000E+010.25000E+010.12713E-020.18667E-070.52775E+00 0.25000E+010.25000E+010.12623E-020.18670E-070.55500E+000.25000E+010.25000E+01 0.12541E-020.18673E-070.58160E+000.25000E+010.25000E+010.12446E-020.18680E-07 0.63480E+000.25000E+010.25000E+010.12266E-020.18689E-070.71255E+000.25000E+01 0.25000E+010.12015E-020.18708E-070.86600E+000.25000E+010.25000E+010.11445E-02 0.18720E-070.95250E+000.25000E+010.25000E+010.11080E-020.18732E-070.10390E+01 0.25000E+010.25000E+010.10751E-020.18757E-070.12120E+010.25000E+010.25000E+01 0.10095E-020.18770E-070.12787E+010.25000E+010.25000E+010.97612E-030.18783E-07 0.13455E+010.25000E+010.25000E+010.94612E-030.18808E-070.14790E+010.25000E+01 0.25000E+010.88570E-030.18811E-070.14950E+010.25000E+010.25000E+010.88003E-03 0.18814E-070.15110E+010.25000E+010.25000E+010.87535E-030.18817E-070.15270E+01 0.25000E+010.25000E+010.87181E-030.18820E-070.15430E+010.25000E+010.25000E+01 0.86856E-030.18823E-070.15594E+010.25000E+010.25000E+010.86369E-030.18826E-07 0.15771E+010.25000E+010.25000E+010.85959E-030.18829E-070.15949E+010.25000E+01 0.25000E+010.85679E-030.18833E-070.16140E+010.25000E+010.25000E+010.85385E-03 0.18836E-070.16351E+010.25000E+010.25000E+010.84883E-030.18842E-070.16726E+01 0.25000E+010.25000E+010.84062E-030.18848E-070.17101E+010.25000E+010.25000E+01 0.82953E-030.18857E-070.17640E+010.25000E+010.25000E+010.81447E-030.18860E-07 0.17823E+010.25000E+010.25000E+010.80962E-030.18863E-070.18005E+010.25000E+01 0.25000E+010.80598E-030.18867E-070.18188E+010.25000E+010.25000E+010.80366E-03 0.18870E-070.18370E+010.25000E+010.25000E+010.80152E-030.18873E-070.18550E+01 0.25000E+010.25000E+010.79780E-030.18876E-070.18730E+010.25000E+010.25000E+01 0.79543E-030.18882E-070.19090E+010.25000E+010.25000E+010.79102E-030.18886E-07 0.19321E+010.25000E+010.25000E+010.78347E-030.18896E-070.19784E+010.25000E+01 0.25000E+010.76916E-030.18908E-070.20439E+010.25000E+010.25000E+010.74998E-03 0.18933E-070.21710E+010.25000E+010.25000E+010.71202E-030.18945E-070.22125E+01 0.25000E+010.25000E+010.69077E-030.18958E-070.22540E+010.25000E+010.25000E+01 0.66879E-030.18982E-070.23370E+010.25000E+010.25000E+010.62972E-030.18989E-07 0.23482E+010.25000E+010.25000E+010.61990E-030.18996E-070.23594E+010.25000E+01 0.25000E+010.61196E-030.19010E-070.23818E+010.25000E+010.25000E+010.59167E-03 0.19016E-070.23906E+010.24660E+010.25000E+010.47024E-030.19021E-070.23994E+01 0.24321E+010.25000E+010.33143E-030.19026E-070.24082E+010.23981E+010.25000E+01 0.17503E-030.19032E-070.24170E+010.23642E+010.25000E+010.15954E-040.19038E-07 0.24217E+010.23302E+010.25000E+01-.14204E-030.19048E-070.24312E+010.22623E+01 0.25000E+01-.45590E-030.19061E-070.24422E+010.21836E+010.25000E+01-.80778E-03 0.19083E-070.24610E+010.20494E+010.25000E+01-.13444E-020.19096E-070.24660E+01 0.19274E+010.25000E+01-.16120E-020.19108E-070.24710E+010.17258E+010.25000E+01 -.18375E-020.19133E-070.24810E+010.12963E+010.25000E+010.78363E-030.19145E-07 0.24835E+010.10648E+010.25000E+010.52904E-020.19158E-070.24860E+010.85938E+00 0.25000E+010.10821E-010.19183E-070.24910E+010.48889E+000.25000E+010.27934E-01 0.19195E-070.24920E+010.42083E+000.25000E+010.39738E-010.19207E-070.24930E+01 0.35278E+000.25000E+010.52053E-010.19220E-070.24940E+010.28472E+000.25000E+01 0.65276E-010.19232E-070.24950E+010.21667E+000.25000E+010.79283E-010.19242E-07 0.24956E+010.16250E+000.25000E+010.91229E-010.19251E-070.24962E+010.10833E+00 0.25000E+010.10342E+000.19261E-070.24968E+010.54167E-010.25000E+010.11611E+00 0.19271E-070.24973E+010.00000E+000.25000E+010.12928E+000.19274E-070.24975E+01 0.00000E+000.25000E+010.13310E+000.19277E-070.24977E+010.00000E+000.25000E+01 0.13692E+000.19279E-070.24978E+010.00000E+000.25000E+010.14074E+000.19282E-07 0.24980E+010.00000E+000.25000E+010.14457E+000.19285E-070.24981E+010.00000E+00 0.25000E+010.14839E+000.19290E-070.24982E+010.00000E+000.25000E+010.15605E+00 0.19303E-070.24984E+010.00000E+000.25000E+010.17377E+000.19316E-070.24987E+01 0.00000E+000.25000E+010.19148E+000.19333E-070.24990E+010.00000E+000.25000E+01 0.21540E+000.19345E-070.24990E+010.00000E+000.25000E+010.23269E+000.19358E-07 0.24990E+010.00000E+000.25000E+010.24997E+000.19383E-070.24990E+010.00000E+00 0.25000E+010.28446E+000.19396E-070.24992E+010.00000E+000.25000E+010.30165E+00 0.19408E-070.24995E+010.00000E+000.25000E+010.31883E+000.19433E-070.25000E+01 0.00000E+000.25000E+010.35311E+000.19452E-070.25000E+010.00000E+000.25000E+01 0.37871E+000.19489E-070.25000E+010.00000E+000.25000E+010.42979E+000.19631E-07 0.25000E+010.00000E+000.25000E+010.62026E+000.19773E-070.25000E+010.00000E+00 0.25000E+010.80598E+000.20000E-070.25000E+010.00000E+000.25000E+010.10903E+01 0.20050E-070.25000E+010.00000E+000.25000E+010.11498E+010.20130E-070.25000E+01 0.00000E+000.25000E+010.12434E+010.20210E-070.25000E+010.00000E+000.25000E+01 0.13339E+010.20320E-070.25000E+010.00000E+000.25000E+010.14525E+010.20333E-07 0.25000E+010.00000E+000.25000E+010.14655E+010.20345E-070.25000E+010.00000E+00 0.25000E+010.14784E+010.20370E-070.25000E+010.00000E+000.25000E+010.15040E+01 0.20389E-070.25004E+010.00000E+000.25000E+010.15228E+010.20414E-070.25009E+01 0.00000E+000.25000E+010.15477E+010.20439E-070.25014E+010.00000E+000.25000E+01 0.15722E+010.20470E-070.25020E+010.00000E+000.25000E+010.16022E+010.20482E-07 0.25040E+010.00000E+000.25000E+010.16140E+010.20495E-070.25060E+010.00000E+00 0.25000E+010.16258E+010.20520E-070.25100E+010.00000E+000.25000E+010.16491E+01 0.20533E-070.25092E+010.00000E+000.25000E+010.16605E+010.20545E-070.25085E+01 0.00000E+000.25000E+010.16719E+010.20570E-070.25070E+010.00000E+000.25000E+01 0.16945E+010.20573E-070.25040E+010.00000E+000.25000E+010.16973E+010.20577E-07 0.25010E+010.00000E+000.25000E+010.17002E+010.20583E-070.24950E+010.00000E+00 0.25000E+010.17060E+010.20586E-070.24895E+010.00000E+000.25000E+010.17087E+01 0.20589E-070.24840E+010.00000E+000.25000E+010.17113E+010.20592E-070.24785E+01 0.00000E+000.25000E+010.17139E+010.20595E-070.24730E+010.00000E+000.25000E+01 0.17166E+010.20598E-070.24629E+010.00000E+000.25000E+010.17192E+010.20604E-07 0.24426E+010.00000E+000.25000E+010.17244E+010.20617E-070.24003E+010.00000E+00 0.25000E+010.17353E+010.20629E-070.23581E+010.00000E+000.25000E+010.17460E+01 0.20645E-070.23040E+010.00000E+000.25000E+010.17596E+010.20658E-070.22118E+01 0.00000E+000.25000E+010.17700E+010.20670E-070.21195E+010.00000E+000.25000E+01 0.17804E+010.20695E-070.19350E+010.00000E+000.25000E+010.18009E+010.20698E-07 0.19050E+010.00000E+000.25000E+010.18035E+010.20701E-070.18750E+010.00000E+00 0.25000E+010.18061E+010.20708E-070.18150E+010.00000E+000.25000E+010.18114E+01 0.20711E-070.17838E+010.00000E+000.25000E+010.18138E+010.20714E-070.17525E+01 0.00000E+000.25000E+010.18162E+010.20717E-070.17213E+010.00000E+000.25000E+01 0.18185E+010.20720E-070.16900E+010.00000E+000.25000E+010.18209E+010.20723E-07 0.16595E+010.00000E+000.25000E+010.18233E+010.20729E-070.15984E+010.00000E+00 0.25000E+010.18280E+010.20741E-070.14711E+010.00000E+000.25000E+010.18378E+01 0.20754E-070.13439E+010.00000E+000.25000E+010.18475E+010.20770E-070.11810E+01 0.00000E+000.25000E+010.18597E+010.20773E-070.11502E+010.00000E+000.25000E+01 0.18620E+010.20776E-070.11195E+010.00000E+000.25000E+010.18643E+010.20779E-07 0.10888E+010.00000E+000.25000E+010.18665E+010.20782E-070.10580E+010.00000E+00 0.25000E+010.18688E+010.20785E-070.10324E+010.00000E+000.25000E+010.18710E+01 0.20788E-070.10046E+010.00000E+000.25000E+010.18735E+010.20792E-070.97688E+00 0.00000E+000.25000E+010.18759E+010.20795E-070.94700E+000.00000E+000.25000E+01 0.18785E+010.20798E-070.92108E+000.00000E+000.25000E+010.18810E+010.20805E-07 0.87308E+000.00000E+000.25000E+010.18856E+010.20811E-070.82508E+000.00000E+00 0.25000E+010.18902E+010.20820E-070.75500E+000.00000E+000.25000E+010.18968E+01 0.20828E-070.70811E+000.00000E+000.25000E+010.19023E+010.20840E-070.63186E+00 0.00000E+000.25000E+010.19113E+010.20853E-070.55561E+000.00000E+000.25000E+01 0.19201E+010.20870E-070.45000E+000.00000E+000.25000E+010.19322E+010.20873E-07 0.43000E+000.00000E+000.25000E+010.19342E+010.20876E-070.41000E+000.00000E+00 0.25000E+010.19363E+010.20879E-070.39000E+000.00000E+000.25000E+010.19384E+01 0.20882E-070.37000E+000.00000E+000.25000E+010.19404E+010.20885E-070.35292E+00 0.00000E+000.25000E+010.19425E+010.20888E-070.33442E+000.00000E+000.25000E+01 0.19447E+010.20892E-070.31592E+000.00000E+000.25000E+010.19469E+010.20895E-07 0.29600E+000.00000E+000.25000E+010.19492E+010.20898E-070.28176E+000.00000E+00 0.25000E+010.19515E+010.20905E-070.25327E+000.00000E+000.25000E+010.19560E+01 0.20918E-070.20052E+000.00000E+000.25000E+010.19643E+010.20930E-070.14777E+00 0.00000E+000.25000E+010.19725E+010.20945E-070.85000E-010.00000E+000.25000E+01 0.19821E+010.20958E-070.67750E-010.00000E+000.25000E+010.19900E+010.20970E-07 0.50500E-010.00000E+000.25000E+010.19979E+010.20995E-070.16000E-010.00000E+00 0.25000E+010.20133E+010.21007E-070.13250E-010.00000E+000.25000E+010.20208E+01 0.21020E-070.10500E-010.00000E+000.25000E+010.20283E+010.21045E-070.50000E-02 0.00000E+000.25000E+010.20429E+010.21058E-070.40000E-020.00000E+000.25000E+01 0.20500E+010.21070E-070.30000E-020.00000E+000.25000E+010.20571E+010.21095E-07 0.10000E-020.00000E+000.25000E+010.20709E+010.21107E-070.10000E-020.00000E+00 0.25000E+010.20777E+010.21120E-070.10000E-020.00000E+000.25000E+010.20844E+01 0.21145E-070.10000E-020.00000E+000.25000E+010.20975E+010.21164E-070.81250E-03 0.00000E+000.25000E+010.21070E+010.21189E-070.56250E-030.00000E+000.25000E+01 0.21195E+010.21214E-070.31250E-030.00000E+000.25000E+010.21316E+010.21245E-07 0.00000E+000.00000E+000.25000E+010.21463E+010.21273E-070.37252E-040.00000E+00 0.25000E+010.21589E+010.21329E-070.11175E-030.00000E+000.25000E+010.21832E+01 0.21518E-070.36175E-030.00000E+000.25000E+010.22539E+010.21707E-070.61175E-03 0.00000E+000.25000E+010.23098E+010.22000E-070.10000E-020.00000E+000.25000E+01 0.23738E+010.22050E-070.76190E-030.00000E+000.25000E+010.23821E+010.22150E-07 0.28571E-030.00000E+000.25000E+010.23975E+010.22255E-07-.21429E-030.00000E+00 0.25000E+010.24116E+010.22420E-07-.10000E-020.00000E+000.25000E+010.24300E+01 0.22423E-07-.12500E-020.00000E+000.25000E+010.24303E+010.22426E-07-.15000E-02 0.00000E+000.25000E+010.24307E+010.22433E-07-.20000E-020.00000E+000.25000E+01 0.24313E+010.22436E-07-.22500E-020.00000E+000.25000E+010.24316E+010.22439E-07 -.25000E-020.00000E+000.25000E+010.24319E+010.22442E-07-.27500E-020.00000E+00 0.25000E+010.24322E+010.22445E-07-.30000E-020.00000E+000.25000E+010.24324E+01 0.22448E-07-.33000E-020.00000E+000.25000E+010.24327E+010.22454E-07-.39000E-02 0.00000E+000.25000E+010.24333E+010.22466E-07-.51500E-020.00000E+000.25000E+01 0.24345E+010.22479E-07-.64000E-020.00000E+000.25000E+010.24356E+010.22495E-07 -.80000E-020.00000E+000.25000E+010.24371E+010.22507E-07-.60000E-020.00000E+00 0.25000E+010.24382E+010.22520E-07-.40000E-020.00000E+000.25000E+010.24392E+01 0.22545E-070.00000E+000.00000E+000.25000E+010.24414E+010.22558E-070.19000E-01 0.00000E+000.25000E+010.24424E+010.22570E-070.38000E-010.00000E+000.25000E+01 0.24434E+010.22595E-070.76000E-010.00000E+000.25000E+010.24454E+010.22607E-07 0.14075E+000.00000E+000.25000E+010.24463E+010.22620E-070.20550E+000.00000E+00 0.25000E+010.24473E+010.22645E-070.33500E+000.00000E+000.25000E+010.24491E+01 0.22648E-070.36275E+000.00000E+000.25000E+010.24493E+010.22651E-070.39050E+00 0.00000E+000.25000E+010.24495E+010.22654E-070.41825E+000.00000E+000.25000E+01 0.24498E+010.22657E-070.44600E+000.00000E+000.25000E+010.24500E+010.22660E-07 0.47115E+000.00000E+000.25000E+010.24502E+010.22663E-070.49840E+000.00000E+00 0.25000E+010.24504E+010.22666E-070.52565E+000.00000E+000.25000E+010.24506E+01 0.22670E-070.55500E+000.00000E+000.25000E+010.24509E+010.22673E-070.58262E+00 0.00000E+000.25000E+010.24511E+010.22680E-070.63787E+000.00000E+000.25000E+01 0.24516E+010.22690E-070.71562E+000.00000E+000.25000E+010.24522E+010.22708E-07 0.86600E+000.00000E+000.25000E+010.24535E+010.22720E-070.95250E+000.00000E+00 0.25000E+010.24543E+010.22733E-070.10390E+010.00000E+000.25000E+010.24551E+01 0.22757E-070.12120E+010.00000E+000.25000E+010.24566E+010.22770E-070.12787E+01 0.00000E+000.25000E+010.24574E+010.22782E-070.13455E+010.00000E+000.25000E+01 0.24581E+010.22808E-070.14790E+010.00000E+000.25000E+010.24596E+010.22811E-07 0.14950E+010.00000E+000.25000E+010.24598E+010.22814E-070.15110E+010.00000E+00 0.25000E+010.24600E+010.22817E-070.15270E+010.00000E+000.25000E+010.24601E+01 0.22820E-070.15430E+010.00000E+000.25000E+010.24603E+010.22823E-070.15594E+01 0.00000E+000.25000E+010.24605E+010.22826E-070.15771E+010.00000E+000.25000E+01 0.24607E+010.22830E-070.15949E+010.00000E+000.25000E+010.24609E+010.22833E-07 0.16140E+010.00000E+000.25000E+010.24610E+010.22836E-070.16351E+010.00000E+00 0.25000E+010.24612E+010.22842E-070.16726E+010.00000E+000.25000E+010.24616E+01 0.22848E-070.17101E+010.00000E+000.25000E+010.24619E+010.22857E-070.17640E+01 0.00000E+000.25000E+010.24624E+010.22860E-070.17823E+010.00000E+000.25000E+01 0.24625E+010.22863E-070.18005E+010.00000E+000.25000E+010.24627E+010.22870E-07 0.18370E+010.00000E+000.25000E+010.24630E+010.22873E-070.18550E+010.00000E+00 0.25000E+010.24632E+010.22876E-070.18730E+010.00000E+000.25000E+010.24634E+01 0.22879E-070.18910E+010.00000E+000.25000E+010.24635E+010.22882E-070.19090E+01 0.00000E+000.25000E+010.24637E+010.22885E-070.19244E+010.00000E+000.25000E+01 0.24638E+010.22891E-070.19552E+010.00000E+000.25000E+010.24641E+010.22904E-07 0.20207E+010.00000E+000.25000E+010.24648E+010.22917E-070.20862E+010.00000E+00 0.25000E+010.24654E+010.22933E-070.21710E+010.00000E+000.25000E+010.24662E+01 0.22945E-070.22125E+010.00000E+000.25000E+010.24668E+010.22958E-070.22540E+01 0.00000E+000.25000E+010.24674E+010.22982E-070.23370E+010.00000E+000.25000E+01 0.24685E+010.22995E-070.23570E+010.00000E+000.25000E+010.24690E+010.23007E-07 0.23770E+010.00000E+000.25000E+010.24696E+010.23032E-070.24170E+010.00000E+00 0.25000E+010.24707E+010.23045E-070.24280E+010.00000E+000.25000E+010.24712E+01 0.23058E-070.24390E+010.00000E+000.25000E+010.24717E+010.23083E-070.24610E+01 0.00000E+000.25000E+010.24727E+010.23096E-070.24660E+010.00000E+000.25000E+01 0.24732E+010.23108E-070.24710E+010.00000E+000.25000E+010.24737E+010.23133E-07 0.24810E+010.00000E+000.25000E+010.24746E+010.23145E-070.24835E+010.00000E+00 0.25000E+010.24750E+010.23158E-070.24860E+010.00000E+000.25000E+010.24755E+01 0.23183E-070.24910E+010.00000E+000.25000E+010.24763E+010.23195E-070.24920E+01 0.00000E+000.25000E+010.24767E+010.23207E-070.24930E+010.00000E+000.25000E+01 0.24771E+010.23232E-070.24950E+010.00000E+000.25000E+010.24779E+010.23244E-07 0.24957E+010.00000E+000.25000E+010.24783E+010.23257E-070.24965E+010.00000E+00 0.25000E+010.24787E+010.23282E-070.24980E+010.00000E+000.25000E+010.24794E+01 0.23295E-070.24983E+010.00000E+000.25000E+010.24798E+010.23307E-070.24985E+01 0.00000E+000.25000E+010.24802E+010.23333E-070.24990E+010.00000E+000.25000E+01 0.24809E+010.23345E-070.24990E+010.00000E+000.25000E+010.24812E+010.23358E-07 0.24990E+010.00000E+000.25000E+010.24815E+010.23383E-070.24990E+010.00000E+00 0.25000E+010.24822E+010.23396E-070.24992E+010.00000E+000.25000E+010.24825E+01 0.23408E-070.24995E+010.00000E+000.25000E+010.24828E+010.23433E-070.25000E+01 0.00000E+000.25000E+010.24834E+010.23452E-070.25000E+010.00000E+000.25000E+01 0.24838E+010.23489E-070.25000E+010.00000E+000.25000E+010.24847E+010.23631E-07 0.25000E+010.00000E+000.25000E+010.24875E+010.23773E-070.25000E+010.00000E+00 0.25000E+010.24898E+010.24000E-070.25000E+010.00000E+000.25000E+010.24926E+01 0.10000E+31 gwave2-20170109/examples/quickINV.tr00000644001226200000360000000351013034766135014034 00000000000000=00070002000000009601 inverter circuit 09/15/9813:22:00 Copyright (C) 1985-1997 by Avant! Corporation. 0 1 1 1 1 1 8 8 1 1 TIME 0 in out vcc I(vcc I(vin v(in v(out $&%# N8>L@@s#>L@.[>L@@s#>L@.>L@@s#>L@/?>L@@s#>L@0[>L@@s#>L@0>L@@s#>L@1 p_>L@@s#>L@1O?(@ί@7A俸ds?(@ί1?=q@@Uc?=q@1/<@.R@D@$z-@.R@D1N(@@Fg@7wea@@Fg1U@@'@ʝE4t@@'1b7@?@ʝDˤ@?1@>h@ʝm@>h1w@=l@ʝSwC@=l1@=`G@ʝ @=`G1j@@ʝ3w2|@17@:{w@ʝ@:{w2'@8k@ʝ}@8k2 p_@9&.f@ʝ1@9&.f2 (-@H:~"@A8cB@H:~"2@ZH<@Rʲ8^@ZH<2L@G=@M8k@G=2k>L?P'k@j8X1>L?P'k2V9>L?TE@q=6"Ɖ>L?TE2>L?@S@f6X>L?@S2-E>L@Gu@6>L@Gu2>Q>L@@ i6->L@2O]>L@*@Io252>L@*2ai>L@@Ŭ5>L@2rL@7*@@>L@7*2@>L@I@F4{>L@I2LF>L@@a\>L@2L>L@@4eP>L@2zR>L@@I b>L@2X>L@h@}E 4c>L@h2w>L@@vϴcl>L@qI8gwave2-20170109/examples/diffpair.sp0000644001226200000360000000045513034766135014051 00000000000000SIMPLE DIFFERENTIAL PAIR VCC 7 0 12 VEE 8 0 -12 VIN 1 0 DC 0 AC 1 RS1 1 2 1K RS2 6 0 1K Q1 3 2 4 MOD1 Q2 5 6 4 MOD1 RC1 7 3 10K RC2 7 5 10K RE 4 8 10K .MODEL MOD1 NPN BF=50 VAF=50 IS=1.E-12 RB=100 CJC=.5PF TF=.6NS .TF V(5) VIN .AC DEC 10 1 100MEG .END gwave2-20170109/examples/quickAC.ac00000644001226200000360000000414013034766135013621 00000000000000=00050004000000009601 a simple ac run 09/14/9813:49:09 Copyright (C) 1985-1997 by Avant! Corporation. 0 2 1 1 1 8 2 2 8 8 HERTZ 0 1 2 I(v1 v(1 v(2 i(r2 i(c1 $&%# PDz?>Z⩺õӟ?>:E6RD]?>?>}:+61D?>`#&D'?>0:6Dhe?>mMdBRR/?>:6S>E/?>뻁Hb?>:c7cEEq?>?>:7&Ex&?>ᏺY?>:7QЌE?>¼ P?>:G7E,?>C"Q&6?>": 7?LE:B?>7LL'PQ4'?>:7DF@?>b3U?>߯:8FD?>Fַ?>:88%Fw?>]pjejRX?>:8PiF??>¸?>:д82F=?>jj 7$x?>4:q8F ?>IxкZ]NN?>:n8RG?>|2N7?>_: 9!nGCƹ?>ΕT>+c?>q:z9#Gvw?>RVM?>;: 9KG$i?> yS?>b 9X9}GP?>fآ?>;199#NGE?>_R/]&3O9?>9P9HT?>$yLHֺnQ/?>*,9(9HBُ?>ɀfh( k?>9b: :mHuM)?>Dx85_~?>9V:"dHhy?> D-?>9:8+Hce?>GyͺSE?>:9u:LHg?>)¾gQ`xbmE?>?]9:]IDI ?=ϾHMAkRF?>f9l%:j IA?=]0ʺt!5?>>sN9Co:sU[It$?=L 9.:yfqIPgwave2-20170109/examples/aoi.W.tr00000644001226200000360000117045613034766135013337 0000000000000000010006000000009007 * 98/08/2114:16:31 Copyright (C) 1985-1997 by Avant!,Inc. 0 1 1 1 1 1 1 1 TIME v(clk v(a1 v(a2 v(b1 v(b2 v(out $&%# v(a2 v(b1 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .25000E-10 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .50000E-10 .29999E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .15000E-09 .29997E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .28975E-09 .29995E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .55900E-09 .29990E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .59600E-09 .30008E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .63300E-09 .30047E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .67000E-09 .30088E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .70700E-09 .30130E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .72775E-09 .30122E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .74850E-09 .30115E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .79000E-09 .30100E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .82113E-09 .30003E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .85787E-09 .29846E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .89462E-09 .29569E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .93700E-09 .29250E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .97656E-09 .28716E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .10557E-08 .27227E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .12931E-08 .18740E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .15888E-08 .85438E+00 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .21200E-08 .88000E-01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .21700E-08 .71529E-01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .22650E-08 .48902E-01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .23600E-08 .31329E-01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .25000E-08 .15000E-01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .25500E-08 .13123E-01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .26500E-08 .93686E-02 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .27750E-08 .46758E-02 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .30000E-08 .10000E-02 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .30500E-08 .82935E-03 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .31500E-08 .48805E-03 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .35500E-08-.44560E-03 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .40500E-08-.13125E-02 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .45500E-08-.21795E-02 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .50500E-08-.30464E-02 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .56000E-08-.40000E-02 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .56258E-08-.74333E-02 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .56515E-08-.10867E-01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .56772E-08-.12802E-01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .57030E-08-.14000E-01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .57287E-08-.73786E-02 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .57587E-08 .33571E-03 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .57887E-08 .17545E-01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .58230E-08 .47000E-01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .58551E-08 .10675E+00 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .59194E-08 .22626E+00 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .61764E-08 .10372E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .65584E-08 .17959E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .69404E-08 .24882E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .73510E-08 .28350E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .74010E-08 .28527E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .75010E-08 .28852E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .76532E-08 .29163E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .78055E-08 .29444E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .79600E-08 .29630E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .80100E-08 .29666E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .81100E-08 .29728E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .82450E-08 .29811E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .85000E-08 .29900E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .85500E-08 .29909E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .86500E-08 .29926E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .87750E-08 .29947E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .90000E-08 .29970E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .90500E-08 .29971E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .91500E-08 .29975E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .94000E-08 .29982E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .96500E-08 .29990E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .10000E-07 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .10050E-07 .29999E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .10150E-07 .29997E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .10290E-07 .29995E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .10559E-07 .29990E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .10569E-07 .29995E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .10579E-07 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .10590E-07 .30005E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .10600E-07 .30010E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .10610E-07 .30021E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .10626E-07 .30039E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .10642E-07 .30056E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .10663E-07 .30080E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .10674E-07 .30092E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .10685E-07 .30105E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .10696E-07 .30117E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .10707E-07 .30130E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .10718E-07 .30126E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .10739E-07 .30119E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .10759E-07 .30111E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .10790E-07 .30100E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .10805E-07 .30055E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .10819E-07 .30010E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .10834E-07 .29965E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .10848E-07 .29920E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .10863E-07 .29811E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .10885E-07 .29643E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .10907E-07 .29476E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .10937E-07 .29250E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .10953E-07 .29037E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .10968E-07 .28825E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .10984E-07 .28612E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .11000E-07 .28400E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .11016E-07 .28068E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .11032E-07 .27721E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .11049E-07 .27373E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .11066E-07 .27010E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .11077E-07 .26667E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .11089E-07 .26325E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .11101E-07 .25982E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .11112E-07 .25640E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .11124E-07 .25210E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .11140E-07 .24603E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .11156E-07 .23995E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .11177E-07 .23210E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .11189E-07 .22795E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .11201E-07 .22380E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .11212E-07 .21965E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .11224E-07 .21550E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .11236E-07 .21072E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .11254E-07 .20329E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .11272E-07 .19587E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .11297E-07 .18580E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .11310E-07 .18053E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .11323E-07 .17525E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .11336E-07 .16997E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .11349E-07 .16470E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .11362E-07 .15978E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .11380E-07 .15288E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .11398E-07 .14598E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .11422E-07 .13710E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .11435E-07 .13175E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .11448E-07 .12640E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .11461E-07 .12105E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .11474E-07 .11570E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .11478E-07 .11375E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .11482E-07 .11180E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .11485E-07 .10985E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .11489E-07 .10790E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .11492E-07 .10670E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .11494E-07 .10550E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .11497E-07 .10430E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .11500E-07 .10310E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .11503E-07 .10211E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .11508E-07 .10031E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .11513E-07 .98510E+00 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .11520E-07 .95900E+00 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .11524E-07 .95375E+00 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .11527E-07 .94850E+00 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .11534E-07 .93800E+00 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .11539E-07 .92903E+00 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .11545E-07 .91878E+00 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .11551E-07 .90853E+00 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .11558E-07 .89700E+00 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .11562E-07 .89325E+00 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .11566E-07 .88950E+00 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .11571E-07 .88575E+00 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .11575E-07 .88200E+00 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .11579E-07 .87350E+00 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .11586E-07 .86000E+00 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .11593E-07 .84650E+00 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .11602E-07 .82800E+00 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .11607E-07 .81650E+00 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .11612E-07 .80500E+00 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .11617E-07 .79350E+00 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .11622E-07 .78200E+00 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .11627E-07 .76988E+00 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .11635E-07 .74988E+00 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .11644E-07 .72988E+00 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .11655E-07 .70200E+00 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .11661E-07 .68875E+00 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .11667E-07 .67550E+00 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .11679E-07 .64900E+00 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .11688E-07 .62724E+00 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .11705E-07 .58674E+00 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .11722E-07 .54624E+00 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .11746E-07 .48700E+00 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .11751E-07 .47616E+00 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .11756E-07 .46533E+00 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .11767E-07 .44366E+00 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 .11774E-07 .43024E+00 .30000E+01 .29758E+01 .30000E+01 .30000E+01-.26514E-02 .11780E-07 .41683E+00 .30000E+01 .29516E+01 .30000E+01 .30000E+01-.51477E-02 .11786E-07 .40341E+00 .30000E+01 .29273E+01 .30000E+01 .30000E+01-.72105E-02 .11793E-07 .39000E+00 .30000E+01 .29031E+01 .30000E+01 .30000E+01-.88735E-02 .11800E-07 .37960E+00 .30000E+01 .28789E+01 .30000E+01 .30000E+01-.10148E-01 .11813E-07 .35880E+00 .30000E+01 .28304E+01 .30000E+01 .30000E+01-.12305E-01 .11830E-07 .33080E+00 .30000E+01 .27652E+01 .30000E+01 .30000E+01-.14110E-01 .11863E-07 .27800E+00 .30000E+01 .26422E+01 .30000E+01 .30000E+01-.15716E-01 .11875E-07 .26375E+00 .30000E+01 .25966E+01 .30000E+01 .30000E+01-.15930E-01 .11887E-07 .24950E+00 .30000E+01 .25509E+01 .30000E+01 .30000E+01-.16113E-01 .11912E-07 .22100E+00 .30000E+01 .24596E+01 .30000E+01 .30000E+01-.16399E-01 .11925E-07 .20925E+00 .30000E+01 .24112E+01 .30000E+01 .30000E+01-.16498E-01 .11938E-07 .19750E+00 .30000E+01 .23528E+01 .30000E+01 .30000E+01-.17568E-01 .11951E-07 .18575E+00 .30000E+01 .22913E+01 .30000E+01 .30000E+01-.18753E-01 .11964E-07 .17400E+00 .30000E+01 .22299E+01 .30000E+01 .30000E+01-.19553E-01 .11973E-07 .16750E+00 .30000E+01 .21874E+01 .30000E+01 .30000E+01-.19920E-01 .11982E-07 .16100E+00 .30000E+01 .21449E+01 .30000E+01 .30000E+01-.20246E-01 .12000E-07 .14800E+00 .30000E+01 .20598E+01 .30000E+01 .30000E+01-.20789E-01 .12014E-07 .14125E+00 .30000E+01 .19961E+01 .30000E+01 .30000E+01-.21001E-01 .12041E-07 .12775E+00 .30000E+01 .18685E+01 .30000E+01 .30000E+01-.21317E-01 .12071E-07 .11275E+00 .30000E+01 .17244E+01 .30000E+01 .30000E+01-.21881E-01 .12120E-07 .88000E-01 .30000E+01 .14829E+01 .30000E+01 .30000E+01-.22722E-01 .12141E-07 .81000E-01 .30000E+01 .13793E+01 .30000E+01 .30000E+01-.23038E-01 .12163E-07 .74000E-01 .30000E+01 .12756E+01 .30000E+01 .30000E+01-.23374E-01 .12184E-07 .67000E-01 .30000E+01 .11744E+01 .30000E+01 .30000E+01-.23501E-01 .12205E-07 .60000E-01 .30000E+01 .10800E+01 .30000E+01 .30000E+01-.23161E-01 .12226E-07 .56069E-01 .30000E+01 .98556E+00 .30000E+01 .30000E+01-.23213E-01 .12269E-07 .48208E-01 .30000E+01 .79667E+00 .30000E+01 .30000E+01-.20541E-01 .12312E-07 .40208E-01 .30000E+01 .60444E+00 .30000E+01 .30000E+01-.89887E-02 .12378E-07 .28000E-01 .30000E+01 .45502E+00 .30000E+01 .30000E+01-.31315E-02 .12409E-07 .24750E-01 .30000E+01 .38699E+00 .30000E+01 .30000E+01-.24191E-02 .12439E-07 .21500E-01 .30000E+01 .31896E+00 .30000E+01 .30000E+01-.19083E-02 .12470E-07 .18250E-01 .30000E+01 .25093E+00 .30000E+01 .30000E+01-.17065E-02 .12500E-07 .15000E-01 .30000E+01 .18290E+00 .30000E+01 .30000E+01-.15835E-02 .12521E-07 .14230E-01 .30000E+01 .13717E+00 .30000E+01 .30000E+01-.15229E-02 .12541E-07 .13461E-01 .30000E+01 .91450E-01 .30000E+01 .30000E+01-.14761E-02 .12562E-07 .12691E-01 .30000E+01 .45725E-01 .30000E+01 .30000E+01-.14692E-02 .12582E-07 .11922E-01 .30000E+01 .00000E+00 .30000E+01 .30000E+01-.14433E-02 .12603E-07 .11152E-01 .30000E+01 .00000E+00 .30000E+01 .30000E+01-.10186E-02 .12643E-07 .96126E-02 .30000E+01 .00000E+00 .30000E+01 .30000E+01-.41753E-03 .12696E-07 .76323E-02 .30000E+01 .00000E+00 .30000E+01 .30000E+01-.95845E-04 .12793E-07 .40000E-02 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .16993E-04 .12843E-07 .32754E-02 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .11106E-04 .12895E-07 .25254E-02 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .10846E-04 .12946E-07 .17754E-02 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .11906E-04 .13000E-07 .10000E-02 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .11323E-04 .13050E-07 .82935E-03 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .10219E-04 .13123E-07 .57935E-03 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .10447E-04 .13196E-07 .32935E-03 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .10863E-04 .13293E-07 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .10076E-04 .13343E-07-.86693E-04 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .99925E-05 .13443E-07-.26008E-03 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .98788E-05 .13843E-07-.95362E-03 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .77595E-05 .14343E-07-.18205E-02 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .69458E-05 .14843E-07-.26875E-02 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .75014E-05 .15343E-07-.35544E-02 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .69450E-05 .15600E-07-.40000E-02 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .82315E-05 .15615E-07-.60000E-02 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .11401E-04 .15630E-07-.80000E-02 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12643E-04 .15645E-07-.10000E-01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12568E-04 .15660E-07-.12000E-01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12627E-04 .15671E-07-.12500E-01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12220E-04 .15682E-07-.13000E-01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12832E-04 .15692E-07-.13500E-01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .13025E-04 .15703E-07-.14000E-01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12877E-04 .15714E-07-.11236E-01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12244E-04 .15731E-07-.67357E-02 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12353E-04 .15749E-07-.22357E-02 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12484E-04 .15773E-07 .40000E-02 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .11996E-04 .15785E-07 .14750E-01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .11977E-04 .15798E-07 .25500E-01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12699E-04 .15810E-07 .36250E-01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12866E-04 .15823E-07 .47000E-01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12737E-04 .15836E-07 .70250E-01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12048E-04 .15861E-07 .11675E+00 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .11916E-04 .15885E-07 .16325E+00 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12023E-04 .15923E-07 .23300E+00 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .11376E-04 .15941E-07 .28900E+00 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .11457E-04 .15959E-07 .34500E+00 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12314E-04 .15976E-07 .40100E+00 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12485E-04 .15994E-07 .45700E+00 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12350E-04 .15995E-07 .46050E+00 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .13819E-04 .15996E-07 .46400E+00 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .14524E-04 .15997E-07 .47100E+00 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .14294E-04 .15998E-07 .47375E+00 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .14255E-04 .15999E-07 .47650E+00 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .14426E-04 .16000E-07 .48200E+00 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .14370E-04 .16001E-07 .48582E+00 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .14109E-04 .16003E-07 .49345E+00 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .14009E-04 .16012E-07 .52399E+00 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .13296E-04 .16040E-07 .61899E+00 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .11562E-04 .16068E-07 .71399E+00 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12026E-04 .16112E-07 .86200E+00 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .10949E-04 .16132E-07 .91575E+00 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .11267E-04 .16151E-07 .96950E+00 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12194E-04 .16171E-07 .10232E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12350E-04 .16191E-07 .10770E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12226E-04 .16203E-07 .11072E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12075E-04 .16214E-07 .11375E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12756E-04 .16226E-07 .11678E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12931E-04 .16238E-07 .11980E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12797E-04 .16246E-07 .12175E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12527E-04 .16254E-07 .12370E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .13079E-04 .16263E-07 .12565E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .13253E-04 .16271E-07 .12760E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .13123E-04 .16279E-07 .12914E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12562E-04 .16291E-07 .13134E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12775E-04 .16303E-07 .13354E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12917E-04 .16318E-07 .13640E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12553E-04 .16326E-07 .13802E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12470E-04 .16335E-07 .13965E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .13062E-04 .16344E-07 .14128E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .13221E-04 .16352E-07 .14290E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .13102E-04 .16360E-07 .14447E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12591E-04 .16368E-07 .14605E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .13094E-04 .16384E-07 .14920E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12753E-04 .16390E-07 .15030E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12862E-04 .16396E-07 .15140E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .13388E-04 .16401E-07 .15250E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .13519E-04 .16407E-07 .15360E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .13425E-04 .16413E-07 .15416E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12940E-04 .16421E-07 .15496E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .13105E-04 .16429E-07 .15576E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .13234E-04 .16440E-07 .15680E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12917E-04 .16445E-07 .15757E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12919E-04 .16451E-07 .15835E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .13415E-04 .16457E-07 .15912E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .13555E-04 .16462E-07 .15990E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .13455E-04 .16467E-07 .16100E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12982E-04 .16473E-07 .16210E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .13391E-04 .16479E-07 .16320E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .13573E-04 .16484E-07 .16430E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .13442E-04 .16488E-07 .16508E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .13235E-04 .16492E-07 .16585E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .13623E-04 .16500E-07 .16740E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .13384E-04 .16506E-07 .16858E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12898E-04 .16514E-07 .17011E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .13148E-04 .16522E-07 .17163E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .13293E-04 .16531E-07 .17350E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .13022E-04 .16537E-07 .17472E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12931E-04 .16542E-07 .17595E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .13410E-04 .16547E-07 .17717E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .13559E-04 .16553E-07 .17840E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .13452E-04 .16559E-07 .17962E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12982E-04 .16569E-07 .18207E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12871E-04 .16585E-07 .18557E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12638E-04 .16616E-07 .19240E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .11636E-04 .16627E-07 .19473E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12095E-04 .16638E-07 .19705E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12849E-04 .16649E-07 .19937E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12973E-04 .16660E-07 .20170E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12878E-04 .16671E-07 .20376E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12217E-04 .16693E-07 .20788E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12087E-04 .16719E-07 .21265E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12020E-04 .16762E-07 .22080E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .11116E-04 .16780E-07 .22362E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .11415E-04 .16798E-07 .22645E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12307E-04 .16834E-07 .23210E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .11645E-04 .16858E-07 .23595E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .11009E-04 .16883E-07 .23980E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .11889E-04 .16931E-07 .24750E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .11215E-04 .16948E-07 .24992E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .11483E-04 .16965E-07 .25235E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12356E-04 .16983E-07 .25477E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12512E-04 .17000E-07 .25720E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12389E-04 .17017E-07 .25900E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .11585E-04 .17045E-07 .26193E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .11736E-04 .17073E-07 .26485E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .11884E-04 .17112E-07 .26890E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .11297E-04 .17132E-07 .27037E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .11277E-04 .17152E-07 .27185E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12164E-04 .17172E-07 .27332E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12346E-04 .17192E-07 .27480E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12201E-04 .17212E-07 .27589E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .11352E-04 .17252E-07 .27807E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .11221E-04 .17291E-07 .28024E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .11339E-04 .17351E-07 .28350E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .10588E-04 .17379E-07 .28450E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .10683E-04 .17407E-07 .28550E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .11706E-04 .17436E-07 .28650E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .11886E-04 .17464E-07 .28750E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .11739E-04 .17469E-07 .28765E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12817E-04 .17475E-07 .28780E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .13505E-04 .17480E-07 .28795E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .13548E-04 .17485E-07 .28810E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .13517E-04 .17489E-07 .28820E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .13292E-04 .17492E-07 .28830E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .13663E-04 .17500E-07 .28850E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .13437E-04 .17506E-07 .28862E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12961E-04 .17517E-07 .28885E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12849E-04 .17562E-07 .28977E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .11340E-04 .17629E-07 .29114E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .10140E-04 .17696E-07 .29252E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .10584E-04 .17769E-07 .29400E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .10061E-04 .17817E-07 .29457E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .97515E-05 .17864E-07 .29515E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .10874E-04 .17960E-07 .29630E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .99485E-05 .17966E-07 .29635E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12535E-04 .17971E-07 .29640E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .13515E-04 .17977E-07 .29645E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .13428E-04 .17983E-07 .29650E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .13491E-04 .17987E-07 .29653E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .13196E-04 .17991E-07 .29655E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .13579E-04 .18000E-07 .29660E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .13340E-04 .18006E-07 .29664E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12838E-04 .18019E-07 .29672E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12723E-04 .18070E-07 .29703E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .11130E-04 .18143E-07 .29748E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .99836E-05 .18217E-07 .29793E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .10430E-04 .18293E-07 .29840E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .99660E-05 .18343E-07 .29854E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .96652E-05 .18395E-07 .29869E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .10743E-04 .18446E-07 .29884E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .10930E-04 .18500E-07 .29900E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .10716E-04 .18550E-07 .29909E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .97081E-05 .18623E-07 .29921E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .10140E-04 .18697E-07 .29934E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .10295E-04 .18793E-07 .29950E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .96689E-05 .18843E-07 .29955E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .96482E-05 .18895E-07 .29960E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .10752E-04 .18946E-07 .29965E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .10922E-04 .19000E-07 .29970E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .10723E-04 .19050E-07 .29971E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .97085E-05 .19150E-07 .29975E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .95924E-05 .19400E-07 .29982E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .82023E-05 .19650E-07 .29990E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .79633E-05 .20000E-07 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .77498E-05 .20050E-07 .29999E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .95384E-05 .20150E-07 .29997E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .97430E-05 .20290E-07 .29995E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .89644E-05 .20559E-07 .29990E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .80879E-05 .20569E-07 .29995E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .11817E-04 .20580E-07 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .13069E-04 .20590E-07 .30005E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12923E-04 .20600E-07 .30010E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .13034E-04 .20610E-07 .30021E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12315E-04 .20626E-07 .30039E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12463E-04 .20642E-07 .30056E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12613E-04 .20663E-07 .30080E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12158E-04 .20674E-07 .30092E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12146E-04 .20685E-07 .30105E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12827E-04 .20696E-07 .30117E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12989E-04 .20707E-07 .30130E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12866E-04 .20718E-07 .30126E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12216E-04 .20739E-07 .30119E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12158E-04 .20760E-07 .30111E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12269E-04 .20790E-07 .30100E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .11687E-04 .20804E-07 .30055E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .11760E-04 .20819E-07 .30010E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12545E-04 .20834E-07 .29965E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12710E-04 .20848E-07 .29920E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12582E-04 .20862E-07 .29811E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .11842E-04 .20885E-07 .29643E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12046E-04 .20907E-07 .29476E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12198E-04 .20937E-07 .29250E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .11686E-04 .20953E-07 .29037E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .11650E-04 .20968E-07 .28825E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12448E-04 .21000E-07 .28400E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .11864E-04 .21017E-07 .28052E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .11602E-04 .21033E-07 .27705E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12385E-04 .21066E-07 .27010E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .11809E-04 .21078E-07 .26667E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12060E-04 .21089E-07 .26325E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12796E-04 .21100E-07 .25982E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12938E-04 .21112E-07 .25640E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12829E-04 .21123E-07 .25210E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12160E-04 .21140E-07 .24603E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12424E-04 .21156E-07 .23995E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12581E-04 .21177E-07 .23210E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12167E-04 .21189E-07 .22795E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12069E-04 .21200E-07 .22380E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12758E-04 .21212E-07 .21965E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12929E-04 .21224E-07 .21550E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12798E-04 .21236E-07 .21072E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12130E-04 .21254E-07 .20329E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12297E-04 .21272E-07 .19587E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12440E-04 .21297E-07 .18580E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .11962E-04 .21310E-07 .18053E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .11925E-04 .21323E-07 .17525E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12658E-04 .21349E-07 .16470E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12133E-04 .21367E-07 .15780E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .11482E-04 .21385E-07 .15090E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12250E-04 .21422E-07 .13710E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .11679E-04 .21435E-07 .13175E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .11899E-04 .21448E-07 .12640E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12669E-04 .21461E-07 .12105E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12818E-04 .21474E-07 .11570E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12703E-04 .21478E-07 .11375E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .13186E-04 .21481E-07 .11180E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .13703E-04 .21489E-07 .10790E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .13387E-04 .21492E-07 .10670E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .13481E-04 .21495E-07 .10550E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .13866E-04 .21497E-07 .10430E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .13986E-04 .21500E-07 .10310E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .13908E-04 .21503E-07 .10211E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .13555E-04 .21508E-07 .10031E+01 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .13516E-04 .21513E-07 .98510E+00 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .13598E-04 .21520E-07 .95900E+00 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .13289E-04 .21523E-07 .95375E+00 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .13310E-04 .21527E-07 .94850E+00 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .13720E-04 .21534E-07 .93800E+00 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .13473E-04 .21539E-07 .92903E+00 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .13024E-04 .21545E-07 .91878E+00 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .13341E-04 .21551E-07 .90853E+00 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .13499E-04 .21558E-07 .89700E+00 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .13301E-04 .21562E-07 .89325E+00 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .13172E-04 .21566E-07 .88950E+00 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .13588E-04 .21571E-07 .88575E+00 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .13734E-04 .21575E-07 .88200E+00 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .13633E-04 .21579E-07 .87350E+00 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .13214E-04 .21586E-07 .86000E+00 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .13281E-04 .21593E-07 .84650E+00 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .13388E-04 .21602E-07 .82800E+00 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .13068E-04 .21607E-07 .81650E+00 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .13016E-04 .21612E-07 .80500E+00 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .13481E-04 .21617E-07 .79350E+00 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .13624E-04 .21622E-07 .78200E+00 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .13522E-04 .21627E-07 .76988E+00 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .13071E-04 .21635E-07 .74988E+00 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .13118E-04 .21643E-07 .72988E+00 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .13224E-04 .21655E-07 .70200E+00 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12866E-04 .21661E-07 .68875E+00 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12838E-04 .21667E-07 .67550E+00 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .13349E-04 .21673E-07 .66225E+00 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .13493E-04 .21679E-07 .64900E+00 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .13389E-04 .21685E-07 .63449E+00 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12898E-04 .21697E-07 .60548E+00 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12785E-04 .21714E-07 .56498E+00 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12566E-04 .21746E-07 .48700E+00 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .11568E-04 .21751E-07 .47616E+00 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .12797E-04 .21757E-07 .46533E+00 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .13513E-04 .21762E-07 .45449E+00 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .13542E-04 .21767E-07 .44366E+00 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .13521E-04 .21772E-07 .43282E+00 .29804E+01 .00000E+00 .30000E+01 .30000E+01 .13030E-04 .21779E-07 .41941E+00 .29562E+01 .00000E+00 .30000E+01 .30000E+01 .11496E-04 .21785E-07 .40599E+00 .29320E+01 .00000E+00 .30000E+01 .30000E+01 .13871E-04 .21793E-07 .39000E+00 .29031E+01 .00000E+00 .30000E+01 .30000E+01 .14013E-04 .21800E-07 .37860E+00 .28766E+01 .00000E+00 .30000E+01 .30000E+01 .13216E-04 .21814E-07 .35580E+00 .28234E+01 .00000E+00 .30000E+01 .30000E+01 .12218E-04 .21832E-07 .32780E+00 .27582E+01 .00000E+00 .30000E+01 .30000E+01 .12683E-04 .21863E-07 .27800E+00 .26422E+01 .00000E+00 .30000E+01 .30000E+01 .10264E-04 .21875E-07 .26375E+00 .25966E+01 .00000E+00 .30000E+01 .30000E+01 .12281E-04 .21887E-07 .24950E+00 .25509E+01 .00000E+00 .30000E+01 .30000E+01 .12235E-04 .21912E-07 .22100E+00 .24596E+01 .00000E+00 .30000E+01 .30000E+01 .13526E-04 .21925E-07 .20925E+00 .24112E+01 .00000E+00 .30000E+01 .30000E+01 .11876E-04 .21938E-07 .19750E+00 .23528E+01 .00000E+00 .30000E+01 .30000E+01 .13639E-04 .21951E-07 .18575E+00 .22913E+01 .00000E+00 .30000E+01 .30000E+01 .12875E-04 .21964E-07 .17400E+00 .22299E+01 .00000E+00 .30000E+01 .30000E+01 .13725E-04 .21966E-07 .17237E+00 .22193E+01 .00000E+00 .30000E+01 .30000E+01 .14073E-04 .21968E-07 .17075E+00 .22087E+01 .00000E+00 .30000E+01 .30000E+01 .14452E-04 .21971E-07 .16913E+00 .21980E+01 .00000E+00 .30000E+01 .30000E+01 .14575E-04 .21973E-07 .16750E+00 .21874E+01 .00000E+00 .30000E+01 .30000E+01 .14700E-04 .21975E-07 .16588E+00 .21768E+01 .93750E-02 .30000E+01 .30000E+01 .14151E-03 .21980E-07 .16262E+00 .21555E+01 .28125E-01 .30000E+01 .30000E+01 .29293E-03 .21986E-07 .15775E+00 .21236E+01 .56250E-01 .30000E+01 .30000E+01 .62232E-03 .22000E-07 .14800E+00 .20598E+01 .11250E+00 .30000E+01 .30000E+01 .11011E-02 .22010E-07 .14294E+00 .20120E+01 .15469E+00 .30000E+01 .30000E+01 .13432E-02 .22030E-07 .13281E+00 .19163E+01 .23906E+00 .30000E+01 .30000E+01 .18034E-02 .22060E-07 .11781E+00 .17738E+01 .36406E+00 .30000E+01 .30000E+01 .22158E-02 .22120E-07 .88000E-01 .14829E+01 .60822E+00 .30000E+01 .30000E+01 .21822E-02 .22141E-07 .81000E-01 .13793E+01 .66644E+00 .30000E+01 .30000E+01 .13651E-02 .22162E-07 .74000E-01 .12756E+01 .72466E+00 .30000E+01 .30000E+01 .37702E-03 .22184E-07 .67000E-01 .11744E+01 .78288E+00 .30000E+01 .30000E+01-.94370E-03 .22205E-07 .60000E-01 .10800E+01 .84110E+00 .30000E+01 .30000E+01-.14551E-02 .22226E-07 .56069E-01 .98556E+00 .89932E+00 .30000E+01 .30000E+01 .24684E-03 .22269E-07 .48208E-01 .79667E+00 .10158E+01 .30000E+01 .30000E+01 .48712E-02 .22312E-07 .40208E-01 .60444E+00 .11342E+01 .30000E+01 .30000E+01 .10065E-01 .22378E-07 .28000E-01 .45502E+00 .12768E+01 .30000E+01 .30000E+01 .17228E-01 .22408E-07 .24750E-01 .38699E+00 .13326E+01 .30000E+01 .30000E+01 .18338E-01 .22439E-07 .21500E-01 .31896E+00 .13884E+01 .30000E+01 .30000E+01 .19178E-01 .22470E-07 .18250E-01 .25093E+00 .14442E+01 .30000E+01 .30000E+01 .19656E-01 .22500E-07 .15000E-01 .18290E+00 .15000E+01 .30000E+01 .30000E+01 .19942E-01 .22520E-07 .14230E-01 .13717E+00 .15375E+01 .30000E+01 .30000E+01 .20060E-01 .22541E-07 .13461E-01 .91450E-01 .15750E+01 .30000E+01 .30000E+01 .20218E-01 .22561E-07 .12691E-01 .45725E-01 .16125E+01 .30000E+01 .30000E+01 .20156E-01 .22582E-07 .11922E-01 .00000E+00 .16500E+01 .30000E+01 .30000E+01 .20207E-01 .22602E-07 .11152E-01 .00000E+00 .16875E+01 .30000E+01 .30000E+01 .20368E-01 .22643E-07 .96126E-02 .00000E+00 .17625E+01 .30000E+01 .30000E+01 .20792E-01 .22696E-07 .76323E-02 .00000E+00 .18581E+01 .30000E+01 .30000E+01 .21172E-01 .22793E-07 .40000E-02 .00000E+00 .20324E+01 .30000E+01 .30000E+01 .21310E-01 .22843E-07 .32754E-02 .00000E+00 .21225E+01 .30000E+01 .30000E+01 .21314E-01 .22894E-07 .25362E-02 .00000E+00 .22144E+01 .30000E+01 .30000E+01 .21314E-01 .22945E-07 .17971E-02 .00000E+00 .23063E+01 .30000E+01 .30000E+01 .21273E-01 .22997E-07 .10435E-02 .00000E+00 .24000E+01 .30000E+01 .30000E+01 .21281E-01 .22998E-07 .10326E-02 .00000E+00 .24007E+01 .30000E+01 .30000E+01 .21227E-01 .22999E-07 .10217E-02 .00000E+00 .24014E+01 .30000E+01 .30000E+01 .21180E-01 .23000E-07 .10000E-02 .00000E+00 .24027E+01 .30000E+01 .30000E+01 .21058E-01 .23001E-07 .99616E-03 .00000E+00 .24037E+01 .30000E+01 .30000E+01 .20952E-01 .23003E-07 .98848E-03 .00000E+00 .24058E+01 .30000E+01 .30000E+01 .20713E-01 .23012E-07 .95776E-03 .00000E+00 .24139E+01 .30000E+01 .30000E+01 .19864E-01 .23048E-07 .83490E-03 .00000E+00 .24464E+01 .30000E+01 .30000E+01 .16652E-01 .23122E-07 .58490E-03 .00000E+00 .25124E+01 .30000E+01 .30000E+01 .12983E-01 .23195E-07 .33490E-03 .00000E+00 .25785E+01 .30000E+01 .30000E+01 .11562E-01 .23293E-07 .00000E+00 .00000E+00 .26671E+01 .30000E+01 .30000E+01 .10864E-01 .23343E-07-.86693E-04 .00000E+00 .27122E+01 .30000E+01 .30000E+01 .10776E-01 .23435E-07-.24664E-03 .00000E+00 .27954E+01 .30000E+01 .30000E+01 .10666E-01 .23527E-07-.40659E-03 .00000E+00 .28786E+01 .30000E+01 .30000E+01 .10629E-01 .23662E-07-.63979E-03 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10557E-01 .23712E-07-.72648E-03 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .68097E-02 .23812E-07-.89987E-03 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .17713E-02 .24212E-07-.15934E-02 .00000E+00 .30000E+01 .30000E+01 .30000E+01-.67032E-03 .24697E-07-.24335E-02 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .35515E-03 .25197E-07-.33004E-02 .00000E+00 .30000E+01 .30000E+01 .30000E+01-.17995E-03 .25600E-07-.40000E-02 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .97588E-04 .25615E-07-.60000E-02 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .83951E-04 .25630E-07-.80000E-02 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .92393E-04 .25660E-07-.12000E-01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .11351E-03 .25671E-07-.12500E-01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .98969E-04 .25681E-07-.13000E-01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10013E-03 .25692E-07-.13500E-01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10216E-03 .25703E-07-.14000E-01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10058E-03 .25714E-07-.11236E-01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .97520E-04 .25731E-07-.67357E-02 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .98531E-04 .25749E-07-.22357E-02 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .99181E-04 .25773E-07 .40000E-02 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .95984E-04 .25785E-07 .14750E-01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .95751E-04 .25798E-07 .25500E-01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10021E-03 .25823E-07 .47000E-01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .96860E-04 .25842E-07 .81875E-01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .90884E-04 .25867E-07 .12837E+00 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .94999E-04 .25892E-07 .17488E+00 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .96340E-04 .25923E-07 .23300E+00 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .92647E-04 .25941E-07 .28900E+00 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .91351E-04 .25958E-07 .34500E+00 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .98041E-04 .25976E-07 .40100E+00 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .99398E-04 .25994E-07 .45700E+00 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .98292E-04 .25995E-07 .46050E+00 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .99671E-04 .25996E-07 .46400E+00 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .99411E-04 .25997E-07 .47100E+00 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .99495E-04 .25998E-07 .47375E+00 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .99941E-04 .25998E-07 .47650E+00 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .99350E-04 .26000E-07 .48200E+00 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .99543E-04 .26001E-07 .48582E+00 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10056E-03 .26003E-07 .49345E+00 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10094E-03 .26012E-07 .52399E+00 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10132E-03 .26040E-07 .61899E+00 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .95706E-04 .26068E-07 .71399E+00 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .93371E-04 .26112E-07 .86200E+00 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .89627E-04 .26132E-07 .91575E+00 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .89599E-04 .26152E-07 .96950E+00 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .97217E-04 .26171E-07 .10232E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .98581E-04 .26191E-07 .10770E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .97461E-04 .26203E-07 .11072E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .96467E-04 .26215E-07 .11375E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10045E-03 .26226E-07 .11678E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10140E-03 .26238E-07 .11980E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10065E-03 .26246E-07 .12175E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .99416E-04 .26255E-07 .12370E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10147E-03 .26263E-07 .12565E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10211E-03 .26271E-07 .12760E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10162E-03 .26279E-07 .12914E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .99508E-04 .26291E-07 .13134E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10067E-03 .26303E-07 .13354E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10123E-03 .26318E-07 .13640E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .99645E-04 .26327E-07 .13802E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .99141E-04 .26335E-07 .13965E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10145E-03 .26343E-07 .14128E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10205E-03 .26352E-07 .14290E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10159E-03 .26360E-07 .14447E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .99683E-04 .26368E-07 .14605E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10149E-03 .26376E-07 .14763E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10216E-03 .26384E-07 .14920E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10165E-03 .26390E-07 .15030E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10112E-03 .26395E-07 .15140E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10185E-03 .26401E-07 .15250E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10211E-03 .26407E-07 .15360E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10192E-03 .26413E-07 .15416E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10115E-03 .26421E-07 .15496E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10169E-03 .26429E-07 .15576E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10194E-03 .26440E-07 .15680E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10123E-03 .26446E-07 .15757E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10121E-03 .26451E-07 .15835E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10188E-03 .26456E-07 .15912E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10206E-03 .26462E-07 .15990E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10193E-03 .26468E-07 .16100E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10128E-03 .26473E-07 .16210E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10185E-03 .26478E-07 .16320E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10209E-03 .26484E-07 .16430E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10191E-03 .26488E-07 .16508E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10188E-03 .26492E-07 .16585E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10173E-03 .26496E-07 .16662E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10169E-03 .26500E-07 .16740E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10172E-03 .26504E-07 .16819E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10185E-03 .26512E-07 .16971E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10191E-03 .26519E-07 .17124E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10190E-03 .26531E-07 .17350E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10115E-03 .26536E-07 .17472E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10120E-03 .26542E-07 .17595E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10188E-03 .26548E-07 .17717E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10206E-03 .26553E-07 .17840E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10193E-03 .26558E-07 .17962E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10128E-03 .26570E-07 .18207E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10114E-03 .26585E-07 .18557E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .99798E-04 .26616E-07 .19240E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .93450E-04 .26627E-07 .19473E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .96709E-04 .26638E-07 .19705E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10089E-03 .26649E-07 .19937E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10145E-03 .26660E-07 .20170E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10101E-03 .26671E-07 .20376E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .97361E-04 .26693E-07 .20788E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .96731E-04 .26718E-07 .21265E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .95903E-04 .26762E-07 .22080E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .88025E-04 .26780E-07 .22362E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .90819E-04 .26798E-07 .22645E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .98092E-04 .26834E-07 .23210E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .92419E-04 .26858E-07 .23595E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .86465E-04 .26882E-07 .23980E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .95002E-04 .26931E-07 .24750E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .88157E-04 .26948E-07 .24992E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .91406E-04 .26966E-07 .25235E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .98434E-04 .26983E-07 .25477E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .99442E-04 .27000E-07 .25720E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .98622E-04 .27017E-07 .25900E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .92185E-04 .27045E-07 .26193E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .93841E-04 .27073E-07 .26485E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .94938E-04 .27112E-07 .26890E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .89691E-04 .27132E-07 .27037E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .89415E-04 .27152E-07 .27185E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .97098E-04 .27172E-07 .27332E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .98490E-04 .27192E-07 .27480E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .97345E-04 .27212E-07 .27589E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .89956E-04 .27252E-07 .27807E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .89007E-04 .27292E-07 .28024E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .89914E-04 .27351E-07 .28350E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .82007E-04 .27379E-07 .28450E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .83020E-04 .27408E-07 .28550E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .93470E-04 .27436E-07 .28650E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .95052E-04 .27464E-07 .28750E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .93722E-04 .27469E-07 .28765E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10051E-03 .27474E-07 .28780E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10223E-03 .27480E-07 .28795E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10177E-03 .27485E-07 .28810E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10210E-03 .27489E-07 .28820E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10195E-03 .27493E-07 .28830E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10167E-03 .27500E-07 .28850E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10185E-03 .27506E-07 .28862E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10121E-03 .27517E-07 .28885E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10107E-03 .27562E-07 .28977E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .88462E-04 .27629E-07 .29114E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .78660E-04 .27696E-07 .29252E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .80065E-04 .27769E-07 .29400E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .77169E-04 .27817E-07 .29457E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .71444E-04 .27865E-07 .29515E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .85152E-04 .27960E-07 .29630E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .73509E-04 .27966E-07 .29635E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .98130E-04 .27972E-07 .29640E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10313E-03 .27977E-07 .29645E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10117E-03 .27983E-07 .29650E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10261E-03 .27987E-07 .29653E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10189E-03 .27992E-07 .29655E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10174E-03 .27996E-07 .29657E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10181E-03 .28000E-07 .29660E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10176E-03 .28004E-07 .29663E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10179E-03 .28013E-07 .29668E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10179E-03 .28047E-07 .29689E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .92614E-04 .28120E-07 .29734E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .77236E-04 .28193E-07 .29779E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .77713E-04 .28293E-07 .29840E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .70176E-04 .28343E-07 .29854E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .69997E-04 .28395E-07 .29869E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .83858E-04 .28447E-07 .29884E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .85658E-04 .28500E-07 .29900E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .83468E-04 .28550E-07 .29909E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .70651E-04 .28623E-07 .29921E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .76575E-04 .28696E-07 .29934E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .78300E-04 .28793E-07 .29950E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .70358E-04 .28843E-07 .29955E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .70006E-04 .28895E-07 .29960E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .83853E-04 .28947E-07 .29965E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .85662E-04 .29000E-07 .29970E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .83464E-04 .29050E-07 .29971E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .70651E-04 .29150E-07 .29975E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .69391E-04 .29400E-07 .29982E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .47685E-04 .29650E-07 .29990E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .44682E-04 .30000E-07 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .39860E-04 .30050E-07 .29999E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .68507E-04 .30150E-07 .29997E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .71324E-04 .30290E-07 .29995E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .60219E-04 .30559E-07 .29990E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .46112E-04 .30569E-07 .29995E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .93102E-04 .30579E-07 .30000E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10308E-03 .30590E-07 .30005E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10010E-03 .30600E-07 .30010E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10242E-03 .30610E-07 .30021E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .98073E-04 .30626E-07 .30039E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .99112E-04 .30642E-07 .30056E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .99954E-04 .30663E-07 .30080E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .97147E-04 .30674E-07 .30092E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .97028E-04 .30685E-07 .30105E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10075E-03 .30696E-07 .30117E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10156E-03 .30707E-07 .30130E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10092E-03 .30718E-07 .30126E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .97354E-04 .30739E-07 .30119E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .97234E-04 .30760E-07 .30111E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .97804E-04 .30790E-07 .30100E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .93404E-04 .30805E-07 .30055E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .93960E-04 .30819E-07 .30010E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .99474E-04 .30834E-07 .29965E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10051E-03 .30848E-07 .29920E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .99678E-04 .30862E-07 .29811E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .94454E-04 .30885E-07 .29643E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .96354E-04 .30907E-07 .29476E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .97370E-04 .30937E-07 .29250E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .93359E-04 .30953E-07 .29037E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .92970E-04 .30969E-07 .28825E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .98925E-04 .31000E-07 .28400E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .94340E-04 .31017E-07 .28052E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .92454E-04 .31033E-07 .27705E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .98551E-04 .31049E-07 .27357E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .99883E-04 .31066E-07 .27010E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .98803E-04 .31078E-07 .26667E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .96778E-04 .31089E-07 .26325E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10049E-03 .31101E-07 .25982E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10150E-03 .31112E-07 .25640E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10071E-03 .31123E-07 .25210E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .96940E-04 .31140E-07 .24603E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .98899E-04 .31156E-07 .23995E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .99778E-04 .31177E-07 .23210E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .97222E-04 .31189E-07 .22795E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .96447E-04 .31200E-07 .22380E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10046E-03 .31212E-07 .21965E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10139E-03 .31224E-07 .21550E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10066E-03 .31236E-07 .21072E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .96737E-04 .31254E-07 .20329E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .98137E-04 .31272E-07 .19587E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .98952E-04 .31297E-07 .18580E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .95687E-04 .31310E-07 .18053E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .95331E-04 .31323E-07 .17525E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10002E-03 .31349E-07 .16470E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .96481E-04 .31367E-07 .15780E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .91244E-04 .31386E-07 .15090E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .97673E-04 .31422E-07 .13710E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .92652E-04 .31435E-07 .13175E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .95083E-04 .31448E-07 .12640E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10014E-03 .31474E-07 .11570E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .96323E-04 .31478E-07 .11375E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10125E-03 .31481E-07 .11180E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10195E-03 .31489E-07 .10790E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10151E-03 .31492E-07 .10670E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10192E-03 .31495E-07 .10550E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10132E-03 .31500E-07 .10310E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10167E-03 .31504E-07 .10161E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10181E-03 .31509E-07 .99815E+00 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10193E-03 .31514E-07 .98015E+00 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10193E-03 .31520E-07 .95900E+00 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10199E-03 .31523E-07 .95375E+00 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10198E-03 .31527E-07 .94850E+00 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10160E-03 .31531E-07 .94325E+00 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10148E-03 .31534E-07 .93800E+00 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10156E-03 .31537E-07 .93202E+00 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10193E-03 .31544E-07 .92177E+00 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10204E-03 .31550E-07 .91152E+00 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10199E-03 .31558E-07 .89700E+00 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10184E-03 .31562E-07 .89325E+00 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10180E-03 .31567E-07 .88950E+00 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10178E-03 .31571E-07 .88575E+00 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10178E-03 .31575E-07 .88200E+00 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10178E-03 .31579E-07 .87350E+00 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10179E-03 .31586E-07 .86000E+00 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10197E-03 .31593E-07 .84650E+00 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10202E-03 .31602E-07 .82800E+00 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10167E-03 .31607E-07 .81650E+00 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10149E-03 .31612E-07 .80500E+00 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10186E-03 .31617E-07 .79350E+00 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10198E-03 .31622E-07 .78200E+00 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10189E-03 .31627E-07 .76988E+00 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10152E-03 .31635E-07 .74988E+00 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10176E-03 .31643E-07 .72988E+00 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10189E-03 .31655E-07 .70200E+00 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10108E-03 .31661E-07 .68875E+00 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10092E-03 .31667E-07 .67550E+00 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10186E-03 .31673E-07 .66225E+00 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10212E-03 .31679E-07 .64900E+00 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10193E-03 .31685E-07 .63449E+00 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10101E-03 .31697E-07 .60548E+00 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10082E-03 .31714E-07 .56498E+00 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .99437E-04 .31746E-07 .48700E+00 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .92787E-04 .31751E-07 .47616E+00 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10040E-03 .31756E-07 .46533E+00 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10227E-03 .31762E-07 .45449E+00 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10174E-03 .31767E-07 .44366E+00 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .10212E-03 .31772E-07 .43282E+00 .00000E+00 .29804E+01 .30000E+01 .30000E+01-.23935E-02 .31779E-07 .41941E+00 .00000E+00 .29562E+01 .30000E+01 .30000E+01-.55484E-02 .31785E-07 .40599E+00 .00000E+00 .29320E+01 .30000E+01 .30000E+01-.86009E-02 .31793E-07 .39000E+00 .00000E+00 .29031E+01 .30000E+01 .30000E+01-.11942E-01 .31800E-07 .37860E+00 .00000E+00 .28766E+01 .30000E+01 .30000E+01-.14617E-01 .31814E-07 .35580E+00 .00000E+00 .28234E+01 .30000E+01 .30000E+01-.19503E-01 .31832E-07 .32780E+00 .00000E+00 .27582E+01 .30000E+01 .30000E+01-.24370E-01 .31863E-07 .27800E+00 .00000E+00 .26422E+01 .30000E+01 .30000E+01-.30691E-01 .31875E-07 .26375E+00 .00000E+00 .25966E+01 .30000E+01 .30000E+01-.32381E-01 .31887E-07 .24950E+00 .00000E+00 .25509E+01 .30000E+01 .30000E+01-.33941E-01 .31912E-07 .22100E+00 .00000E+00 .24596E+01 .30000E+01 .30000E+01-.36403E-01 .31925E-07 .20925E+00 .00000E+00 .24112E+01 .30000E+01 .30000E+01-.37327E-01 .31938E-07 .19750E+00 .00000E+00 .23528E+01 .30000E+01 .30000E+01-.39400E-01 .31951E-07 .18575E+00 .00000E+00 .22913E+01 .30000E+01 .30000E+01-.41674E-01 .31964E-07 .17400E+00 .00000E+00 .22299E+01 .30000E+01 .30000E+01-.43577E-01 .31973E-07 .16750E+00 .00000E+00 .21874E+01 .30000E+01 .30000E+01-.44661E-01 .31982E-07 .16100E+00 .00000E+00 .21449E+01 .30000E+01 .30000E+01-.45673E-01 .31991E-07 .15450E+00 .00000E+00 .21024E+01 .30000E+01 .30000E+01-.46664E-01 .32000E-07 .14800E+00 .00000E+00 .20598E+01 .30000E+01 .30000E+01-.47456E-01 .32009E-07 .14350E+00 .00000E+00 .20173E+01 .30000E+01 .30000E+01-.48092E-01 .32027E-07 .13450E+00 .00000E+00 .19323E+01 .30000E+01 .30000E+01-.49214E-01 .32057E-07 .11950E+00 .00000E+00 .17902E+01 .30000E+01 .30000E+01-.50550E-01 .32087E-07 .10450E+00 .00000E+00 .16439E+01 .30000E+01 .30000E+01-.51812E-01 .32120E-07 .88000E-01 .00000E+00 .14829E+01 .30000E+01 .30000E+01-.52669E-01 .32141E-07 .81000E-01 .00000E+00 .13793E+01 .30000E+01 .30000E+01-.52811E-01 .32163E-07 .74000E-01 .00000E+00 .12756E+01 .30000E+01 .30000E+01-.52808E-01 .32184E-07 .67000E-01 .00000E+00 .11744E+01 .30000E+01 .30000E+01-.52313E-01 .32205E-07 .60000E-01 .00000E+00 .10800E+01 .30000E+01 .30000E+01-.50980E-01 .32226E-07 .56069E-01 .00000E+00 .98556E+00 .30000E+01 .30000E+01-.49721E-01 .32269E-07 .48208E-01 .00000E+00 .79667E+00 .30000E+01 .30000E+01-.45637E-01 .32312E-07 .40208E-01 .00000E+00 .60444E+00 .30000E+01 .30000E+01-.29393E-01 .32378E-07 .28000E-01 .00000E+00 .45502E+00 .30000E+01 .30000E+01-.94940E-02 .32409E-07 .24750E-01 .00000E+00 .38699E+00 .30000E+01 .30000E+01-.64571E-02 .32439E-07 .21500E-01 .00000E+00 .31896E+00 .30000E+01 .30000E+01-.41502E-02 .32500E-07 .15000E-01 .00000E+00 .18290E+00 .30000E+01 .30000E+01-.21283E-02 .32521E-07 .14230E-01 .00000E+00 .13717E+00 .30000E+01 .30000E+01-.19341E-02 .32541E-07 .13461E-01 .00000E+00 .91450E-01 .30000E+01 .30000E+01-.17744E-02 .32561E-07 .12691E-01 .00000E+00 .45725E-01 .30000E+01 .30000E+01-.16285E-02 .32582E-07 .11922E-01 .00000E+00 .00000E+00 .30000E+01 .30000E+01-.15538E-02 .32603E-07 .11152E-01 .00000E+00 .00000E+00 .30000E+01 .30000E+01-.10642E-02 .32643E-07 .96126E-02 .00000E+00 .00000E+00 .30000E+01 .30000E+01-.44219E-03 .32696E-07 .76323E-02 .00000E+00 .00000E+00 .30000E+01 .30000E+01-.10574E-03 .32793E-07 .40000E-02 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .18349E-04 .32843E-07 .32754E-02 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .11539E-04 .32895E-07 .25254E-02 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .24658E-04 .32946E-07 .17754E-02 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .00000E+00 .33000E-07 .10000E-02 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .23904E-04 .33050E-07 .82935E-03 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .14722E-04 .33123E-07 .57935E-03 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .15001E-04 .33196E-07 .32935E-03 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .33458E-05 .33293E-07 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .18319E-04 .33343E-07-.86693E-04 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .74709E-05 .33443E-07-.26008E-03 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .15266E-04 .33843E-07-.95362E-03 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .00000E+00 .34343E-07-.18205E-02 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .13646E-04 .34843E-07-.26875E-02 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .12236E-05 .35343E-07-.35544E-02 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .12238E-04 .35600E-07-.40000E-02 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .40970E-05 .35615E-07-.60000E-02 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .12355E-04 .35630E-07-.80000E-02 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .10210E-04 .35660E-07-.12000E-01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .11765E-04 .35671E-07-.12500E-01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .10872E-04 .35681E-07-.13000E-01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .11150E-04 .35692E-07-.13500E-01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .11323E-04 .35703E-07-.14000E-01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .14054E-04 .35714E-07-.11236E-01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .13025E-04 .35731E-07-.67357E-02 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .13076E-04 .35749E-07-.22357E-02 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .13264E-04 .35773E-07 .40000E-02 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .12265E-04 .35786E-07 .14750E-01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .12294E-04 .35798E-07 .25500E-01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .13012E-04 .35823E-07 .47000E-01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .12502E-04 .35842E-07 .81875E-01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .11749E-04 .35867E-07 .12837E+00 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .12196E-04 .35892E-07 .17488E+00 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .12379E-04 .35923E-07 .23300E+00 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .11921E-04 .35941E-07 .28900E+00 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .11782E-04 .35959E-07 .34500E+00 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .12627E-04 .35976E-07 .40100E+00 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .12819E-04 .35994E-07 .45700E+00 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .12667E-04 .35995E-07 .46050E+00 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .13800E-04 .35996E-07 .46400E+00 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .14243E-04 .35997E-07 .47100E+00 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .14098E-04 .35998E-07 .47375E+00 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .14121E-04 .35999E-07 .47650E+00 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .14171E-04 .35999E-07 .47925E+00 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .14194E-04 .36000E-07 .48200E+00 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .14185E-04 .36001E-07 .48454E+00 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .14141E-04 .36002E-07 .48963E+00 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .14121E-04 .36008E-07 .50999E+00 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .13736E-04 .36032E-07 .59142E+00 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .12300E-04 .36060E-07 .68642E+00 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .12205E-04 .36112E-07 .86200E+00 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .11103E-04 .36132E-07 .91575E+00 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .11550E-04 .36152E-07 .96950E+00 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .12521E-04 .36171E-07 .10232E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .12764E-04 .36191E-07 .10770E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .12571E-04 .36203E-07 .11072E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .12452E-04 .36215E-07 .11375E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .13130E-04 .36226E-07 .11678E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .13501E-04 .36238E-07 .11980E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .13216E-04 .36246E-07 .12175E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .13024E-04 .36255E-07 .12370E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .13566E-04 .36271E-07 .12760E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .13198E-04 .36283E-07 .12980E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .12615E-04 .36295E-07 .13200E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .13236E-04 .36318E-07 .13640E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .12798E-04 .36327E-07 .13802E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .12948E-04 .36335E-07 .13965E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .13559E-04 .36352E-07 .14290E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .13143E-04 .36360E-07 .14447E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .13047E-04 .36368E-07 .14605E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .13595E-04 .36376E-07 .14763E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .13747E-04 .36384E-07 .14920E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .13634E-04 .36390E-07 .15030E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .13407E-04 .36396E-07 .15140E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .13819E-04 .36401E-07 .15250E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .13966E-04 .36407E-07 .15360E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .13860E-04 .36413E-07 .15416E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .13434E-04 .36421E-07 .15496E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .13591E-04 .36429E-07 .15576E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .13709E-04 .36440E-07 .15680E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .13418E-04 .36445E-07 .15757E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .13418E-04 .36451E-07 .15835E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .13859E-04 .36456E-07 .15912E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .13983E-04 .36462E-07 .15990E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .13894E-04 .36468E-07 .16100E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .13474E-04 .36473E-07 .16210E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .13837E-04 .36479E-07 .16320E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .13999E-04 .36484E-07 .16430E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .13883E-04 .36488E-07 .16508E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .13708E-04 .36492E-07 .16585E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .14023E-04 .36496E-07 .16662E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .14148E-04 .36500E-07 .16740E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .14062E-04 .36504E-07 .16819E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .13731E-04 .36512E-07 .16971E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .13668E-04 .36519E-07 .17124E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .13734E-04 .36531E-07 .17350E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .13386E-04 .36536E-07 .17472E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .13414E-04 .36542E-07 .17595E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .13860E-04 .36548E-07 .17717E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .13982E-04 .36553E-07 .17840E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .13894E-04 .36559E-07 .17962E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .13475E-04 .36569E-07 .18207E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .13375E-04 .36585E-07 .18557E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .13138E-04 .36616E-07 .19240E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .12119E-04 .36627E-07 .19473E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .12589E-04 .36638E-07 .19705E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .13348E-04 .36649E-07 .19937E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .13472E-04 .36660E-07 .20170E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .13377E-04 .36671E-07 .20376E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .12715E-04 .36693E-07 .20788E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .12583E-04 .36719E-07 .21265E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .12509E-04 .36762E-07 .22080E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .11548E-04 .36780E-07 .22362E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .11866E-04 .36798E-07 .22645E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .12806E-04 .36834E-07 .23210E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .12111E-04 .36858E-07 .23595E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .11427E-04 .36883E-07 .23980E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .12369E-04 .36931E-07 .24750E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .10675E-04 .36948E-07 .24992E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .11460E-04 .36965E-07 .25235E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .12373E-04 .36983E-07 .25477E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .13095E-04 .37000E-07 .25720E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .12830E-04 .37017E-07 .25900E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .11988E-04 .37045E-07 .26193E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .12146E-04 .37073E-07 .26485E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .11644E-04 .37112E-07 .26890E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .11943E-04 .37132E-07 .27037E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .11572E-04 .37152E-07 .27185E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .12432E-04 .37192E-07 .27480E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .11391E-04 .37222E-07 .27644E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .10763E-04 .37262E-07 .27862E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .11209E-04 .37302E-07 .28079E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .11245E-04 .37351E-07 .28350E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .11362E-04 .37379E-07 .28450E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .10850E-04 .37407E-07 .28550E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .11817E-04 .37436E-07 .28650E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .12228E-04 .37464E-07 .28750E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .11893E-04 .37469E-07 .28765E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .13024E-04 .37474E-07 .28780E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .13633E-04 .37480E-07 .28795E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .13645E-04 .37485E-07 .28810E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .13636E-04 .37489E-07 .28820E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .13457E-04 .37493E-07 .28830E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .13723E-04 .37496E-07 .28840E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .13836E-04 .37500E-07 .28850E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .13759E-04 .37504E-07 .28858E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .13473E-04 .37511E-07 .28873E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .13398E-04 .37541E-07 .28934E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .12177E-04 .37609E-07 .29072E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .10360E-04 .37676E-07 .29209E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .10259E-04 .37769E-07 .29400E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .98892E-05 .37817E-07 .29457E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .96927E-05 .37864E-07 .29515E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .10758E-04 .37960E-07 .29630E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .98085E-05 .37966E-07 .29635E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .12322E-04 .37971E-07 .29640E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .13159E-04 .37977E-07 .29645E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .13041E-04 .37983E-07 .29650E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .13126E-04 .37987E-07 .29653E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .12905E-04 .37992E-07 .29655E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .13150E-04 .37996E-07 .29657E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .13258E-04 .38000E-07 .29660E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .13183E-04 .38004E-07 .29663E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .12912E-04 .38013E-07 .29668E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .12844E-04 .38047E-07 .29689E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .11627E-04 .38120E-07 .29734E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .99538E-05 .38193E-07 .29779E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .10261E-04 .38293E-07 .29840E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .96016E-05 .38343E-07 .29854E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .96630E-05 .38395E-07 .29869E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .10594E-04 .38447E-07 .29884E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .10883E-04 .38500E-07 .29900E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .10892E-04 .38550E-07 .29909E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .97638E-05 .38623E-07 .29921E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .10202E-04 .38696E-07 .29934E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .97066E-05 .38793E-07 .29950E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .10328E-04 .38843E-07 .29955E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .95265E-05 .38895E-07 .29960E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .10903E-04 .38946E-07 .29965E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .10319E-04 .39000E-07 .29970E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .11205E-04 .39050E-07 .29971E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .98214E-05 .39150E-07 .29975E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .98648E-05 .39400E-07 .29982E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .70999E-05 .39650E-07 .29990E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .89077E-05 .40000E-07 .30000E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .60401E-05 .40050E-07 .29999E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .89783E-05 .40150E-07 .29997E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .92288E-05 .40290E-07 .29995E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .10425E-04 .40559E-07 .29990E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .62009E-05 .40569E-07 .29995E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .10854E-04 .40580E-07 .30000E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .12073E-04 .40590E-07 .30005E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .11807E-04 .40600E-07 .30010E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .12009E-04 .40610E-07 .30021E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .11444E-04 .40626E-07 .30039E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .11552E-04 .40642E-07 .30056E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .11670E-04 .40663E-07 .30080E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .11320E-04 .40674E-07 .30092E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .11310E-04 .40685E-07 .30105E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .11811E-04 .40696E-07 .30117E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .11931E-04 .40707E-07 .30130E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .11839E-04 .40718E-07 .30126E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .11362E-04 .40739E-07 .30119E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .11322E-04 .40759E-07 .30111E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .11405E-04 .40790E-07 .30100E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .10941E-04 .40805E-07 .30055E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .10998E-04 .40819E-07 .30010E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .11612E-04 .40833E-07 .29965E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .11741E-04 .40848E-07 .29920E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .11640E-04 .40862E-07 .29811E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .11062E-04 .40885E-07 .29643E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .11230E-04 .40907E-07 .29476E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .11352E-04 .40937E-07 .29250E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .10938E-04 .40953E-07 .29037E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .10906E-04 .40969E-07 .28825E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .11539E-04 .41000E-07 .28400E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .11078E-04 .41016E-07 .28052E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .10865E-04 .41033E-07 .27705E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .11491E-04 .41049E-07 .27357E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .11648E-04 .41066E-07 .27010E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .11525E-04 .41077E-07 .26667E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .11289E-04 .41089E-07 .26325E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .11771E-04 .41100E-07 .25982E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .11911E-04 .41112E-07 .25640E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .11804E-04 .41123E-07 .25210E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .11317E-04 .41140E-07 .24603E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .11525E-04 .41156E-07 .23995E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .11644E-04 .41177E-07 .23210E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .11329E-04 .41189E-07 .22795E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .11249E-04 .41201E-07 .22380E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .11763E-04 .41212E-07 .21965E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .11892E-04 .41224E-07 .21550E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .11793E-04 .41236E-07 .21072E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .11295E-04 .41254E-07 .20329E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .11429E-04 .41272E-07 .19587E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .11538E-04 .41297E-07 .18580E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .11165E-04 .41310E-07 .18053E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .11133E-04 .41323E-07 .17525E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .11693E-04 .41349E-07 .16470E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .11293E-04 .41367E-07 .15780E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .10764E-04 .41386E-07 .15090E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .11386E-04 .41422E-07 .13710E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .10926E-04 .41435E-07 .13175E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .11110E-04 .41448E-07 .12640E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .11702E-04 .41474E-07 .11570E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .11280E-04 .41478E-07 .11375E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .11978E-04 .41481E-07 .11180E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .12291E-04 .41489E-07 .10790E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .12100E-04 .41492E-07 .10670E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .12184E-04 .41494E-07 .10550E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .12298E-04 .41500E-07 .10310E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .12232E-04 .41504E-07 .10161E+01 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .12063E-04 .41509E-07 .99815E+00 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .12186E-04 .41514E-07 .98015E+00 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .12252E-04 .41520E-07 .95900E+00 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .12161E-04 .41523E-07 .95375E+00 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .12119E-04 .41527E-07 .94850E+00 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .12262E-04 .41531E-07 .94325E+00 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .12315E-04 .41534E-07 .93800E+00 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .12279E-04 .41538E-07 .93202E+00 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .12134E-04 .41544E-07 .92177E+00 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .12148E-04 .41550E-07 .91152E+00 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .12186E-04 .41558E-07 .89700E+00 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .12027E-04 .41562E-07 .89325E+00 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .12024E-04 .41567E-07 .88950E+00 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .12226E-04 .41571E-07 .88575E+00 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .12287E-04 .41575E-07 .88200E+00 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .12245E-04 .41579E-07 .87350E+00 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .12052E-04 .41586E-07 .86000E+00 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .12096E-04 .41593E-07 .84650E+00 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .12149E-04 .41602E-07 .82800E+00 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .11977E-04 .41607E-07 .81650E+00 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .11941E-04 .41612E-07 .80500E+00 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .12181E-04 .41617E-07 .79350E+00 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .12256E-04 .41622E-07 .78200E+00 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .12203E-04 .41627E-07 .76988E+00 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .11969E-04 .41635E-07 .74988E+00 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .12005E-04 .41643E-07 .72988E+00 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .12064E-04 .41655E-07 .70200E+00 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .11847E-04 .41661E-07 .68875E+00 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .11825E-04 .41667E-07 .67550E+00 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .12121E-04 .41673E-07 .66225E+00 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .12205E-04 .41679E-07 .64900E+00 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .12144E-04 .41685E-07 .63449E+00 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .11859E-04 .41697E-07 .60548E+00 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .11793E-04 .41714E-07 .56498E+00 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .11623E-04 .41746E-07 .48700E+00 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .10859E-04 .41751E-07 .47616E+00 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .11782E-04 .41757E-07 .46533E+00 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .12216E-04 .41762E-07 .45449E+00 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .12208E-04 .41767E-07 .44366E+00 .00000E+00 .00000E+00 .30000E+01 .30000E+01 .12214E-04 .41772E-07 .43282E+00 .00000E+00 .00000E+00 .30000E+01 .29804E+01-.77465E-03 .41779E-07 .41941E+00 .00000E+00 .00000E+00 .30000E+01 .29562E+01-.19316E-02 .41785E-07 .40599E+00 .00000E+00 .00000E+00 .30000E+01 .29320E+01-.31912E-02 .41793E-07 .39000E+00 .00000E+00 .00000E+00 .30000E+01 .29031E+01-.45157E-02 .41800E-07 .37860E+00 .00000E+00 .00000E+00 .30000E+01 .28766E+01-.55274E-02 .41814E-07 .35580E+00 .00000E+00 .00000E+00 .30000E+01 .28234E+01-.73310E-02 .41832E-07 .32780E+00 .00000E+00 .00000E+00 .30000E+01 .27582E+01-.90371E-02 .41863E-07 .27800E+00 .00000E+00 .00000E+00 .30000E+01 .26422E+01-.11167E-01 .41875E-07 .26375E+00 .00000E+00 .00000E+00 .30000E+01 .25966E+01-.11710E-01 .41887E-07 .24950E+00 .00000E+00 .00000E+00 .30000E+01 .25509E+01-.12235E-01 .41912E-07 .22100E+00 .00000E+00 .00000E+00 .30000E+01 .24596E+01-.13203E-01 .41925E-07 .20925E+00 .00000E+00 .00000E+00 .30000E+01 .24112E+01-.13633E-01 .41938E-07 .19750E+00 .00000E+00 .00000E+00 .30000E+01 .23528E+01-.14459E-01 .41951E-07 .18575E+00 .00000E+00 .00000E+00 .30000E+01 .22913E+01-.15433E-01 .41964E-07 .17400E+00 .00000E+00 .00000E+00 .30000E+01 .22299E+01-.16290E-01 .41966E-07 .17237E+00 .00000E+00 .00000E+00 .30000E+01 .22193E+01-.16417E-01 .41969E-07 .17075E+00 .00000E+00 .00000E+00 .30000E+01 .22087E+01-.16568E-01 .41971E-07 .16913E+00 .00000E+00 .00000E+00 .30000E+01 .21980E+01-.16634E-01 .41973E-07 .16750E+00 .00000E+00 .00000E+00 .30000E+01 .21874E+01-.16760E-01 .41975E-07 .16588E+00 .93750E-02 .93750E-02 .30000E+01 .21768E+01-.16719E-01 .41980E-07 .16262E+00 .28125E-01 .28125E-01 .30000E+01 .21555E+01-.16662E-01 .41986E-07 .15775E+00 .56250E-01 .56250E-01 .30000E+01 .21236E+01-.18307E-01 .42000E-07 .14800E+00 .11250E+00 .11250E+00 .30000E+01 .20598E+01-.21235E-01 .42010E-07 .14294E+00 .15469E+00 .15469E+00 .30000E+01 .20120E+01-.21999E-01 .42030E-07 .13281E+00 .23906E+00 .23906E+00 .30000E+01 .19163E+01-.21700E-01 .42060E-07 .11781E+00 .36406E+00 .36406E+00 .30000E+01 .17738E+01-.13918E-01 .42120E-07 .88000E-01 .60822E+00 .60822E+00 .30000E+01 .14829E+01 .29825E-01 .42141E-07 .81000E-01 .66644E+00 .66644E+00 .30000E+01 .13793E+01 .55537E-01 .42163E-07 .74000E-01 .72466E+00 .72466E+00 .30000E+01 .12756E+01 .83402E-01 .42184E-07 .67000E-01 .78288E+00 .78288E+00 .30000E+01 .11744E+01 .11562E+00 .42205E-07 .60000E-01 .84110E+00 .84110E+00 .30000E+01 .10800E+01 .15268E+00 .42226E-07 .56069E-01 .89932E+00 .89932E+00 .30000E+01 .98556E+00 .20117E+00 .42269E-07 .48208E-01 .10158E+01 .10158E+01 .30000E+01 .79667E+00 .32629E+00 .42312E-07 .40208E-01 .11342E+01 .11342E+01 .30000E+01 .60444E+00 .50013E+00 .42378E-07 .28000E-01 .12768E+01 .12768E+01 .30000E+01 .45502E+00 .77889E+00 .42409E-07 .24750E-01 .13326E+01 .13326E+01 .30000E+01 .38699E+00 .88822E+00 .42439E-07 .21500E-01 .13884E+01 .13884E+01 .30000E+01 .31896E+00 .99234E+00 .42500E-07 .15000E-01 .15000E+01 .15000E+01 .30000E+01 .18290E+00 .11602E+01 .42521E-07 .14230E-01 .15375E+01 .15375E+01 .30000E+01 .13717E+00 .11983E+01 .42541E-07 .13461E-01 .15750E+01 .15750E+01 .30000E+01 .91450E-01 .12320E+01 .42561E-07 .12691E-01 .16125E+01 .16125E+01 .30000E+01 .45725E-01 .12563E+01 .42582E-07 .11922E-01 .16500E+01 .16500E+01 .30000E+01 .00000E+00 .12698E+01 .42603E-07 .11152E-01 .16875E+01 .16875E+01 .30000E+01 .00000E+00 .12678E+01 .42643E-07 .96126E-02 .17625E+01 .17625E+01 .30000E+01 .00000E+00 .12364E+01 .42696E-07 .76323E-02 .18581E+01 .18581E+01 .30000E+01 .00000E+00 .11219E+01 .42793E-07 .40000E-02 .20324E+01 .20324E+01 .30000E+01 .00000E+00 .76635E+00 .42843E-07 .32754E-02 .21225E+01 .21225E+01 .30000E+01 .00000E+00 .57621E+00 .42894E-07 .25362E-02 .22144E+01 .22144E+01 .30000E+01 .00000E+00 .42289E+00 .42945E-07 .17971E-02 .23063E+01 .23063E+01 .30000E+01 .00000E+00 .31076E+00 .42997E-07 .10435E-02 .24000E+01 .24000E+01 .30000E+01 .00000E+00 .23001E+00 .42998E-07 .10326E-02 .24007E+01 .24007E+01 .30000E+01 .00000E+00 .22891E+00 .42999E-07 .10217E-02 .24014E+01 .24014E+01 .30000E+01 .00000E+00 .22790E+00 .43000E-07 .10000E-02 .24027E+01 .24027E+01 .30000E+01 .00000E+00 .22574E+00 .43001E-07 .99616E-03 .24037E+01 .24037E+01 .30000E+01 .00000E+00 .22421E+00 .43003E-07 .98848E-03 .24058E+01 .24058E+01 .30000E+01 .00000E+00 .22115E+00 .43012E-07 .95776E-03 .24139E+01 .24139E+01 .30000E+01 .00000E+00 .20957E+00 .43048E-07 .83490E-03 .24464E+01 .24464E+01 .30000E+01 .00000E+00 .17027E+00 .43122E-07 .58490E-03 .25124E+01 .25124E+01 .30000E+01 .00000E+00 .11592E+00 .43195E-07 .33490E-03 .25785E+01 .25785E+01 .30000E+01 .00000E+00 .83527E-01 .43293E-07 .00000E+00 .26671E+01 .26671E+01 .30000E+01 .00000E+00 .58023E-01 .43343E-07-.86693E-04 .27122E+01 .27122E+01 .30000E+01 .00000E+00 .50571E-01 .43435E-07-.24664E-03 .27954E+01 .27954E+01 .30000E+01 .00000E+00 .39497E-01 .43527E-07-.40659E-03 .28786E+01 .28786E+01 .30000E+01 .00000E+00 .32477E-01 .43662E-07-.63979E-03 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .26037E-01 .43712E-07-.72648E-03 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .20576E-01 .43812E-07-.89987E-03 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .13258E-01 .44212E-07-.15934E-02 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .59291E-02 .44696E-07-.24335E-02 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .45566E-02 .45197E-07-.33004E-02 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .28806E-02 .45600E-07-.40000E-02 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .24812E-02 .45615E-07-.60000E-02 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .24703E-02 .45630E-07-.80000E-02 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .24790E-02 .45660E-07-.12000E-01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .23976E-02 .45671E-07-.12500E-01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .23863E-02 .45681E-07-.13000E-01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .23840E-02 .45692E-07-.13500E-01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .23470E-02 .45703E-07-.14000E-01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .23787E-02 .45714E-07-.11236E-01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .23564E-02 .45731E-07-.67357E-02 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .23563E-02 .45749E-07-.22357E-02 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .23470E-02 .45773E-07 .40000E-02 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .23272E-02 .45786E-07 .14750E-01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .23313E-02 .45798E-07 .25500E-01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .23408E-02 .45823E-07 .47000E-01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .23208E-02 .45842E-07 .81875E-01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .23029E-02 .45867E-07 .12837E+00 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .23079E-02 .45892E-07 .17488E+00 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .22473E-02 .45923E-07 .23300E+00 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .22648E-02 .45941E-07 .28900E+00 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .22388E-02 .45959E-07 .34500E+00 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .22596E-02 .45976E-07 .40100E+00 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .22448E-02 .45994E-07 .45700E+00 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .22677E-02 .45995E-07 .46050E+00 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .22897E-02 .45995E-07 .46400E+00 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .22989E-02 .45997E-07 .47100E+00 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .22956E-02 .45998E-07 .47375E+00 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .22956E-02 .45999E-07 .47650E+00 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .22974E-02 .45999E-07 .47925E+00 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .22985E-02 .46000E-07 .48200E+00 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .22981E-02 .46001E-07 .48454E+00 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .22962E-02 .46002E-07 .48963E+00 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .22954E-02 .46008E-07 .50999E+00 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .22819E-02 .46032E-07 .59142E+00 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .22226E-02 .46060E-07 .68642E+00 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .21969E-02 .46112E-07 .86200E+00 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .19420E-02 .46132E-07 .91575E+00 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .19081E-02 .46151E-07 .96950E+00 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .18943E-02 .46171E-07 .10232E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .19067E-02 .46191E-07 .10770E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .18889E-02 .46203E-07 .11072E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .19018E-02 .46214E-07 .11375E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .18967E-02 .46226E-07 .11678E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .19245E-02 .46238E-07 .11980E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .19104E-02 .46246E-07 .12175E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .19031E-02 .46254E-07 .12370E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .19068E-02 .46271E-07 .12760E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .19080E-02 .46283E-07 .12980E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .18906E-02 .46294E-07 .13200E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .19069E-02 .46318E-07 .13640E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .18674E-02 .46327E-07 .13802E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .18914E-02 .46335E-07 .13965E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .18895E-02 .46352E-07 .14290E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .19057E-02 .46360E-07 .14447E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .18956E-02 .46368E-07 .14605E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .19146E-02 .46376E-07 .14763E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .18931E-02 .46384E-07 .14920E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .19228E-02 .46390E-07 .15030E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .19009E-02 .46395E-07 .15140E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .19184E-02 .46401E-07 .15250E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .18887E-02 .46407E-07 .15360E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .19166E-02 .46413E-07 .15416E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .18957E-02 .46421E-07 .15496E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .19218E-02 .46429E-07 .15576E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .18848E-02 .46440E-07 .15680E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .19137E-02 .46445E-07 .15757E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .18970E-02 .46451E-07 .15835E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .19294E-02 .46456E-07 .15912E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .18766E-02 .46462E-07 .15990E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .19037E-02 .46467E-07 .16100E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .18980E-02 .46473E-07 .16210E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .19215E-02 .46479E-07 .16320E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .18915E-02 .46484E-07 .16430E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .19486E-02 .46488E-07 .16508E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .19166E-02 .46492E-07 .16585E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .19121E-02 .46496E-07 .16662E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .18890E-02 .46500E-07 .16740E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .19105E-02 .46504E-07 .16819E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .18924E-02 .46512E-07 .16971E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .19379E-02 .46519E-07 .17124E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .18800E-02 .46531E-07 .17350E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .18901E-02 .46536E-07 .17472E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .18608E-02 .46542E-07 .17595E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .18769E-02 .46547E-07 .17717E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .18349E-02 .46553E-07 .17840E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .18542E-02 .46559E-07 .17962E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .18477E-02 .46570E-07 .18207E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .18704E-02 .46585E-07 .18557E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .17891E-02 .46616E-07 .19240E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .18204E-02 .46627E-07 .19473E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .17722E-02 .46638E-07 .19705E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .17819E-02 .46649E-07 .19937E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .17540E-02 .46660E-07 .20170E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .18045E-02 .46671E-07 .20376E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .17657E-02 .46693E-07 .20788E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .17383E-02 .46719E-07 .21265E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .16396E-02 .46762E-07 .22080E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .17167E-02 .46780E-07 .22362E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .16453E-02 .46798E-07 .22645E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .16613E-02 .46834E-07 .23210E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .13475E-02 .46858E-07 .23595E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .13344E-02 .46883E-07 .23980E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .13247E-02 .46931E-07 .24750E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .13191E-02 .46948E-07 .24992E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .13172E-02 .46965E-07 .25235E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .13210E-02 .46983E-07 .25477E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .13209E-02 .47000E-07 .25720E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .13219E-02 .47017E-07 .25900E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .13119E-02 .47045E-07 .26193E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .13125E-02 .47073E-07 .26485E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .13010E-02 .47112E-07 .26890E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .13015E-02 .47132E-07 .27037E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .12947E-02 .47152E-07 .27185E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .13057E-02 .47192E-07 .27480E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .12828E-02 .47222E-07 .27644E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .12761E-02 .47262E-07 .27862E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .12693E-02 .47302E-07 .28079E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .12816E-02 .47351E-07 .28350E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .12493E-02 .47379E-07 .28450E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .12571E-02 .47408E-07 .28550E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .12614E-02 .47436E-07 .28650E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .12877E-02 .47464E-07 .28750E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .12623E-02 .47469E-07 .28765E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .13034E-02 .47475E-07 .28780E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .12937E-02 .47480E-07 .28795E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .13101E-02 .47485E-07 .28810E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .12984E-02 .47489E-07 .28820E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .13058E-02 .47492E-07 .28830E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .12945E-02 .47496E-07 .28840E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .13309E-02 .47500E-07 .28850E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .13244E-02 .47504E-07 .28858E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .13114E-02 .47511E-07 .28873E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .12920E-02 .47541E-07 .28934E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .12935E-02 .47608E-07 .29072E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .11904E-02 .47676E-07 .29209E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .11541E-02 .47769E-07 .29400E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .99603E-03 .47817E-07 .29457E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .10243E-02 .47864E-07 .29515E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .91042E-03 .47960E-07 .29630E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .93234E-03 .47966E-07 .29635E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .93216E-03 .47972E-07 .29640E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .93269E-03 .47977E-07 .29645E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .93416E-03 .47983E-07 .29650E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .93321E-03 .47987E-07 .29653E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .93264E-03 .47991E-07 .29655E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .93325E-03 .47996E-07 .29657E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .93311E-03 .48000E-07 .29660E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .93316E-03 .48004E-07 .29663E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .93237E-03 .48013E-07 .29668E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .93212E-03 .48047E-07 .29689E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .92497E-03 .48120E-07 .29734E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .91431E-03 .48193E-07 .29779E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .90541E-03 .48293E-07 .29840E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .89241E-03 .48343E-07 .29854E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .88623E-03 .48395E-07 .29869E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .89444E-03 .48446E-07 .29884E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .89172E-03 .48500E-07 .29900E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .89080E-03 .48550E-07 .29909E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .86969E-03 .48623E-07 .29921E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .87270E-03 .48696E-07 .29934E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .85741E-03 .48793E-07 .29950E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .85535E-03 .48843E-07 .29955E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .84323E-03 .48895E-07 .29960E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .86393E-03 .48947E-07 .29965E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .85734E-03 .49000E-07 .29970E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .87159E-03 .49050E-07 .29971E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .82816E-03 .49150E-07 .29975E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .77438E-03 .49400E-07 .29982E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .67155E-03 .49650E-07 .29990E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .62720E-03 .50000E-07 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .56707E-03 .50050E-07 .29999E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .58146E-03 .50150E-07 .29997E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .57656E-03 .50290E-07 .29995E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .57940E-03 .50559E-07 .29990E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .53480E-03 .50569E-07 .29995E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .57952E-03 .50580E-07 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .58080E-03 .50590E-07 .30005E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .61449E-03 .50600E-07 .30010E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .57406E-03 .50610E-07 .30021E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .58122E-03 .50626E-07 .30039E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .58762E-03 .50642E-07 .30056E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .58660E-03 .50663E-07 .30080E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .58829E-03 .50674E-07 .30092E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .58389E-03 .50685E-07 .30105E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .58886E-03 .50696E-07 .30117E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .58762E-03 .50707E-07 .30130E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .58738E-03 .50718E-07 .30126E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .58391E-03 .50739E-07 .30119E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .58300E-03 .50759E-07 .30111E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .58133E-03 .50790E-07 .30100E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .57987E-03 .50804E-07 .30055E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .57830E-03 .50819E-07 .30010E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .58369E-03 .50833E-07 .29965E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .58424E-03 .50848E-07 .29920E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .58476E-03 .50862E-07 .29811E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .57814E-03 .50885E-07 .29643E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .58064E-03 .50907E-07 .29476E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .57731E-03 .50937E-07 .29250E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .57681E-03 .50953E-07 .29037E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .57389E-03 .50968E-07 .28825E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .58148E-03 .51000E-07 .28400E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .57578E-03 .51016E-07 .28052E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .57534E-03 .51033E-07 .27705E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .58051E-03 .51050E-07 .27357E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .58113E-03 .51066E-07 .27010E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .58060E-03 .51077E-07 .26667E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .57682E-03 .51089E-07 .26325E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .58184E-03 .51100E-07 .25982E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .58185E-03 .51112E-07 .25640E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .58408E-03 .51124E-07 .25210E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .57660E-03 .51140E-07 .24603E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .57913E-03 .51156E-07 .23995E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .58034E-03 .51177E-07 .23210E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .57667E-03 .51189E-07 .22795E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .57559E-03 .51201E-07 .22380E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .58103E-03 .51212E-07 .21965E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .58148E-03 .51224E-07 .21550E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .58270E-03 .51236E-07 .21072E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .57565E-03 .51254E-07 .20329E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .57646E-03 .51272E-07 .19587E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .57353E-03 .51297E-07 .18580E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .57516E-03 .51310E-07 .18053E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .57193E-03 .51323E-07 .17525E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .57852E-03 .51349E-07 .16470E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .56954E-03 .51367E-07 .15780E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .56512E-03 .51385E-07 .15090E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .57154E-03 .51422E-07 .13710E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .56793E-03 .51435E-07 .13175E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .56966E-03 .51448E-07 .12640E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .57793E-03 .51474E-07 .11570E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .56872E-03 .51478E-07 .11375E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .58169E-03 .51481E-07 .11180E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .58633E-03 .51489E-07 .10790E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .58316E-03 .51492E-07 .10670E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .58456E-03 .51494E-07 .10550E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .58653E-03 .51500E-07 .10310E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .58525E-03 .51504E-07 .10161E+01 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .58291E-03 .51509E-07 .99815E+00 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .58468E-03 .51514E-07 .98015E+00 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .58545E-03 .51520E-07 .95900E+00 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .58425E-03 .51524E-07 .95375E+00 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .58367E-03 .51527E-07 .94850E+00 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .58583E-03 .51530E-07 .94325E+00 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .58651E-03 .51534E-07 .93800E+00 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .58602E-03 .51538E-07 .93202E+00 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .58386E-03 .51543E-07 .92177E+00 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .58409E-03 .51549E-07 .91152E+00 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .58457E-03 .51558E-07 .89700E+00 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .58244E-03 .51562E-07 .89325E+00 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .58245E-03 .51566E-07 .88950E+00 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .58526E-03 .51571E-07 .88575E+00 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .58598E-03 .51575E-07 .88200E+00 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .58545E-03 .51579E-07 .87350E+00 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .58276E-03 .51586E-07 .86000E+00 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .58344E-03 .51593E-07 .84650E+00 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .58406E-03 .51602E-07 .82800E+00 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .58180E-03 .51607E-07 .81650E+00 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .58135E-03 .51612E-07 .80500E+00 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .58463E-03 .51617E-07 .79350E+00 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .58548E-03 .51622E-07 .78200E+00 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .58484E-03 .51627E-07 .76988E+00 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .58165E-03 .51635E-07 .74988E+00 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .58227E-03 .51644E-07 .72988E+00 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .58294E-03 .51655E-07 .70200E+00 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .58009E-03 .51661E-07 .68875E+00 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .57981E-03 .51667E-07 .67550E+00 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .58383E-03 .51673E-07 .66225E+00 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .58477E-03 .51679E-07 .64900E+00 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .58404E-03 .51685E-07 .63449E+00 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .58018E-03 .51697E-07 .60548E+00 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .57946E-03 .51714E-07 .56498E+00 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .57332E-03 .51746E-07 .48700E+00 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .56667E-03 .51751E-07 .47616E+00 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .57691E-03 .51757E-07 .46533E+00 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .58189E-03 .51767E-07 .44366E+00 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .58166E-03 .51774E-07 .43024E+00 .30000E+01 .30000E+01 .29758E+01 .00000E+00-.26672E-02 .51780E-07 .41683E+00 .30000E+01 .30000E+01 .29516E+01 .00000E+00-.59634E-02 .51793E-07 .39000E+00 .30000E+01 .30000E+01 .29031E+01 .00000E+00-.12032E-01 .51803E-07 .37440E+00 .30000E+01 .30000E+01 .28668E+01 .00000E+00-.15751E-01 .51820E-07 .34640E+00 .30000E+01 .30000E+01 .28016E+01 .00000E+00-.21729E-01 .51838E-07 .31840E+00 .30000E+01 .30000E+01 .27363E+01 .00000E+00-.26457E-01 .51863E-07 .27800E+00 .30000E+01 .30000E+01 .26422E+01 .00000E+00-.31608E-01 .51875E-07 .26375E+00 .30000E+01 .30000E+01 .25966E+01 .00000E+00-.33391E-01 .51888E-07 .24950E+00 .30000E+01 .30000E+01 .25509E+01 .00000E+00-.35038E-01 .51912E-07 .22100E+00 .30000E+01 .30000E+01 .24596E+01 .00000E+00-.37723E-01 .51925E-07 .20925E+00 .30000E+01 .30000E+01 .24112E+01 .00000E+00-.38684E-01 .51938E-07 .19750E+00 .30000E+01 .30000E+01 .23528E+01 .00000E+00-.40870E-01 .51951E-07 .18575E+00 .30000E+01 .30000E+01 .22913E+01 .00000E+00-.43252E-01 .51964E-07 .17400E+00 .30000E+01 .30000E+01 .22299E+01 .00000E+00-.45239E-01 .51966E-07 .17237E+00 .30000E+01 .30000E+01 .22193E+01 .00000E+00-.45552E-01 .51968E-07 .17075E+00 .30000E+01 .30000E+01 .22087E+01 .00000E+00-.45906E-01 .51973E-07 .16750E+00 .30000E+01 .30000E+01 .21874E+01 .00000E+00-.46364E-01 .51976E-07 .16506E+00 .30000E+01 .30000E+01 .21715E+01 .14062E-01-.46608E-01 .51983E-07 .16019E+00 .30000E+01 .30000E+01 .21396E+01 .42188E-01-.47063E-01 .51990E-07 .15531E+00 .30000E+01 .30000E+01 .21077E+01 .70313E-01-.47475E-01 .52000E-07 .14800E+00 .30000E+01 .30000E+01 .20598E+01 .11250E+00-.47984E-01 .52008E-07 .14378E+00 .30000E+01 .30000E+01 .20200E+01 .14766E+00-.48296E-01 .52025E-07 .13534E+00 .30000E+01 .30000E+01 .19403E+01 .21797E+00-.48902E-01 .52055E-07 .12034E+00 .30000E+01 .30000E+01 .17985E+01 .34297E+00-.49589E-01 .52085E-07 .10534E+00 .30000E+01 .30000E+01 .16521E+01 .46797E+00-.50420E-01 .52120E-07 .88000E-01 .30000E+01 .30000E+01 .14829E+01 .60822E+00-.50471E-01 .52141E-07 .81000E-01 .30000E+01 .30000E+01 .13793E+01 .66644E+00-.49660E-01 .52162E-07 .74000E-01 .30000E+01 .30000E+01 .12756E+01 .72466E+00-.48522E-01 .52184E-07 .67000E-01 .30000E+01 .30000E+01 .11744E+01 .78288E+00-.46360E-01 .52205E-07 .60000E-01 .30000E+01 .30000E+01 .10800E+01 .84110E+00-.42698E-01 .52226E-07 .56069E-01 .30000E+01 .30000E+01 .98556E+00 .89932E+00-.39050E-01 .52269E-07 .48208E-01 .30000E+01 .30000E+01 .79667E+00 .10158E+01-.31514E-01 .52312E-07 .40208E-01 .30000E+01 .30000E+01 .60444E+00 .11342E+01-.14002E-01 .52378E-07 .28000E-01 .30000E+01 .30000E+01 .45502E+00 .12768E+01-.40514E-02 .52408E-07 .24750E-01 .30000E+01 .30000E+01 .38699E+00 .13326E+01-.30438E-02 .52439E-07 .21500E-01 .30000E+01 .30000E+01 .31896E+00 .13884E+01-.23348E-02 .52500E-07 .15000E-01 .30000E+01 .30000E+01 .18290E+00 .15000E+01-.18451E-02 .52521E-07 .14230E-01 .30000E+01 .30000E+01 .13717E+00 .15375E+01-.17913E-02 .52541E-07 .13461E-01 .30000E+01 .30000E+01 .91450E-01 .15750E+01-.16923E-02 .52582E-07 .11922E-01 .30000E+01 .30000E+01 .00000E+00 .16500E+01-.16186E-02 .52613E-07 .10767E-01 .30000E+01 .30000E+01 .00000E+00 .17062E+01-.47328E-03 .52665E-07 .87867E-02 .30000E+01 .30000E+01 .00000E+00 .18027E+01 .67340E-03 .52718E-07 .68063E-02 .30000E+01 .30000E+01 .00000E+00 .18977E+01 .10771E-02 .52793E-07 .40000E-02 .30000E+01 .30000E+01 .00000E+00 .20324E+01 .12780E-02 .52843E-07 .32754E-02 .30000E+01 .30000E+01 .00000E+00 .21225E+01 .12993E-02 .52894E-07 .25362E-02 .30000E+01 .30000E+01 .00000E+00 .22144E+01 .13194E-02 .52945E-07 .17971E-02 .30000E+01 .30000E+01 .00000E+00 .23063E+01 .12942E-02 .52997E-07 .10435E-02 .30000E+01 .30000E+01 .00000E+00 .24000E+01 .13118E-02 .52998E-07 .10326E-02 .30000E+01 .30000E+01 .00000E+00 .24007E+01 .12799E-02 .52999E-07 .10217E-02 .30000E+01 .30000E+01 .00000E+00 .24014E+01 .12688E-02 .53000E-07 .10000E-02 .30000E+01 .30000E+01 .00000E+00 .24027E+01 .12259E-02 .53001E-07 .99616E-03 .30000E+01 .30000E+01 .00000E+00 .24037E+01 .12242E-02 .53003E-07 .98848E-03 .30000E+01 .30000E+01 .00000E+00 .24058E+01 .12039E-02 .53012E-07 .95776E-03 .30000E+01 .30000E+01 .00000E+00 .24139E+01 .13470E-02 .53048E-07 .83490E-03 .30000E+01 .30000E+01 .00000E+00 .24464E+01 .93656E-03 .53122E-07 .58490E-03 .30000E+01 .30000E+01 .00000E+00 .25124E+01 .89444E-03 .53195E-07 .33490E-03 .30000E+01 .30000E+01 .00000E+00 .25785E+01 .91215E-03 .53293E-07 .00000E+00 .30000E+01 .30000E+01 .00000E+00 .26671E+01 .85488E-03 .53343E-07-.86693E-04 .30000E+01 .30000E+01 .00000E+00 .27122E+01 .88017E-03 .53435E-07-.24664E-03 .30000E+01 .30000E+01 .00000E+00 .27954E+01 .81641E-03 .53528E-07-.40659E-03 .30000E+01 .30000E+01 .00000E+00 .28786E+01 .86207E-03 .53662E-07-.63979E-03 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .82959E-03 .53712E-07-.72648E-03 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .61568E-03 .53812E-07-.89987E-03 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .45652E-03 .54212E-07-.15934E-02 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .29019E-03 .54696E-07-.24335E-02 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .36829E-03 .55197E-07-.33004E-02 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .28717E-03 .55600E-07-.40000E-02 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .32665E-03 .55615E-07-.60000E-02 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .31429E-03 .55630E-07-.80000E-02 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .31112E-03 .55660E-07-.12000E-01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .32183E-03 .55671E-07-.12500E-01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .32027E-03 .55682E-07-.13000E-01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .32352E-03 .55692E-07-.13500E-01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .32854E-03 .55703E-07-.14000E-01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .32407E-03 .55714E-07-.11236E-01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .32359E-03 .55731E-07-.67357E-02 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .32088E-03 .55749E-07-.22357E-02 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .32605E-03 .55773E-07 .40000E-02 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .31833E-03 .55785E-07 .14750E-01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .31943E-03 .55798E-07 .25500E-01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .32057E-03 .55823E-07 .47000E-01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .31962E-03 .55842E-07 .81875E-01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .31713E-03 .55867E-07 .12837E+00 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .31930E-03 .55892E-07 .17488E+00 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .31981E-03 .55923E-07 .23300E+00 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .31781E-03 .55941E-07 .28900E+00 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .31692E-03 .55958E-07 .34500E+00 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .32078E-03 .55976E-07 .40100E+00 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .32079E-03 .55994E-07 .45700E+00 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .32135E-03 .55995E-07 .46050E+00 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .32385E-03 .55995E-07 .46400E+00 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .32458E-03 .55997E-07 .47100E+00 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .32434E-03 .55998E-07 .47375E+00 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .32452E-03 .55998E-07 .47650E+00 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .32442E-03 .55999E-07 .47925E+00 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .32431E-03 .56000E-07 .48200E+00 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .32436E-03 .56001E-07 .48454E+00 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .32452E-03 .56002E-07 .48963E+00 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .32459E-03 .56008E-07 .50999E+00 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .32427E-03 .56032E-07 .59142E+00 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .31997E-03 .56060E-07 .68642E+00 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .31886E-03 .56112E-07 .86200E+00 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .31192E-03 .56132E-07 .91575E+00 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .31356E-03 .56151E-07 .96950E+00 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .31756E-03 .56171E-07 .10232E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .31956E-03 .56191E-07 .10770E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .31938E-03 .56203E-07 .11072E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .31857E-03 .56214E-07 .11375E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .32166E-03 .56226E-07 .11678E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .32198E-03 .56238E-07 .11980E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .32170E-03 .56246E-07 .12175E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .32081E-03 .56254E-07 .12370E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .32290E-03 .56271E-07 .12760E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .32148E-03 .56283E-07 .12980E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .31878E-03 .56294E-07 .13200E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .32166E-03 .56318E-07 .13640E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .31963E-03 .56326E-07 .13802E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .32044E-03 .56335E-07 .13965E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .32290E-03 .56352E-07 .14290E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .32123E-03 .56360E-07 .14447E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .32090E-03 .56368E-07 .14605E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .32301E-03 .56376E-07 .14763E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .32359E-03 .56384E-07 .14920E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .32316E-03 .56390E-07 .15030E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .32240E-03 .56395E-07 .15140E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .32366E-03 .56401E-07 .15250E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .32412E-03 .56407E-07 .15360E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .32379E-03 .56413E-07 .15416E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .32247E-03 .56421E-07 .15496E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .32305E-03 .56429E-07 .15576E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .32344E-03 .56440E-07 .15680E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .32246E-03 .56446E-07 .15757E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .32245E-03 .56451E-07 .15835E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .32376E-03 .56456E-07 .15912E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .32414E-03 .56462E-07 .15990E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .32387E-03 .56467E-07 .16100E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .32262E-03 .56473E-07 .16210E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .32370E-03 .56478E-07 .16320E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .32418E-03 .56484E-07 .16430E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .32384E-03 .56488E-07 .16508E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .32341E-03 .56492E-07 .16585E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .32410E-03 .56496E-07 .16662E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .32439E-03 .56500E-07 .16740E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .32419E-03 .56504E-07 .16819E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .32345E-03 .56512E-07 .16971E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .32332E-03 .56520E-07 .17124E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .32348E-03 .56531E-07 .17350E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .32236E-03 .56536E-07 .17472E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .32244E-03 .56542E-07 .17595E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .32377E-03 .56547E-07 .17717E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .32413E-03 .56553E-07 .17840E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .32387E-03 .56558E-07 .17962E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .32262E-03 .56570E-07 .18207E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .32232E-03 .56585E-07 .18557E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .32124E-03 .56616E-07 .19240E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .31631E-03 .56627E-07 .19473E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .31868E-03 .56638E-07 .19705E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .32100E-03 .56649E-07 .19937E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .32185E-03 .56660E-07 .20170E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .32224E-03 .56671E-07 .20376E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .31894E-03 .56693E-07 .20788E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .31796E-03 .56718E-07 .21265E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .31578E-03 .56762E-07 .22080E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .31114E-03 .56780E-07 .22362E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .31130E-03 .56798E-07 .22645E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .31600E-03 .56834E-07 .23210E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .31208E-03 .56858E-07 .23595E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .30822E-03 .56882E-07 .23980E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .31330E-03 .56931E-07 .24750E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .30606E-03 .56948E-07 .24992E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .30930E-03 .56966E-07 .25235E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .31428E-03 .56983E-07 .25477E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .31648E-03 .57000E-07 .25720E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .31808E-03 .57017E-07 .25900E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .31206E-03 .57045E-07 .26193E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .31394E-03 .57073E-07 .26485E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .31134E-03 .57112E-07 .26890E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .31015E-03 .57132E-07 .27037E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .30755E-03 .57152E-07 .27185E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .31340E-03 .57192E-07 .27480E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .30830E-03 .57222E-07 .27644E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .30140E-03 .57262E-07 .27862E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .30427E-03 .57301E-07 .28079E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .30386E-03 .57351E-07 .28350E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .30291E-03 .57379E-07 .28450E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .29959E-03 .57408E-07 .28550E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .30734E-03 .57436E-07 .28650E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .31017E-03 .57464E-07 .28750E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .31031E-03 .57469E-07 .28765E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .31635E-03 .57475E-07 .28780E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .31946E-03 .57480E-07 .28795E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .31949E-03 .57485E-07 .28810E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .31947E-03 .57489E-07 .28820E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .31865E-03 .57492E-07 .28830E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .31976E-03 .57496E-07 .28840E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .32024E-03 .57500E-07 .28850E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .31991E-03 .57504E-07 .28858E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .31871E-03 .57511E-07 .28873E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .31839E-03 .57541E-07 .28934E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .30975E-03 .57608E-07 .29072E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .29539E-03 .57676E-07 .29209E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .29164E-03 .57769E-07 .29400E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .28743E-03 .57817E-07 .29457E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .28443E-03 .57865E-07 .29515E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .29454E-03 .57960E-07 .29630E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .28285E-03 .57966E-07 .29635E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .30552E-03 .57972E-07 .29640E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .31185E-03 .57977E-07 .29645E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .31046E-03 .57983E-07 .29650E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .31146E-03 .57987E-07 .29653E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .31006E-03 .57991E-07 .29655E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .31130E-03 .57996E-07 .29657E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .31189E-03 .58000E-07 .29660E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .31148E-03 .58004E-07 .29663E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .31007E-03 .58013E-07 .29668E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .30971E-03 .58047E-07 .29689E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .30018E-03 .58120E-07 .29734E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .28565E-03 .58193E-07 .29779E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .28860E-03 .58293E-07 .29840E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27884E-03 .58343E-07 .29854E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .28006E-03 .58395E-07 .29869E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .28664E-03 .58446E-07 .29884E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .29313E-03 .58500E-07 .29900E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .29023E-03 .58550E-07 .29909E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27989E-03 .58623E-07 .29921E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .28058E-03 .58697E-07 .29934E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .28216E-03 .58793E-07 .29950E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27334E-03 .58843E-07 .29955E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27184E-03 .58895E-07 .29960E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .28248E-03 .58947E-07 .29965E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .28904E-03 .59000E-07 .29970E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .28470E-03 .59050E-07 .29971E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27356E-03 .59150E-07 .29975E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .26686E-03 .59400E-07 .29982E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .24668E-03 .59650E-07 .29990E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .23722E-03 .60000E-07 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .22994E-03 .60050E-07 .29999E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .25214E-03 .60150E-07 .29997E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .25531E-03 .60290E-07 .29995E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .25907E-03 .60559E-07 .29990E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .21527E-03 .60569E-07 .29995E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .26754E-03 .60580E-07 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .28023E-03 .60600E-07 .30010E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .30204E-03 .60615E-07 .30027E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .28070E-03 .60631E-07 .30045E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27322E-03 .60647E-07 .30062E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .28247E-03 .60663E-07 .30080E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .26516E-03 .60674E-07 .30092E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .26924E-03 .60685E-07 .30105E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27141E-03 .60696E-07 .30117E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27348E-03 .60707E-07 .30130E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27190E-03 .60718E-07 .30126E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .26802E-03 .60739E-07 .30119E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .26780E-03 .60759E-07 .30111E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .26844E-03 .60790E-07 .30100E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .26540E-03 .60805E-07 .30055E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .26737E-03 .60819E-07 .30010E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27422E-03 .60848E-07 .29920E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .26928E-03 .60870E-07 .29756E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .26155E-03 .60892E-07 .29589E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .26873E-03 .60914E-07 .29421E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27207E-03 .60937E-07 .29250E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27093E-03 .60953E-07 .29037E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .26709E-03 .60969E-07 .28825E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27381E-03 .60984E-07 .28612E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27608E-03 .61000E-07 .28400E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27522E-03 .61016E-07 .28068E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .26823E-03 .61032E-07 .27721E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27381E-03 .61049E-07 .27373E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27387E-03 .61066E-07 .27010E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27345E-03 .61078E-07 .26667E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27169E-03 .61089E-07 .26325E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27695E-03 .61101E-07 .25982E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27838E-03 .61112E-07 .25640E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27729E-03 .61124E-07 .25210E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27207E-03 .61140E-07 .24603E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27451E-03 .61156E-07 .23995E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27583E-03 .61177E-07 .23210E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27231E-03 .61189E-07 .22795E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27133E-03 .61201E-07 .22380E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27685E-03 .61224E-07 .21550E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27295E-03 .61242E-07 .20833E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .26574E-03 .61260E-07 .20090E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27287E-03 .61278E-07 .19348E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27154E-03 .61297E-07 .18580E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27193E-03 .61310E-07 .18053E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .26944E-03 .61323E-07 .17525E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27537E-03 .61349E-07 .16470E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27113E-03 .61367E-07 .15780E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .26439E-03 .61385E-07 .15090E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27214E-03 .61404E-07 .14400E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27446E-03 .61422E-07 .13710E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27263E-03 .61435E-07 .13175E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .26950E-03 .61448E-07 .12640E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27534E-03 .61461E-07 .12105E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27702E-03 .61474E-07 .11570E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27572E-03 .61478E-07 .11375E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27836E-03 .61482E-07 .11180E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27927E-03 .61485E-07 .10985E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27914E-03 .61489E-07 .10790E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27923E-03 .61492E-07 .10670E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27923E-03 .61494E-07 .10550E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27886E-03 .61497E-07 .10430E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27873E-03 .61500E-07 .10310E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27882E-03 .61503E-07 .10211E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27917E-03 .61508E-07 .10031E+01 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27931E-03 .61513E-07 .98510E+00 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27926E-03 .61520E-07 .95900E+00 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27891E-03 .61524E-07 .95375E+00 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27891E-03 .61527E-07 .94850E+00 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27909E-03 .61534E-07 .93800E+00 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27898E-03 .61539E-07 .92903E+00 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27770E-03 .61545E-07 .91878E+00 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27885E-03 .61551E-07 .90853E+00 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27937E-03 .61558E-07 .89700E+00 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27882E-03 .61562E-07 .89325E+00 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27844E-03 .61567E-07 .88950E+00 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27911E-03 .61571E-07 .88575E+00 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27938E-03 .61575E-07 .88200E+00 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27919E-03 .61579E-07 .87350E+00 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27849E-03 .61586E-07 .86000E+00 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27884E-03 .61593E-07 .84650E+00 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27908E-03 .61602E-07 .82800E+00 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27810E-03 .61607E-07 .81650E+00 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27780E-03 .61612E-07 .80500E+00 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27904E-03 .61622E-07 .78200E+00 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27825E-03 .61629E-07 .76382E+00 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27556E-03 .61638E-07 .74382E+00 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27793E-03 .61646E-07 .72382E+00 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27890E-03 .61655E-07 .70200E+00 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27789E-03 .61661E-07 .68875E+00 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27693E-03 .61667E-07 .67550E+00 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27878E-03 .61673E-07 .66225E+00 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27942E-03 .61679E-07 .64900E+00 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27895E-03 .61685E-07 .63449E+00 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27705E-03 .61697E-07 .60548E+00 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27661E-03 .61714E-07 .56498E+00 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27474E-03 .61746E-07 .48700E+00 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .26600E-03 .61751E-07 .47616E+00 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27615E-03 .61757E-07 .46533E+00 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27954E-03 .61762E-07 .45449E+00 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27906E-03 .61767E-07 .44366E+00 .30000E+01 .30000E+01 .00000E+00 .30000E+01 .27940E-03 .61772E-07 .43282E+00 .30000E+01 .30000E+01 .00000E+00 .29804E+01 .94453E-04 .61779E-07 .41941E+00 .30000E+01 .30000E+01 .00000E+00 .29562E+01-.13694E-03 .61785E-07 .40599E+00 .30000E+01 .30000E+01 .00000E+00 .29320E+01-.29805E-03 .61793E-07 .39000E+00 .30000E+01 .30000E+01 .00000E+00 .29031E+01-.56799E-03 .61800E-07 .37860E+00 .30000E+01 .30000E+01 .00000E+00 .28766E+01-.71740E-03 .61814E-07 .35580E+00 .30000E+01 .30000E+01 .00000E+00 .28234E+01-.10464E-02 .61832E-07 .32780E+00 .30000E+01 .30000E+01 .00000E+00 .27582E+01-.12192E-02 .61863E-07 .27800E+00 .30000E+01 .30000E+01 .00000E+00 .26422E+01-.15176E-02 .61875E-07 .26375E+00 .30000E+01 .30000E+01 .00000E+00 .25966E+01-.15791E-02 .61887E-07 .24950E+00 .30000E+01 .30000E+01 .00000E+00 .25509E+01-.17215E-02 .61912E-07 .22100E+00 .30000E+01 .30000E+01 .00000E+00 .24596E+01-.16818E-02 .61925E-07 .20925E+00 .30000E+01 .30000E+01 .00000E+00 .24112E+01-.17120E-02 .61938E-07 .19750E+00 .30000E+01 .30000E+01 .00000E+00 .23528E+01-.17864E-02 .61951E-07 .18575E+00 .30000E+01 .30000E+01 .00000E+00 .22913E+01-.18614E-02 .61964E-07 .17400E+00 .30000E+01 .30000E+01 .00000E+00 .22299E+01-.18751E-02 .61973E-07 .16750E+00 .30000E+01 .30000E+01 .00000E+00 .21874E+01-.19639E-02 .61982E-07 .16100E+00 .30000E+01 .30000E+01 .00000E+00 .21449E+01-.19719E-02 .61991E-07 .15450E+00 .30000E+01 .30000E+01 .00000E+00 .21024E+01-.21518E-02 .62000E-07 .14800E+00 .30000E+01 .30000E+01 .00000E+00 .20598E+01-.21339E-02 .62009E-07 .14350E+00 .30000E+01 .30000E+01 .00000E+00 .20173E+01-.21676E-02 .62027E-07 .13450E+00 .30000E+01 .30000E+01 .00000E+00 .19323E+01-.21649E-02 .62057E-07 .11950E+00 .30000E+01 .30000E+01 .00000E+00 .17902E+01-.23056E-02 .62087E-07 .10450E+00 .30000E+01 .30000E+01 .00000E+00 .16439E+01-.24062E-02 .62120E-07 .88000E-01 .30000E+01 .30000E+01 .00000E+00 .14829E+01-.25129E-02 .62141E-07 .81000E-01 .30000E+01 .30000E+01 .00000E+00 .13793E+01-.25115E-02 .62162E-07 .74000E-01 .30000E+01 .30000E+01 .00000E+00 .12756E+01-.25322E-02 .62205E-07 .60000E-01 .30000E+01 .30000E+01 .00000E+00 .10800E+01-.24051E-02 .62237E-07 .54104E-01 .30000E+01 .30000E+01 .00000E+00 .93833E+00-.23577E-02 .62280E-07 .46104E-01 .30000E+01 .30000E+01 .00000E+00 .74611E+00-.23343E-02 .62323E-07 .38104E-01 .30000E+01 .30000E+01 .00000E+00 .57686E+00-.21515E-02 .62378E-07 .28000E-01 .30000E+01 .30000E+01 .00000E+00 .45502E+00-.14110E-02 .62409E-07 .24750E-01 .30000E+01 .30000E+01 .00000E+00 .38699E+00-.13017E-02 .62439E-07 .21500E-01 .30000E+01 .30000E+01 .00000E+00 .31896E+00-.12111E-02 .62500E-07 .15000E-01 .30000E+01 .30000E+01 .00000E+00 .18290E+00-.12056E-02 .62520E-07 .14230E-01 .30000E+01 .30000E+01 .00000E+00 .13717E+00-.11827E-02 .62541E-07 .13461E-01 .30000E+01 .30000E+01 .00000E+00 .91450E-01-.11869E-02 .62561E-07 .12691E-01 .30000E+01 .30000E+01 .00000E+00 .45725E-01-.11574E-02 .62582E-07 .11922E-01 .30000E+01 .30000E+01 .00000E+00 .00000E+00-.11777E-02 .62603E-07 .11152E-01 .30000E+01 .30000E+01 .00000E+00 .00000E+00-.78081E-03 .62644E-07 .96126E-02 .30000E+01 .30000E+01 .00000E+00 .00000E+00-.25136E-03 .62696E-07 .76323E-02 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .58254E-04 .62793E-07 .40000E-02 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .16665E-03 .62843E-07 .32754E-02 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .16910E-03 .62895E-07 .25254E-02 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .18311E-03 .62946E-07 .17754E-02 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .16289E-03 .63000E-07 .10000E-02 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .18763E-03 .63050E-07 .82935E-03 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .17416E-03 .63123E-07 .57935E-03 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .17426E-03 .63197E-07 .32935E-03 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .16450E-03 .63293E-07 .00000E+00 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .16722E-03 .63343E-07-.86693E-04 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .16384E-03 .63443E-07-.26008E-03 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .16497E-03 .63843E-07-.95362E-03 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .16004E-03 .64343E-07-.18205E-02 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15930E-03 .64843E-07-.26875E-02 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15130E-03 .65343E-07-.35544E-02 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15134E-03 .65600E-07-.40000E-02 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14454E-03 .65615E-07-.60000E-02 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15249E-03 .65630E-07-.80000E-02 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15459E-03 .65660E-07-.12000E-01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15780E-03 .65671E-07-.12500E-01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15547E-03 .65681E-07-.13000E-01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15606E-03 .65703E-07-.14000E-01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15565E-03 .65719E-07-.98536E-02 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15438E-03 .65737E-07-.53536E-02 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15539E-03 .65754E-07-.85357E-03 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15576E-03 .65773E-07 .40000E-02 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15534E-03 .65785E-07 .14750E-01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15493E-03 .65798E-07 .25500E-01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15595E-03 .65810E-07 .36250E-01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15623E-03 .65823E-07 .47000E-01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15602E-03 .65836E-07 .70250E-01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15499E-03 .65860E-07 .11675E+00 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15479E-03 .65886E-07 .16325E+00 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15495E-03 .65923E-07 .23300E+00 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15385E-03 .65941E-07 .28900E+00 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15398E-03 .65959E-07 .34500E+00 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15541E-03 .65994E-07 .45700E+00 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15436E-03 .65995E-07 .46050E+00 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15626E-03 .65996E-07 .46400E+00 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15675E-03 .65997E-07 .47100E+00 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15659E-03 .65998E-07 .47375E+00 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15676E-03 .65998E-07 .47650E+00 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15664E-03 .66000E-07 .48200E+00 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15668E-03 .66001E-07 .48582E+00 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15687E-03 .66003E-07 .49345E+00 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15694E-03 .66012E-07 .52399E+00 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15648E-03 .66040E-07 .61899E+00 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15479E-03 .66068E-07 .71399E+00 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15447E-03 .66112E-07 .86200E+00 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15365E-03 .66132E-07 .91575E+00 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15368E-03 .66152E-07 .96950E+00 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15520E-03 .66171E-07 .10232E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15551E-03 .66191E-07 .10770E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15527E-03 .66203E-07 .11072E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15504E-03 .66214E-07 .11375E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15604E-03 .66226E-07 .11678E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15630E-03 .66238E-07 .11980E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15610E-03 .66246E-07 .12175E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15574E-03 .66255E-07 .12370E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15643E-03 .66271E-07 .12760E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15596E-03 .66283E-07 .12980E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15511E-03 .66294E-07 .13200E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15601E-03 .66318E-07 .13640E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15538E-03 .66326E-07 .13802E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15562E-03 .66335E-07 .13965E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15643E-03 .66344E-07 .14128E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15660E-03 .66352E-07 .14290E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15647E-03 .66360E-07 .14447E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15583E-03 .66368E-07 .14605E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15644E-03 .66376E-07 .14763E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15668E-03 .66384E-07 .14920E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15650E-03 .66390E-07 .15030E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15625E-03 .66396E-07 .15140E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15670E-03 .66401E-07 .15250E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15686E-03 .66407E-07 .15360E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15674E-03 .66413E-07 .15416E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15628E-03 .66421E-07 .15496E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15648E-03 .66429E-07 .15576E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15661E-03 .66440E-07 .15680E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15627E-03 .66446E-07 .15757E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15627E-03 .66451E-07 .15835E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15673E-03 .66462E-07 .15990E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15643E-03 .66467E-07 .16100E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15629E-03 .66473E-07 .16210E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15673E-03 .66484E-07 .16430E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15644E-03 .66488E-07 .16508E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15656E-03 .66492E-07 .16585E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15686E-03 .66500E-07 .16740E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15668E-03 .66506E-07 .16858E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15622E-03 .66514E-07 .17011E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15652E-03 .66522E-07 .17163E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15667E-03 .66531E-07 .17350E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15639E-03 .66537E-07 .17472E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15628E-03 .66542E-07 .17595E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15673E-03 .66553E-07 .17840E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15644E-03 .66561E-07 .18023E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15578E-03 .66577E-07 .18373E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15571E-03 .66593E-07 .18723E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15583E-03 .66616E-07 .19240E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15506E-03 .66627E-07 .19473E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15515E-03 .66638E-07 .19705E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15614E-03 .66649E-07 .19937E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15637E-03 .66660E-07 .20170E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15620E-03 .66671E-07 .20376E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15526E-03 .66693E-07 .20788E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15508E-03 .66718E-07 .21265E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15494E-03 .66762E-07 .22080E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15338E-03 .66780E-07 .22362E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15390E-03 .66798E-07 .22645E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15540E-03 .66816E-07 .22927E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15566E-03 .66834E-07 .23210E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15546E-03 .66852E-07 .23496E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15409E-03 .66876E-07 .23881E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15477E-03 .66900E-07 .24266E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15509E-03 .66931E-07 .24750E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15431E-03 .66948E-07 .24992E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15409E-03 .66965E-07 .25235E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15545E-03 .66983E-07 .25477E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15576E-03 .67000E-07 .25720E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15552E-03 .67017E-07 .25900E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15420E-03 .67045E-07 .26193E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15447E-03 .67073E-07 .26485E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15472E-03 .67112E-07 .26890E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15370E-03 .67132E-07 .27037E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15365E-03 .67152E-07 .27185E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15517E-03 .67172E-07 .27332E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15549E-03 .67192E-07 .27480E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15524E-03 .67212E-07 .27589E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15378E-03 .67252E-07 .27807E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15355E-03 .67292E-07 .28024E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15219E-03 .67351E-07 .28350E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15094E-03 .67379E-07 .28450E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15087E-03 .67407E-07 .28550E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15248E-03 .67436E-07 .28650E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15247E-03 .67464E-07 .28750E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15270E-03 .67469E-07 .28765E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15430E-03 .67475E-07 .28780E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15501E-03 .67480E-07 .28795E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15498E-03 .67485E-07 .28810E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15500E-03 .67489E-07 .28820E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15483E-03 .67493E-07 .28830E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15503E-03 .67496E-07 .28840E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15512E-03 .67500E-07 .28850E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15506E-03 .67504E-07 .28858E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15483E-03 .67511E-07 .28873E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15478E-03 .67541E-07 .28934E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15297E-03 .67608E-07 .29072E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15007E-03 .67676E-07 .29209E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14987E-03 .67769E-07 .29400E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14763E-03 .67817E-07 .29457E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14789E-03 .67864E-07 .29515E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14922E-03 .67960E-07 .29630E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14856E-03 .67966E-07 .29635E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15308E-03 .67971E-07 .29640E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15447E-03 .67977E-07 .29645E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15423E-03 .67983E-07 .29650E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15441E-03 .67987E-07 .29653E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15407E-03 .67992E-07 .29655E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15439E-03 .67996E-07 .29657E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15454E-03 .68000E-07 .29660E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15444E-03 .68004E-07 .29663E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15408E-03 .68013E-07 .29668E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15399E-03 .68047E-07 .29689E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .15160E-03 .68120E-07 .29734E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14812E-03 .68193E-07 .29779E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14745E-03 .68293E-07 .29840E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14616E-03 .68343E-07 .29854E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14563E-03 .68395E-07 .29869E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14779E-03 .68446E-07 .29884E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14876E-03 .68500E-07 .29900E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14819E-03 .68550E-07 .29909E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14544E-03 .68623E-07 .29921E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14572E-03 .68697E-07 .29934E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14389E-03 .68793E-07 .29950E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14524E-03 .68843E-07 .29955E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14381E-03 .68895E-07 .29960E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14673E-03 .68946E-07 .29965E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14490E-03 .69000E-07 .29970E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14918E-03 .69050E-07 .29971E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14380E-03 .69150E-07 .29975E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14490E-03 .69400E-07 .29982E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .13038E-03 .69650E-07 .29990E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .13753E-03 .70000E-07 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .12618E-03 .70050E-07 .29999E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .13670E-03 .70150E-07 .29997E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14036E-03 .70290E-07 .29995E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .13721E-03 .70559E-07 .29990E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .12976E-03 .70569E-07 .29995E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14067E-03 .70580E-07 .30000E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14366E-03 .70600E-07 .30010E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14152E-03 .70615E-07 .30027E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14056E-03 .70631E-07 .30045E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14519E-03 .70647E-07 .30062E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14656E-03 .70663E-07 .30080E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14539E-03 .70674E-07 .30092E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14487E-03 .70685E-07 .30105E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14630E-03 .70696E-07 .30117E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14751E-03 .70707E-07 .30130E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14657E-03 .70718E-07 .30126E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14508E-03 .70739E-07 .30119E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14466E-03 .70759E-07 .30111E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14517E-03 .70790E-07 .30100E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14318E-03 .70804E-07 .30055E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14350E-03 .70819E-07 .30010E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14583E-03 .70848E-07 .29920E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14415E-03 .70870E-07 .29756E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14161E-03 .70892E-07 .29589E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14424E-03 .70914E-07 .29421E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14502E-03 .70937E-07 .29250E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14432E-03 .70953E-07 .29037E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14324E-03 .70968E-07 .28825E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14552E-03 .70984E-07 .28612E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14613E-03 .71000E-07 .28400E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14566E-03 .71016E-07 .28068E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14336E-03 .71032E-07 .27721E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14534E-03 .71049E-07 .27373E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14602E-03 .71066E-07 .27010E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14536E-03 .71078E-07 .26667E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14463E-03 .71089E-07 .26325E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14639E-03 .71101E-07 .25982E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14688E-03 .71112E-07 .25640E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14650E-03 .71124E-07 .25210E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14474E-03 .71140E-07 .24603E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14553E-03 .71156E-07 .23995E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14596E-03 .71177E-07 .23210E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14480E-03 .71189E-07 .22795E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14449E-03 .71201E-07 .22380E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14635E-03 .71224E-07 .21550E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14504E-03 .71242E-07 .20833E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14277E-03 .71260E-07 .20090E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14500E-03 .71278E-07 .19348E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14571E-03 .71297E-07 .18580E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14504E-03 .71310E-07 .18053E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14413E-03 .71323E-07 .17525E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14608E-03 .71349E-07 .16470E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14468E-03 .71367E-07 .15780E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14257E-03 .71386E-07 .15090E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14499E-03 .71404E-07 .14400E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14572E-03 .71422E-07 .13710E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14515E-03 .71435E-07 .13175E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14414E-03 .71448E-07 .12640E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14607E-03 .71461E-07 .12105E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14662E-03 .71474E-07 .11570E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14620E-03 .71478E-07 .11375E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14724E-03 .71482E-07 .11180E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14787E-03 .71485E-07 .10985E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14790E-03 .71489E-07 .10790E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14788E-03 .71492E-07 .10670E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14773E-03 .71494E-07 .10550E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14786E-03 .71497E-07 .10430E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14794E-03 .71500E-07 .10310E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14789E-03 .71503E-07 .10211E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14773E-03 .71508E-07 .10031E+01 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14774E-03 .71513E-07 .98510E+00 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14779E-03 .71520E-07 .95900E+00 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14746E-03 .71524E-07 .95375E+00 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14747E-03 .71527E-07 .94850E+00 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14783E-03 .71534E-07 .93800E+00 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14762E-03 .71539E-07 .92903E+00 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14695E-03 .71545E-07 .91878E+00 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14748E-03 .71551E-07 .90853E+00 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14774E-03 .71558E-07 .89700E+00 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14745E-03 .71562E-07 .89325E+00 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14725E-03 .71566E-07 .88950E+00 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14774E-03 .71571E-07 .88575E+00 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14792E-03 .71575E-07 .88200E+00 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14780E-03 .71579E-07 .87350E+00 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14729E-03 .71586E-07 .86000E+00 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14743E-03 .71593E-07 .84650E+00 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14758E-03 .71602E-07 .82800E+00 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14708E-03 .71607E-07 .81650E+00 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14696E-03 .71612E-07 .80500E+00 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14764E-03 .71622E-07 .78200E+00 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14721E-03 .71630E-07 .76382E+00 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14614E-03 .71638E-07 .74382E+00 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14705E-03 .71646E-07 .72382E+00 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14743E-03 .71655E-07 .70200E+00 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14702E-03 .71661E-07 .68875E+00 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14662E-03 .71667E-07 .67550E+00 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14747E-03 .71673E-07 .66225E+00 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14775E-03 .71679E-07 .64900E+00 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14754E-03 .71685E-07 .63449E+00 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14669E-03 .71697E-07 .60548E+00 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14649E-03 .71714E-07 .56498E+00 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14586E-03 .71746E-07 .48700E+00 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14300E-03 .71751E-07 .47616E+00 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14639E-03 .71757E-07 .46533E+00 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14779E-03 .71762E-07 .45449E+00 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14770E-03 .71767E-07 .44366E+00 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .14776E-03 .71772E-07 .43282E+00 .29804E+01 .29804E+01 .00000E+00 .00000E+00-.30649E-02 .71779E-07 .41941E+00 .29562E+01 .29562E+01 .00000E+00 .00000E+00-.72750E-02 .71785E-07 .40599E+00 .29320E+01 .29320E+01 .00000E+00 .00000E+00-.11402E-01 .71793E-07 .39000E+00 .29031E+01 .29031E+01 .00000E+00 .00000E+00-.15687E-01 .71800E-07 .37860E+00 .28766E+01 .28766E+01 .00000E+00 .00000E+00-.18988E-01 .71814E-07 .35580E+00 .28234E+01 .28234E+01 .00000E+00 .00000E+00-.25114E-01 .71832E-07 .32780E+00 .27582E+01 .27582E+01 .00000E+00 .00000E+00-.30937E-01 .71863E-07 .27800E+00 .26422E+01 .26422E+01 .00000E+00 .00000E+00-.37960E-01 .71875E-07 .26375E+00 .25966E+01 .25966E+01 .00000E+00 .00000E+00-.39781E-01 .71887E-07 .24950E+00 .25509E+01 .25509E+01 .00000E+00 .00000E+00-.41480E-01 .71912E-07 .22100E+00 .24596E+01 .24596E+01 .00000E+00 .00000E+00-.44427E-01 .71925E-07 .20925E+00 .24112E+01 .24112E+01 .00000E+00 .00000E+00-.45667E-01 .71938E-07 .19750E+00 .23528E+01 .23528E+01 .00000E+00 .00000E+00-.48313E-01 .71951E-07 .18575E+00 .22913E+01 .22913E+01 .00000E+00 .00000E+00-.51765E-01 .71964E-07 .17400E+00 .22299E+01 .22299E+01 .00000E+00 .00000E+00-.54940E-01 .71973E-07 .16750E+00 .21874E+01 .21874E+01 .00000E+00 .00000E+00-.56867E-01 .71982E-07 .16100E+00 .21449E+01 .21449E+01 .00000E+00 .00000E+00-.58742E-01 .71991E-07 .15450E+00 .21024E+01 .21024E+01 .00000E+00 .00000E+00-.60585E-01 .72000E-07 .14800E+00 .20598E+01 .20598E+01 .00000E+00 .00000E+00-.62289E-01 .72009E-07 .14350E+00 .20173E+01 .20173E+01 .00000E+00 .00000E+00-.63918E-01 .72027E-07 .13450E+00 .19323E+01 .19323E+01 .00000E+00 .00000E+00-.67210E-01 .72057E-07 .11950E+00 .17902E+01 .17902E+01 .00000E+00 .00000E+00-.72565E-01 .72087E-07 .10450E+00 .16439E+01 .16439E+01 .00000E+00 .00000E+00-.78944E-01 .72120E-07 .88000E-01 .14829E+01 .14829E+01 .00000E+00 .00000E+00-.86549E-01 .72141E-07 .81000E-01 .13793E+01 .13793E+01 .00000E+00 .00000E+00-.92583E-01 .72162E-07 .74000E-01 .12756E+01 .12756E+01 .00000E+00 .00000E+00-.10631E+00 .72205E-07 .60000E-01 .10800E+01 .10800E+01 .00000E+00 .00000E+00-.11286E+00 .72237E-07 .54104E-01 .93833E+00 .93833E+00 .00000E+00 .00000E+00-.63563E-01 .72280E-07 .46104E-01 .74611E+00 .74611E+00 .00000E+00 .00000E+00 .80731E-01 .72323E-07 .38104E-01 .57686E+00 .57686E+00 .00000E+00 .00000E+00 .40948E+00 .72378E-07 .28000E-01 .45502E+00 .45502E+00 .00000E+00 .00000E+00 .10330E+01 .72408E-07 .24750E-01 .38699E+00 .38699E+00 .00000E+00 .00000E+00 .14097E+01 .72439E-07 .21500E-01 .31896E+00 .31896E+00 .00000E+00 .00000E+00 .17208E+01 .72500E-07 .15000E-01 .18290E+00 .18290E+00 .00000E+00 .00000E+00 .21533E+01 .72520E-07 .14230E-01 .13717E+00 .13717E+00 .00000E+00 .00000E+00 .22516E+01 .72541E-07 .13461E-01 .91450E-01 .91450E-01 .00000E+00 .00000E+00 .23433E+01 .72561E-07 .12691E-01 .45725E-01 .45725E-01 .00000E+00 .00000E+00 .24232E+01 .72582E-07 .11922E-01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .24937E+01 .72602E-07 .11152E-01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .25536E+01 .72644E-07 .96126E-02 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .26603E+01 .72696E-07 .76323E-02 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .27627E+01 .72793E-07 .40000E-02 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .28787E+01 .72843E-07 .32754E-02 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .29093E+01 .72895E-07 .25254E-02 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .29358E+01 .72946E-07 .17754E-02 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .29545E+01 .73000E-07 .10000E-02 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .29681E+01 .73050E-07 .82935E-03 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .29759E+01 .73123E-07 .57935E-03 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .29852E+01 .73197E-07 .32935E-03 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .29909E+01 .73293E-07 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .29953E+01 .73343E-07-.86693E-04 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .29964E+01 .73443E-07-.26008E-03 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .29982E+01 .73843E-07-.95362E-03 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30002E+01 .74343E-07-.18205E-02 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .29999E+01 .74843E-07-.26875E-02 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .75343E-07-.35544E-02 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .75600E-07-.40000E-02 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .75615E-07-.60000E-02 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .75630E-07-.80000E-02 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .75660E-07-.12000E-01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .75671E-07-.12500E-01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .75681E-07-.13000E-01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .75703E-07-.14000E-01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .75719E-07-.98536E-02 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .75737E-07-.53536E-02 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .75754E-07-.85357E-03 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .75773E-07 .40000E-02 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .75786E-07 .14750E-01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .75798E-07 .25500E-01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .75810E-07 .36250E-01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .75823E-07 .47000E-01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .75836E-07 .70250E-01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .75860E-07 .11675E+00 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .75886E-07 .16325E+00 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .75923E-07 .23300E+00 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .75941E-07 .28900E+00 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .75959E-07 .34500E+00 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .75994E-07 .45700E+00 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .75995E-07 .46050E+00 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .75996E-07 .46400E+00 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .75997E-07 .47100E+00 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .75998E-07 .47375E+00 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .75998E-07 .47650E+00 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .76000E-07 .48200E+00 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .76001E-07 .48582E+00 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .76003E-07 .49345E+00 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .76012E-07 .52399E+00 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .76040E-07 .61899E+00 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .76068E-07 .71399E+00 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .76112E-07 .86200E+00 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .76132E-07 .91575E+00 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .76152E-07 .96950E+00 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .76171E-07 .10232E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .76191E-07 .10770E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .76203E-07 .11072E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .76214E-07 .11375E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .76226E-07 .11678E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .76238E-07 .11980E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .76246E-07 .12175E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .76255E-07 .12370E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .76271E-07 .12760E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .76283E-07 .12980E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .76294E-07 .13200E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .76318E-07 .13640E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .76327E-07 .13802E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .76335E-07 .13965E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .76343E-07 .14128E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .76352E-07 .14290E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .76360E-07 .14447E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .76368E-07 .14605E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .76376E-07 .14763E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .76384E-07 .14920E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .76390E-07 .15030E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .76396E-07 .15140E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .76401E-07 .15250E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .76407E-07 .15360E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .76413E-07 .15416E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .76421E-07 .15496E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .76429E-07 .15576E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .76440E-07 .15680E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .76446E-07 .15757E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .76451E-07 .15835E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .76462E-07 .15990E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .76468E-07 .16100E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .76473E-07 .16210E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .76484E-07 .16430E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .76488E-07 .16508E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .76492E-07 .16585E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .76500E-07 .16740E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .76506E-07 .16858E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .76514E-07 .17011E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .76522E-07 .17163E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .76531E-07 .17350E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .76537E-07 .17472E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .76542E-07 .17595E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .76553E-07 .17840E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .76561E-07 .18023E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .76577E-07 .18373E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .76593E-07 .18723E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .76616E-07 .19240E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .76627E-07 .19473E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .76638E-07 .19705E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .76649E-07 .19937E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .76660E-07 .20170E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .76671E-07 .20376E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .76693E-07 .20788E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .76718E-07 .21265E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .76762E-07 .22080E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .76780E-07 .22362E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .76798E-07 .22645E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .76816E-07 .22927E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .76834E-07 .23210E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .76852E-07 .23496E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .76876E-07 .23881E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .76900E-07 .24266E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .76931E-07 .24750E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .76948E-07 .24992E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .76965E-07 .25235E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .76983E-07 .25477E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .77000E-07 .25720E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .77017E-07 .25900E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .77045E-07 .26193E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .77073E-07 .26485E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .77112E-07 .26890E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .77132E-07 .27037E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .77152E-07 .27185E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .77172E-07 .27332E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .77192E-07 .27480E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .77212E-07 .27589E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .77252E-07 .27807E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .77292E-07 .28024E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .77351E-07 .28350E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .77379E-07 .28450E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .77407E-07 .28550E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .77436E-07 .28650E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .77464E-07 .28750E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .77469E-07 .28765E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .77475E-07 .28780E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .77480E-07 .28795E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .77485E-07 .28810E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .77489E-07 .28820E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .77493E-07 .28830E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .77496E-07 .28840E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .77500E-07 .28850E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .77504E-07 .28858E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .77511E-07 .28873E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .77541E-07 .28934E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .77608E-07 .29072E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .77676E-07 .29209E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .77769E-07 .29400E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .77817E-07 .29457E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .77864E-07 .29515E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .77960E-07 .29630E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .77966E-07 .29635E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .77971E-07 .29640E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .77977E-07 .29645E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .77983E-07 .29650E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .77987E-07 .29653E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .77992E-07 .29655E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .77996E-07 .29657E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .78000E-07 .29660E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .78004E-07 .29663E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .78013E-07 .29668E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .78047E-07 .29689E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .78120E-07 .29734E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .78193E-07 .29779E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .78293E-07 .29840E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .78343E-07 .29854E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .78395E-07 .29869E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .78446E-07 .29884E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .78500E-07 .29900E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .78550E-07 .29909E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .78623E-07 .29921E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .78697E-07 .29934E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .78793E-07 .29950E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .78843E-07 .29955E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .78895E-07 .29960E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .78946E-07 .29965E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .79000E-07 .29970E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .79050E-07 .29971E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .79150E-07 .29975E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .79400E-07 .29982E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .79650E-07 .29990E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .80000E-07 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .80050E-07 .29999E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .80150E-07 .29997E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .80290E-07 .29995E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .80559E-07 .29990E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .80569E-07 .29995E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .80579E-07 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .80600E-07 .30010E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .80615E-07 .30027E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .80631E-07 .30045E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .80647E-07 .30062E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .80663E-07 .30080E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .80674E-07 .30092E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .80685E-07 .30105E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .80696E-07 .30117E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .80707E-07 .30130E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .80718E-07 .30126E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .80739E-07 .30119E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .80759E-07 .30111E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .80790E-07 .30100E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .80804E-07 .30055E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .80819E-07 .30010E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .80848E-07 .29920E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .80870E-07 .29756E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .80892E-07 .29589E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .80914E-07 .29421E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .80937E-07 .29250E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .80953E-07 .29037E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .80968E-07 .28825E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .80984E-07 .28612E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81000E-07 .28400E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81016E-07 .28068E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81032E-07 .27721E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81049E-07 .27373E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81066E-07 .27010E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81078E-07 .26667E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81089E-07 .26325E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81101E-07 .25982E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81112E-07 .25640E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81124E-07 .25210E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81140E-07 .24603E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81156E-07 .23995E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81177E-07 .23210E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81189E-07 .22795E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81200E-07 .22380E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81212E-07 .21965E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81224E-07 .21550E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81236E-07 .21072E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81254E-07 .20329E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81272E-07 .19587E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81297E-07 .18580E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81310E-07 .18053E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81323E-07 .17525E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81349E-07 .16470E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81367E-07 .15780E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81386E-07 .15090E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81404E-07 .14400E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81422E-07 .13710E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81435E-07 .13175E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81448E-07 .12640E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81461E-07 .12105E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81474E-07 .11570E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81478E-07 .11375E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81482E-07 .11180E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81485E-07 .10985E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81489E-07 .10790E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81492E-07 .10670E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81494E-07 .10550E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81497E-07 .10430E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81500E-07 .10310E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81503E-07 .10211E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81508E-07 .10031E+01 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81513E-07 .98510E+00 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81520E-07 .95900E+00 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81524E-07 .95375E+00 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81527E-07 .94850E+00 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81534E-07 .93800E+00 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81539E-07 .92903E+00 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81545E-07 .91878E+00 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81551E-07 .90853E+00 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81558E-07 .89700E+00 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81562E-07 .89325E+00 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81566E-07 .88950E+00 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81571E-07 .88575E+00 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81575E-07 .88200E+00 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81579E-07 .87350E+00 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81586E-07 .86000E+00 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81593E-07 .84650E+00 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81602E-07 .82800E+00 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81607E-07 .81650E+00 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81612E-07 .80500E+00 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81617E-07 .79350E+00 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81622E-07 .78200E+00 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81627E-07 .76988E+00 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81635E-07 .74988E+00 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81643E-07 .72988E+00 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81655E-07 .70200E+00 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81661E-07 .68875E+00 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81667E-07 .67550E+00 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81679E-07 .64900E+00 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81688E-07 .62724E+00 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81705E-07 .58674E+00 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81722E-07 .54624E+00 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81746E-07 .48700E+00 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81758E-07 .46275E+00 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81769E-07 .43850E+00 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81793E-07 .39000E+00 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81810E-07 .36200E+00 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81828E-07 .33400E+00 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81863E-07 .27800E+00 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81875E-07 .26375E+00 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81887E-07 .24950E+00 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81900E-07 .23525E+00 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81912E-07 .22100E+00 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81924E-07 .20993E+00 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81937E-07 .19818E+00 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81950E-07 .18643E+00 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81964E-07 .17400E+00 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81966E-07 .17237E+00 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81969E-07 .17075E+00 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81971E-07 .16913E+00 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81973E-07 .16750E+00 .00000E+00 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .81975E-07 .16588E+00 .00000E+00 .93750E-02 .00000E+00 .00000E+00 .30002E+01 .81980E-07 .16262E+00 .00000E+00 .28125E-01 .00000E+00 .00000E+00 .30004E+01 .81986E-07 .15775E+00 .00000E+00 .56250E-01 .00000E+00 .00000E+00 .30008E+01 .81993E-07 .15288E+00 .00000E+00 .84375E-01 .00000E+00 .00000E+00 .30014E+01 .82000E-07 .14800E+00 .00000E+00 .11250E+00 .00000E+00 .00000E+00 .30021E+01 .82007E-07 .14462E+00 .00000E+00 .14063E+00 .00000E+00 .00000E+00 .30029E+01 .82020E-07 .13788E+00 .00000E+00 .19688E+00 .00000E+00 .00000E+00 .30046E+01 .82050E-07 .12287E+00 .00000E+00 .32188E+00 .00000E+00 .00000E+00 .30084E+01 .82080E-07 .10787E+00 .00000E+00 .44688E+00 .00000E+00 .00000E+00 .30117E+01 .82120E-07 .88000E-01 .00000E+00 .60822E+00 .00000E+00 .00000E+00 .30144E+01 .82141E-07 .81000E-01 .00000E+00 .66644E+00 .00000E+00 .00000E+00 .30138E+01 .82163E-07 .74000E-01 .00000E+00 .72466E+00 .00000E+00 .00000E+00 .30128E+01 .82205E-07 .60000E-01 .00000E+00 .84110E+00 .00000E+00 .00000E+00 .30088E+01 .82237E-07 .54104E-01 .00000E+00 .92842E+00 .00000E+00 .00000E+00 .30054E+01 .82280E-07 .46104E-01 .00000E+00 .10469E+01 .00000E+00 .00000E+00 .30010E+01 .82323E-07 .38104E-01 .00000E+00 .11654E+01 .00000E+00 .00000E+00 .29974E+01 .82378E-07 .28000E-01 .00000E+00 .12768E+01 .00000E+00 .00000E+00 .29944E+01 .82408E-07 .24750E-01 .00000E+00 .13326E+01 .00000E+00 .00000E+00 .29937E+01 .82439E-07 .21500E-01 .00000E+00 .13884E+01 .00000E+00 .00000E+00 .29930E+01 .82469E-07 .18250E-01 .00000E+00 .14442E+01 .00000E+00 .00000E+00 .29925E+01 .82500E-07 .15000E-01 .00000E+00 .15000E+01 .00000E+00 .00000E+00 .29921E+01 .82530E-07 .13855E-01 .00000E+00 .15558E+01 .00000E+00 .00000E+00 .29919E+01 .82591E-07 .11565E-01 .00000E+00 .16674E+01 .00000E+00 .00000E+00 .29915E+01 .82665E-07 .88148E-02 .00000E+00 .18014E+01 .00000E+00 .00000E+00 .29913E+01 .82793E-07 .40000E-02 .00000E+00 .20324E+01 .00000E+00 .00000E+00 .29915E+01 .82843E-07 .32754E-02 .00000E+00 .21225E+01 .00000E+00 .00000E+00 .29916E+01 .82894E-07 .25362E-02 .00000E+00 .22144E+01 .00000E+00 .00000E+00 .29905E+01 .82945E-07 .17971E-02 .00000E+00 .23063E+01 .00000E+00 .00000E+00 .29879E+01 .82997E-07 .10435E-02 .00000E+00 .24000E+01 .00000E+00 .00000E+00 .29856E+01 .82998E-07 .10326E-02 .00000E+00 .24007E+01 .00000E+00 .00000E+00 .29856E+01 .82998E-07 .10217E-02 .00000E+00 .24014E+01 .00000E+00 .00000E+00 .29856E+01 .83000E-07 .10000E-02 .00000E+00 .24027E+01 .00000E+00 .00000E+00 .29855E+01 .83001E-07 .99616E-03 .00000E+00 .24037E+01 .00000E+00 .00000E+00 .29855E+01 .83003E-07 .98848E-03 .00000E+00 .24058E+01 .00000E+00 .00000E+00 .29854E+01 .83012E-07 .95776E-03 .00000E+00 .24139E+01 .00000E+00 .00000E+00 .29853E+01 .83048E-07 .83490E-03 .00000E+00 .24464E+01 .00000E+00 .00000E+00 .29848E+01 .83122E-07 .58490E-03 .00000E+00 .25124E+01 .00000E+00 .00000E+00 .29852E+01 .83195E-07 .33490E-03 .00000E+00 .25785E+01 .00000E+00 .00000E+00 .29856E+01 .83293E-07 .00000E+00 .00000E+00 .26671E+01 .00000E+00 .00000E+00 .29862E+01 .83343E-07-.86693E-04 .00000E+00 .27122E+01 .00000E+00 .00000E+00 .29865E+01 .83435E-07-.24664E-03 .00000E+00 .27954E+01 .00000E+00 .00000E+00 .29869E+01 .83528E-07-.40659E-03 .00000E+00 .28786E+01 .00000E+00 .00000E+00 .29873E+01 .83662E-07-.63979E-03 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29878E+01 .83712E-07-.72648E-03 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29886E+01 .83812E-07-.89987E-03 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29905E+01 .84212E-07-.15934E-02 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29965E+01 .84697E-07-.24335E-02 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29990E+01 .85196E-07-.33004E-02 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .85600E-07-.40000E-02 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .85615E-07-.60000E-02 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .85630E-07-.80000E-02 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .85660E-07-.12000E-01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .85671E-07-.12500E-01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .85681E-07-.13000E-01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .85692E-07-.13500E-01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .85703E-07-.14000E-01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .85714E-07-.11236E-01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .85731E-07-.67357E-02 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .85749E-07-.22357E-02 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .85773E-07 .40000E-02 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .85786E-07 .14750E-01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .85798E-07 .25500E-01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .85810E-07 .36250E-01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .85823E-07 .47000E-01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .85836E-07 .70250E-01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .85860E-07 .11675E+00 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .85886E-07 .16325E+00 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .85923E-07 .23300E+00 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .85941E-07 .28900E+00 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .85958E-07 .34500E+00 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .85994E-07 .45700E+00 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .85995E-07 .46050E+00 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .85996E-07 .46400E+00 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .85996E-07 .46750E+00 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .85997E-07 .47100E+00 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .85998E-07 .47375E+00 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .85999E-07 .47650E+00 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .85999E-07 .47925E+00 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .86000E-07 .48200E+00 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .86001E-07 .48454E+00 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .86002E-07 .48963E+00 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .86008E-07 .50999E+00 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .86032E-07 .59142E+00 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .86060E-07 .68642E+00 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .86112E-07 .86200E+00 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .86132E-07 .91575E+00 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .86152E-07 .96950E+00 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .86171E-07 .10232E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .86191E-07 .10770E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .86203E-07 .11072E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .86214E-07 .11375E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .86238E-07 .11980E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .86246E-07 .12175E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .86255E-07 .12370E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .86271E-07 .12760E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .86283E-07 .12980E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .86294E-07 .13200E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .86306E-07 .13420E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .86318E-07 .13640E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .86327E-07 .13802E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .86335E-07 .13965E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .86343E-07 .14128E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .86352E-07 .14290E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .86360E-07 .14447E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .86368E-07 .14605E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .86376E-07 .14763E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .86384E-07 .14920E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .86390E-07 .15030E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .86396E-07 .15140E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .86401E-07 .15250E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .86407E-07 .15360E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .86413E-07 .15416E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .86421E-07 .15496E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .86429E-07 .15576E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .86440E-07 .15680E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .86446E-07 .15757E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .86451E-07 .15835E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .86457E-07 .15912E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .86462E-07 .15990E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .86468E-07 .16100E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .86473E-07 .16210E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .86479E-07 .16320E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .86484E-07 .16430E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .86488E-07 .16508E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .86492E-07 .16585E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .86500E-07 .16740E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .86506E-07 .16858E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .86514E-07 .17011E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .86522E-07 .17163E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .86531E-07 .17350E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .86537E-07 .17472E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .86542E-07 .17595E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .86553E-07 .17840E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .86561E-07 .18023E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .86577E-07 .18373E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .86593E-07 .18723E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .86616E-07 .19240E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .86627E-07 .19473E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .86638E-07 .19705E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .86649E-07 .19937E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .86660E-07 .20170E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .86671E-07 .20376E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .86693E-07 .20788E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .86719E-07 .21265E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .86762E-07 .22080E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .86780E-07 .22362E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .86798E-07 .22645E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .86816E-07 .22927E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .86834E-07 .23210E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .86852E-07 .23496E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .86876E-07 .23881E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .86900E-07 .24266E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .86931E-07 .24750E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .86948E-07 .24992E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .86965E-07 .25235E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .86983E-07 .25477E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .87000E-07 .25720E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .87017E-07 .25900E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .87045E-07 .26193E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .87073E-07 .26485E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .87112E-07 .26890E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .87132E-07 .27037E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .87152E-07 .27185E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .87172E-07 .27332E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .87192E-07 .27480E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .87212E-07 .27589E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .87252E-07 .27807E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .87291E-07 .28024E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .87351E-07 .28350E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .87379E-07 .28450E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .87407E-07 .28550E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .87436E-07 .28650E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .87464E-07 .28750E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .87469E-07 .28765E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .87474E-07 .28780E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .87480E-07 .28795E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .87485E-07 .28810E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .87489E-07 .28820E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .87493E-07 .28830E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .87496E-07 .28840E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .87500E-07 .28850E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .87504E-07 .28858E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .87511E-07 .28873E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .87541E-07 .28934E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .87608E-07 .29072E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .87676E-07 .29209E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .87769E-07 .29400E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29997E+01 .87817E-07 .29457E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .87864E-07 .29515E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .87912E-07 .29573E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .87960E-07 .29630E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .87966E-07 .29635E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .87972E-07 .29640E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .87977E-07 .29645E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .87983E-07 .29650E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .87987E-07 .29653E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .87992E-07 .29655E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .87996E-07 .29657E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .88000E-07 .29660E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .88004E-07 .29663E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .88013E-07 .29668E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .88047E-07 .29689E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .88120E-07 .29734E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .88193E-07 .29779E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .88293E-07 .29840E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29997E+01 .88343E-07 .29854E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29997E+01 .88395E-07 .29869E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .88446E-07 .29884E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .88500E-07 .29900E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .88550E-07 .29909E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29997E+01 .88623E-07 .29921E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .88697E-07 .29934E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .88793E-07 .29950E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29997E+01 .88843E-07 .29955E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29997E+01 .88895E-07 .29960E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .88946E-07 .29965E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .89000E-07 .29970E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29996E+01 .89050E-07 .29971E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29997E+01 .89150E-07 .29975E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29997E+01 .89400E-07 .29982E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29998E+01 .89650E-07 .29990E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29997E+01 .90000E-07 .30000E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .90050E-07 .29999E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .90150E-07 .29997E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .90290E-07 .29995E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .90559E-07 .29990E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .90569E-07 .29995E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .90579E-07 .30000E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .90600E-07 .30010E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .90615E-07 .30027E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .90631E-07 .30045E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .90647E-07 .30062E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .90663E-07 .30080E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .90674E-07 .30092E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .90685E-07 .30105E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .90696E-07 .30117E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .90707E-07 .30130E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .90718E-07 .30126E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .90739E-07 .30119E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .90759E-07 .30111E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .90790E-07 .30100E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .90804E-07 .30055E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .90819E-07 .30010E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .90848E-07 .29920E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .90870E-07 .29756E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .90892E-07 .29589E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .90914E-07 .29421E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .90937E-07 .29250E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .90953E-07 .29037E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .90968E-07 .28825E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .90984E-07 .28612E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .91000E-07 .28400E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .91016E-07 .28068E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .91032E-07 .27721E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .91049E-07 .27373E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .91066E-07 .27010E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .91078E-07 .26667E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .91089E-07 .26325E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .91101E-07 .25982E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .91112E-07 .25640E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .91124E-07 .25210E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .91140E-07 .24603E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .91156E-07 .23995E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .91177E-07 .23210E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .91189E-07 .22795E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .91200E-07 .22380E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .91224E-07 .21550E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .91242E-07 .20833E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .91260E-07 .20090E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .91278E-07 .19348E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .91297E-07 .18580E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .91310E-07 .18053E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .91323E-07 .17525E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .91349E-07 .16470E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .91367E-07 .15780E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .91386E-07 .15090E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .91404E-07 .14400E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .91422E-07 .13710E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .91435E-07 .13175E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .91448E-07 .12640E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .91461E-07 .12105E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .91474E-07 .11570E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .91478E-07 .11375E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .91482E-07 .11180E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .91485E-07 .10985E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .91489E-07 .10790E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .91492E-07 .10670E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .91494E-07 .10550E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .91497E-07 .10430E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .91500E-07 .10310E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .91503E-07 .10211E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .91508E-07 .10031E+01 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .91513E-07 .98510E+00 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .91520E-07 .95900E+00 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .91524E-07 .95375E+00 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .91527E-07 .94850E+00 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .91534E-07 .93800E+00 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .91539E-07 .92903E+00 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .91545E-07 .91878E+00 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .91551E-07 .90853E+00 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .91558E-07 .89700E+00 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .91562E-07 .89325E+00 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .91566E-07 .88950E+00 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .91571E-07 .88575E+00 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .91575E-07 .88200E+00 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .91579E-07 .87350E+00 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .91586E-07 .86000E+00 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .91593E-07 .84650E+00 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .91602E-07 .82800E+00 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .91607E-07 .81650E+00 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .91612E-07 .80500E+00 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .91622E-07 .78200E+00 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .91630E-07 .76382E+00 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .91638E-07 .74382E+00 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .91646E-07 .72382E+00 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .91655E-07 .70200E+00 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .91661E-07 .68875E+00 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .91667E-07 .67550E+00 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .91673E-07 .66225E+00 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .91679E-07 .64900E+00 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .91685E-07 .63449E+00 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .91697E-07 .60548E+00 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .91714E-07 .56498E+00 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .91746E-07 .48700E+00 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .91751E-07 .47616E+00 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .91756E-07 .46533E+00 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .91762E-07 .45449E+00 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .91767E-07 .44366E+00 .00000E+00 .30000E+01 .00000E+00 .00000E+00 .29999E+01 .91772E-07 .43282E+00 .00000E+00 .29804E+01 .00000E+00 .00000E+00 .29996E+01 .91779E-07 .41941E+00 .00000E+00 .29562E+01 .00000E+00 .00000E+00 .29993E+01 .91785E-07 .40599E+00 .00000E+00 .29320E+01 .00000E+00 .00000E+00 .29991E+01 .91793E-07 .39000E+00 .00000E+00 .29031E+01 .00000E+00 .00000E+00 .29987E+01 .91800E-07 .37860E+00 .00000E+00 .28766E+01 .00000E+00 .00000E+00 .29986E+01 .91814E-07 .35580E+00 .00000E+00 .28234E+01 .00000E+00 .00000E+00 .29982E+01 .91832E-07 .32780E+00 .00000E+00 .27582E+01 .00000E+00 .00000E+00 .29977E+01 .91863E-07 .27800E+00 .00000E+00 .26422E+01 .00000E+00 .00000E+00 .29969E+01 .91875E-07 .26375E+00 .00000E+00 .25966E+01 .00000E+00 .00000E+00 .29966E+01 .91888E-07 .24950E+00 .00000E+00 .25509E+01 .00000E+00 .00000E+00 .29963E+01 .91912E-07 .22100E+00 .00000E+00 .24596E+01 .00000E+00 .00000E+00 .29958E+01 .91925E-07 .20925E+00 .00000E+00 .24112E+01 .00000E+00 .00000E+00 .29956E+01 .91938E-07 .19750E+00 .00000E+00 .23528E+01 .00000E+00 .00000E+00 .29952E+01 .91951E-07 .18575E+00 .00000E+00 .22913E+01 .00000E+00 .00000E+00 .29950E+01 .91964E-07 .17400E+00 .00000E+00 .22299E+01 .00000E+00 .00000E+00 .29946E+01 .91966E-07 .17237E+00 .00000E+00 .22193E+01 .00000E+00 .00000E+00 .29946E+01 .91969E-07 .17075E+00 .00000E+00 .22087E+01 .00000E+00 .00000E+00 .29945E+01 .91971E-07 .16913E+00 .00000E+00 .21980E+01 .00000E+00 .00000E+00 .29944E+01 .91973E-07 .16750E+00 .00000E+00 .21874E+01 .00000E+00 .00000E+00 .29945E+01 .91975E-07 .16588E+00 .93750E-02 .21768E+01 .00000E+00 .00000E+00 .29944E+01 .91980E-07 .16262E+00 .28125E-01 .21555E+01 .00000E+00 .00000E+00 .29944E+01 .91987E-07 .15775E+00 .56250E-01 .21236E+01 .00000E+00 .00000E+00 .29943E+01 .92000E-07 .14800E+00 .11250E+00 .20598E+01 .00000E+00 .00000E+00 .29947E+01 .92010E-07 .14294E+00 .15469E+00 .20120E+01 .00000E+00 .00000E+00 .29949E+01 .92030E-07 .13281E+00 .23906E+00 .19163E+01 .00000E+00 .00000E+00 .29950E+01 .92060E-07 .11781E+00 .36406E+00 .17738E+01 .00000E+00 .00000E+00 .29944E+01 .92120E-07 .88000E-01 .60822E+00 .14829E+01 .00000E+00 .00000E+00 .29927E+01 .92141E-07 .81000E-01 .66644E+00 .13793E+01 .00000E+00 .00000E+00 .29918E+01 .92163E-07 .74000E-01 .72466E+00 .12756E+01 .00000E+00 .00000E+00 .29907E+01 .92205E-07 .60000E-01 .84110E+00 .10800E+01 .00000E+00 .00000E+00 .29885E+01 .92237E-07 .54104E-01 .92842E+00 .93833E+00 .00000E+00 .00000E+00 .29874E+01 .92280E-07 .46104E-01 .10469E+01 .74611E+00 .00000E+00 .00000E+00 .29860E+01 .92323E-07 .38104E-01 .11654E+01 .57686E+00 .00000E+00 .00000E+00 .29855E+01 .92378E-07 .28000E-01 .12768E+01 .45502E+00 .00000E+00 .00000E+00 .29870E+01 .92405E-07 .25090E-01 .13268E+01 .39410E+00 .00000E+00 .00000E+00 .29879E+01 .92433E-07 .22179E-01 .13768E+01 .33318E+00 .00000E+00 .00000E+00 .29887E+01 .92463E-07 .18929E-01 .14325E+01 .26515E+00 .00000E+00 .00000E+00 .29895E+01 .92500E-07 .15000E-01 .15000E+01 .18290E+00 .00000E+00 .00000E+00 .29901E+01 .92521E-07 .14230E-01 .15375E+01 .13717E+00 .00000E+00 .00000E+00 .29905E+01 .92541E-07 .13461E-01 .15750E+01 .91450E-01 .00000E+00 .00000E+00 .29908E+01 .92561E-07 .12691E-01 .16125E+01 .45725E-01 .00000E+00 .00000E+00 .29910E+01 .92582E-07 .11922E-01 .16500E+01 .00000E+00 .00000E+00 .00000E+00 .29912E+01 .92602E-07 .11152E-01 .16875E+01 .00000E+00 .00000E+00 .00000E+00 .29924E+01 .92644E-07 .96126E-02 .17625E+01 .00000E+00 .00000E+00 .00000E+00 .29952E+01 .92696E-07 .76323E-02 .18581E+01 .00000E+00 .00000E+00 .00000E+00 .29994E+01 .92793E-07 .40000E-02 .20324E+01 .00000E+00 .00000E+00 .00000E+00 .30052E+01 .92843E-07 .32754E-02 .21225E+01 .00000E+00 .00000E+00 .00000E+00 .30072E+01 .92894E-07 .25362E-02 .22144E+01 .00000E+00 .00000E+00 .00000E+00 .30081E+01 .92945E-07 .17971E-02 .23063E+01 .00000E+00 .00000E+00 .00000E+00 .30071E+01 .92997E-07 .10435E-02 .24000E+01 .00000E+00 .00000E+00 .00000E+00 .30061E+01 .92998E-07 .10326E-02 .24007E+01 .00000E+00 .00000E+00 .00000E+00 .30061E+01 .92998E-07 .10217E-02 .24014E+01 .00000E+00 .00000E+00 .00000E+00 .30061E+01 .92999E-07 .10109E-02 .24020E+01 .00000E+00 .00000E+00 .00000E+00 .30061E+01 .93000E-07 .10000E-02 .24027E+01 .00000E+00 .00000E+00 .00000E+00 .30061E+01 .93001E-07 .99744E-03 .24034E+01 .00000E+00 .00000E+00 .00000E+00 .30061E+01 .93002E-07 .99232E-03 .24047E+01 .00000E+00 .00000E+00 .00000E+00 .30061E+01 .93008E-07 .97184E-03 .24102E+01 .00000E+00 .00000E+00 .00000E+00 .30060E+01 .93032E-07 .88993E-03 .24318E+01 .00000E+00 .00000E+00 .00000E+00 .30059E+01 .93105E-07 .63993E-03 .24979E+01 .00000E+00 .00000E+00 .00000E+00 .30048E+01 .93179E-07 .38993E-03 .25640E+01 .00000E+00 .00000E+00 .00000E+00 .30038E+01 .93293E-07 .00000E+00 .26671E+01 .00000E+00 .00000E+00 .00000E+00 .30028E+01 .93343E-07-.86693E-04 .27122E+01 .00000E+00 .00000E+00 .00000E+00 .30025E+01 .93435E-07-.24664E-03 .27954E+01 .00000E+00 .00000E+00 .00000E+00 .30020E+01 .93527E-07-.40659E-03 .28786E+01 .00000E+00 .00000E+00 .00000E+00 .30015E+01 .93662E-07-.63979E-03 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30012E+01 .93712E-07-.72648E-03 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30010E+01 .93812E-07-.89987E-03 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30008E+01 .94212E-07-.15934E-02 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30001E+01 .94697E-07-.24335E-02 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .95196E-07-.33004E-02 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .95600E-07-.40000E-02 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .95615E-07-.60000E-02 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .95630E-07-.80000E-02 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .95660E-07-.12000E-01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .95671E-07-.12500E-01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .95682E-07-.13000E-01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .95703E-07-.14000E-01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .95719E-07-.98536E-02 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .95737E-07-.53536E-02 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .95754E-07-.85357E-03 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .95773E-07 .40000E-02 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .95786E-07 .14750E-01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .95798E-07 .25500E-01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .95810E-07 .36250E-01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .95823E-07 .47000E-01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .95836E-07 .70250E-01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .95860E-07 .11675E+00 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .95885E-07 .16325E+00 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .95923E-07 .23300E+00 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .95941E-07 .28900E+00 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .95958E-07 .34500E+00 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .95994E-07 .45700E+00 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .95995E-07 .46050E+00 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .95996E-07 .46400E+00 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .95997E-07 .47100E+00 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .95998E-07 .47375E+00 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .95999E-07 .47650E+00 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .96000E-07 .48200E+00 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .96001E-07 .48582E+00 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .96003E-07 .49345E+00 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .96012E-07 .52399E+00 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .96040E-07 .61899E+00 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .96068E-07 .71399E+00 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .96112E-07 .86200E+00 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .96132E-07 .91575E+00 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .96152E-07 .96950E+00 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .96171E-07 .10232E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .96191E-07 .10770E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .96203E-07 .11072E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .96214E-07 .11375E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .96226E-07 .11678E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .96238E-07 .11980E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .96246E-07 .12175E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .96255E-07 .12370E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .96271E-07 .12760E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .96283E-07 .12980E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .96294E-07 .13200E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .96318E-07 .13640E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .96327E-07 .13802E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .96335E-07 .13965E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .96343E-07 .14128E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .96352E-07 .14290E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .96360E-07 .14447E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .96368E-07 .14605E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .96376E-07 .14763E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .96384E-07 .14920E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .96390E-07 .15030E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .96396E-07 .15140E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .96401E-07 .15250E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .96407E-07 .15360E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .96413E-07 .15416E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .96421E-07 .15496E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .96429E-07 .15576E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .96440E-07 .15680E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .96445E-07 .15757E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .96451E-07 .15835E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .96462E-07 .15990E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .96468E-07 .16100E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .96473E-07 .16210E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .96484E-07 .16430E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .96488E-07 .16508E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .96492E-07 .16585E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .96500E-07 .16740E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .96506E-07 .16858E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .96514E-07 .17011E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .96521E-07 .17163E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .96531E-07 .17350E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .96537E-07 .17472E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .96542E-07 .17595E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .96553E-07 .17840E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .96561E-07 .18023E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .96577E-07 .18373E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .96593E-07 .18723E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .96616E-07 .19240E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .96627E-07 .19473E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .96638E-07 .19705E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .96649E-07 .19937E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .96660E-07 .20170E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .96671E-07 .20376E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .96693E-07 .20788E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .96719E-07 .21265E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .96762E-07 .22080E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .96780E-07 .22362E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .96798E-07 .22645E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .96816E-07 .22927E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .96834E-07 .23210E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .96852E-07 .23496E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .96876E-07 .23881E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .96901E-07 .24266E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .96931E-07 .24750E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .96948E-07 .24992E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .96966E-07 .25235E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .96983E-07 .25477E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .97000E-07 .25720E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .97017E-07 .25900E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .97045E-07 .26193E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .97073E-07 .26485E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .97112E-07 .26890E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .97132E-07 .27037E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .97152E-07 .27185E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .97172E-07 .27332E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .97192E-07 .27480E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .97212E-07 .27589E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .97252E-07 .27807E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .97291E-07 .28024E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .97351E-07 .28350E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .97379E-07 .28450E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .97408E-07 .28550E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .97436E-07 .28650E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .97464E-07 .28750E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .97469E-07 .28765E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .97474E-07 .28780E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .97480E-07 .28795E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .97485E-07 .28810E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .97489E-07 .28820E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .97493E-07 .28830E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .97496E-07 .28840E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .97500E-07 .28850E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .97504E-07 .28858E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .97511E-07 .28873E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .97541E-07 .28934E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .97608E-07 .29072E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .97676E-07 .29209E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .97769E-07 .29400E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .97817E-07 .29457E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .97865E-07 .29515E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .97960E-07 .29630E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .97966E-07 .29635E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .97972E-07 .29640E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .97977E-07 .29645E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .97983E-07 .29650E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .97987E-07 .29653E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .97992E-07 .29655E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .97996E-07 .29657E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .98000E-07 .29660E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .98004E-07 .29663E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .98013E-07 .29668E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .98047E-07 .29689E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .98120E-07 .29734E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .98193E-07 .29779E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .98293E-07 .29840E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .98343E-07 .29854E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .98395E-07 .29869E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .98446E-07 .29884E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .98500E-07 .29900E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .98550E-07 .29909E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .98623E-07 .29921E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .98697E-07 .29934E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .98793E-07 .29950E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .98843E-07 .29955E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .98895E-07 .29960E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .98947E-07 .29965E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .99000E-07 .29970E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .99050E-07 .29971E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .99150E-07 .29975E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .99400E-07 .29982E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .99650E-07 .29990E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10000E-06 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10005E-06 .29999E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10015E-06 .29997E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10029E-06 .29995E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10056E-06 .29990E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10057E-06 .29995E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10058E-06 .30000E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10060E-06 .30010E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10062E-06 .30027E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10063E-06 .30045E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10065E-06 .30062E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10066E-06 .30080E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10067E-06 .30092E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10068E-06 .30105E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10070E-06 .30117E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10071E-06 .30130E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10072E-06 .30126E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10074E-06 .30119E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10076E-06 .30111E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10079E-06 .30100E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10080E-06 .30055E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10082E-06 .30010E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10085E-06 .29920E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10087E-06 .29756E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10089E-06 .29589E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10091E-06 .29421E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10094E-06 .29250E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10095E-06 .29037E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10097E-06 .28825E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10098E-06 .28612E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10100E-06 .28400E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10102E-06 .28068E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10103E-06 .27721E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10105E-06 .27373E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10107E-06 .27010E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10108E-06 .26667E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10109E-06 .26325E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10110E-06 .25982E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10111E-06 .25640E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10112E-06 .25210E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10114E-06 .24603E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10116E-06 .23995E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10118E-06 .23210E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10119E-06 .22795E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10120E-06 .22380E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10121E-06 .21965E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10122E-06 .21550E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10124E-06 .21072E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10125E-06 .20329E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10127E-06 .19587E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10130E-06 .18580E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10131E-06 .18053E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10132E-06 .17525E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10135E-06 .16470E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10137E-06 .15780E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10139E-06 .15090E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10140E-06 .14400E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10142E-06 .13710E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10143E-06 .13175E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10145E-06 .12640E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10146E-06 .12105E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10147E-06 .11570E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10148E-06 .11375E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10148E-06 .11180E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10149E-06 .10985E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10149E-06 .10790E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10149E-06 .10670E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10149E-06 .10550E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10150E-06 .10430E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10150E-06 .10310E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10150E-06 .10211E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10151E-06 .10031E+01 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10151E-06 .98510E+00 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10152E-06 .95900E+00 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10152E-06 .95375E+00 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10153E-06 .94850E+00 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10153E-06 .93800E+00 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10154E-06 .92903E+00 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10155E-06 .91878E+00 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10155E-06 .90853E+00 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10156E-06 .89700E+00 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10156E-06 .89325E+00 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10157E-06 .88950E+00 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10157E-06 .88575E+00 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10157E-06 .88200E+00 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10158E-06 .87350E+00 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10159E-06 .86000E+00 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10159E-06 .84650E+00 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10160E-06 .82800E+00 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10161E-06 .81650E+00 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10161E-06 .80500E+00 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10162E-06 .79350E+00 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10162E-06 .78200E+00 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10163E-06 .76988E+00 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10164E-06 .74988E+00 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10164E-06 .72988E+00 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10165E-06 .70200E+00 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10166E-06 .68875E+00 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10167E-06 .67550E+00 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10168E-06 .64900E+00 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10169E-06 .62724E+00 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10170E-06 .58674E+00 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10172E-06 .54624E+00 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10175E-06 .48700E+00 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10175E-06 .47616E+00 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10176E-06 .46533E+00 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10176E-06 .45449E+00 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10177E-06 .44366E+00 .30000E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10177E-06 .43282E+00 .29804E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10178E-06 .41941E+00 .29562E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10179E-06 .40599E+00 .29320E+01 .00000E+00 .00000E+00 .00000E+00 .30000E+01 .10179E-06 .39000E+00 .29031E+01 .00000E+00 .00000E+00 .00000E+00 .29999E+01 .10180E-06 .37860E+00 .28766E+01 .00000E+00 .00000E+00 .00000E+00 .29999E+01 .10181E-06 .35580E+00 .28234E+01 .00000E+00 .00000E+00 .00000E+00 .29998E+01 .10183E-06 .32780E+00 .27582E+01 .00000E+00 .00000E+00 .00000E+00 .29996E+01 .10186E-06 .27800E+00 .26422E+01 .00000E+00 .00000E+00 .00000E+00 .29993E+01 .10188E-06 .26375E+00 .25966E+01 .00000E+00 .00000E+00 .00000E+00 .29992E+01 .10189E-06 .24950E+00 .25509E+01 .00000E+00 .00000E+00 .00000E+00 .29991E+01 .10190E-06 .23525E+00 .25053E+01 .00000E+00 .00000E+00 .00000E+00 .29990E+01 .10191E-06 .22100E+00 .24596E+01 .00000E+00 .00000E+00 .00000E+00 .29990E+01 .10192E-06 .20993E+00 .24140E+01 .00000E+00 .00000E+00 .00000E+00 .29989E+01 .10194E-06 .19818E+00 .23563E+01 .00000E+00 .00000E+00 .00000E+00 .29987E+01 .10195E-06 .18643E+00 .22949E+01 .00000E+00 .00000E+00 .00000E+00 .29986E+01 .10196E-06 .17400E+00 .22299E+01 .00000E+00 .00000E+00 .00000E+00 .29985E+01 .10197E-06 .17237E+00 .22193E+01 .00000E+00 .00000E+00 .00000E+00 .29985E+01 .10197E-06 .17075E+00 .22087E+01 .00000E+00 .00000E+00 .00000E+00 .29985E+01 .10197E-06 .16750E+00 .21874E+01 .00000E+00 .00000E+00 .00000E+00 .29984E+01 .10198E-06 .16506E+00 .21715E+01 .00000E+00 .14062E-01 .00000E+00 .30000E+01 .10198E-06 .16019E+00 .21396E+01 .00000E+00 .42188E-01 .00000E+00 .30033E+01 .10199E-06 .15531E+00 .21077E+01 .00000E+00 .70313E-01 .00000E+00 .30067E+01 .10200E-06 .14800E+00 .20598E+01 .00000E+00 .11250E+00 .00000E+00 .30110E+01 .10201E-06 .14378E+00 .20200E+01 .00000E+00 .14766E+00 .00000E+00 .30138E+01 .10203E-06 .13534E+00 .19403E+01 .00000E+00 .21797E+00 .00000E+00 .30186E+01 .10206E-06 .12034E+00 .17985E+01 .00000E+00 .34297E+00 .00000E+00 .30248E+01 .10209E-06 .10534E+00 .16521E+01 .00000E+00 .46797E+00 .00000E+00 .30295E+01 .10212E-06 .88000E-01 .14829E+01 .00000E+00 .60822E+00 .00000E+00 .30330E+01 .10214E-06 .81000E-01 .13793E+01 .00000E+00 .66644E+00 .00000E+00 .30308E+01 .10216E-06 .74000E-01 .12756E+01 .00000E+00 .72466E+00 .00000E+00 .30284E+01 .10221E-06 .60000E-01 .10800E+01 .00000E+00 .84110E+00 .00000E+00 .30224E+01 .10224E-06 .54104E-01 .93833E+00 .00000E+00 .92842E+00 .00000E+00 .30179E+01 .10228E-06 .46104E-01 .74611E+00 .00000E+00 .10469E+01 .00000E+00 .30121E+01 .10232E-06 .38104E-01 .57686E+00 .00000E+00 .11654E+01 .00000E+00 .30072E+01 .10238E-06 .28000E-01 .45502E+00 .00000E+00 .12768E+01 .00000E+00 .30014E+01 .10241E-06 .24750E-01 .38699E+00 .00000E+00 .13326E+01 .00000E+00 .30004E+01 .10244E-06 .21500E-01 .31896E+00 .00000E+00 .13884E+01 .00000E+00 .29996E+01 .10247E-06 .18250E-01 .25093E+00 .00000E+00 .14442E+01 .00000E+00 .29992E+01 .10250E-06 .15000E-01 .18290E+00 .00000E+00 .15000E+01 .00000E+00 .29989E+01 .10252E-06 .14230E-01 .13717E+00 .00000E+00 .15375E+01 .00000E+00 .29988E+01 .10254E-06 .13461E-01 .91450E-01 .00000E+00 .15750E+01 .00000E+00 .29986E+01 .10256E-06 .12691E-01 .45725E-01 .00000E+00 .16125E+01 .00000E+00 .29986E+01 .10258E-06 .11922E-01 .00000E+00 .00000E+00 .16500E+01 .00000E+00 .29985E+01 .10260E-06 .11152E-01 .00000E+00 .00000E+00 .16875E+01 .00000E+00 .29988E+01 .10264E-06 .96126E-02 .00000E+00 .00000E+00 .17625E+01 .00000E+00 .30001E+01 .10270E-06 .76323E-02 .00000E+00 .00000E+00 .18581E+01 .00000E+00 .30027E+01 .10279E-06 .40000E-02 .00000E+00 .00000E+00 .20324E+01 .00000E+00 .30064E+01 .10284E-06 .32754E-02 .00000E+00 .00000E+00 .21225E+01 .00000E+00 .30076E+01 .10289E-06 .25362E-02 .00000E+00 .00000E+00 .22144E+01 .00000E+00 .30003E+01 .10295E-06 .17971E-02 .00000E+00 .00000E+00 .23063E+01 .00000E+00 .29936E+01 .10300E-06 .10435E-02 .00000E+00 .00000E+00 .24000E+01 .00000E+00 .29890E+01 .10300E-06 .10326E-02 .00000E+00 .00000E+00 .24007E+01 .00000E+00 .29889E+01 .10300E-06 .10217E-02 .00000E+00 .00000E+00 .24014E+01 .00000E+00 .29888E+01 .10300E-06 .10109E-02 .00000E+00 .00000E+00 .24020E+01 .00000E+00 .29887E+01 .10300E-06 .10000E-02 .00000E+00 .00000E+00 .24027E+01 .00000E+00 .29886E+01 .10300E-06 .99744E-03 .00000E+00 .00000E+00 .24034E+01 .00000E+00 .29885E+01 .10300E-06 .99232E-03 .00000E+00 .00000E+00 .24047E+01 .00000E+00 .29884E+01 .10301E-06 .97184E-03 .00000E+00 .00000E+00 .24102E+01 .00000E+00 .29879E+01 .10303E-06 .88993E-03 .00000E+00 .00000E+00 .24318E+01 .00000E+00 .29868E+01 .10311E-06 .63993E-03 .00000E+00 .00000E+00 .24979E+01 .00000E+00 .29859E+01 .10318E-06 .38993E-03 .00000E+00 .00000E+00 .25640E+01 .00000E+00 .29866E+01 .10329E-06 .00000E+00 .00000E+00 .00000E+00 .26671E+01 .00000E+00 .29875E+01 .10334E-06-.86693E-04 .00000E+00 .00000E+00 .27122E+01 .00000E+00 .29878E+01 .10344E-06-.24664E-03 .00000E+00 .00000E+00 .27954E+01 .00000E+00 .29882E+01 .10353E-06-.40659E-03 .00000E+00 .00000E+00 .28786E+01 .00000E+00 .29886E+01 .10366E-06-.63979E-03 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29890E+01 .10371E-06-.72648E-03 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29896E+01 .10381E-06-.89987E-03 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29918E+01 .10421E-06-.15934E-02 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29982E+01 .10470E-06-.24335E-02 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29994E+01 .10520E-06-.33004E-02 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10560E-06-.40000E-02 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10562E-06-.60000E-02 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10563E-06-.80000E-02 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10566E-06-.12000E-01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10567E-06-.12500E-01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10568E-06-.13000E-01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10569E-06-.13500E-01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10570E-06-.14000E-01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10571E-06-.11236E-01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10573E-06-.67357E-02 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10575E-06-.22357E-02 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10577E-06 .40000E-02 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10579E-06 .14750E-01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10580E-06 .25500E-01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10581E-06 .36250E-01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10582E-06 .47000E-01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10584E-06 .70250E-01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10586E-06 .11675E+00 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10589E-06 .16325E+00 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10592E-06 .23300E+00 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10594E-06 .28900E+00 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10596E-06 .34500E+00 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10599E-06 .45700E+00 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10599E-06 .46050E+00 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10600E-06 .46400E+00 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10600E-06 .46750E+00 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10600E-06 .47100E+00 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10600E-06 .47375E+00 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10600E-06 .47650E+00 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10600E-06 .47925E+00 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10600E-06 .48200E+00 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10600E-06 .48454E+00 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10600E-06 .48963E+00 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10601E-06 .50999E+00 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10603E-06 .59142E+00 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10606E-06 .68642E+00 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10611E-06 .86200E+00 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10613E-06 .91575E+00 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10615E-06 .96950E+00 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10617E-06 .10232E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10619E-06 .10770E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10620E-06 .11072E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10621E-06 .11375E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10624E-06 .11980E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10625E-06 .12175E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10625E-06 .12370E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10627E-06 .12760E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10628E-06 .12980E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10629E-06 .13200E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10631E-06 .13420E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10632E-06 .13640E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10633E-06 .13802E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10634E-06 .13965E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10634E-06 .14128E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10635E-06 .14290E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10636E-06 .14447E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10637E-06 .14605E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10638E-06 .14763E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10638E-06 .14920E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10639E-06 .15030E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10640E-06 .15140E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10640E-06 .15250E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10641E-06 .15360E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10641E-06 .15416E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10642E-06 .15496E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10643E-06 .15576E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10644E-06 .15680E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10645E-06 .15757E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10645E-06 .15835E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10646E-06 .15912E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10646E-06 .15990E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10647E-06 .16100E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10647E-06 .16210E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10648E-06 .16320E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10648E-06 .16430E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10649E-06 .16508E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10649E-06 .16585E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10650E-06 .16740E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10651E-06 .16858E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10651E-06 .17011E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10652E-06 .17163E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10653E-06 .17350E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10654E-06 .17472E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10654E-06 .17595E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10655E-06 .17840E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10656E-06 .18023E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10658E-06 .18373E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10659E-06 .18723E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10662E-06 .19240E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10663E-06 .19473E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10664E-06 .19705E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10665E-06 .19937E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10666E-06 .20170E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10667E-06 .20376E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10669E-06 .20788E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10672E-06 .21265E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10676E-06 .22080E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10678E-06 .22362E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10680E-06 .22645E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10682E-06 .22927E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10683E-06 .23210E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10685E-06 .23496E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10688E-06 .23881E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10690E-06 .24266E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10693E-06 .24750E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10695E-06 .24992E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10697E-06 .25235E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10698E-06 .25477E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10700E-06 .25720E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10702E-06 .25900E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10705E-06 .26193E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10707E-06 .26485E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10711E-06 .26890E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10713E-06 .27037E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10715E-06 .27185E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10717E-06 .27332E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10719E-06 .27480E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10721E-06 .27589E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10725E-06 .27807E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10729E-06 .28024E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10735E-06 .28350E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10738E-06 .28450E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10741E-06 .28550E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10744E-06 .28650E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10746E-06 .28750E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10747E-06 .28765E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10747E-06 .28780E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10748E-06 .28795E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10749E-06 .28810E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10749E-06 .28820E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10749E-06 .28830E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10750E-06 .28840E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10750E-06 .28850E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10750E-06 .28858E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10751E-06 .28873E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10754E-06 .28934E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29996E+01 .10761E-06 .29072E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29997E+01 .10768E-06 .29209E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29997E+01 .10777E-06 .29400E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29997E+01 .10782E-06 .29457E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29997E+01 .10786E-06 .29515E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29997E+01 .10791E-06 .29573E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29997E+01 .10796E-06 .29630E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29997E+01 .10797E-06 .29635E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29997E+01 .10797E-06 .29640E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29997E+01 .10798E-06 .29645E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29997E+01 .10798E-06 .29650E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29997E+01 .10799E-06 .29653E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29997E+01 .10799E-06 .29655E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29997E+01 .10800E-06 .29657E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29997E+01 .10800E-06 .29660E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29997E+01 .10800E-06 .29663E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29997E+01 .10801E-06 .29668E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29997E+01 .10805E-06 .29689E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29997E+01 .10812E-06 .29734E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29997E+01 .10819E-06 .29779E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29997E+01 .10829E-06 .29840E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29997E+01 .10834E-06 .29854E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29997E+01 .10839E-06 .29869E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29997E+01 .10845E-06 .29884E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29997E+01 .10850E-06 .29900E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29997E+01 .10855E-06 .29909E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29997E+01 .10862E-06 .29921E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29997E+01 .10870E-06 .29934E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29997E+01 .10879E-06 .29950E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29997E+01 .10884E-06 .29955E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29997E+01 .10889E-06 .29960E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29997E+01 .10895E-06 .29965E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29997E+01 .10900E-06 .29970E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29997E+01 .10905E-06 .29971E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29997E+01 .10915E-06 .29975E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29997E+01 .10940E-06 .29982E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .10965E-06 .29990E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11000E-06 .30000E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29999E+01 .11005E-06 .29999E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11015E-06 .29997E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11029E-06 .29995E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11056E-06 .29990E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29999E+01 .11057E-06 .29995E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11058E-06 .30000E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11060E-06 .30010E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11062E-06 .30027E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11063E-06 .30045E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11065E-06 .30062E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11066E-06 .30080E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11067E-06 .30092E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11069E-06 .30105E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11070E-06 .30117E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11071E-06 .30130E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11072E-06 .30126E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11074E-06 .30119E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11076E-06 .30111E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11079E-06 .30100E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11080E-06 .30055E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11082E-06 .30010E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11085E-06 .29920E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11087E-06 .29756E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11089E-06 .29589E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11091E-06 .29421E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11094E-06 .29250E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11095E-06 .29037E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11097E-06 .28825E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11098E-06 .28612E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11100E-06 .28400E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11102E-06 .28068E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11103E-06 .27721E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11105E-06 .27373E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11107E-06 .27010E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11108E-06 .26667E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11109E-06 .26325E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11110E-06 .25982E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11111E-06 .25640E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11112E-06 .25210E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11114E-06 .24603E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11116E-06 .23995E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11118E-06 .23210E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11119E-06 .22795E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11120E-06 .22380E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11122E-06 .21550E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11124E-06 .20833E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11126E-06 .20090E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11128E-06 .19348E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11130E-06 .18580E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11131E-06 .18053E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11132E-06 .17525E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11135E-06 .16470E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11137E-06 .15780E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11139E-06 .15090E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11140E-06 .14400E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11142E-06 .13710E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11143E-06 .13175E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11145E-06 .12640E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11146E-06 .12105E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11147E-06 .11570E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11148E-06 .11375E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11148E-06 .11180E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11149E-06 .10985E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11149E-06 .10790E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11149E-06 .10670E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11149E-06 .10550E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11150E-06 .10430E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11150E-06 .10310E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11150E-06 .10211E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11151E-06 .10031E+01 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11151E-06 .98510E+00 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11152E-06 .95900E+00 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11152E-06 .95375E+00 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11153E-06 .94850E+00 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11153E-06 .93800E+00 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11154E-06 .92903E+00 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11155E-06 .91878E+00 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11155E-06 .90853E+00 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11156E-06 .89700E+00 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11156E-06 .89325E+00 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11157E-06 .88950E+00 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11157E-06 .88575E+00 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11157E-06 .88200E+00 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11158E-06 .87350E+00 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11159E-06 .86000E+00 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11159E-06 .84650E+00 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11160E-06 .82800E+00 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11161E-06 .81650E+00 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11161E-06 .80500E+00 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11162E-06 .78200E+00 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11163E-06 .76382E+00 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11164E-06 .74382E+00 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11165E-06 .72382E+00 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11165E-06 .70200E+00 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11166E-06 .68875E+00 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11167E-06 .67550E+00 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11167E-06 .66225E+00 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11168E-06 .64900E+00 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11168E-06 .63449E+00 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11170E-06 .60548E+00 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11171E-06 .56498E+00 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11175E-06 .48700E+00 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11175E-06 .47616E+00 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11176E-06 .46533E+00 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11176E-06 .45449E+00 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11177E-06 .44366E+00 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .29998E+01 .11177E-06 .43282E+00 .00000E+00 .00000E+00 .29804E+01 .00000E+00 .29993E+01 .11178E-06 .41941E+00 .00000E+00 .00000E+00 .29562E+01 .00000E+00 .29987E+01 .11179E-06 .40599E+00 .00000E+00 .00000E+00 .29320E+01 .00000E+00 .29983E+01 .11179E-06 .39000E+00 .00000E+00 .00000E+00 .29031E+01 .00000E+00 .29977E+01 .11180E-06 .37860E+00 .00000E+00 .00000E+00 .28766E+01 .00000E+00 .29972E+01 .11181E-06 .35580E+00 .00000E+00 .00000E+00 .28234E+01 .00000E+00 .29962E+01 .11183E-06 .32780E+00 .00000E+00 .00000E+00 .27582E+01 .00000E+00 .29952E+01 .11186E-06 .27800E+00 .00000E+00 .00000E+00 .26422E+01 .00000E+00 .29938E+01 .11188E-06 .26375E+00 .00000E+00 .00000E+00 .25966E+01 .00000E+00 .29933E+01 .11189E-06 .24950E+00 .00000E+00 .00000E+00 .25509E+01 .00000E+00 .29928E+01 .11191E-06 .22100E+00 .00000E+00 .00000E+00 .24596E+01 .00000E+00 .29922E+01 .11192E-06 .20925E+00 .00000E+00 .00000E+00 .24112E+01 .00000E+00 .29918E+01 .11194E-06 .19750E+00 .00000E+00 .00000E+00 .23528E+01 .00000E+00 .29913E+01 .11195E-06 .18575E+00 .00000E+00 .00000E+00 .22913E+01 .00000E+00 .29907E+01 .11196E-06 .17400E+00 .00000E+00 .00000E+00 .22299E+01 .00000E+00 .29902E+01 .11197E-06 .17237E+00 .00000E+00 .00000E+00 .22193E+01 .00000E+00 .29901E+01 .11197E-06 .17075E+00 .00000E+00 .00000E+00 .22087E+01 .00000E+00 .29900E+01 .11197E-06 .16913E+00 .00000E+00 .00000E+00 .21980E+01 .00000E+00 .29899E+01 .11197E-06 .16750E+00 .00000E+00 .00000E+00 .21874E+01 .00000E+00 .29899E+01 .11198E-06 .16588E+00 .00000E+00 .93750E-02 .21768E+01 .93750E-02 .29908E+01 .11198E-06 .16262E+00 .00000E+00 .28125E-01 .21555E+01 .28125E-01 .29931E+01 .11199E-06 .15775E+00 .00000E+00 .56250E-01 .21236E+01 .56250E-01 .29970E+01 .11200E-06 .14800E+00 .00000E+00 .11250E+00 .20598E+01 .11250E+00 .29980E+01 .11201E-06 .14294E+00 .00000E+00 .15469E+00 .20120E+01 .15469E+00 .29978E+01 .11203E-06 .13281E+00 .00000E+00 .23906E+00 .19163E+01 .23906E+00 .29982E+01 .11206E-06 .11781E+00 .00000E+00 .36406E+00 .17738E+01 .36406E+00 .29996E+01 .11212E-06 .88000E-01 .00000E+00 .60822E+00 .14829E+01 .60822E+00 .30002E+01 .11214E-06 .81000E-01 .00000E+00 .66644E+00 .13793E+01 .66644E+00 .29959E+01 .11216E-06 .74000E-01 .00000E+00 .72466E+00 .12756E+01 .72466E+00 .29914E+01 .11221E-06 .60000E-01 .00000E+00 .84110E+00 .10800E+01 .84110E+00 .29822E+01 .11224E-06 .54104E-01 .00000E+00 .92842E+00 .93833E+00 .92842E+00 .29759E+01 .11228E-06 .46104E-01 .00000E+00 .10469E+01 .74611E+00 .10469E+01 .29679E+01 .11232E-06 .38104E-01 .00000E+00 .11654E+01 .57686E+00 .11654E+01 .29636E+01 .11238E-06 .28000E-01 .00000E+00 .12768E+01 .45502E+00 .12768E+01 .29663E+01 .11241E-06 .25090E-01 .00000E+00 .13268E+01 .39410E+00 .13268E+01 .29670E+01 .11243E-06 .22179E-01 .00000E+00 .13768E+01 .33318E+00 .13768E+01 .29676E+01 .11246E-06 .18929E-01 .00000E+00 .14325E+01 .26515E+00 .14325E+01 .29682E+01 .11250E-06 .15000E-01 .00000E+00 .15000E+01 .18290E+00 .15000E+01 .29688E+01 .11252E-06 .14230E-01 .00000E+00 .15375E+01 .13717E+00 .15375E+01 .29691E+01 .11254E-06 .13461E-01 .00000E+00 .15750E+01 .91450E-01 .15750E+01 .29693E+01 .11256E-06 .12691E-01 .00000E+00 .16125E+01 .45725E-01 .16125E+01 .29695E+01 .11258E-06 .11922E-01 .00000E+00 .16500E+01 .00000E+00 .16500E+01 .29697E+01 .11260E-06 .11152E-01 .00000E+00 .16875E+01 .00000E+00 .16875E+01 .29750E+01 .11264E-06 .96126E-02 .00000E+00 .17625E+01 .00000E+00 .17625E+01 .29847E+01 .11270E-06 .76323E-02 .00000E+00 .18581E+01 .00000E+00 .18581E+01 .29941E+01 .11279E-06 .40000E-02 .00000E+00 .20324E+01 .00000E+00 .20324E+01 .30067E+01 .11284E-06 .32754E-02 .00000E+00 .21225E+01 .00000E+00 .21225E+01 .30114E+01 .11289E-06 .25362E-02 .00000E+00 .22144E+01 .00000E+00 .22144E+01 .30078E+01 .11295E-06 .17971E-02 .00000E+00 .23063E+01 .00000E+00 .23063E+01 .30018E+01 .11300E-06 .10435E-02 .00000E+00 .24000E+01 .00000E+00 .24000E+01 .29966E+01 .11300E-06 .10326E-02 .00000E+00 .24007E+01 .00000E+00 .24007E+01 .29965E+01 .11300E-06 .10217E-02 .00000E+00 .24014E+01 .00000E+00 .24014E+01 .29964E+01 .11300E-06 .10109E-02 .00000E+00 .24020E+01 .00000E+00 .24020E+01 .29963E+01 .11300E-06 .10000E-02 .00000E+00 .24027E+01 .00000E+00 .24027E+01 .29962E+01 .11300E-06 .99744E-03 .00000E+00 .24034E+01 .00000E+00 .24034E+01 .29962E+01 .11300E-06 .99232E-03 .00000E+00 .24047E+01 .00000E+00 .24047E+01 .29961E+01 .11301E-06 .97184E-03 .00000E+00 .24102E+01 .00000E+00 .24102E+01 .29956E+01 .11303E-06 .88993E-03 .00000E+00 .24318E+01 .00000E+00 .24318E+01 .29939E+01 .11311E-06 .63993E-03 .00000E+00 .24979E+01 .00000E+00 .24979E+01 .29912E+01 .11318E-06 .38993E-03 .00000E+00 .25640E+01 .00000E+00 .25640E+01 .29899E+01 .11329E-06 .00000E+00 .00000E+00 .26671E+01 .00000E+00 .26671E+01 .29885E+01 .11334E-06-.86693E-04 .00000E+00 .27122E+01 .00000E+00 .27122E+01 .29881E+01 .11344E-06-.24664E-03 .00000E+00 .27954E+01 .00000E+00 .27954E+01 .29876E+01 .11353E-06-.40659E-03 .00000E+00 .28786E+01 .00000E+00 .28786E+01 .29873E+01 .11366E-06-.63979E-03 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29870E+01 .11371E-06-.72648E-03 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29875E+01 .11381E-06-.89987E-03 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29893E+01 .11421E-06-.15934E-02 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29959E+01 .11470E-06-.24335E-02 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29987E+01 .11520E-06-.33004E-02 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29994E+01 .11560E-06-.40000E-02 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29994E+01 .11562E-06-.60000E-02 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11563E-06-.80000E-02 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29994E+01 .11566E-06-.12000E-01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11567E-06-.12500E-01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11568E-06-.13000E-01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11570E-06-.14000E-01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11572E-06-.98536E-02 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11574E-06-.53536E-02 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11575E-06-.85357E-03 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11577E-06 .40000E-02 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11579E-06 .14750E-01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11580E-06 .25500E-01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11581E-06 .36250E-01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11582E-06 .47000E-01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29994E+01 .11584E-06 .70250E-01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11586E-06 .11675E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11589E-06 .16325E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11592E-06 .23300E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11594E-06 .28900E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11596E-06 .34500E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11599E-06 .45700E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11599E-06 .46050E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11600E-06 .46400E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11600E-06 .47100E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29994E+01 .11600E-06 .47375E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29994E+01 .11600E-06 .47650E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29994E+01 .11600E-06 .48200E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29994E+01 .11600E-06 .48582E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29994E+01 .11600E-06 .49345E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29994E+01 .11601E-06 .52399E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29994E+01 .11604E-06 .61899E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11607E-06 .71399E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11611E-06 .86200E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11613E-06 .91575E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11615E-06 .96950E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11617E-06 .10232E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11619E-06 .10770E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11620E-06 .11072E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11621E-06 .11375E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11623E-06 .11678E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11624E-06 .11980E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11625E-06 .12175E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11625E-06 .12370E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11627E-06 .12760E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11628E-06 .12980E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11629E-06 .13200E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11632E-06 .13640E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11633E-06 .13802E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11634E-06 .13965E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11634E-06 .14128E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11635E-06 .14290E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11636E-06 .14447E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11637E-06 .14605E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11638E-06 .14763E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11638E-06 .14920E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11639E-06 .15030E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11640E-06 .15140E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11640E-06 .15250E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29994E+01 .11641E-06 .15360E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11641E-06 .15416E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11642E-06 .15496E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11643E-06 .15576E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11644E-06 .15680E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11645E-06 .15757E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11645E-06 .15835E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11646E-06 .15990E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11647E-06 .16100E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11647E-06 .16210E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11648E-06 .16430E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11649E-06 .16508E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11649E-06 .16585E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11650E-06 .16740E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11651E-06 .16858E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11651E-06 .17011E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11652E-06 .17163E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11653E-06 .17350E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11654E-06 .17472E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11654E-06 .17595E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11655E-06 .17840E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11656E-06 .18023E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11658E-06 .18373E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11659E-06 .18723E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11662E-06 .19240E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11663E-06 .19473E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11664E-06 .19705E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11665E-06 .19937E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11666E-06 .20170E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11667E-06 .20376E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11669E-06 .20788E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11672E-06 .21265E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11676E-06 .22080E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11678E-06 .22362E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11680E-06 .22645E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11682E-06 .22927E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11683E-06 .23210E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11685E-06 .23496E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11688E-06 .23881E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11690E-06 .24266E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11693E-06 .24750E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11695E-06 .24992E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11697E-06 .25235E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11698E-06 .25477E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11700E-06 .25720E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11702E-06 .25900E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11705E-06 .26193E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11707E-06 .26485E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11711E-06 .26890E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11713E-06 .27037E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11715E-06 .27185E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11717E-06 .27332E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11719E-06 .27480E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11721E-06 .27589E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11725E-06 .27807E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11729E-06 .28024E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11735E-06 .28350E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11738E-06 .28450E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11741E-06 .28550E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11744E-06 .28650E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11746E-06 .28750E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11747E-06 .28765E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11747E-06 .28780E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11748E-06 .28795E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11749E-06 .28810E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11749E-06 .28820E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11749E-06 .28830E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11750E-06 .28840E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11750E-06 .28850E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11750E-06 .28858E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11751E-06 .28873E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11754E-06 .28934E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11761E-06 .29072E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11768E-06 .29209E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29995E+01 .11777E-06 .29400E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29996E+01 .11782E-06 .29457E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29996E+01 .11786E-06 .29515E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .11796E-06 .29630E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29996E+01 .11797E-06 .29635E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29996E+01 .11797E-06 .29640E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29996E+01 .11798E-06 .29645E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29996E+01 .11798E-06 .29650E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29996E+01 .11799E-06 .29653E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29996E+01 .11799E-06 .29655E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29996E+01 .11800E-06 .29657E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29996E+01 .11800E-06 .29660E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29996E+01 .11800E-06 .29663E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29996E+01 .11801E-06 .29668E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29996E+01 .11805E-06 .29689E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29996E+01 .11812E-06 .29734E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .11819E-06 .29779E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .11829E-06 .29840E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .11834E-06 .29854E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .11839E-06 .29869E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .11845E-06 .29884E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29996E+01 .11850E-06 .29900E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .11855E-06 .29909E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .11862E-06 .29921E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .11870E-06 .29934E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .11879E-06 .29950E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .11884E-06 .29955E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .11889E-06 .29960E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .11895E-06 .29965E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .11900E-06 .29970E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29996E+01 .11905E-06 .29971E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .11915E-06 .29975E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .11940E-06 .29982E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .11965E-06 .29990E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12000E-06 .30000E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12005E-06 .29999E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12015E-06 .29997E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12029E-06 .29995E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12056E-06 .29990E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12057E-06 .29995E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12058E-06 .30000E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12059E-06 .30005E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12060E-06 .30010E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12061E-06 .30021E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12063E-06 .30039E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12064E-06 .30056E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12066E-06 .30080E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12067E-06 .30092E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12069E-06 .30105E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12071E-06 .30130E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12072E-06 .30124E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12074E-06 .30117E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12076E-06 .30109E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12079E-06 .30100E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12080E-06 .30055E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12082E-06 .30010E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12083E-06 .29965E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12085E-06 .29920E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12086E-06 .29811E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12088E-06 .29643E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12091E-06 .29476E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12094E-06 .29250E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12095E-06 .29037E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12097E-06 .28825E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12098E-06 .28612E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12100E-06 .28400E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12102E-06 .28068E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12103E-06 .27721E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12105E-06 .27373E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12107E-06 .27010E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12108E-06 .26667E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12109E-06 .26325E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12110E-06 .25982E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12111E-06 .25640E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12112E-06 .25210E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12114E-06 .24603E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12116E-06 .23995E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12118E-06 .23210E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12119E-06 .22795E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12120E-06 .22380E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12122E-06 .21550E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12124E-06 .20833E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12126E-06 .20090E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12128E-06 .19348E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12130E-06 .18580E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12131E-06 .18053E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12132E-06 .17525E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12135E-06 .16470E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12137E-06 .15780E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12139E-06 .15090E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12140E-06 .14400E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12142E-06 .13710E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12143E-06 .13175E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12145E-06 .12640E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12147E-06 .11570E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12148E-06 .11375E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12148E-06 .11180E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12149E-06 .10985E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12149E-06 .10790E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12149E-06 .10670E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12149E-06 .10550E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12150E-06 .10430E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12150E-06 .10310E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12150E-06 .10211E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12151E-06 .10031E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12151E-06 .98510E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12152E-06 .95900E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12152E-06 .95375E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12153E-06 .94850E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12153E-06 .94325E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12153E-06 .93800E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12154E-06 .93202E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12154E-06 .92177E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12155E-06 .91152E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12156E-06 .89700E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12156E-06 .89325E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12157E-06 .88950E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12157E-06 .88200E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12158E-06 .86925E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12159E-06 .85575E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12159E-06 .84225E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12160E-06 .82800E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12161E-06 .81650E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12161E-06 .80500E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12162E-06 .79350E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12162E-06 .78200E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12163E-06 .76988E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12164E-06 .74988E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12164E-06 .72988E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12166E-06 .70200E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12166E-06 .68875E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12167E-06 .67550E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12168E-06 .64900E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12169E-06 .62724E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12170E-06 .58674E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12172E-06 .54624E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12175E-06 .48700E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12176E-06 .46275E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12177E-06 .43850E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12179E-06 .39000E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12181E-06 .36200E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12183E-06 .33400E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12186E-06 .27800E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12188E-06 .26375E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12189E-06 .24950E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12190E-06 .23525E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12191E-06 .22100E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12192E-06 .20993E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12194E-06 .19818E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12195E-06 .18643E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12196E-06 .17400E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12197E-06 .16750E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12198E-06 .16100E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12199E-06 .15450E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12200E-06 .14800E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12201E-06 .14350E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12203E-06 .13450E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12206E-06 .11950E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12209E-06 .10450E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12212E-06 .88000E-01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12214E-06 .81000E-01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12216E-06 .74000E-01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12218E-06 .67000E-01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12220E-06 .60000E-01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12223E-06 .56069E-01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12227E-06 .48208E-01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12231E-06 .40208E-01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12238E-06 .28000E-01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12241E-06 .24750E-01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12244E-06 .21500E-01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12247E-06 .18250E-01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12250E-06 .15000E-01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12253E-06 .13855E-01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12259E-06 .11565E-01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12266E-06 .88148E-02 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12279E-06 .40000E-02 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12284E-06 .32754E-02 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12289E-06 .25254E-02 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12295E-06 .17754E-02 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12300E-06 .10000E-02 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12305E-06 .82935E-03 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12312E-06 .57935E-03 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12320E-06 .32935E-03 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12329E-06 .00000E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12334E-06-.86693E-04 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12344E-06-.26008E-03 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29997E+01 .12384E-06-.95362E-03 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12434E-06-.18205E-02 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12484E-06-.26875E-02 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29999E+01 .12534E-06-.35544E-02 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12560E-06-.40000E-02 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29999E+01 .12562E-06-.60000E-02 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12563E-06-.80000E-02 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12565E-06-.10000E-01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12566E-06-.12000E-01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12567E-06-.12500E-01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12568E-06-.13000E-01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12570E-06-.14000E-01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12572E-06-.98536E-02 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12574E-06-.53536E-02 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12575E-06-.85357E-03 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12577E-06 .40000E-02 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12579E-06 .14750E-01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12580E-06 .25500E-01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12581E-06 .36250E-01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12582E-06 .47000E-01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12584E-06 .70250E-01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12586E-06 .11675E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12589E-06 .16325E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12592E-06 .23300E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12594E-06 .28900E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12596E-06 .34500E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12598E-06 .40100E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12599E-06 .45700E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12599E-06 .46050E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12600E-06 .46400E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12600E-06 .46750E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12600E-06 .47100E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12600E-06 .47375E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12600E-06 .47650E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12600E-06 .47925E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12600E-06 .48200E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12600E-06 .48454E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12600E-06 .48963E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12601E-06 .50999E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12603E-06 .59142E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12606E-06 .68642E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12611E-06 .86200E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12613E-06 .91575E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12615E-06 .96950E+00 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12619E-06 .10770E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12620E-06 .11072E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12621E-06 .11375E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12624E-06 .11980E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12625E-06 .12175E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12625E-06 .12370E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12626E-06 .12565E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12627E-06 .12760E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12628E-06 .12914E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12629E-06 .13134E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12630E-06 .13354E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12632E-06 .13640E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12633E-06 .13802E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12633E-06 .13965E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12634E-06 .14128E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12635E-06 .14290E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12636E-06 .14447E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12637E-06 .14605E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12638E-06 .14920E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12639E-06 .15030E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12640E-06 .15140E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12640E-06 .15250E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12641E-06 .15360E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12641E-06 .15416E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12642E-06 .15496E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12643E-06 .15576E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12644E-06 .15680E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12645E-06 .15757E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12645E-06 .15835E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12646E-06 .15912E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12646E-06 .15990E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12647E-06 .16100E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12647E-06 .16210E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12648E-06 .16320E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12648E-06 .16430E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12649E-06 .16508E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12649E-06 .16585E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12650E-06 .16662E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12650E-06 .16740E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12650E-06 .16819E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12651E-06 .16971E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12652E-06 .17124E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12653E-06 .17350E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12654E-06 .17472E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12654E-06 .17595E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12655E-06 .17717E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12655E-06 .17840E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12656E-06 .17962E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12657E-06 .18207E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12659E-06 .18557E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12662E-06 .19240E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12663E-06 .19473E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12664E-06 .19705E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12666E-06 .20170E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12668E-06 .20479E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12670E-06 .20956E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12673E-06 .21434E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12676E-06 .22080E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12678E-06 .22362E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12680E-06 .22645E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12682E-06 .22927E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12683E-06 .23210E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12685E-06 .23496E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12688E-06 .23881E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12690E-06 .24266E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12693E-06 .24750E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12695E-06 .24992E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12697E-06 .25235E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12698E-06 .25477E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12700E-06 .25720E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12702E-06 .25900E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12705E-06 .26193E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12707E-06 .26485E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12711E-06 .26890E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12713E-06 .27037E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12715E-06 .27185E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12717E-06 .27332E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12719E-06 .27480E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12721E-06 .27589E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12725E-06 .27807E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12729E-06 .28024E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12735E-06 .28350E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12738E-06 .28450E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12741E-06 .28550E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12744E-06 .28650E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12746E-06 .28750E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12747E-06 .28765E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12747E-06 .28780E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12748E-06 .28795E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12748E-06 .28810E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12749E-06 .28820E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12749E-06 .28830E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12750E-06 .28840E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12750E-06 .28850E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12750E-06 .28858E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12751E-06 .28873E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12754E-06 .28934E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12761E-06 .29072E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12768E-06 .29209E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12777E-06 .29400E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29999E+01 .12782E-06 .29457E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29999E+01 .12786E-06 .29515E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12791E-06 .29573E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12796E-06 .29630E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12797E-06 .29635E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12797E-06 .29640E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12798E-06 .29645E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12798E-06 .29650E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12799E-06 .29653E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12799E-06 .29655E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12800E-06 .29657E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12800E-06 .29660E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12800E-06 .29663E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12801E-06 .29668E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12805E-06 .29689E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12812E-06 .29734E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12819E-06 .29779E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12829E-06 .29840E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29999E+01 .12834E-06 .29854E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29999E+01 .12839E-06 .29869E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12845E-06 .29884E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12850E-06 .29900E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12855E-06 .29909E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29999E+01 .12862E-06 .29921E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29999E+01 .12870E-06 .29934E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29999E+01 .12879E-06 .29950E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29999E+01 .12884E-06 .29955E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29999E+01 .12889E-06 .29960E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12895E-06 .29965E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12900E-06 .29970E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29998E+01 .12905E-06 .29971E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29999E+01 .12915E-06 .29975E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29999E+01 .12940E-06 .29982E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29999E+01 .12965E-06 .29990E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29999E+01 .13000E-06 .30000E+01 .00000E+00 .30000E+01 .00000E+00 .30000E+01 .29999E+01 .10000E+31 gwave2-20170109/AUTHORS0000644001226200000360000000011613007135135011133 00000000000000 gwave was written by Steve Tell or gwave2-20170109/gwave.spec.in0000644001226200000360000000375413007135135012470 00000000000000# Note that this is NOT a relocatable package %define ver @VERSION@ %define rel 1 %define prefix /usr Name: gwave Summary: GPLed Analog Waveform Viewing Environment Version: %ver Release: %rel Source: http://geda.seul.org/dist/gwave-%ver.tar.gz Group: Applications/Engineering BuildRoot: /tmp/gwave-%ver-build Copyright: GPL Packager: Steve Tell URL: http://www.geda.seul.org/tools/gwave/index.html Distribution: gwave Requires: gtk+ >= 1.2.3 Requires: glib >= 1.2.3 Requires: guile >= 1.6 Requires: guile-gtk >= 1.2 Docdir: %{prefix}/share/doc %description Gwave is a waveform viewer, intended originaly for displaying the output of analog simulators such as spice, but also useful for other purposes. Gwave can read tabluar ascii files in additionto the specialized output files from Spice3, NGSpice, and Hspice. It displays the data as 2-D plots, and allows for scrolling, zooming, and measuring the waveforms. Install gwave if you need 2-D interactive display of analog waveforms or other tabluar data. %changelog * Mon Dec 19 2003 Steve Tell - updates for Redhat 9, gwave-20031224 * Mon Aug 4 2003 Steve Tell - updates for Redhat 9, gwave-20030804 * Thu Nov 23 2000 Steve Tell - Created spec file for first RPM. %prep %setup -n gwave-%ver %build ./configure --prefix=%{prefix} make %install make prefix=$RPM_BUILD_ROOT/%{prefix} mandir=$RPM_BUILD_ROOT/%{prefix}/share/man/ install %clean rm -rf $RPM_BUILD_ROOT %post %postun %files %defattr(-, root, root) %{prefix}/bin/gwave %{prefix}/bin/gwave-exec %{prefix}/bin/gwaverepl %{prefix}/bin/sp2sp %{prefix}/share/guile/app/gwave %{prefix}/share/man/man1/* # %config %{prefix}/share/guile/app/gwave/system.gwaverc %doc AUTHORS COPYING ChangeLog %doc INSTALL NEWS README FAQ %doc doc/sp2sp.sgml doc/spice3.txt %doc doc/hspice.txt doc/hspice-output.txt %doc doc/gwave-concepts.txt doc/gwave-procedures.txt %doc doc/gwave-hooks.txt doc/gwave-variables.txt gwave2-20170109/Makefile.am0000644001226200000360000000122413007135135012120 00000000000000# -*- mode: Makefile -*- ## Process this file with automake to produce Makefile.in #SUBDIRS=spicefile utilities src scheme doc remote SUBDIRS=spicefile utilities src scheme remote EXTRA_DIST=autogen.sh gwave.spec TODO FAQ plotutils-2.4.1.patch # distribute some extra directories that don't have anything to build # or install in them dist-hook: mkdir $(distdir)/examples rsync -C -p examples/* $(distdir)/examples mkdir $(distdir)/icons rsync -C -p icons/* $(distdir)/icons # build RPMs - but only on a redhat system rpm: $(distdir).tar.gz cp gwave.spec $(distdir).tar.gz /usr/src/redhat/SOURCES cd /usr/src/redhat/SOURCES; rpmbuild -ba gwave.spec gwave2-20170109/utilities/0000755001226200000360000000000013034766134012171 500000000000000gwave2-20170109/utilities/Makefile.am0000644001226200000360000000051713007135135014137 00000000000000## $Id: Makefile.am,v 1.7 2005/05/14 20:33:22 sgt Exp $ ## process this file with automake to create Makefile.in ## (You should run ./autogen.sh from the top level directory) EXTRA_DIST = ChangeLog gwave-doc-snarf.in doc-split.in bin_SCRIPTS=sweepsplit noinst_SCRIPTS = gwave-doc-snarf doc-split all: chmod +x $(noinst_SCRIPTS) gwave2-20170109/utilities/Makefile.in0000644001226200000360000003014613034762302014153 00000000000000# Makefile.in generated by automake 1.11.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, # Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : subdir = utilities DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ $(srcdir)/doc-split.in $(srcdir)/gwave-doc-snarf.in \ $(srcdir)/sweepsplit.in ChangeLog ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = gwave-doc-snarf doc-split sweepsplit CONFIG_CLEAN_VPATH_FILES = am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__installdirs = "$(DESTDIR)$(bindir)" SCRIPTS = $(bin_SCRIPTS) $(noinst_SCRIPTS) SOURCES = DIST_SOURCES = DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ GRAPH = @GRAPH@ GREP = @GREP@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ GUILE = @GUILE@ GUILE_CFLAGS = @GUILE_CFLAGS@ GUILE_CONFIG = @GUILE_CONFIG@ GUILE_GNOME_CFLAGS = @GUILE_GNOME_CFLAGS@ GUILE_GNOME_LIBS = @GUILE_GNOME_LIBS@ GUILE_LDFLAGS = @GUILE_LDFLAGS@ GUILE_TOOLS = @GUILE_TOOLS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PERL = @PERL@ PKG_CONFIG = @PKG_CONFIG@ RANLIB = @RANLIB@ READLINE_LIB = @READLINE_LIB@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build_alias = @build_alias@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host_alias = @host_alias@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ EXTRA_DIST = ChangeLog gwave-doc-snarf.in doc-split.in bin_SCRIPTS = sweepsplit noinst_SCRIPTS = gwave-doc-snarf doc-split all: all-am .SUFFIXES: $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu utilities/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu utilities/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): gwave-doc-snarf: $(top_builddir)/config.status $(srcdir)/gwave-doc-snarf.in cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ doc-split: $(top_builddir)/config.status $(srcdir)/doc-split.in cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ sweepsplit: $(top_builddir)/config.status $(srcdir)/sweepsplit.in cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ install-binSCRIPTS: $(bin_SCRIPTS) @$(NORMAL_INSTALL) test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" @list='$(bin_SCRIPTS)'; test -n "$(bindir)" || list=; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ if test -f "$$d$$p"; then echo "$$d$$p"; echo "$$p"; else :; fi; \ done | \ sed -e 'p;s,.*/,,;n' \ -e 'h;s|.*|.|' \ -e 'p;x;s,.*/,,;$(transform)' | sed 'N;N;N;s,\n, ,g' | \ $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1; } \ { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ if ($$2 == $$4) { files[d] = files[d] " " $$1; \ if (++n[d] == $(am__install_max)) { \ print "f", d, files[d]; n[d] = 0; files[d] = "" } } \ else { print "f", d "/" $$4, $$1 } } \ END { for (d in files) print "f", d, files[d] }' | \ while read type dir files; do \ if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ test -z "$$files" || { \ echo " $(INSTALL_SCRIPT) $$files '$(DESTDIR)$(bindir)$$dir'"; \ $(INSTALL_SCRIPT) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ } \ ; done uninstall-binSCRIPTS: @$(NORMAL_UNINSTALL) @list='$(bin_SCRIPTS)'; test -n "$(bindir)" || exit 0; \ files=`for p in $$list; do echo "$$p"; done | \ sed -e 's,.*/,,;$(transform)'`; \ test -n "$$list" || exit 0; \ echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ cd "$(DESTDIR)$(bindir)" && rm -f $$files tags: TAGS TAGS: ctags: CTAGS CTAGS: distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(SCRIPTS) installdirs: for dir in "$(DESTDIR)$(bindir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ `test -z '$(STRIP)' || \ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-binSCRIPTS install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-binSCRIPTS .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic distclean \ distclean-generic distdir dvi dvi-am html html-am info info-am \ install install-am install-binSCRIPTS install-data \ install-data-am install-dvi install-dvi-am install-exec \ install-exec-am install-html install-html-am install-info \ install-info-am install-man install-pdf install-pdf-am \ install-ps install-ps-am install-strip installcheck \ installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic pdf \ pdf-am ps ps-am uninstall uninstall-am uninstall-binSCRIPTS all: chmod +x $(noinst_SCRIPTS) # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: gwave2-20170109/utilities/doc-split.in0000644001226200000360000000573013007135135014333 00000000000000#!@GUILE@ \ -e main -s !# ; ; doc-split - split snarfed documentation into seperate files for ; primitives, hooks, concepts, and variables. ; (use-modules (ice-9 getopt-long) (ice-9 common-list) (ice-9 format) (ice-9 regex) (srfi srfi-13)) ;(display "doc-split running\n") (debug-enable 'debug 'backtrace) (read-enable 'positions) ; globals. not very schemy. but I don't care. (define opt-debug #f) (define opt-verbose #f) (define concept-fp #f) (define hook-fp #f) (define var-fp #f) (define proc-fp #f) ;----------------------------------------------------------------------------- (define (main a) (let* ((opts (getopt-long (program-arguments) `((verbose (single-char #\v)) (debug (single-char #\x)) (basename (value #t)) ))) (fprefix "X")) ; (format #t "opts=~a\n" opts) (set! opt-verbose (let ((a (assq 'verbose opts))) (if a (cdr a) #f))) (set! opt-debug (let ((a (assq 'debug opts))) (if a (cdr a) #f))) (if (assq 'basename opts) (set! fprefix (cdr (assq 'basename opts)))) (set! concept-fp (open-file (string-append fprefix "-concepts.txt") "w")) (set! hook-fp (open-file (string-append fprefix "-hooks.txt") "w")) (set! var-fp (open-file (string-append fprefix "-variables.txt") "w")) (set! proc-fp (open-file (string-append fprefix "-procedures.txt") "w")) (for-each (lambda (f) (if opt-debug (format #t "~a:\n" f)) (let ((fp (open-file f "r"))) (with-input-from-port fp (lambda () (process-file-by-lines f))) (close fp))) (pick string? (assq '() opts))) (close concept-fp) (close hook-fp) (close var-fp) (close proc-fp) )) ; Use the read-hash-extend facility to add a syntax for constant ; regular expressions that are to be compiled once when read in, ; instead of during the normal flow of execution. This can let loops ; that repeatedly use a constant regexp be optimized without moving the ; expression's definition far away from its use. ; ; With this hash-extension, these two expressions behave identicaly: ; ; (regexp-exec (make-regexp "de+") "abcdeeef")) ; (regexp-exec #+"de+" "abcdeeef") ; (read-hash-extend #\+ (lambda (c port) (let ((s (read port))) (if (string? s) (make-regexp s) (error "bad #+ value; string expected"))))) (define (process-file-by-lines fname) (let ((fp #f)) (do ((line (read-line) (read-line))) ((eof-object? line) #f) (if (string-index line #\np ) (let ((line (read-line))) (if (not (eof-object? line)) (begin (cond ((regexp-exec #+"^Concept: " line) (set! fp concept-fp)) ((regexp-exec #+"^Hook: " line) (set! fp hook-fp)) ((regexp-exec #+"^Variable: " line) (set! fp var-fp)) ((regexp-exec #+"^Procedure: " line) (set! fp proc-fp)) (else (set! fp #f))) (if fp (format fp "\f\n~a\n" line))))) (if fp (format fp "~a\n" line)) )))) gwave2-20170109/utilities/sweepsplit.in0000644001226200000360000000461513007135135014635 00000000000000#!@PERL@ # # split the output of "sp2sp -s head" into multiple files, one per sweep. # use FileHandle; use Getopt::Long; sub usage { print STDERR "usage: sweepsplit [options] [file [name]] or: sp2sp -s head | sweepsplit [options] Options: -a Len Use Len digits when constructing numered output file names -s N Dump only sweep number N to stdout -t Type Assume input is of type T (passed to sp2sp) "; } Getopt::Long::config('no_auto_abbrev', 'no_ignore_case','no_ignore_case_always'); $dump_sweepno = -1; $suffixlength = 2; $verbose = 0; $fnbase = ''; $nsweeps = 0; %optctl = ("s=i" => \$dump_sweepno, "a|suffixlength=i" => \$suffixlength, "t=s" => \$infile_type, "v|verbose!" => \$verbose ); if(!GetOptions(%optctl)) { &usage(); exit 1; } if($#ARGV >= 0) { # input filename provided $infname = shift(@ARGV); } if($#ARGV >= 0) { # base part of output filenames specified $fnbase = shift(@ARGV); } if(!$fnbase) { # If no output filename specified, construct one. if($infname) { $fnbase = $infname; $fnbase =~ s|^.*/([^/]+)$|$1|; # remove leading directory names $fnbase =~ s|\.[^.]*$||; # remove trailing .suffix } else { $fnbase = 'sp'; } } $infp = new FileHandle; if($infname) { if($infile_type) { $topt = "-t $infile_type"; } $infp->open("sp2sp -s head $topt $infname|") || die "pipe from sp2sp $infname: $!"; } else { $infp->fdopen(STDIN, "r"); } $heads = $infp->getline; while($_ = $infp->getline) { if($_ =~ m/^\#\s*sweep\s*(\d+);/) { $sweepno = $1; open_outfile($sweepno); $nsweeps++; } else { if(!$fp) { open_outfile(0); $nsweeps++; } print $fp $_; } } $infp->close || "pipe from sp2sp $infname: $!"; if($fp) { $fp->close; } else { print STDERR "no sweeps found\n"; exit 1; } printf "%d sweeps\n", $nsweeps; exit 0; ############################################################################# sub open_outfile { my($sweepno) = @_; if($fp) { $fp->close; } if($dump_sweepno == -1 || $dump_sweepno == $sweepno) { $fname = sprintf "%s%0*d.asc", $fnbase, $suffixlength, $sweepno; } else { $fname = '/dev/null'; } $fp = new FileHandle $fname,"w"; if(!defined($fp)) { die "$fname: $!"; } print $fp $heads; # would like to include sweep number as comment - but gwave # can't deal with this. to be fixed. # print $fp $_; } gwave2-20170109/utilities/ChangeLog0000644001226200000360000000000013007135135013640 00000000000000gwave2-20170109/utilities/gwave-doc-snarf.in0000755001226200000360000001000213007135135015407 00000000000000#!@GUILE@ \ -e main -s !# ; ; gwave-doc-snarf - extract embedded documentation from the output of ; the C preprocessor run on C code that uses the xsnarf.h macros ; (use-modules (ice-9 getopt-long) (ice-9 common-list) (ice-9 format) (ice-9 regex) (srfi srfi-13)) (debug-enable 'debug 'backtrace) (read-enable 'positions) ;(display "gwave-doc-snarf running\n") (define opts (getopt-long (program-arguments) `((verbose (single-char #\v)) (debug (single-char #\x)) ))) (define opt-verbose (let ((a (assq 'verbose opts))) (if a (cdr a) #f))) (define opt-debug (let ((a (assq 'debug opts))) (if a (cdr a) #f))) (define cmdline-files (pick string? (assq '() opts))) ;----------------------------------------------------------------------------- (define (main a) (for-each (lambda (f) (if opt-debug (format #t "~a:\n" f)) (let ((fp (open-file f "r"))) (with-input-from-port fp (lambda () (process-file f)))) ) cmdline-files) ) (define (process-docentry e) (let*((doctype (cadr (assoc 'type e))) (name (cadr (assoc 'fname e))) (doclist (cdr (assoc 'doc e))) (argstr (cadr (assoc 'arglist e))) (src-file (cadr (assoc 'location e))) (src-line (caddr (assoc 'location e))) (arglist (split-arglist argstr)) ) (if opt-debug (begin (format #t "name: ~s\n" name) (format #t "type: ~s\n" doctype) (format #t "location: ~s\n" (cdr (assoc 'location e))) (format #t "arglist: ~s\n" argstr) (format #t "argsig: ~s\n" (cdr (assoc 'argsig e))) (format #t "doc: ~s\n" doclist))) (display "\f\n") (cond ((eq? doctype 'primitive) (format #t "Procedure: (~a~a)\n" name (string-join arglist " " 'prefix))) ((eq? doctype 'vcell) (format #t "Variable: ~a\n" name)) ((eq? doctype 'concept) (format #t "Concept: ~a\n" name)) ((eq? doctype 'hook) (format #t "Hook: (~a~a)\n" name (string-join arglist " " 'prefix)))) (for-each (lambda (s) (format #t "~a\n" s)) doclist) (format #t "[~a:~d]\n" src-file src-line))) ; ; Split a string STR into a list of strings, on boundaries determined by ; where the regexp RE matches. ; (define (split re str) (let ((r (make-regexp re))) (let loop ((s str) (result '())) (let ((m (regexp-exec r s))) (if (not m) (if (< 0 (string-length s)) (reverse! (cons s result)) (reverse! result)) (if (< 0 (string-length (match:prefix m))) (loop (match:suffix m) (cons (match:prefix m) result)) (loop (match:suffix m) result))) )))) ; Use the read-hash-extend facility to add a syntax for constant ; regular expressions that are to be compiled once when read in, ; instead of during the normal flow of execution. This can let loops ; that repeatedly use a constant regexp be optimized without moving the ; expression's definition far away from its use. ; ; With this hash-extension, these two expressions behave identicaly: ; ; (regexp-exec (make-regexp "de+") "abcdeeef")) ; (regexp-exec #+"de+" "abcdeeef") ; (read-hash-extend #\+ (lambda (c port) (let ((s (read port))) (if (string? s) (make-regexp s) (error "bad #+ value; string expected"))))) ; ; split the C argument-list string, which looks like "(SCM foo, SCM bar)" ; into a list of strings, each containing the name of one argument. ; (define (split-arglist s) (let* ( (s1 (regexp-substitute/global #f #+"^[ \t]*\\(" s 'post)) (s2 (regexp-substitute/global #f #+"\\)[ \t]*$" s1 'pre)) (s3 (regexp-substitute/global #f #+"[ \t]*SCM[ \t]*" s2 'pre 'post)) ) (split "," s3))) (define (process-file fname) (let ((rcaret (make-regexp "^\\^\\^"))) (do ((line (read-line) (read-line))) ((eof-object? line) #f) (if (regexp-exec rcaret line) (begin (call-with-input-string (string-drop line 2) (lambda (p) (let ((slist (read p))) (process-docentry slist) )))))))) ;----------------------------------------------------------------------------- gwave2-20170109/gwave.spec0000644001226200000360000000375313034762307012071 00000000000000# Note that this is NOT a relocatable package %define ver 20170109 %define rel 1 %define prefix /usr Name: gwave Summary: GPLed Analog Waveform Viewing Environment Version: %ver Release: %rel Source: http://geda.seul.org/dist/gwave-%ver.tar.gz Group: Applications/Engineering BuildRoot: /tmp/gwave-%ver-build Copyright: GPL Packager: Steve Tell URL: http://www.geda.seul.org/tools/gwave/index.html Distribution: gwave Requires: gtk+ >= 1.2.3 Requires: glib >= 1.2.3 Requires: guile >= 1.6 Requires: guile-gtk >= 1.2 Docdir: %{prefix}/share/doc %description Gwave is a waveform viewer, intended originaly for displaying the output of analog simulators such as spice, but also useful for other purposes. Gwave can read tabluar ascii files in additionto the specialized output files from Spice3, NGSpice, and Hspice. It displays the data as 2-D plots, and allows for scrolling, zooming, and measuring the waveforms. Install gwave if you need 2-D interactive display of analog waveforms or other tabluar data. %changelog * Mon Dec 19 2003 Steve Tell - updates for Redhat 9, gwave-20031224 * Mon Aug 4 2003 Steve Tell - updates for Redhat 9, gwave-20030804 * Thu Nov 23 2000 Steve Tell - Created spec file for first RPM. %prep %setup -n gwave-%ver %build ./configure --prefix=%{prefix} make %install make prefix=$RPM_BUILD_ROOT/%{prefix} mandir=$RPM_BUILD_ROOT/%{prefix}/share/man/ install %clean rm -rf $RPM_BUILD_ROOT %post %postun %files %defattr(-, root, root) %{prefix}/bin/gwave %{prefix}/bin/gwave-exec %{prefix}/bin/gwaverepl %{prefix}/bin/sp2sp %{prefix}/share/guile/app/gwave %{prefix}/share/man/man1/* # %config %{prefix}/share/guile/app/gwave/system.gwaverc %doc AUTHORS COPYING ChangeLog %doc INSTALL NEWS README FAQ %doc doc/sp2sp.sgml doc/spice3.txt %doc doc/hspice.txt doc/hspice-output.txt %doc doc/gwave-concepts.txt doc/gwave-procedures.txt %doc doc/gwave-hooks.txt doc/gwave-variables.txt gwave2-20170109/Makefile.in0000644001226200000360000005436713034762302012153 00000000000000# Makefile.in generated by automake 1.11.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, # Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ # -*- mode: Makefile -*- VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : subdir = . DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \ $(srcdir)/Makefile.in $(srcdir)/config.h.in \ $(srcdir)/gwave.spec.in $(top_srcdir)/configure AUTHORS \ COPYING ChangeLog INSTALL NEWS TODO depcomp install-sh missing ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ configure.lineno config.status.lineno mkinstalldirs = $(install_sh) -d CONFIG_HEADER = config.h CONFIG_CLEAN_FILES = gwave.spec CONFIG_CLEAN_VPATH_FILES = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ html-recursive info-recursive install-data-recursive \ install-dvi-recursive install-exec-recursive \ install-html-recursive install-info-recursive \ install-pdf-recursive install-ps-recursive install-recursive \ installcheck-recursive installdirs-recursive pdf-recursive \ ps-recursive uninstall-recursive RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \ $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \ distdir dist dist-all distcheck ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) distdir = $(PACKAGE)-$(VERSION) top_distdir = $(distdir) am__remove_distdir = \ { test ! -d "$(distdir)" \ || { find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \ && rm -fr "$(distdir)"; }; } am__relativize = \ dir0=`pwd`; \ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ sed_rest='s,^[^/]*/*,,'; \ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ sed_butlast='s,/*[^/]*$$,,'; \ while test -n "$$dir1"; do \ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ if test "$$first" != "."; then \ if test "$$first" = ".."; then \ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ else \ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ if test "$$first2" = "$$first"; then \ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ else \ dir2="../$$dir2"; \ fi; \ dir0="$$dir0"/"$$first"; \ fi; \ fi; \ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ done; \ reldir="$$dir2" DIST_ARCHIVES = $(distdir).tar.gz GZIP_ENV = --best distuninstallcheck_listfiles = find . -type f -print distcleancheck_listfiles = find . -type f -print ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ GRAPH = @GRAPH@ GREP = @GREP@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ GUILE = @GUILE@ GUILE_CFLAGS = @GUILE_CFLAGS@ GUILE_CONFIG = @GUILE_CONFIG@ GUILE_GNOME_CFLAGS = @GUILE_GNOME_CFLAGS@ GUILE_GNOME_LIBS = @GUILE_GNOME_LIBS@ GUILE_LDFLAGS = @GUILE_LDFLAGS@ GUILE_TOOLS = @GUILE_TOOLS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PERL = @PERL@ PKG_CONFIG = @PKG_CONFIG@ RANLIB = @RANLIB@ READLINE_LIB = @READLINE_LIB@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build_alias = @build_alias@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host_alias = @host_alias@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ #SUBDIRS=spicefile utilities src scheme doc remote SUBDIRS = spicefile utilities src scheme remote EXTRA_DIST = autogen.sh gwave.spec TODO FAQ plotutils-2.4.1.patch all: config.h $(MAKE) $(AM_MAKEFLAGS) all-recursive .SUFFIXES: am--refresh: @: $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ echo ' cd $(srcdir) && $(AUTOMAKE) --gnu'; \ $(am__cd) $(srcdir) && $(AUTOMAKE) --gnu \ && exit 0; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ echo ' $(SHELL) ./config.status'; \ $(SHELL) ./config.status;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) $(SHELL) ./config.status --recheck $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) $(am__cd) $(srcdir) && $(AUTOCONF) $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) $(am__aclocal_m4_deps): config.h: stamp-h1 @if test ! -f $@; then \ rm -f stamp-h1; \ $(MAKE) $(AM_MAKEFLAGS) stamp-h1; \ else :; fi stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status @rm -f stamp-h1 cd $(top_builddir) && $(SHELL) ./config.status config.h $(srcdir)/config.h.in: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) ($(am__cd) $(top_srcdir) && $(AUTOHEADER)) rm -f stamp-h1 touch $@ distclean-hdr: -rm -f config.h stamp-h1 gwave.spec: $(top_builddir)/config.status $(srcdir)/gwave.spec.in cd $(top_builddir) && $(SHELL) ./config.status $@ # This directory's subdirectories are mostly independent; you can cd # into them and run `make' without going through this Makefile. # To change the values of `make' variables: instead of editing Makefiles, # (1) if the variable is set in `config.status', edit `config.status' # (which will cause the Makefiles to be regenerated when you run `make'); # (2) otherwise, pass the desired values on the `make' command line. $(RECURSIVE_TARGETS): @fail= failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ case $$f in \ *=* | --[!k]*);; \ *k*) failcom='fail=yes';; \ esac; \ done; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ list='$(SUBDIRS)'; for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" $(RECURSIVE_CLEAN_TARGETS): @fail= failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ case $$f in \ *=* | --[!k]*);; \ *k*) failcom='fail=yes';; \ esac; \ done; \ dot_seen=no; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ rev=''; for subdir in $$list; do \ if test "$$subdir" = "."; then :; else \ rev="$$subdir $$rev"; \ fi; \ done; \ rev="$$rev ."; \ target=`echo $@ | sed s/-recursive//`; \ for subdir in $$rev; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done && test -z "$$fail" tags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ done ctags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ done ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ mkid -fID $$unique tags: TAGS TAGS: tags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: CTAGS CTAGS: ctags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) $(am__remove_distdir) test -d "$(distdir)" || mkdir "$(distdir)" @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test -d "$(distdir)/$$subdir" \ || $(MKDIR_P) "$(distdir)/$$subdir" \ || exit 1; \ fi; \ done @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ $(am__relativize); \ new_distdir=$$reldir; \ dir1=$$subdir; dir2="$(top_distdir)"; \ $(am__relativize); \ new_top_distdir=$$reldir; \ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ($(am__cd) $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$new_top_distdir" \ distdir="$$new_distdir" \ am__remove_distdir=: \ am__skip_length_check=: \ am__skip_mode_fix=: \ distdir) \ || exit 1; \ fi; \ done $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$(top_distdir)" distdir="$(distdir)" \ dist-hook -test -n "$(am__skip_mode_fix)" \ || find "$(distdir)" -type d ! -perm -755 \ -exec chmod u+rwx,go+rx {} \; -o \ ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \ ! -type d ! -perm -400 -exec chmod a+r {} \; -o \ ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \ || chmod -R a+r "$(distdir)" dist-gzip: distdir tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz $(am__remove_distdir) dist-bzip2: distdir tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2 $(am__remove_distdir) dist-lzma: distdir tardir=$(distdir) && $(am__tar) | lzma -9 -c >$(distdir).tar.lzma $(am__remove_distdir) dist-xz: distdir tardir=$(distdir) && $(am__tar) | xz -c >$(distdir).tar.xz $(am__remove_distdir) dist-tarZ: distdir tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z $(am__remove_distdir) dist-shar: distdir shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz $(am__remove_distdir) dist-zip: distdir -rm -f $(distdir).zip zip -rq $(distdir).zip $(distdir) $(am__remove_distdir) dist dist-all: distdir tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz $(am__remove_distdir) # This target untars the dist file and tries a VPATH configuration. Then # it guarantees that the distribution is self-contained by making another # tarfile. distcheck: dist case '$(DIST_ARCHIVES)' in \ *.tar.gz*) \ GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\ *.tar.bz2*) \ bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\ *.tar.lzma*) \ lzma -dc $(distdir).tar.lzma | $(am__untar) ;;\ *.tar.xz*) \ xz -dc $(distdir).tar.xz | $(am__untar) ;;\ *.tar.Z*) \ uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ *.shar.gz*) \ GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\ *.zip*) \ unzip $(distdir).zip ;;\ esac chmod -R a-w $(distdir); chmod u+w $(distdir) mkdir $(distdir)/_build mkdir $(distdir)/_inst chmod a-w $(distdir) test -d $(distdir)/_build || exit 0; \ dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \ && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \ && am__cwd=`pwd` \ && $(am__cd) $(distdir)/_build \ && ../configure --srcdir=.. --prefix="$$dc_install_base" \ $(DISTCHECK_CONFIGURE_FLAGS) \ && $(MAKE) $(AM_MAKEFLAGS) \ && $(MAKE) $(AM_MAKEFLAGS) dvi \ && $(MAKE) $(AM_MAKEFLAGS) check \ && $(MAKE) $(AM_MAKEFLAGS) install \ && $(MAKE) $(AM_MAKEFLAGS) installcheck \ && $(MAKE) $(AM_MAKEFLAGS) uninstall \ && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \ distuninstallcheck \ && chmod -R a-w "$$dc_install_base" \ && ({ \ (cd ../.. && umask 077 && mkdir "$$dc_destdir") \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \ distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \ } || { rm -rf "$$dc_destdir"; exit 1; }) \ && rm -rf "$$dc_destdir" \ && $(MAKE) $(AM_MAKEFLAGS) dist \ && rm -rf $(DIST_ARCHIVES) \ && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \ && cd "$$am__cwd" \ || exit 1 $(am__remove_distdir) @(echo "$(distdir) archives ready for distribution: "; \ list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \ sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x' distuninstallcheck: @$(am__cd) '$(distuninstallcheck_dir)' \ && test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \ || { echo "ERROR: files left after uninstall:" ; \ if test -n "$(DESTDIR)"; then \ echo " (check DESTDIR support)"; \ fi ; \ $(distuninstallcheck_listfiles) ; \ exit 1; } >&2 distcleancheck: distclean @if test '$(srcdir)' = . ; then \ echo "ERROR: distcleancheck can only run from a VPATH build" ; \ exit 1 ; \ fi @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \ || { echo "ERROR: files left in build directory after distclean:" ; \ $(distcleancheck_listfiles) ; \ exit 1; } >&2 check-am: all-am check: check-recursive all-am: Makefile config.h installdirs: installdirs-recursive installdirs-am: install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive uninstall: uninstall-recursive install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-recursive install-strip: $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ `test -z '$(STRIP)' || \ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-recursive clean-am: clean-generic mostlyclean-am distclean: distclean-recursive -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -f Makefile distclean-am: clean-am distclean-generic distclean-hdr distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -rf $(top_srcdir)/autom4te.cache -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-generic pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: .MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) all \ ctags-recursive install-am install-strip tags-recursive .PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ all all-am am--refresh check check-am clean clean-generic \ ctags ctags-recursive dist dist-all dist-bzip2 dist-gzip \ dist-hook dist-lzma dist-shar dist-tarZ dist-xz dist-zip \ distcheck distclean distclean-generic distclean-hdr \ distclean-tags distcleancheck distdir distuninstallcheck dvi \ dvi-am html html-am info info-am install install-am \ install-data install-data-am install-dvi install-dvi-am \ install-exec install-exec-am install-html install-html-am \ install-info install-info-am install-man install-pdf \ install-pdf-am install-ps install-ps-am install-strip \ installcheck installcheck-am installdirs installdirs-am \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic pdf pdf-am ps ps-am tags tags-recursive \ uninstall uninstall-am # distribute some extra directories that don't have anything to build # or install in them dist-hook: mkdir $(distdir)/examples rsync -C -p examples/* $(distdir)/examples mkdir $(distdir)/icons rsync -C -p icons/* $(distdir)/icons # build RPMs - but only on a redhat system rpm: $(distdir).tar.gz cp gwave.spec $(distdir).tar.gz /usr/src/redhat/SOURCES cd /usr/src/redhat/SOURCES; rpmbuild -ba gwave.spec # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: gwave2-20170109/autogen.sh0000755001226200000360000000122113007135135012062 00000000000000## autogen.sh - generate all the twisty little files. # Generate aclocal.m4 from configure.in aclocal # Generate Makefile.in's from Makefile.am's and configure.in # (adding missing files that may be needed for proper operation) automake --add-missing --gnu # Generate config.h.in from acconfig.h and configure.in autoheader # Generate configure from configure.in and aclocal.m4 autoconf # run ./config.status, if it exists, to create new Makefiles in subdirectories. # (Note that this only is useful if builddir == scrdir, otherwise the # user may need to run config.status from their builddir(s) manually) test -x ./config.status && ./config.status gwave2-20170109/COPYING0000644001226200000360000004307613007135135011132 00000000000000 GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc. 675 Mass Ave, Cambridge, MA 02139, USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Library General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS Appendix: How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) 19yy This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. Also add information on how to contact you by electronic and paper mail. If the program is interactive, make it output a short notice like this when it starts in an interactive mode: Gnomovision version 69, Copyright (C) 19yy name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (which makes passes at compilers) written by James Hacker. , 1 April 1989 Ty Coon, President of Vice This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Library General Public License instead of this License. gwave2-20170109/install-sh0000755001226200000360000003253712111571213012077 00000000000000#!/bin/sh # install - install a program, script, or datafile scriptversion=2009-04-28.21; # UTC # This originates from X11R5 (mit/util/scripts/install.sh), which was # later released in X11R6 (xc/config/util/install.sh) with the # following copyright and license. # # Copyright (C) 1994 X Consortium # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN # AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC- # TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. # # Except as contained in this notice, the name of the X Consortium shall not # be used in advertising or otherwise to promote the sale, use or other deal- # ings in this Software without prior written authorization from the X Consor- # tium. # # # FSF changes to this file are in the public domain. # # Calling this script install-sh is preferred over install.sh, to prevent # `make' implicit rules from creating a file called install from it # when there is no Makefile. # # This script is compatible with the BSD install script, but was written # from scratch. nl=' ' IFS=" "" $nl" # set DOITPROG to echo to test this script # Don't use :- since 4.3BSD and earlier shells don't like it. doit=${DOITPROG-} if test -z "$doit"; then doit_exec=exec else doit_exec=$doit fi # Put in absolute file names if you don't have them in your path; # or use environment vars. chgrpprog=${CHGRPPROG-chgrp} chmodprog=${CHMODPROG-chmod} chownprog=${CHOWNPROG-chown} cmpprog=${CMPPROG-cmp} cpprog=${CPPROG-cp} mkdirprog=${MKDIRPROG-mkdir} mvprog=${MVPROG-mv} rmprog=${RMPROG-rm} stripprog=${STRIPPROG-strip} posix_glob='?' initialize_posix_glob=' test "$posix_glob" != "?" || { if (set -f) 2>/dev/null; then posix_glob= else posix_glob=: fi } ' posix_mkdir= # Desired mode of installed file. mode=0755 chgrpcmd= chmodcmd=$chmodprog chowncmd= mvcmd=$mvprog rmcmd="$rmprog -f" stripcmd= src= dst= dir_arg= dst_arg= copy_on_change=false no_target_directory= usage="\ Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE or: $0 [OPTION]... SRCFILES... DIRECTORY or: $0 [OPTION]... -t DIRECTORY SRCFILES... or: $0 [OPTION]... -d DIRECTORIES... In the 1st form, copy SRCFILE to DSTFILE. In the 2nd and 3rd, copy all SRCFILES to DIRECTORY. In the 4th, create DIRECTORIES. Options: --help display this help and exit. --version display version info and exit. -c (ignored) -C install only if different (preserve the last data modification time) -d create directories instead of installing files. -g GROUP $chgrpprog installed files to GROUP. -m MODE $chmodprog installed files to MODE. -o USER $chownprog installed files to USER. -s $stripprog installed files. -t DIRECTORY install into DIRECTORY. -T report an error if DSTFILE is a directory. Environment variables override the default commands: CHGRPPROG CHMODPROG CHOWNPROG CMPPROG CPPROG MKDIRPROG MVPROG RMPROG STRIPPROG " while test $# -ne 0; do case $1 in -c) ;; -C) copy_on_change=true;; -d) dir_arg=true;; -g) chgrpcmd="$chgrpprog $2" shift;; --help) echo "$usage"; exit $?;; -m) mode=$2 case $mode in *' '* | *' '* | *' '* | *'*'* | *'?'* | *'['*) echo "$0: invalid mode: $mode" >&2 exit 1;; esac shift;; -o) chowncmd="$chownprog $2" shift;; -s) stripcmd=$stripprog;; -t) dst_arg=$2 shift;; -T) no_target_directory=true;; --version) echo "$0 $scriptversion"; exit $?;; --) shift break;; -*) echo "$0: invalid option: $1" >&2 exit 1;; *) break;; esac shift done if test $# -ne 0 && test -z "$dir_arg$dst_arg"; then # When -d is used, all remaining arguments are directories to create. # When -t is used, the destination is already specified. # Otherwise, the last argument is the destination. Remove it from $@. for arg do if test -n "$dst_arg"; then # $@ is not empty: it contains at least $arg. set fnord "$@" "$dst_arg" shift # fnord fi shift # arg dst_arg=$arg done fi if test $# -eq 0; then if test -z "$dir_arg"; then echo "$0: no input file specified." >&2 exit 1 fi # It's OK to call `install-sh -d' without argument. # This can happen when creating conditional directories. exit 0 fi if test -z "$dir_arg"; then trap '(exit $?); exit' 1 2 13 15 # Set umask so as not to create temps with too-generous modes. # However, 'strip' requires both read and write access to temps. case $mode in # Optimize common cases. *644) cp_umask=133;; *755) cp_umask=22;; *[0-7]) if test -z "$stripcmd"; then u_plus_rw= else u_plus_rw='% 200' fi cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;; *) if test -z "$stripcmd"; then u_plus_rw= else u_plus_rw=,u+rw fi cp_umask=$mode$u_plus_rw;; esac fi for src do # Protect names starting with `-'. case $src in -*) src=./$src;; esac if test -n "$dir_arg"; then dst=$src dstdir=$dst test -d "$dstdir" dstdir_status=$? else # Waiting for this to be detected by the "$cpprog $src $dsttmp" command # might cause directories to be created, which would be especially bad # if $src (and thus $dsttmp) contains '*'. if test ! -f "$src" && test ! -d "$src"; then echo "$0: $src does not exist." >&2 exit 1 fi if test -z "$dst_arg"; then echo "$0: no destination specified." >&2 exit 1 fi dst=$dst_arg # Protect names starting with `-'. case $dst in -*) dst=./$dst;; esac # If destination is a directory, append the input filename; won't work # if double slashes aren't ignored. if test -d "$dst"; then if test -n "$no_target_directory"; then echo "$0: $dst_arg: Is a directory" >&2 exit 1 fi dstdir=$dst dst=$dstdir/`basename "$src"` dstdir_status=0 else # Prefer dirname, but fall back on a substitute if dirname fails. dstdir=` (dirname "$dst") 2>/dev/null || expr X"$dst" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$dst" : 'X\(//\)[^/]' \| \ X"$dst" : 'X\(//\)$' \| \ X"$dst" : 'X\(/\)' \| . 2>/dev/null || echo X"$dst" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q' ` test -d "$dstdir" dstdir_status=$? fi fi obsolete_mkdir_used=false if test $dstdir_status != 0; then case $posix_mkdir in '') # Create intermediate dirs using mode 755 as modified by the umask. # This is like FreeBSD 'install' as of 1997-10-28. umask=`umask` case $stripcmd.$umask in # Optimize common cases. *[2367][2367]) mkdir_umask=$umask;; .*0[02][02] | .[02][02] | .[02]) mkdir_umask=22;; *[0-7]) mkdir_umask=`expr $umask + 22 \ - $umask % 100 % 40 + $umask % 20 \ - $umask % 10 % 4 + $umask % 2 `;; *) mkdir_umask=$umask,go-w;; esac # With -d, create the new directory with the user-specified mode. # Otherwise, rely on $mkdir_umask. if test -n "$dir_arg"; then mkdir_mode=-m$mode else mkdir_mode= fi posix_mkdir=false case $umask in *[123567][0-7][0-7]) # POSIX mkdir -p sets u+wx bits regardless of umask, which # is incompatible with FreeBSD 'install' when (umask & 300) != 0. ;; *) tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$ trap 'ret=$?; rmdir "$tmpdir/d" "$tmpdir" 2>/dev/null; exit $ret' 0 if (umask $mkdir_umask && exec $mkdirprog $mkdir_mode -p -- "$tmpdir/d") >/dev/null 2>&1 then if test -z "$dir_arg" || { # Check for POSIX incompatibilities with -m. # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or # other-writeable bit of parent directory when it shouldn't. # FreeBSD 6.1 mkdir -m -p sets mode of existing directory. ls_ld_tmpdir=`ls -ld "$tmpdir"` case $ls_ld_tmpdir in d????-?r-*) different_mode=700;; d????-?--*) different_mode=755;; *) false;; esac && $mkdirprog -m$different_mode -p -- "$tmpdir" && { ls_ld_tmpdir_1=`ls -ld "$tmpdir"` test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1" } } then posix_mkdir=: fi rmdir "$tmpdir/d" "$tmpdir" else # Remove any dirs left behind by ancient mkdir implementations. rmdir ./$mkdir_mode ./-p ./-- 2>/dev/null fi trap '' 0;; esac;; esac if $posix_mkdir && ( umask $mkdir_umask && $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir" ) then : else # The umask is ridiculous, or mkdir does not conform to POSIX, # or it failed possibly due to a race condition. Create the # directory the slow way, step by step, checking for races as we go. case $dstdir in /*) prefix='/';; -*) prefix='./';; *) prefix='';; esac eval "$initialize_posix_glob" oIFS=$IFS IFS=/ $posix_glob set -f set fnord $dstdir shift $posix_glob set +f IFS=$oIFS prefixes= for d do test -z "$d" && continue prefix=$prefix$d if test -d "$prefix"; then prefixes= else if $posix_mkdir; then (umask=$mkdir_umask && $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir") && break # Don't fail if two instances are running concurrently. test -d "$prefix" || exit 1 else case $prefix in *\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;; *) qprefix=$prefix;; esac prefixes="$prefixes '$qprefix'" fi fi prefix=$prefix/ done if test -n "$prefixes"; then # Don't fail if two instances are running concurrently. (umask $mkdir_umask && eval "\$doit_exec \$mkdirprog $prefixes") || test -d "$dstdir" || exit 1 obsolete_mkdir_used=true fi fi fi if test -n "$dir_arg"; then { test -z "$chowncmd" || $doit $chowncmd "$dst"; } && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } && { test "$obsolete_mkdir_used$chowncmd$chgrpcmd" = false || test -z "$chmodcmd" || $doit $chmodcmd $mode "$dst"; } || exit 1 else # Make a couple of temp file names in the proper directory. dsttmp=$dstdir/_inst.$$_ rmtmp=$dstdir/_rm.$$_ # Trap to clean up those temp files at exit. trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0 # Copy the file name to the temp name. (umask $cp_umask && $doit_exec $cpprog "$src" "$dsttmp") && # and set any options; do chmod last to preserve setuid bits. # # If any of these fail, we abort the whole thing. If we want to # ignore errors from any of these, just make sure not to ignore # errors from the above "$doit $cpprog $src $dsttmp" command. # { test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } && { test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } && { test -z "$chmodcmd" || $doit $chmodcmd $mode "$dsttmp"; } && # If -C, don't bother to copy if it wouldn't change the file. if $copy_on_change && old=`LC_ALL=C ls -dlL "$dst" 2>/dev/null` && new=`LC_ALL=C ls -dlL "$dsttmp" 2>/dev/null` && eval "$initialize_posix_glob" && $posix_glob set -f && set X $old && old=:$2:$4:$5:$6 && set X $new && new=:$2:$4:$5:$6 && $posix_glob set +f && test "$old" = "$new" && $cmpprog "$dst" "$dsttmp" >/dev/null 2>&1 then rm -f "$dsttmp" else # Rename the file to the real destination. $doit $mvcmd -f "$dsttmp" "$dst" 2>/dev/null || # The rename failed, perhaps because mv can't rename something else # to itself, or perhaps because mv is so ancient that it does not # support -f. { # Now remove or move aside any old file at destination location. # We try this two ways since rm can't unlink itself on some # systems and the destination file might be busy for other # reasons. In this case, the final cleanup might fail but the new # file should still install successfully. { test ! -f "$dst" || $doit $rmcmd -f "$dst" 2>/dev/null || { $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null && { $doit $rmcmd -f "$rmtmp" 2>/dev/null; :; } } || { echo "$0: cannot unlink or rename $dst" >&2 (exit 1); exit 1 } } && # Now rename the file to the real destination. $doit $mvcmd "$dsttmp" "$dst" } fi || exit 1 trap '' 0 fi done # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: gwave2-20170109/INSTALL0000644001226200000360000002712613007135135011126 00000000000000 Some installation notes for gwave2, a version of gwave using the Gtk2 toolkit by way of guile-gnome-platform. Updated Feb 2009 Prerequesites: Guile version 1.8 (http://www.gnu.org/software/guile/guile.html) gtk2 2.x g-wrap (http://www.nongnu.org/g-wrap/) guile-gnome-platform (http://www.gnu.org/software/guile-gnome/) guile-cairo (http://home.gna.org/guile-cairo/) (required guile-gnome-platform) GNU Plotutils-2.4.1 or later with patches (optional, only used for ploting/exporting) GNUPlot (optional, only used for ploting/exporting) ------------- tested configurations: Fedora 8 gtk2-2.12.8-2.fc8 (Standard with F8+updates) guile-1.8.5-1sgt g-wrap-1.9.11-1sgt (with g-wrap-1.9.11.pkgconfig.patch) guile-gnome-platform-2.16.1-1sgt (Note that in order to build from source, you also need the -devel versions of those RPMs) ------------- CAUTION: Use only the version of guile-gnome-platform and g-wrap known to work with whatever version of guile you have. Mixing incompatibile versions of guile-gnome-platorm, g-wrap, and guile definitely fails. I recommend verifying that guile, gtk2, and guile-gnome-platofrm all work individualy before trying to build gwave using them. Gtk and guile-gnome-platform both come with "test-gtk" programs in their respective examples directories which are ideal for this purpose. ** Please try this before reporting guile-gtk related problems with gwave. ** *** I strongly recommend installing Guile and Guile-gtk the same way *** with the same prefix: either build both from source, installing *** both into /usr/local, or install both using your favorite packging *** system (RPM, DEB, or other). Mixing packages and local-installs *** can be made to work, but often requires a lot of additional *** fiddling. Note on Gnome and guile-gnome-platform: Although the name of the required Gui package is "guile-gnome-platform", it can be built without installing all of gnome, so long as the Gtk2 (gnome toolkit) is installed. All that GWave requires is the Gtk2 portions of guile-gnome-platform. Guile-gnome-platform requires g-wrap. G-wrap version 1.9.11 often requires applying the enclosed patchfile, g-wrap-1.9.11.pkgconfig.patch . Without the patch, I find that guile-gnome-platform fails to build because of a defective pkgconfig file installed by g-wrap. The error message is somthing like gcc: @LIBFFI_CFLAGS_INSTALLED@: No such file or directory ---- Gwave requires external programs in order to export postscript and bitmap files for hardcopy or documentation use. Either Gnu Graph (from Gnu plotutils) or GnuPlot can be used. GNU graph is part of the GNU plotutils package. The old berkely/sysv "graph" program sometimes found on commercial unixes doesn't work. Configure attempts to locate GNU graph and ignore other programs named "graph" that may be found in $PATH. If the automatic detection doesn't work, try somthing like this: GRAPH="/path/to/gnu/graph" ./configure ... GNU plotutils 2.4.1 contains bugs that cause it to generate bad postscript output and make it prone to crashing on plots with more than 1024 points. Applying "plotutils-2.4.1.patch" included in the gwave distribution and recompiling graph fixes these problems. Running gwave without installing it. ------------------------------------ After compiling, you may wish to test gwave before doing a "make install." Gwave normally looks for its guile support files beneath $PREFIX/share/guile in the standard guile module structure; the complete pathnames would be somthing like $PREFIX/share/guile/app/gwave/cmds.scm If gwave can't find any of its startup guile code, it aborts with a moderately useful error message. The GWAVE_GUILE_DIR environment variable can be used to make gwave look in an alternate directory for these guile files. Set GWAVE_GUILE_DIR to the full pathname of the src directory in this distribution, for example if this file is called /home/tell/build/gwave2/INSTALL, set GWAVE_GUILE_DIR=/home/tell/build/gwave2/src Basic Installation ================== These are generic installation instructions. The `configure' shell script attempts to guess correct values for various system-dependent variables used during compilation. It uses those values to create a `Makefile' in each directory of the package. It may also create one or more `.h' files containing system-dependent definitions. Finally, it creates a shell script `config.status' that you can run in the future to recreate the current configuration, a file `config.cache' that saves the results of its tests to speed up reconfiguring, and a file `config.log' containing compiler output (useful mainly for debugging `configure'). If you need to do unusual things to compile the package, please try to figure out how `configure' could check whether to do them, and mail diffs or instructions to the address given in the `README' so they can be considered for the next release. If at some point `config.cache' contains results you don't want to keep, you may remove or edit it. The file `configure.in' is used to create `configure' by a program called `autoconf'. You only need `configure.in' if you want to change it or regenerate `configure' using a newer version of `autoconf'. The simplest way to compile this package is: 1. `cd' to the directory containing the package's source code and type `./configure' to configure the package for your system. If you're using `csh' on an old version of System V, you might need to type `sh ./configure' instead to prevent `csh' from trying to execute `configure' itself. Running `configure' takes awhile. While running, it prints some messages telling which features it is checking for. 2. Type `make' to compile the package. 3. Optionally, type `make check' to run any self-tests that come with the package. 4. Type `make install' to install the programs and any data files and documentation. 5. You can remove the program binaries and object files from the source code directory by typing `make clean'. To also remove the files that `configure' created (so you can compile the package for a different kind of computer), type `make distclean'. There is also a `make maintainer-clean' target, but that is intended mainly for the package's developers. If you use it, you may have to get all sorts of other programs in order to regenerate files that came with the distribution. Compilers and Options ===================== Some systems require unusual options for compilation or linking that the `configure' script does not know about. You can give `configure' initial values for variables by setting them in the environment. Using a Bourne-compatible shell, you can do that on the command line like this: CC=c89 CFLAGS=-O2 LIBS=-lposix ./configure Or on systems that have the `env' program, you can do it like this: env CPPFLAGS=-I/usr/local/include LDFLAGS=-s ./configure Compiling For Multiple Architectures ==================================== You can compile the package for more than one kind of computer at the same time, by placing the object files for each architecture in their own directory. To do this, you must use a version of `make' that supports the `VPATH' variable, such as GNU `make'. `cd' to the directory where you want the object files and executables to go and run the `configure' script. `configure' automatically checks for the source code in the directory that `configure' is in and in `..'. If you have to use a `make' that does not supports the `VPATH' variable, you have to compile the package for one architecture at a time in the source code directory. After you have installed the package for one architecture, use `make distclean' before reconfiguring for another architecture. Installation Names ================== By default, `make install' will install the package's files in `/usr/local/bin', `/usr/local/man', etc. You can specify an installation prefix other than `/usr/local' by giving `configure' the option `--prefix=PATH'. You can specify separate installation prefixes for architecture-specific files and architecture-independent files. If you give `configure' the option `--exec-prefix=PATH', the package will use PATH as the prefix for installing programs and libraries. Documentation and other data files will still use the regular prefix. In addition, if you use an unusual directory layout you can give options like `--bindir=PATH' to specify different values for particular kinds of files. Run `configure --help' for a list of the directories you can set and what kinds of files go in them. If the package supports it, you can cause programs to be installed with an extra prefix or suffix on their names by giving `configure' the option `--program-prefix=PREFIX' or `--program-suffix=SUFFIX'. Optional Features ================= Some packages pay attention to `--enable-FEATURE' options to `configure', where FEATURE indicates an optional part of the package. They may also pay attention to `--with-PACKAGE' options, where PACKAGE is something like `gnu-as' or `x' (for the X Window System). The `README' should mention any `--enable-' and `--with-' options that the package recognizes. For packages that use the X Window System, `configure' can usually find the X include and library files automatically, but if it doesn't, you can use the `configure' options `--x-includes=DIR' and `--x-libraries=DIR' to specify their locations. Specifying the System Type ========================== There may be some features `configure' can not figure out automatically, but needs to determine by the type of host the package will run on. Usually `configure' can figure that out, but if it prints a message saying it can not guess the host type, give it the `--host=TYPE' option. TYPE can either be a short name for the system type, such as `sun4', or a canonical name with three fields: CPU-COMPANY-SYSTEM See the file `config.sub' for the possible values of each field. If `config.sub' isn't included in this package, then this package doesn't need to know the host type. If you are building compiler tools for cross-compiling, you can also use the `--target=TYPE' option to select the type of system they will produce code for and the `--build=TYPE' option to select the type of system on which you are compiling the package. Sharing Defaults ================ If you want to set default values for `configure' scripts to share, you can create a site shell script called `config.site' that gives default values for variables like `CC', `cache_file', and `prefix'. `configure' looks for `PREFIX/share/config.site' if it exists, then `PREFIX/etc/config.site' if it exists. Or, you can set the `CONFIG_SITE' environment variable to the location of the site script. A warning: not all `configure' scripts look for a site script. Operation Controls ================== `configure' recognizes the following options to control how it operates. `--cache-file=FILE' Use and save the results of the tests in FILE instead of `./config.cache'. Set FILE to `/dev/null' to disable caching, for debugging `configure'. `--help' Print a summary of the options to `configure', and exit. `--quiet' `--silent' `-q' Do not print messages saying which checks are being made. To suppress all normal output, redirect it to `/dev/null' (any error messages will still be shown). `--srcdir=DIR' Look for the package's source code in directory DIR. Usually `configure' can determine that directory automatically. `--version' Print the version of Autoconf used to generate the `configure' script, and exit. `configure' also accepts some other, not widely useful, options. gwave2-20170109/aclocal.m40000644001226200000360000015457313034762301011745 00000000000000# generated automatically by aclocal 1.11.1 -*- Autoconf -*- # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, # 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc. # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.63],, [m4_warning([this file was generated for autoconf 2.63. You have another version of autoconf. It may work, but is not guaranteed to. If you have problems, you may need to regenerate the build system entirely. To do so, use the procedure documented by the package, typically `autoreconf'.])]) # Configure paths for GTK+ # Owen Taylor 1997-2001 dnl AM_PATH_GTK_2_0([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND [, MODULES]]]]) dnl Test for GTK+, and define GTK_CFLAGS and GTK_LIBS, if gthread is specified in MODULES, dnl pass to pkg-config dnl AC_DEFUN([AM_PATH_GTK_2_0], [dnl dnl Get the cflags and libraries from pkg-config dnl AC_ARG_ENABLE(gtktest, [ --disable-gtktest do not try to compile and run a test GTK+ program], , enable_gtktest=yes) pkg_config_args=gtk+-2.0 for module in . $4 do case "$module" in gthread) pkg_config_args="$pkg_config_args gthread-2.0" ;; esac done no_gtk="" AC_PATH_PROG(PKG_CONFIG, pkg-config, no) if test x$PKG_CONFIG != xno ; then if pkg-config --atleast-pkgconfig-version 0.7 ; then : else echo "*** pkg-config too old; version 0.7 or better required." no_gtk=yes PKG_CONFIG=no fi else no_gtk=yes fi min_gtk_version=ifelse([$1], ,2.0.0,$1) AC_MSG_CHECKING(for GTK+ - version >= $min_gtk_version) if test x$PKG_CONFIG != xno ; then ## don't try to run the test against uninstalled libtool libs if $PKG_CONFIG --uninstalled $pkg_config_args; then echo "Will use uninstalled version of GTK+ found in PKG_CONFIG_PATH" enable_gtktest=no fi if $PKG_CONFIG --atleast-version $min_gtk_version $pkg_config_args; then : else no_gtk=yes fi fi if test x"$no_gtk" = x ; then GTK_CFLAGS=`$PKG_CONFIG $pkg_config_args --cflags` GTK_LIBS=`$PKG_CONFIG $pkg_config_args --libs` gtk_config_major_version=`$PKG_CONFIG --modversion gtk+-2.0 | \ sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'` gtk_config_minor_version=`$PKG_CONFIG --modversion gtk+-2.0 | \ sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'` gtk_config_micro_version=`$PKG_CONFIG --modversion gtk+-2.0 | \ sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'` if test "x$enable_gtktest" = "xyes" ; then ac_save_CFLAGS="$CFLAGS" ac_save_LIBS="$LIBS" CFLAGS="$CFLAGS $GTK_CFLAGS" LIBS="$GTK_LIBS $LIBS" dnl dnl Now check if the installed GTK+ is sufficiently new. (Also sanity dnl checks the results of pkg-config to some extent) dnl rm -f conf.gtktest AC_TRY_RUN([ #include #include #include int main () { int major, minor, micro; char *tmp_version; fclose (fopen ("conf.gtktest", "w")); /* HP/UX 9 (%@#!) writes to sscanf strings */ tmp_version = g_strdup("$min_gtk_version"); if (sscanf(tmp_version, "%d.%d.%d", &major, &minor, µ) != 3) { printf("%s, bad version string\n", "$min_gtk_version"); exit(1); } if ((gtk_major_version != $gtk_config_major_version) || (gtk_minor_version != $gtk_config_minor_version) || (gtk_micro_version != $gtk_config_micro_version)) { printf("\n*** 'pkg-config --modversion gtk+-2.0' returned %d.%d.%d, but GTK+ (%d.%d.%d)\n", $gtk_config_major_version, $gtk_config_minor_version, $gtk_config_micro_version, gtk_major_version, gtk_minor_version, gtk_micro_version); printf ("*** was found! If pkg-config was correct, then it is best\n"); printf ("*** to remove the old version of GTK+. You may also be able to fix the error\n"); printf("*** by modifying your LD_LIBRARY_PATH enviroment variable, or by editing\n"); printf("*** /etc/ld.so.conf. Make sure you have run ldconfig if that is\n"); printf("*** required on your system.\n"); printf("*** If pkg-config was wrong, set the environment variable PKG_CONFIG_PATH\n"); printf("*** to point to the correct configuration files\n"); } else if ((gtk_major_version != GTK_MAJOR_VERSION) || (gtk_minor_version != GTK_MINOR_VERSION) || (gtk_micro_version != GTK_MICRO_VERSION)) { printf("*** GTK+ header files (version %d.%d.%d) do not match\n", GTK_MAJOR_VERSION, GTK_MINOR_VERSION, GTK_MICRO_VERSION); printf("*** library (version %d.%d.%d)\n", gtk_major_version, gtk_minor_version, gtk_micro_version); } else { if ((gtk_major_version > major) || ((gtk_major_version == major) && (gtk_minor_version > minor)) || ((gtk_major_version == major) && (gtk_minor_version == minor) && (gtk_micro_version >= micro))) { return 0; } else { printf("\n*** An old version of GTK+ (%d.%d.%d) was found.\n", gtk_major_version, gtk_minor_version, gtk_micro_version); printf("*** You need a version of GTK+ newer than %d.%d.%d. The latest version of\n", major, minor, micro); printf("*** GTK+ is always available from ftp://ftp.gtk.org.\n"); printf("***\n"); printf("*** If you have already installed a sufficiently new version, this error\n"); printf("*** probably means that the wrong copy of the pkg-config shell script is\n"); printf("*** being found. The easiest way to fix this is to remove the old version\n"); printf("*** of GTK+, but you can also set the PKG_CONFIG environment to point to the\n"); printf("*** correct copy of pkg-config. (In this case, you will have to\n"); printf("*** modify your LD_LIBRARY_PATH enviroment variable, or edit /etc/ld.so.conf\n"); printf("*** so that the correct libraries are found at run-time))\n"); } } return 1; } ],, no_gtk=yes,[echo $ac_n "cross compiling; assumed OK... $ac_c"]) CFLAGS="$ac_save_CFLAGS" LIBS="$ac_save_LIBS" fi fi if test "x$no_gtk" = x ; then AC_MSG_RESULT(yes (version $gtk_config_major_version.$gtk_config_minor_version.$gtk_config_micro_version)) ifelse([$2], , :, [$2]) else AC_MSG_RESULT(no) if test "$PKG_CONFIG" = "no" ; then echo "*** A new enough version of pkg-config was not found." echo "*** See http://pkgconfig.sourceforge.net" else if test -f conf.gtktest ; then : else echo "*** Could not run GTK+ test program, checking why..." ac_save_CFLAGS="$CFLAGS" ac_save_LIBS="$LIBS" CFLAGS="$CFLAGS $GTK_CFLAGS" LIBS="$LIBS $GTK_LIBS" AC_TRY_LINK([ #include #include ], [ return ((gtk_major_version) || (gtk_minor_version) || (gtk_micro_version)); ], [ echo "*** The test program compiled, but did not run. This usually means" echo "*** that the run-time linker is not finding GTK+ or finding the wrong" echo "*** version of GTK+. If it is not finding GTK+, you'll need to set your" echo "*** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf to point" echo "*** to the installed location Also, make sure you have run ldconfig if that" echo "*** is required on your system" echo "***" echo "*** If you have an old version installed, it is best to remove it, although" echo "*** you may also be able to get things to work by modifying LD_LIBRARY_PATH" ], [ echo "*** The test program failed to compile or link. See the file config.log for the" echo "*** exact error that occured. This usually means GTK+ is incorrectly installed."]) CFLAGS="$ac_save_CFLAGS" LIBS="$ac_save_LIBS" fi fi GTK_CFLAGS="" GTK_LIBS="" ifelse([$3], , :, [$3]) fi AC_SUBST(GTK_CFLAGS) AC_SUBST(GTK_LIBS) rm -f conf.gtktest ]) # GUILE_PROGS -- set paths to Guile interpreter, config and tool programs # # Usage: GUILE_PROGS # # This macro looks for programs @code{guile}, @code{guile-config} and # @code{guile-tools}, and sets variables @var{GUILE}, @var{GUILE_CONFIG} and # @var{GUILE_TOOLS}, to their paths, respectively. If either of the first two # is not found, signal error. # # The variables are marked for substitution, as by @code{AC_SUBST}. # AC_DEFUN([GUILE_PROGS], [AC_PATH_PROG(GUILE,guile) if test "$GUILE" = "" ; then AC_MSG_ERROR([guile required but not found]) fi AC_SUBST(GUILE) AC_PATH_PROG(GUILE_CONFIG,guile-config) if test "$GUILE_CONFIG" = "" ; then AC_MSG_ERROR([guile-config required but not found]) fi AC_SUBST(GUILE_CONFIG) AC_PATH_PROG(GUILE_TOOLS,guile-tools) AC_SUBST(GUILE_TOOLS) ]) # GUILE_FLAGS -- set flags for compiling and linking with Guile # # Usage: GUILE_FLAGS # # This macro runs the @code{guile-config} script, installed with Guile, to # find out where Guile's header files and libraries are installed. It sets # two variables, @var{GUILE_CFLAGS} and @var{GUILE_LDFLAGS}. # # @var{GUILE_CFLAGS}: flags to pass to a C or C++ compiler to build code that # uses Guile header files. This is almost always just a @code{-I} flag. # # @var{GUILE_LDFLAGS}: flags to pass to the linker to link a program against # Guile. This includes @code{-lguile} for the Guile library itself, any # libraries that Guile itself requires (like -lqthreads), and so on. It may # also include a @code{-L} flag to tell the compiler where to find the # libraries. # # The variables are marked for substitution, as by @code{AC_SUBST}. # AC_DEFUN([GUILE_FLAGS], [AC_REQUIRE([GUILE_PROGS])dnl AC_MSG_CHECKING([libguile compile flags]) GUILE_CFLAGS="`$GUILE_CONFIG compile`" AC_MSG_RESULT([$GUILE_CFLAGS]) AC_MSG_CHECKING([libguile link flags]) GUILE_LDFLAGS="`$GUILE_CONFIG link`" AC_MSG_RESULT([$GUILE_LDFLAGS]) AC_SUBST(GUILE_CFLAGS) AC_SUBST(GUILE_LDFLAGS) ]) # GUILE_SITE_DIR -- find path to Guile "site" directory # # Usage: GUILE_SITE_DIR # # This looks for Guile's "site" directory, usually something like # PREFIX/share/guile/site, and sets var @var{GUILE_SITE} to the path. # Note that the var name is different from the macro name. # # The variable is marked for substitution, as by @code{AC_SUBST}. # AC_DEFUN([GUILE_SITE_DIR], [AC_REQUIRE([GUILE_PROGS])dnl AC_MSG_CHECKING(for Guile site directory) GUILE_SITE=`[$GUILE_CONFIG] info pkgdatadir`/site AC_MSG_RESULT($GUILE_SITE) AC_SUBST(GUILE_SITE) ]) # GUILE_CHECK -- evaluate Guile Scheme code and capture the return value # # Usage: GUILE_CHECK_RETVAL(var,check) # # @var{var} is a shell variable name to be set to the return value. # @var{check} is a Guile Scheme expression, evaluated with "$GUILE -c", and # returning either 0 or non-#f to indicate the check passed. # Non-0 number or #f indicates failure. # Avoid using the character "#" since that confuses autoconf. # AC_DEFUN([GUILE_CHECK], [AC_REQUIRE([GUILE_PROGS]) $GUILE -c "$2" > /dev/null 2>&1 $1=$? ]) # GUILE_MODULE_CHECK -- check feature of a Guile Scheme module # # Usage: GUILE_MODULE_CHECK(var,module,featuretest,description) # # @var{var} is a shell variable name to be set to "yes" or "no". # @var{module} is a list of symbols, like: (ice-9 common-list). # @var{featuretest} is an expression acceptable to GUILE_CHECK, q.v. # @var{description} is a present-tense verb phrase (passed to AC_MSG_CHECKING). # AC_DEFUN([GUILE_MODULE_CHECK], [AC_MSG_CHECKING([if $2 $4]) GUILE_CHECK($1,(use-modules $2) (exit ((lambda () $3)))) if test "$$1" = "0" ; then $1=yes ; else $1=no ; fi AC_MSG_RESULT($$1) ]) # GUILE_MODULE_AVAILABLE -- check availability of a Guile Scheme module # # Usage: GUILE_MODULE_AVAILABLE(var,module) # # @var{var} is a shell variable name to be set to "yes" or "no". # @var{module} is a list of symbols, like: (ice-9 common-list). # AC_DEFUN([GUILE_MODULE_AVAILABLE], [GUILE_MODULE_CHECK($1,$2,0,is available) ]) # GUILE_MODULE_REQUIRED -- fail if a Guile Scheme module is unavailable # # Usage: GUILE_MODULE_REQUIRED(symlist) # # @var{symlist} is a list of symbols, WITHOUT surrounding parens, # like: ice-9 common-list. # AC_DEFUN([GUILE_MODULE_REQUIRED], [GUILE_MODULE_AVAILABLE(ac_guile_module_required, ($1)) if test "$ac_guile_module_required" = "no" ; then AC_MSG_ERROR([required guile module not found: ($1)]) fi ]) # GUILE_MODULE_EXPORTS -- check if a module exports a variable # # Usage: GUILE_MODULE_EXPORTS(var,module,modvar) # # @var{var} is a shell variable to be set to "yes" or "no". # @var{module} is a list of symbols, like: (ice-9 common-list). # @var{modvar} is the Guile Scheme variable to check. # AC_DEFUN([GUILE_MODULE_EXPORTS], [GUILE_MODULE_CHECK($1,$2,$3,exports `$3') ]) # GUILE_MODULE_REQUIRED_EXPORT -- fail if a module doesn't export a variable # # Usage: GUILE_MODULE_REQUIRED_EXPORT(module,modvar) # # @var{module} is a list of symbols, like: (ice-9 common-list). # @var{modvar} is the Guile Scheme variable to check. # AC_DEFUN([GUILE_MODULE_REQUIRED_EXPORT], [GUILE_MODULE_EXPORTS(guile_module_required_export,$1,$2) if test "$guile_module_required_export" = "no" ; then AC_MSG_ERROR([module $1 does not export $2; required]) fi ]) # pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*- # # Copyright © 2004 Scott James Remnant . # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # PKG_PROG_PKG_CONFIG([MIN-VERSION]) # ---------------------------------- AC_DEFUN([PKG_PROG_PKG_CONFIG], [m4_pattern_forbid([^_?PKG_[A-Z_]+$]) m4_pattern_allow([^PKG_CONFIG(_PATH)?$]) AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility])dnl if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then AC_PATH_TOOL([PKG_CONFIG], [pkg-config]) fi if test -n "$PKG_CONFIG"; then _pkg_min_version=m4_default([$1], [0.9.0]) AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version]) if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) PKG_CONFIG="" fi fi[]dnl ])# PKG_PROG_PKG_CONFIG # PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) # # Check to see whether a particular set of modules exists. Similar # to PKG_CHECK_MODULES(), but does not set variables or print errors. # # # Similar to PKG_CHECK_MODULES, make sure that the first instance of # this or PKG_CHECK_MODULES is called, or make sure to call # PKG_CHECK_EXISTS manually # -------------------------------------------------------------- AC_DEFUN([PKG_CHECK_EXISTS], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl if test -n "$PKG_CONFIG" && \ AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then m4_ifval([$2], [$2], [:]) m4_ifvaln([$3], [else $3])dnl fi]) # _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES]) # --------------------------------------------- m4_define([_PKG_CONFIG], [if test -n "$$1"; then pkg_cv_[]$1="$$1" elif test -n "$PKG_CONFIG"; then PKG_CHECK_EXISTS([$3], [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`], [pkg_failed=yes]) else pkg_failed=untried fi[]dnl ])# _PKG_CONFIG # _PKG_SHORT_ERRORS_SUPPORTED # ----------------------------- AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED], [AC_REQUIRE([PKG_PROG_PKG_CONFIG]) if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi[]dnl ])# _PKG_SHORT_ERRORS_SUPPORTED # PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND], # [ACTION-IF-NOT-FOUND]) # # # Note that if there is a possibility the first call to # PKG_CHECK_MODULES might not happen, you should be sure to include an # explicit call to PKG_PROG_PKG_CONFIG in your configure.ac # # # -------------------------------------------------------------- AC_DEFUN([PKG_CHECK_MODULES], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl pkg_failed=no AC_MSG_CHECKING([for $1]) _PKG_CONFIG([$1][_CFLAGS], [cflags], [$2]) _PKG_CONFIG([$1][_LIBS], [libs], [$2]) m4_define([_PKG_TEXT], [Alternatively, you may set the environment variables $1[]_CFLAGS and $1[]_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details.]) if test $pkg_failed = yes; then _PKG_SHORT_ERRORS_SUPPORTED if test $_pkg_short_errors_supported = yes; then $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "$2" 2>&1` else $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors "$2" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD ifelse([$4], , [AC_MSG_ERROR(dnl [Package requirements ($2) were not met: $$1_PKG_ERRORS Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. _PKG_TEXT ])], [AC_MSG_RESULT([no]) $4]) elif test $pkg_failed = untried; then ifelse([$4], , [AC_MSG_FAILURE(dnl [The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. _PKG_TEXT To get pkg-config, see .])], [$4]) else $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS $1[]_LIBS=$pkg_cv_[]$1[]_LIBS AC_MSG_RESULT([yes]) ifelse([$3], , :, [$3]) fi[]dnl ])# PKG_CHECK_MODULES # Copyright (C) 2002, 2003, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_AUTOMAKE_VERSION(VERSION) # ---------------------------- # Automake X.Y traces this macro to ensure aclocal.m4 has been # generated from the m4 files accompanying Automake X.Y. # (This private macro should not be called outside this file.) AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version='1.11' dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to dnl require some minimum version. Point them to the right macro. m4_if([$1], [1.11.1], [], [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl ]) # _AM_AUTOCONF_VERSION(VERSION) # ----------------------------- # aclocal traces this macro to find the Autoconf version. # This is a private macro too. Using m4_define simplifies # the logic in aclocal, which can simply ignore this definition. m4_define([_AM_AUTOCONF_VERSION], []) # AM_SET_CURRENT_AUTOMAKE_VERSION # ------------------------------- # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced. # This function is AC_REQUIREd by AM_INIT_AUTOMAKE. AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], [AM_AUTOMAKE_VERSION([1.11.1])dnl m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) # AM_AUX_DIR_EXPAND -*- Autoconf -*- # Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets # $ac_aux_dir to `$srcdir/foo'. In other projects, it is set to # `$srcdir', `$srcdir/..', or `$srcdir/../..'. # # Of course, Automake must honor this variable whenever it calls a # tool from the auxiliary directory. The problem is that $srcdir (and # therefore $ac_aux_dir as well) can be either absolute or relative, # depending on how configure is run. This is pretty annoying, since # it makes $ac_aux_dir quite unusable in subdirectories: in the top # source directory, any form will work fine, but in subdirectories a # relative path needs to be adjusted first. # # $ac_aux_dir/missing # fails when called from a subdirectory if $ac_aux_dir is relative # $top_srcdir/$ac_aux_dir/missing # fails if $ac_aux_dir is absolute, # fails when called from a subdirectory in a VPATH build with # a relative $ac_aux_dir # # The reason of the latter failure is that $top_srcdir and $ac_aux_dir # are both prefixed by $srcdir. In an in-source build this is usually # harmless because $srcdir is `.', but things will broke when you # start a VPATH build or use an absolute $srcdir. # # So we could use something similar to $top_srcdir/$ac_aux_dir/missing, # iff we strip the leading $srcdir from $ac_aux_dir. That would be: # am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"` # and then we would define $MISSING as # MISSING="\${SHELL} $am_aux_dir/missing" # This will work as long as MISSING is not called from configure, because # unfortunately $(top_srcdir) has no meaning in configure. # However there are other variables, like CC, which are often used in # configure, and could therefore not use this "fixed" $ac_aux_dir. # # Another solution, used here, is to always expand $ac_aux_dir to an # absolute PATH. The drawback is that using absolute paths prevent a # configured tree to be moved without reconfiguration. AC_DEFUN([AM_AUX_DIR_EXPAND], [dnl Rely on autoconf to set up CDPATH properly. AC_PREREQ([2.50])dnl # expand $ac_aux_dir to an absolute path am_aux_dir=`cd $ac_aux_dir && pwd` ]) # Copyright (C) 1996, 1997, 1999, 2000, 2001, 2002, 2003, 2005 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 4 # This was merged into AC_PROG_CC in Autoconf. AU_DEFUN([AM_PROG_CC_STDC], [AC_PROG_CC AC_DIAGNOSE([obsolete], [$0: your code should no longer depend upon `am_cv_prog_cc_stdc', but upon `ac_cv_prog_cc_stdc'. Remove this warning and the assignment when you adjust the code. You can also remove the above call to AC_PROG_CC if you already called it elsewhere.]) am_cv_prog_cc_stdc=$ac_cv_prog_cc_stdc ]) AU_DEFUN([fp_PROG_CC_STDC]) # AM_CONDITIONAL -*- Autoconf -*- # Copyright (C) 1997, 2000, 2001, 2003, 2004, 2005, 2006, 2008 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 9 # AM_CONDITIONAL(NAME, SHELL-CONDITION) # ------------------------------------- # Define a conditional. AC_DEFUN([AM_CONDITIONAL], [AC_PREREQ(2.52)dnl ifelse([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl AC_SUBST([$1_TRUE])dnl AC_SUBST([$1_FALSE])dnl _AM_SUBST_NOTMAKE([$1_TRUE])dnl _AM_SUBST_NOTMAKE([$1_FALSE])dnl m4_define([_AM_COND_VALUE_$1], [$2])dnl if $2; then $1_TRUE= $1_FALSE='#' else $1_TRUE='#' $1_FALSE= fi AC_CONFIG_COMMANDS_PRE( [if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then AC_MSG_ERROR([[conditional "$1" was never defined. Usually this means the macro was only invoked conditionally.]]) fi])]) # Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2009 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 10 # There are a few dirty hacks below to avoid letting `AC_PROG_CC' be # written in clear, in which case automake, when reading aclocal.m4, # will think it sees a *use*, and therefore will trigger all it's # C support machinery. Also note that it means that autoscan, seeing # CC etc. in the Makefile, will ask for an AC_PROG_CC use... # _AM_DEPENDENCIES(NAME) # ---------------------- # See how the compiler implements dependency checking. # NAME is "CC", "CXX", "GCJ", or "OBJC". # We try a few techniques and use that to set a single cache variable. # # We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was # modified to invoke _AM_DEPENDENCIES(CC); we would have a circular # dependency, and given that the user is not expected to run this macro, # just rely on AC_PROG_CC. AC_DEFUN([_AM_DEPENDENCIES], [AC_REQUIRE([AM_SET_DEPDIR])dnl AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl AC_REQUIRE([AM_MAKE_INCLUDE])dnl AC_REQUIRE([AM_DEP_TRACK])dnl ifelse([$1], CC, [depcc="$CC" am_compiler_list=], [$1], CXX, [depcc="$CXX" am_compiler_list=], [$1], OBJC, [depcc="$OBJC" am_compiler_list='gcc3 gcc'], [$1], UPC, [depcc="$UPC" am_compiler_list=], [$1], GCJ, [depcc="$GCJ" am_compiler_list='gcc3 gcc'], [depcc="$$1" am_compiler_list=]) AC_CACHE_CHECK([dependency style of $depcc], [am_cv_$1_dependencies_compiler_type], [if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named `D' -- because `-MD' means `put the output # in D'. mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_$1_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp` fi am__universal=false m4_case([$1], [CC], [case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac], [CXX], [case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac]) for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with # Solaris 8's {/usr,}/bin/sh. touch sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf # We check with `-c' and `-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle `-M -o', and we need to detect this. Also, some Intel # versions had trouble with output in subdirs am__obj=sub/conftest.${OBJEXT-o} am__minus_obj="-o $am__obj" case $depmode in gcc) # This depmode causes a compiler race in universal mode. test "$am__universal" = false || continue ;; nosideeffect) # after this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; msvisualcpp | msvcmsys) # This compiler won't grok `-c -o', but also, the minuso test has # not run yet. These depmodes are late enough in the game, and # so weak that their functioning should not be impacted. am__obj=conftest.${OBJEXT-o} am__minus_obj= ;; none) break ;; esac if depmode=$depmode \ source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_$1_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_$1_dependencies_compiler_type=none fi ]) AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type]) AM_CONDITIONAL([am__fastdep$1], [ test "x$enable_dependency_tracking" != xno \ && test "$am_cv_$1_dependencies_compiler_type" = gcc3]) ]) # AM_SET_DEPDIR # ------------- # Choose a directory name for dependency files. # This macro is AC_REQUIREd in _AM_DEPENDENCIES AC_DEFUN([AM_SET_DEPDIR], [AC_REQUIRE([AM_SET_LEADING_DOT])dnl AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl ]) # AM_DEP_TRACK # ------------ AC_DEFUN([AM_DEP_TRACK], [AC_ARG_ENABLE(dependency-tracking, [ --disable-dependency-tracking speeds up one-time build --enable-dependency-tracking do not reject slow dependency extractors]) if test "x$enable_dependency_tracking" != xno; then am_depcomp="$ac_aux_dir/depcomp" AMDEPBACKSLASH='\' fi AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno]) AC_SUBST([AMDEPBACKSLASH])dnl _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl ]) # Generate code to set up dependency tracking. -*- Autoconf -*- # Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2008 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. #serial 5 # _AM_OUTPUT_DEPENDENCY_COMMANDS # ------------------------------ AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], [{ # Autoconf 2.62 quotes --file arguments for eval, but not when files # are listed without --file. Let's play safe and only enable the eval # if we detect the quoting. case $CONFIG_FILES in *\'*) eval set x "$CONFIG_FILES" ;; *) set x $CONFIG_FILES ;; esac shift for mf do # Strip MF so we end up with the name of the file. mf=`echo "$mf" | sed -e 's/:.*$//'` # Check whether this is an Automake generated Makefile or not. # We used to match only the files named `Makefile.in', but # some people rename them; so instead we look at the file content. # Grep'ing the first line is not enough: some people post-process # each Makefile.in and add a new line on top of each file to say so. # Grep'ing the whole file is not good either: AIX grep has a line # limit of 2048, but all sed's we know have understand at least 4000. if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then dirpart=`AS_DIRNAME("$mf")` else continue fi # Extract the definition of DEPDIR, am__include, and am__quote # from the Makefile without running `make'. DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` test -z "$DEPDIR" && continue am__include=`sed -n 's/^am__include = //p' < "$mf"` test -z "am__include" && continue am__quote=`sed -n 's/^am__quote = //p' < "$mf"` # When using ansi2knr, U may be empty or an underscore; expand it U=`sed -n 's/^U = //p' < "$mf"` # Find all dependency output files, they are included files with # $(DEPDIR) in their names. We invoke sed twice because it is the # simplest approach to changing $(DEPDIR) to its actual value in the # expansion. for file in `sed -n " s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do # Make sure the directory exists. test -f "$dirpart/$file" && continue fdir=`AS_DIRNAME(["$file"])` AS_MKDIR_P([$dirpart/$fdir]) # echo "creating $dirpart/$file" echo '# dummy' > "$dirpart/$file" done done } ])# _AM_OUTPUT_DEPENDENCY_COMMANDS # AM_OUTPUT_DEPENDENCY_COMMANDS # ----------------------------- # This macro should only be invoked once -- use via AC_REQUIRE. # # This code is only required when automatic dependency tracking # is enabled. FIXME. This creates each `.P' file that we will # need in order to bootstrap the dependency handling code. AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], [AC_CONFIG_COMMANDS([depfiles], [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS], [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"]) ]) # Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 8 # AM_CONFIG_HEADER is obsolete. It has been replaced by AC_CONFIG_HEADERS. AU_DEFUN([AM_CONFIG_HEADER], [AC_CONFIG_HEADERS($@)]) # Do all the work for Automake. -*- Autoconf -*- # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, # 2005, 2006, 2008, 2009 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 16 # This macro actually does too much. Some checks are only needed if # your package does certain things. But this isn't really a big deal. # AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE]) # AM_INIT_AUTOMAKE([OPTIONS]) # ----------------------------------------------- # The call with PACKAGE and VERSION arguments is the old style # call (pre autoconf-2.50), which is being phased out. PACKAGE # and VERSION should now be passed to AC_INIT and removed from # the call to AM_INIT_AUTOMAKE. # We support both call styles for the transition. After # the next Automake release, Autoconf can make the AC_INIT # arguments mandatory, and then we can depend on a new Autoconf # release and drop the old call support. AC_DEFUN([AM_INIT_AUTOMAKE], [AC_PREREQ([2.62])dnl dnl Autoconf wants to disallow AM_ names. We explicitly allow dnl the ones we care about. m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl AC_REQUIRE([AC_PROG_INSTALL])dnl if test "`cd $srcdir && pwd`" != "`pwd`"; then # Use -I$(srcdir) only when $(srcdir) != ., so that make's output # is not polluted with repeated "-I." AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl # test to see if srcdir already configured if test -f $srcdir/config.status; then AC_MSG_ERROR([source directory already configured; run "make distclean" there first]) fi fi # test whether we have cygpath if test -z "$CYGPATH_W"; then if (cygpath --version) >/dev/null 2>/dev/null; then CYGPATH_W='cygpath -w' else CYGPATH_W=echo fi fi AC_SUBST([CYGPATH_W]) # Define the identity of the package. dnl Distinguish between old-style and new-style calls. m4_ifval([$2], [m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl AC_SUBST([PACKAGE], [$1])dnl AC_SUBST([VERSION], [$2])], [_AM_SET_OPTIONS([$1])dnl dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT. m4_if(m4_ifdef([AC_PACKAGE_NAME], 1)m4_ifdef([AC_PACKAGE_VERSION], 1), 11,, [m4_fatal([AC_INIT should be called with package and version arguments])])dnl AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl _AM_IF_OPTION([no-define],, [AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package]) AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])dnl # Some tools Automake needs. AC_REQUIRE([AM_SANITY_CHECK])dnl AC_REQUIRE([AC_ARG_PROGRAM])dnl AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version}) AM_MISSING_PROG(AUTOCONF, autoconf) AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version}) AM_MISSING_PROG(AUTOHEADER, autoheader) AM_MISSING_PROG(MAKEINFO, makeinfo) AC_REQUIRE([AM_PROG_INSTALL_SH])dnl AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl AC_REQUIRE([AM_PROG_MKDIR_P])dnl # We need awk for the "check" target. The system "awk" is bad on # some platforms. AC_REQUIRE([AC_PROG_AWK])dnl AC_REQUIRE([AC_PROG_MAKE_SET])dnl AC_REQUIRE([AM_SET_LEADING_DOT])dnl _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], [_AM_PROG_TAR([v7])])]) _AM_IF_OPTION([no-dependencies],, [AC_PROVIDE_IFELSE([AC_PROG_CC], [_AM_DEPENDENCIES(CC)], [define([AC_PROG_CC], defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl AC_PROVIDE_IFELSE([AC_PROG_CXX], [_AM_DEPENDENCIES(CXX)], [define([AC_PROG_CXX], defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl AC_PROVIDE_IFELSE([AC_PROG_OBJC], [_AM_DEPENDENCIES(OBJC)], [define([AC_PROG_OBJC], defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl ]) _AM_IF_OPTION([silent-rules], [AC_REQUIRE([AM_SILENT_RULES])])dnl dnl The `parallel-tests' driver may need to know about EXEEXT, so add the dnl `am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This macro dnl is hooked onto _AC_COMPILER_EXEEXT early, see below. AC_CONFIG_COMMANDS_PRE(dnl [m4_provide_if([_AM_COMPILER_EXEEXT], [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl ]) dnl Hook into `_AC_COMPILER_EXEEXT' early to learn its expansion. Do not dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further dnl mangled by Autoconf and run in a shell conditional statement. m4_define([_AC_COMPILER_EXEEXT], m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])]) # When config.status generates a header, we must update the stamp-h file. # This file resides in the same directory as the config header # that is generated. The stamp files are numbered to have different names. # Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the # loop where config.status creates the headers, so we can generate # our stamp files there. AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], [# Compute $1's index in $config_headers. _am_arg=$1 _am_stamp_count=1 for _am_header in $config_headers :; do case $_am_header in $_am_arg | $_am_arg:* ) break ;; * ) _am_stamp_count=`expr $_am_stamp_count + 1` ;; esac done echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count]) # Copyright (C) 2001, 2003, 2005, 2008 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_PROG_INSTALL_SH # ------------------ # Define $install_sh. AC_DEFUN([AM_PROG_INSTALL_SH], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl if test x"${install_sh}" != xset; then case $am_aux_dir in *\ * | *\ *) install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; *) install_sh="\${SHELL} $am_aux_dir/install-sh" esac fi AC_SUBST(install_sh)]) # Copyright (C) 2003, 2005 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 2 # Check whether the underlying file-system supports filenames # with a leading dot. For instance MS-DOS doesn't. AC_DEFUN([AM_SET_LEADING_DOT], [rm -rf .tst 2>/dev/null mkdir .tst 2>/dev/null if test -d .tst; then am__leading_dot=. else am__leading_dot=_ fi rmdir .tst 2>/dev/null AC_SUBST([am__leading_dot])]) # Add --enable-maintainer-mode option to configure. -*- Autoconf -*- # From Jim Meyering # Copyright (C) 1996, 1998, 2000, 2001, 2002, 2003, 2004, 2005, 2008 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 5 # AM_MAINTAINER_MODE([DEFAULT-MODE]) # ---------------------------------- # Control maintainer-specific portions of Makefiles. # Default is to disable them, unless `enable' is passed literally. # For symmetry, `disable' may be passed as well. Anyway, the user # can override the default with the --enable/--disable switch. AC_DEFUN([AM_MAINTAINER_MODE], [m4_case(m4_default([$1], [disable]), [enable], [m4_define([am_maintainer_other], [disable])], [disable], [m4_define([am_maintainer_other], [enable])], [m4_define([am_maintainer_other], [enable]) m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])]) AC_MSG_CHECKING([whether to am_maintainer_other maintainer-specific portions of Makefiles]) dnl maintainer-mode's default is 'disable' unless 'enable' is passed AC_ARG_ENABLE([maintainer-mode], [ --][am_maintainer_other][-maintainer-mode am_maintainer_other make rules and dependencies not useful (and sometimes confusing) to the casual installer], [USE_MAINTAINER_MODE=$enableval], [USE_MAINTAINER_MODE=]m4_if(am_maintainer_other, [enable], [no], [yes])) AC_MSG_RESULT([$USE_MAINTAINER_MODE]) AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes]) MAINT=$MAINTAINER_MODE_TRUE AC_SUBST([MAINT])dnl ] ) AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE]) # Check to see how 'make' treats includes. -*- Autoconf -*- # Copyright (C) 2001, 2002, 2003, 2005, 2009 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 4 # AM_MAKE_INCLUDE() # ----------------- # Check to see how make treats includes. AC_DEFUN([AM_MAKE_INCLUDE], [am_make=${MAKE-make} cat > confinc << 'END' am__doit: @echo this is the am__doit target .PHONY: am__doit END # If we don't find an include directive, just comment out the code. AC_MSG_CHECKING([for style of include used by $am_make]) am__include="#" am__quote= _am_result=none # First try GNU make style include. echo "include confinc" > confmf # Ignore all kinds of additional output from `make'. case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=include am__quote= _am_result=GNU ;; esac # Now try BSD make style include. if test "$am__include" = "#"; then echo '.include "confinc"' > confmf case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=.include am__quote="\"" _am_result=BSD ;; esac fi AC_SUBST([am__include]) AC_SUBST([am__quote]) AC_MSG_RESULT([$_am_result]) rm -f confinc confmf ]) # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- # Copyright (C) 1997, 1999, 2000, 2001, 2003, 2004, 2005, 2008 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 6 # AM_MISSING_PROG(NAME, PROGRAM) # ------------------------------ AC_DEFUN([AM_MISSING_PROG], [AC_REQUIRE([AM_MISSING_HAS_RUN]) $1=${$1-"${am_missing_run}$2"} AC_SUBST($1)]) # AM_MISSING_HAS_RUN # ------------------ # Define MISSING if not defined so far and test if it supports --run. # If it does, set am_missing_run to use it, otherwise, to nothing. AC_DEFUN([AM_MISSING_HAS_RUN], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl AC_REQUIRE_AUX_FILE([missing])dnl if test x"${MISSING+set}" != xset; then case $am_aux_dir in *\ * | *\ *) MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; *) MISSING="\${SHELL} $am_aux_dir/missing" ;; esac fi # Use eval to expand $SHELL if eval "$MISSING --run true"; then am_missing_run="$MISSING --run " else am_missing_run= AC_MSG_WARN([`missing' script is too old or missing]) fi ]) # Copyright (C) 2003, 2004, 2005, 2006 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_PROG_MKDIR_P # --------------- # Check for `mkdir -p'. AC_DEFUN([AM_PROG_MKDIR_P], [AC_PREREQ([2.60])dnl AC_REQUIRE([AC_PROG_MKDIR_P])dnl dnl Automake 1.8 to 1.9.6 used to define mkdir_p. We now use MKDIR_P, dnl while keeping a definition of mkdir_p for backward compatibility. dnl @MKDIR_P@ is magic: AC_OUTPUT adjusts its value for each Makefile. dnl However we cannot define mkdir_p as $(MKDIR_P) for the sake of dnl Makefile.ins that do not define MKDIR_P, so we do our own dnl adjustment using top_builddir (which is defined more often than dnl MKDIR_P). AC_SUBST([mkdir_p], ["$MKDIR_P"])dnl case $mkdir_p in [[\\/$]]* | ?:[[\\/]]*) ;; */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;; esac ]) # Helper functions for option handling. -*- Autoconf -*- # Copyright (C) 2001, 2002, 2003, 2005, 2008 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 4 # _AM_MANGLE_OPTION(NAME) # ----------------------- AC_DEFUN([_AM_MANGLE_OPTION], [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])]) # _AM_SET_OPTION(NAME) # ------------------------------ # Set option NAME. Presently that only means defining a flag for this option. AC_DEFUN([_AM_SET_OPTION], [m4_define(_AM_MANGLE_OPTION([$1]), 1)]) # _AM_SET_OPTIONS(OPTIONS) # ---------------------------------- # OPTIONS is a space-separated list of Automake options. AC_DEFUN([_AM_SET_OPTIONS], [m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])]) # _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET]) # ------------------------------------------- # Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. AC_DEFUN([_AM_IF_OPTION], [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])]) # Check to make sure that the build environment is sane. -*- Autoconf -*- # Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005, 2008 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 5 # AM_SANITY_CHECK # --------------- AC_DEFUN([AM_SANITY_CHECK], [AC_MSG_CHECKING([whether build environment is sane]) # Just in case sleep 1 echo timestamp > conftest.file # Reject unsafe characters in $srcdir or the absolute working directory # name. Accept space and tab only in the latter. am_lf=' ' case `pwd` in *[[\\\"\#\$\&\'\`$am_lf]]*) AC_MSG_ERROR([unsafe absolute working directory name]);; esac case $srcdir in *[[\\\"\#\$\&\'\`$am_lf\ \ ]]*) AC_MSG_ERROR([unsafe srcdir value: `$srcdir']);; esac # Do `set' in a subshell so we don't clobber the current shell's # arguments. Must try -L first in case configure is actually a # symlink; some systems play weird games with the mod time of symlinks # (eg FreeBSD returns the mod time of the symlink's containing # directory). if ( set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` if test "$[*]" = "X"; then # -L didn't work. set X `ls -t "$srcdir/configure" conftest.file` fi rm -f conftest.file if test "$[*]" != "X $srcdir/configure conftest.file" \ && test "$[*]" != "X conftest.file $srcdir/configure"; then # If neither matched, then we have a broken ls. This can happen # if, for instance, CONFIG_SHELL is bash and it inherits a # broken ls alias from the environment. This has actually # happened. Such a system could not be considered "sane". AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken alias in your environment]) fi test "$[2]" = conftest.file ) then # Ok. : else AC_MSG_ERROR([newly created file is older than distributed files! Check your system clock]) fi AC_MSG_RESULT(yes)]) # Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_PROG_INSTALL_STRIP # --------------------- # One issue with vendor `install' (even GNU) is that you can't # specify the program used to strip binaries. This is especially # annoying in cross-compiling environments, where the build's strip # is unlikely to handle the host's binaries. # Fortunately install-sh will honor a STRIPPROG variable, so we # always use install-sh in `make install-strip', and initialize # STRIPPROG with the value of the STRIP variable (set by the user). AC_DEFUN([AM_PROG_INSTALL_STRIP], [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl # Installed binaries are usually stripped using `strip' when the user # run `make install-strip'. However `strip' might not be the right # tool to use in cross-compilation environments, therefore Automake # will honor the `STRIP' environment variable to overrule this program. dnl Don't test for $cross_compiling = yes, because it might be `maybe'. if test "$cross_compiling" != no; then AC_CHECK_TOOL([STRIP], [strip], :) fi INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" AC_SUBST([INSTALL_STRIP_PROGRAM])]) # Copyright (C) 2006, 2008 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 2 # _AM_SUBST_NOTMAKE(VARIABLE) # --------------------------- # Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in. # This macro is traced by Automake. AC_DEFUN([_AM_SUBST_NOTMAKE]) # AM_SUBST_NOTMAKE(VARIABLE) # --------------------------- # Public sister of _AM_SUBST_NOTMAKE. AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)]) # Check how to create a tarball. -*- Autoconf -*- # Copyright (C) 2004, 2005 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 2 # _AM_PROG_TAR(FORMAT) # -------------------- # Check how to create a tarball in format FORMAT. # FORMAT should be one of `v7', `ustar', or `pax'. # # Substitute a variable $(am__tar) that is a command # writing to stdout a FORMAT-tarball containing the directory # $tardir. # tardir=directory && $(am__tar) > result.tar # # Substitute a variable $(am__untar) that extract such # a tarball read from stdin. # $(am__untar) < result.tar AC_DEFUN([_AM_PROG_TAR], [# Always define AMTAR for backward compatibility. AM_MISSING_PROG([AMTAR], [tar]) m4_if([$1], [v7], [am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'], [m4_case([$1], [ustar],, [pax],, [m4_fatal([Unknown tar format])]) AC_MSG_CHECKING([how to create a $1 tar archive]) # Loop over all known methods to create a tar archive until one works. _am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none' _am_tools=${am_cv_prog_tar_$1-$_am_tools} # Do not fold the above two line into one, because Tru64 sh and # Solaris sh will not grok spaces in the rhs of `-'. for _am_tool in $_am_tools do case $_am_tool in gnutar) for _am_tar in tar gnutar gtar; do AM_RUN_LOG([$_am_tar --version]) && break done am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"' am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"' am__untar="$_am_tar -xf -" ;; plaintar) # Must skip GNU tar: if it does not support --format= it doesn't create # ustar tarball either. (tar --version) >/dev/null 2>&1 && continue am__tar='tar chf - "$$tardir"' am__tar_='tar chf - "$tardir"' am__untar='tar xf -' ;; pax) am__tar='pax -L -x $1 -w "$$tardir"' am__tar_='pax -L -x $1 -w "$tardir"' am__untar='pax -r' ;; cpio) am__tar='find "$$tardir" -print | cpio -o -H $1 -L' am__tar_='find "$tardir" -print | cpio -o -H $1 -L' am__untar='cpio -i -H $1 -d' ;; none) am__tar=false am__tar_=false am__untar=false ;; esac # If the value was cached, stop now. We just wanted to have am__tar # and am__untar set. test -n "${am_cv_prog_tar_$1}" && break # tar/untar a dummy directory, and stop if the command works rm -rf conftest.dir mkdir conftest.dir echo GrepMe > conftest.dir/file AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar]) rm -rf conftest.dir if test -s conftest.tar; then AM_RUN_LOG([$am__untar /dev/null 2>&1 && break fi done rm -rf conftest.dir AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool]) AC_MSG_RESULT([$am_cv_prog_tar_$1])]) AC_SUBST([am__tar]) AC_SUBST([am__untar]) ]) # _AM_PROG_TAR m4_include([acinclude.m4]) gwave2-20170109/spicefile/0000755001226200000360000000000013034766134012121 500000000000000gwave2-20170109/spicefile/ss_cazm.c0000644001226200000360000001421613007135134013636 00000000000000/* * ss_cazm.c: CAZM- and ASCII- format routines for SpiceStream * * Copyright (C) 1998,1999 Stephen G. Tell * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * * * CAzM and "ascii" format are closely related, so they are both handled * in this file. * * CAzM format is intended to handles files written by MCNC's CAzM simulator, * used by a number of universities, and its commercial decendant, * the TSPICE product from Tanner Research. * * CAzM-format files contain a multiline header. The second to last line * of the header identifies the analysis type, for example TRANSIENT or AC. * The last line of the header contains the names of the variables, seperated * by whitespace. * * Ascii-format files have a one-line header, containing a space- or * tab-speperated list of the variable names. To avoid treating a file * containing random binary garbage as an ascii-format file, we require the * header line to contain space, tab, and USASCII printable characters only. * */ #define _FILE_OFFSET_BITS 64 #include #include #include #include #include #include #include #include "spicestream.h" static int sf_readrow_ascii(SpiceStream *sf, double *ivar, double *dvars); static SpiceStream *ascii_process_header(char *line, VarType ivtype, char *fname, int lineno); /* Read spice-type file header - cazm format */ SpiceStream * sf_rdhdr_cazm(char *name, FILE *fp) { SpiceStream *sf; char *line = NULL; int lineno = 0; int linesize = 1024; int done = 0; VarType ivtype; while(!done) { if((fread_line(fp, &line, &linesize) == EOF) || lineno > 30) { g_free(line); return NULL; } lineno++; /* "section header" line */ if(strncmp(line, "TRANSIENT", 9) == 0) { ivtype = TIME; done = 1; } else if(strncmp(line, "AC ANALYSIS", 11) == 0) { ivtype = FREQUENCY; done = 1; } else if(strncmp(line, "TRANSFER", 8) == 0) { /* DC transfer function - ivar might also be current, * but we can't tell */ ivtype = VOLTAGE; done = 1; } } /* line after header contains signal names * first one is assumed to be the independent variable. */ if(fread_line(fp, &line, &linesize) == EOF) { g_free(line); return NULL; } lineno++; sf = ascii_process_header(line, ivtype, name, lineno); if(!sf) goto fail; sf->fp = fp; sf->lineno = lineno; sf->linebuf = line; sf->lbufsize = linesize; return sf; fail: if(line) g_free(line); return NULL; } /* Read spice-type file header - ascii format */ SpiceStream * sf_rdhdr_ascii(char *name, FILE *fp) { SpiceStream *sf; char *line = NULL; int lineno = 0; int linesize = 1024; char *cp; /* * first line is expected to contain space-seperated * variable names. * first one is assumed to be the independent variable. */ if(fread_line(fp, &line, &linesize) == EOF) { goto fail; } lineno++; /* Check for non-ascii characters in header, to reject * binary files. */ for(cp = line; *cp; cp++) { if(!isgraph(*cp) && *cp != ' ' && *cp != '\t') { goto fail; } } sf = ascii_process_header(line, UNKNOWN, name, lineno); if(!sf) goto fail; sf->fp = fp; sf->lineno = lineno; sf->linebuf = line; sf->lbufsize = linesize; return sf; fail: if(line) g_free(line); return NULL; } /* * Process a header line from an ascii or cazm format file. * Returns a filled-in SpiceStream* with variable information. */ static SpiceStream *ascii_process_header(char *line, VarType ivtype, char *fname, int lineno) { SpiceStream *sf; char *signam; int dvsize = 64; signam = strtok(line, " \t\n"); if(!signam) { ss_msg(ERR, "ascii_process_header", "%s:%d: syntax error in header", fname, lineno); return NULL; } /* a bit of a hack: get ss_new to allocate additional * dvars, then only use the entries we need or allocate more */ sf = ss_new(NULL, fname, dvsize, 0); if(ivtype == UNKNOWN) { if(strcasecmp(signam, "time") == 0) sf->ivar->type = TIME; } else { sf->ivar->type = ivtype; } sf->ivar->name = g_strdup(signam); sf->ivar->col = 0; sf->ivar->ncols = 1; sf->ndv = 0; sf->ncols = 1; sf->ntables = 1; while((signam = strtok(NULL, " \t\n")) != NULL) { SpiceVar *dvar = ss_spicevar_new(signam, UNKNOWN, sf->ncols, 1); g_ptr_array_add(sf->dvarp, dvar); sf->ndv++; sf->ncols++; } sf->readrow = sf_readrow_ascii; return sf; } /* Read row of values from ascii- or cazm- format file. * Possibly reusable for other future formats with lines of * whitespace-seperated values. * Returns: * 1 on success. also fills in *ivar scalar and *dvars vector * 0 on EOF * -1 on error (may change some ivar/dvar values) */ static int sf_readrow_ascii(SpiceStream *sf, double *ivar, double *dvars) { int i; char *tok; if(fread_line(sf->fp, &sf->linebuf, &sf->lbufsize) == EOF) { return 0; } sf->lineno++; tok = strtok(sf->linebuf, " \t\n"); if(!tok) { return 0; /* blank line can indicate end of data */ } /* check to see if it is numeric: ascii format is so loosly defined * that we might read a load of garbage otherwise. */ if(strspn(tok, "0123456789eE+-.") != strlen(tok)) { ss_msg(ERR, "sf_readrow_ascii", "%s:%d: expected number; maybe this isn't an ascii data file at all?", sf->filename, sf->lineno, i); return -1; } *ivar = atof(tok); for(i = 0; i < sf->ncols-1; i++) { tok = strtok(NULL, " \t\n"); if(!tok) { ss_msg(ERR, "sf_readrow_ascii", "%s:%d: data field %d missing", sf->filename, sf->lineno, i); return -1; } dvars[i] = atof(tok); } return 1; } gwave2-20170109/spicefile/wavefile.c0000644001226200000360000003510613007135134014002 00000000000000/* * wavefile.c - stuff for working with entire datasets of waveform data. * * Copyright 1999, Stephen G. Tell. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public * License along with this library; if not, write to the Free * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * */ #include "ssintern.h" #include #include #include #include #include #include #include "wavefile.h" #ifdef HAVE_POSIX_REGEXP #include #define REGEXP_T regex_t #define regexp_test(c,s) (regexec((c), (s), 0, NULL, 0) == 0) static regex_t * regexp_compile(char *str) { int err; char ebuf[128]; regex_t *creg; creg = g_new(regex_t, 1); err = regcomp(creg, str, REG_NOSUB|REG_EXTENDED); if(err) { regerror(err, creg, ebuf, sizeof(ebuf)); fprintf(stderr, "internal error (in regexp %s):\n", str); fprintf(stderr, " %s\n", ebuf); exit(1); } return creg; } #else #include "regexp.h" /* Henry Spencer's V8 regexp */ #define REGEXP_T regexp #define regexp_test(c,s) regexec((c), (s)) #define regexp_compile(s) regcomp(s) #endif WaveFile *wf_finish_read(SpiceStream *ss); WvTable *wf_read_table(SpiceStream *ss, WaveFile *wf, int *statep, double *ivalp, double *dvals); void wf_init_dataset(WDataSet *ds); extern inline void wf_set_point(WDataSet *ds, int n, double val); void wf_free_dataset(WDataSet *ds); WvTable *wvtable_new(WaveFile *wf); void wt_free(WvTable *wt); typedef struct { char *name; char *fnrexp; REGEXP_T *creg;/* compiled form of regexp */ } DFormat; /* table associating file typenames with filename regexps. * Typenames should be those supported by spicefile.c. * * Filename patterns are full egrep-style * regular expressions, NOT shell-style globs. */ static DFormat format_tab[] = { {"hspice", "\\.(tr|sw|ac)[0-9]$" }, {"cazm", "\\.[BNW]$" }, {"spice3raw", "\\.raw$" }, {"spice2raw", "\\.rawspice$" }, {"nsout", "\\.out$" }, {"ascii", "\\.(asc|acs|ascii)$" }, /* ascii / ACS format */ }; static const int NFormats = sizeof(format_tab)/sizeof(DFormat); /* * Read a waveform data file. * If the format name is non-NULL, only tries reading in specified format. * If format not specified, tries to guess based on filename, and if * that fails, tries all of the readers until one sucedes. * Returns NULL on failure after printing an error message. * * TODO: use some kind of callback or exception so that client * can put the error messages in a GUI or somthing. */ WaveFile *wf_read(char *name, char *format) { FILE *fp; SpiceStream *ss; int i; unsigned int tried = 0; /* bitmask of formats. */ g_assert(NFormats <= 8*sizeof(tried)); fp = fopen64(name, "r"); if(fp == NULL) { perror(name); return NULL; } if(format == NULL) { for(i = 0; i < NFormats; i++) { if(!format_tab[i].creg) { format_tab[i].creg = regexp_compile(format_tab[i].fnrexp); } if(regexp_test(format_tab[i].creg, name)) { tried |= 1<ss = ss; wf->tables = g_ptr_array_new(); return wf; } /* * read all of the data from a SpiceStream and store it in the WaveFile * structure. */ WaveFile *wf_finish_read(SpiceStream *ss) { WaveFile *wf; double ival; double *dvals; WvTable *wt; int state; double *spar = NULL; wf = wf_new(ss); dvals = g_new(double, ss->ncols); state = 0; do { wt = wf_read_table(ss, wf, &state, &ival, dvals); if(wt) { ss_msg(DBG, "wf_finish_read", "table with %d rows; state=%d", wt->nvalues, state); wt->swindex = wf->wf_ntables; g_ptr_array_add(wf->tables, wt); if(!wt->name) { char tmp[128]; sprintf(tmp, "tbl%d", wf->wf_ntables); wt->name = g_strdup(tmp); } } else { ss_msg(DBG, "wf_finish_read", "NULL table; state=%d", state); } } while(state > 0); g_free(dvals); g_free(spar); ss_close(ss); if(state < 0) { wf_free(wf); return NULL; } else { return wf; } } /* * read data for a single table (sweep or segment) from spicestream. * on entry: * state=0: no previous data; dvals is allocated but garbage * state=1: first row of data is in *ivalp, and vals[]. * on exit: * return NULL: fatal error, *statep=-1 * return non-NULL: valid wvtable* * * state=-1 fatal error * state=0: successful completion of reading whole file * state=1: finished table but more tables remain, * none of the next table has yet been read * state=2: finished table but more tables remain and * *ivalp,dvals[] contain first row of next table. */ WvTable * wf_read_table(SpiceStream *ss, WaveFile *wf, int *statep, double *ivalp, double *dvals) { WvTable *wt; int row; WaveVar *dv; double last_ival; double spar; int rc, i, j; if(ss->nsweepparam > 0) { if(ss->nsweepparam == 1) { if(ss_readsweep(ss, &spar) <= 0) { *statep = -1; return NULL; } } else { ss_msg(ERR, "wf_read_table", "nsweepparam=%d; multidimentional sweeps not supported\n", ss->nsweepparam); *statep = -1; return NULL; } } wt = wvtable_new(wf); if(ss->nsweepparam == 1) { wt->swval = spar; wt->name = g_strdup(ss->spar[0].name); } else { wt->swval = 0; } if(*statep == 2) { wf_set_point(wt->iv->wds, row, *ivalp); for(i = 0; i < wt->wt_ndv; i++) { WaveVar *dv; dv = wt_dv(wt, i); for(j = 0; j < dv->wv_ncols; j++) wf_set_point(&dv->wds[j], row, dvals[dv->sv->col - 1 + j ]); } row = 1; wt->nvalues = 1; last_ival = *ivalp; } else { row = 0; wt->nvalues = 0; last_ival = -1.0e29; } while((rc = ss_readrow(ss, ivalp, dvals)) > 0) { if(row > 0 && *ivalp < last_ival) { if(row == 1) { ss_msg(ERR, "wavefile_read", "independent variable is not nondecreasing at row %d; ival=%g last_ival=%g\n", row, *ivalp, last_ival); wt_free(wt); *statep = -1; return NULL; } else { *statep = 2; return wt; } } last_ival = *ivalp; wf_set_point(wt->iv->wds, row, *ivalp); for(i = 0; i < wt->wt_ndv; i++) { WaveVar *dv; dv = wt_dv(wt, i); for(j = 0; j < dv->wv_ncols; j++) wf_set_point(&dv->wds[j], row, dvals[dv->sv->col - 1 + j ]); } row++; wt->nvalues++; } if(rc == -2) *statep = 1; else if(rc < 0) { wt_free(wt); *statep = -1; return NULL; } else { *statep = 0; } return wt; } /* * Free all memory used by a WaveFile */ void wf_free(WaveFile *wf) { int i; WvTable *wt; for(i = 0; i < wf->tables->len; i++) { wt = wf_wtable(wf, i); wt_free(wt); } g_ptr_array_free(wf->tables, 0); ss_delete(wf->ss); g_free(wf); } void wt_free(WvTable *wt) { int i; WaveVar *dv; for(i = 0; i < wt->wt_ndv; i++) { dv = wt_dv(wt, i); wf_free_dataset(dv->wds); g_free(dv); } g_ptr_array_free(wt->dvp, 0); wf_free_dataset(wt->iv->wds); g_free(wt->iv); if(wt->name) g_free(wt->name); g_free(wt); } /* * create a new, empty WvTable for a WaveFile */ WvTable * wvtable_new(WaveFile *wf) { WvTable *wt; SpiceStream *ss = wf->ss; int i, j; wt = g_new0(WvTable, 1); wt->wf = wf; wt->iv = g_new0(WaveVar, 1); wt->iv->sv = ss->ivar; wt->iv->wtable = wt; wt->iv->wds = g_new0(WDataSet, 1); wf_init_dataset(wt->iv->wds); //wt->dv = g_new0(WaveVar, wf->ss->ndv); wt->dvp = g_ptr_array_sized_new(wf->ss->ndv); for(i = 0; i < wf->wf_ndv; i++) { WaveVar *dv; dv = g_new0(WaveVar, 1); g_ptr_array_add(wt->dvp, dv); dv->wtable = wt; dv->sv = ss_dvar(ss, i); dv->wds = g_new0(WDataSet, dv->sv->ncols); for(j = 0; j < dv->sv->ncols; j++) wf_init_dataset(&dv->wds[j]); } return wt; } /* * initialize common elements of WDataSet structure */ void wf_init_dataset(WDataSet *ds) { ds->min = G_MAXDOUBLE; ds->max = -G_MAXDOUBLE; ds->bpsize = DS_INBLKS; ds->bptr = g_new0(double *, ds->bpsize); ds->bptr[0] = g_new(double, DS_DBLKSIZE); ds->bpused = 1; ds->nreallocs = 0; } /* * initialize DataSet, all ready to hold N elements. */ void wf_init_dataset_size(WDataSet *ds, int nelem) { int nblocks, i; ds->min = G_MAXDOUBLE; ds->max = -G_MAXDOUBLE; ds->nreallocs = 0; nblocks = (nelem - 1) / DS_DBLKSIZE + 1; ds->bpused = ds->bpsize = nblocks; ds->bptr = g_new0(double *, ds->bpsize); for(i = 0; i < nblocks; i++) { ds->bptr[i] = g_new(double, DS_DBLKSIZE); } } /* * free up memory pointed to by a DataSet, but not the dataset itself. */ void wf_free_dataset(WDataSet *ds) { int i; for(i = 0; i < ds->bpused; i++) if(ds->bptr[i]) g_free(ds->bptr[i]); g_free(ds->bptr); g_free(ds); } /* * Iterate over all WaveVars in all sweeps/segments in the WaveFile, * calling the function for each one. */ void wf_foreach_wavevar(WaveFile *wf, GFunc func, gpointer *p) { WvTable *wt; WaveVar *wv; int i, j; for(i = 0; i < wf->wf_ntables; i++) { wt = wf_wtable(wf, i); for(j = 0; j < wf->wf_ndv; j++) { WaveVar *wv; wv = wt_dv(wt, j); (func)(wv, p); } } } /* * expand dataset's storage to add one more block. */ void wf_expand_dset(WDataSet *ds) { if(ds->bpused >= ds->bpsize) { ds->bpsize *= 2; ds->bptr = g_realloc(ds->bptr, ds->bpsize * sizeof(double*)); ds->nreallocs++; } ds->bptr[ds->bpused++] = g_new(double, DS_DBLKSIZE); } /* * set single value in dataset. Probably can be inlined. */ void wf_set_point(WDataSet *ds, int n, double val) { int blk, off; blk = ds_blockno(n); off = ds_offset(n); while(blk >= ds->bpused) wf_expand_dset(ds); ds->bptr[blk][off] = val; if(val < ds->min) ds->min = val; if(val > ds->max) ds->max = val; } /* * get single point from dataset. Probably can be inlined. */ double wds_get_point(WDataSet *ds, int n) { int blk, off; blk = ds_blockno(n); off = ds_offset(n); g_assert(blk <= ds->bpused); g_assert(off < DS_DBLKSIZE); return ds->bptr[blk][off]; } /* * Use a binary search to return the index of the point * whose value is the largest not greater than ival. * if ival is equal or greater than the max value of the * independent variable, return the index of the last point. * * Only works on independent-variables, which we require to * be nondecreasing and have only a single column. * * Further, if there are duplicate values, returns the highest index * that has the same value. */ int wf_find_point(WaveVar *iv, double ival) { WDataSet *ds = iv->wds; double cval; int a, b; int n = 0; a = 0; b = iv->wv_nvalues - 1; if(ival >= ds->max) return b; while(a+1 < b) { cval = wds_get_point(ds, (a+b)/2); /* printf(" a=%d b=%d ival=%g cval=%g\n", a,b,ival,cval); */ if(ival < cval) b = (a+b)/2; else a = (a+b)/2; g_assert(n++ < 32); /* > 2 ** 32 points? must be a bug! */ } return a; } /* * return the value of the dependent variable dv at the point where * its associated independent variable has the value ival. * * FIXME:tell * make this fill in an array of dependent values, * one for each column in the specified dependent variable. * This will be better than making the client call us once for each column, * because we'll only have to search for the independent value once. * (quick hack until we need support for complex and other multicolumn vars: * just return first column's value.) */ double wv_interp_value(WaveVar *dv, double ival) { int li, ri; /* index of points to left and right of desired value */ double lx, rx; /* independent variable's value at li and ri */ double ly, ry; /* dependent variable's value at li and ri */ WaveVar *iv; iv = dv->wv_iv; li = wf_find_point(iv, ival); ri = li + 1; if(ri >= dv->wv_nvalues) return wds_get_point(dv->wds, dv->wv_nvalues-1); lx = wds_get_point(&iv->wds[0], li); rx = wds_get_point(&iv->wds[0], ri); /* g_assert(lx <= ival); */ if(li > 0 && lx > ival) { fprintf(stderr, "wv_interp_value: assertion failed: lx <= ival for %s: ival=%g li=%d lx=%g\n", dv->wv_name, ival, li, lx); } ly = wds_get_point(&dv->wds[0], li); ry = wds_get_point(&dv->wds[0], ri); if(ival > rx) { /* no extrapolation allowed! */ return ry; } return ly + (ry - ly) * ((ival - lx)/(rx - lx)); } /* * Find a named variable, return pointer to WaveVar */ WaveVar * wf_find_variable(WaveFile *wf, char *varname, int swpno) { int i; WvTable *wt; WaveVar *dv; if(swpno >= wf->wf_ntables) return NULL; for(i = 0; i < wf->wf_ndv; i++) { wt = wf_wtable(wf, swpno); dv = wt_dv(wt, i); if(0==strcmp(dv->wv_name, varname)) return dv; } return NULL; } /* * add a new variable to all sweeps in a WaveFile object, * initialiazing the data to all 0's. * */ int wf_add_var(WaveFile *wf, char *varname, int ncols, VarType type, void *udata) { int swpno; WvTable *wt; WaveVar *wv; SpiceVar *sv; WDataSet *wds; int col0; int dvno; int nblocks; int i; for(swpno = 0; swpno < wf->wf_ntables; swpno++) { wv = wf_find_variable(wf, varname, swpno); if(wv) return -1; } col0 = wf->wf_ncols; dvno = wf->wf_ndv; wf->wf_ndv++; wf->wf_ncols += ncols; sv = ss_spicevar_new(varname, type, col0, ncols); g_ptr_array_add(wf->ss->dvarp, sv); for(swpno = 0; swpno < wf->wf_ntables; swpno++) { wt = wf_wtable(wf, swpno); wv = g_new0(WaveVar, 1); wv->wtable = wt; wv->sv = sv; wv->udata = udata; wv->wds = g_new0(WDataSet, ncols); g_ptr_array_add(wt->dvp, wv); for(i = 0; i < ncols; i++) { wf_init_dataset_size(&wv->wds[i], wt->nvalues); wds->min = 0.0; wds->max = 0.0; } } return 0; } gwave2-20170109/spicefile/Makefile.am0000644001226200000360000000101613007135135014062 00000000000000# Makefile.am: process this file with automake to produce Makefile.in EXTRA_DIST=README noinst_LIBRARIES = libspicefile.a libspicefile_a_SOURCES = spicestream.c ss_cazm.c ss_hspice.c ss_spice3.c ss_spice2.c ss_nsout.c spicestream.h wavefile.c wavefile.h spice2.h ssintern.h AM_CFLAGS = @GTK_CFLAGS@ noinst_PROGRAMS = test_read test_read_SOURCES = test_read.c test_read_LDFLAGS = @GTK_LIBS@ test_read_LDADD = libspicefile.a bin_PROGRAMS=sp2sp sp2sp_SOURCES=sp2sp.c sp2sp_LDFLAGS= @GTK_LIBS@ sp2sp_LDADD= libspicefile.a gwave2-20170109/spicefile/Makefile.in0000644001226200000360000004074413034762302014110 00000000000000# Makefile.in generated by automake 1.11.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, # Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ # Makefile.am: process this file with automake to produce Makefile.in VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : noinst_PROGRAMS = test_read$(EXEEXT) bin_PROGRAMS = sp2sp$(EXEEXT) subdir = spicefile DIST_COMMON = README $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = LIBRARIES = $(noinst_LIBRARIES) AR = ar ARFLAGS = cru libspicefile_a_AR = $(AR) $(ARFLAGS) libspicefile_a_LIBADD = am_libspicefile_a_OBJECTS = spicestream.$(OBJEXT) ss_cazm.$(OBJEXT) \ ss_hspice.$(OBJEXT) ss_spice3.$(OBJEXT) ss_spice2.$(OBJEXT) \ ss_nsout.$(OBJEXT) wavefile.$(OBJEXT) libspicefile_a_OBJECTS = $(am_libspicefile_a_OBJECTS) am__installdirs = "$(DESTDIR)$(bindir)" PROGRAMS = $(bin_PROGRAMS) $(noinst_PROGRAMS) am_sp2sp_OBJECTS = sp2sp.$(OBJEXT) sp2sp_OBJECTS = $(am_sp2sp_OBJECTS) sp2sp_DEPENDENCIES = libspicefile.a sp2sp_LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(sp2sp_LDFLAGS) \ $(LDFLAGS) -o $@ am_test_read_OBJECTS = test_read.$(OBJEXT) test_read_OBJECTS = $(am_test_read_OBJECTS) test_read_DEPENDENCIES = libspicefile.a test_read_LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(test_read_LDFLAGS) \ $(LDFLAGS) -o $@ DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/depcomp am__depfiles_maybe = depfiles am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(libspicefile_a_SOURCES) $(sp2sp_SOURCES) \ $(test_read_SOURCES) DIST_SOURCES = $(libspicefile_a_SOURCES) $(sp2sp_SOURCES) \ $(test_read_SOURCES) ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ GRAPH = @GRAPH@ GREP = @GREP@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ GUILE = @GUILE@ GUILE_CFLAGS = @GUILE_CFLAGS@ GUILE_CONFIG = @GUILE_CONFIG@ GUILE_GNOME_CFLAGS = @GUILE_GNOME_CFLAGS@ GUILE_GNOME_LIBS = @GUILE_GNOME_LIBS@ GUILE_LDFLAGS = @GUILE_LDFLAGS@ GUILE_TOOLS = @GUILE_TOOLS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PERL = @PERL@ PKG_CONFIG = @PKG_CONFIG@ RANLIB = @RANLIB@ READLINE_LIB = @READLINE_LIB@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build_alias = @build_alias@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host_alias = @host_alias@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ EXTRA_DIST = README noinst_LIBRARIES = libspicefile.a libspicefile_a_SOURCES = spicestream.c ss_cazm.c ss_hspice.c ss_spice3.c ss_spice2.c ss_nsout.c spicestream.h wavefile.c wavefile.h spice2.h ssintern.h AM_CFLAGS = @GTK_CFLAGS@ test_read_SOURCES = test_read.c test_read_LDFLAGS = @GTK_LIBS@ test_read_LDADD = libspicefile.a sp2sp_SOURCES = sp2sp.c sp2sp_LDFLAGS = @GTK_LIBS@ sp2sp_LDADD = libspicefile.a all: all-am .SUFFIXES: .SUFFIXES: .c .o .obj $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu spicefile/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu spicefile/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): clean-noinstLIBRARIES: -test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES) libspicefile.a: $(libspicefile_a_OBJECTS) $(libspicefile_a_DEPENDENCIES) -rm -f libspicefile.a $(libspicefile_a_AR) libspicefile.a $(libspicefile_a_OBJECTS) $(libspicefile_a_LIBADD) $(RANLIB) libspicefile.a install-binPROGRAMS: $(bin_PROGRAMS) @$(NORMAL_INSTALL) test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ for p in $$list; do echo "$$p $$p"; done | \ sed 's/$(EXEEXT)$$//' | \ while read p p1; do if test -f $$p; \ then echo "$$p"; echo "$$p"; else :; fi; \ done | \ sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \ -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ sed 'N;N;N;s,\n, ,g' | \ $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ if ($$2 == $$4) files[d] = files[d] " " $$1; \ else { print "f", $$3 "/" $$4, $$1; } } \ END { for (d in files) print "f", d, files[d] }' | \ while read type dir files; do \ if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ test -z "$$files" || { \ echo " $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ } \ ; done uninstall-binPROGRAMS: @$(NORMAL_UNINSTALL) @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ files=`for p in $$list; do echo "$$p"; done | \ sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ -e 's/$$/$(EXEEXT)/' `; \ test -n "$$list" || exit 0; \ echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ cd "$(DESTDIR)$(bindir)" && rm -f $$files clean-binPROGRAMS: -test -z "$(bin_PROGRAMS)" || rm -f $(bin_PROGRAMS) clean-noinstPROGRAMS: -test -z "$(noinst_PROGRAMS)" || rm -f $(noinst_PROGRAMS) sp2sp$(EXEEXT): $(sp2sp_OBJECTS) $(sp2sp_DEPENDENCIES) @rm -f sp2sp$(EXEEXT) $(sp2sp_LINK) $(sp2sp_OBJECTS) $(sp2sp_LDADD) $(LIBS) test_read$(EXEEXT): $(test_read_OBJECTS) $(test_read_DEPENDENCIES) @rm -f test_read$(EXEEXT) $(test_read_LINK) $(test_read_OBJECTS) $(test_read_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sp2sp.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/spicestream.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ss_cazm.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ss_hspice.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ss_nsout.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ss_spice2.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ss_spice3.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_read.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/wavefile.Po@am__quote@ .c.o: @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ mkid -fID $$unique tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) set x; \ here=`pwd`; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(LIBRARIES) $(PROGRAMS) installdirs: for dir in "$(DESTDIR)$(bindir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ `test -z '$(STRIP)' || \ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-binPROGRAMS clean-generic clean-noinstLIBRARIES \ clean-noinstPROGRAMS mostlyclean-am distclean: distclean-am -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-binPROGRAMS install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-binPROGRAMS .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-am clean clean-binPROGRAMS \ clean-generic clean-noinstLIBRARIES clean-noinstPROGRAMS ctags \ distclean distclean-compile distclean-generic distclean-tags \ distdir dvi dvi-am html html-am info info-am install \ install-am install-binPROGRAMS install-data install-data-am \ install-dvi install-dvi-am install-exec install-exec-am \ install-html install-html-am install-info install-info-am \ install-man install-pdf install-pdf-am install-ps \ install-ps-am install-strip installcheck installcheck-am \ installdirs maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-compile mostlyclean-generic pdf pdf-am \ ps ps-am tags uninstall uninstall-am uninstall-binPROGRAMS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: gwave2-20170109/spicefile/spice2.h0000644001226200000360000000077313007135135013375 00000000000000/* header file for spice2g6 raw file structures */ typedef struct { char title[80]; char date[8]; char time[8]; short mode:16; short nvars:16; short const4:16; } spice_hdr_t; typedef struct { char name[8]; } spice_var_name_t; typedef short spice_var_type_t; typedef short spice_var_loc_t; typedef struct { char title[24]; } spice_plot_title_t; #define SPICE_MAGIC "rawfile1" typedef union { double val; struct { float r; float j; } cval; char magic[8]; } spice_var_t; gwave2-20170109/spicefile/test_read.c0000644001226200000360000001264713007151370014157 00000000000000/* * test routine for WaveFile data file readers * * $Log: not supported by cvs2svn $ * Revision 1.5 2003/07/30 06:18:49 sgt * better handling of the last point in a wavevar, * in particular when wv_interp_val asks for a point beyond the end of the iv range * enhance test_read.c to * * Revision 1.4 2000/08/09 23:37:39 sgt * ss_hspice.c - wrote sf_guessrows_hsbin routine. * others - instrumented to count reallocs and print out the number. * * Revision 1.3 2000/01/07 05:04:48 tell * updating with old changes as we construct the CVS * * Revision 1.2 1998/09/17 18:25:09 tell * prints out variable type * * Revision 1.1 1998/08/31 21:00:28 tell * Initial revision * */ #include #include #include #include #include #include #include "wavefile.h" void test_interp(WvTable *wt, double mytm); void dump_table_info(WvTable *wt); void dump_wavevar(gpointer p, gpointer u); int main(int argc, char **argv) { WaveFile *wf; WvTable *wt; int i, j; extern int optind; extern char *optarg; int a_flag = 0; int v_flag = 0; int x_flag = 0; int l_flag = 0; int errflg = 0; char *filetype = NULL; int c; while ((c = getopt (argc, argv, "alt:vx")) != EOF) { switch(c) { case 'a': a_flag = 1; break; case 'v': v_flag = 1; break; case 'l': l_flag = 1; break; case 't': filetype = optarg; break; case 'x': x_flag = 1; break; default: errflg = 1; break; } } if(errflg || optind >= argc) { fprintf(stderr, "usage: %s [-altvx] file\n", argv[0]); exit(1); } spicestream_msg_level = DBG; wf = wf_read(argv[optind], filetype); if(!wf) { if(errno) perror(argv[1]); fprintf(stderr, "test_read: unable to read file\n"); exit(1); } printf("filename: \"%s\"\n", wf->wf_filename); printf("wf_ntables: %d\n", wf->wf_ntables); for(i = 0; i < wf->wf_ntables; i++) { printf("table %d", i); wt = wf_wtable(wf, i); if(wt->name) { printf(" %s=%.3g", wt->name, wt->swval); } putchar('\n'); dump_table_info(wt); } wf_foreach_wavevar(wf, dump_wavevar, NULL); wt = wf_wtable(wf, 0); if(a_flag && wt->wt_ndv > 2) { // test wf_add_var(); WaveVar *dv1; WaveVar *dv2; WaveVar *dvn; char *nname; int name_len; printf("before add: ndv=%d\n", wt->wt_ndv); dv1 = wt_dv(wt, wt->wt_ndv-2); name_len = strlen(dv1->wv_name); dv2 = wt_dv(wt, wt->wt_ndv-1); name_len += strlen(dv2->wv_name); name_len += 18; nname = g_new0(char, name_len); sprintf(nname, "calc( %s - %s )", dv1->wv_name, dv2->wv_name); wf_add_var(wf, nname, 1, MATH, NULL); printf("after add: ndv=%d\n", wt->wt_ndv); dvn = wt_dv(wt, wt->wt_ndv-1); for(j = 0; j < wt->nvalues; j++) { wf_set_point(&dvn->wds[0], j, wds_get_point(&dv1->wds[0], j) - wds_get_point(&dv2->wds[0], j)); } } if(l_flag) { int t; WaveVar *dv; for(t = 0; t < wf->wf_ntables; t++) { printf("table %d: ", t); wt = wf_wtable(wf, t); if(wt->name) { printf(" %s=%g", wt->name, wt->swval); } putchar('\n'); printf(" %10s", wt->iv->wv_name); for(i = 0; i < wt->wt_ndv; i++) { dv = wt_dv(wt, i); printf(" %10s", dv->wv_name); } putchar('\n'); for(j = 0; j < wt->nvalues; j++) { printf("[%3d] %10g", j, wds_get_point(wt->iv->wds, j)); for(i = 0; i < wt->wt_ndv; i++) { dv = wt_dv(wt, i); printf(" %10g", wds_get_point(&dv->wds[0], j)); } putchar('\n'); } } } wt = wf_wtable(wf, 0); if(v_flag) { double mytm; double delta; mytm = wds_get_point(wt->iv->wds, 0); delta = (wds_get_point(wt->iv->wds, wt->nvalues-1) - mytm) / 40.0; printf("40 divisions, delta=%g\n", delta); for(i = 0; i <= 41; i++, mytm += delta) { test_interp(wt, mytm); } mytm = wds_get_point(wt->iv->wds, wt->nvalues-2); putchar('\n'); test_interp(wt, mytm); } wf_free(wf); exit(0); } void dump_table_info(WvTable *wt) { WaveFile *wf = wt->wf; printf("independent variable:\n"); printf(" name: \"%s\"\n", wt->iv->wv_name); printf(" type: %s\n", vartype_name_str(wt->iv->wv_type)); printf(" npts: %d\n", wt->nvalues); printf(" min: %.3g\n", wt->iv->wds->min); printf(" max: %.3g\n", wt->iv->wds->max); printf(" blocks: %d/%d\n", wt->iv->wds->bpused, wt->iv->wds->bpsize); printf(" reallocs: %d\n", wt->iv->wds->nreallocs); printf("columns: %d\n", wf->wf_ncols); printf("dependent variables: %d\n", wf->wf_ndv); } void dump_wavevar(gpointer p, gpointer u) { WaveVar *wv = (WaveVar *)p; int j; printf(" dv \"%s\" ", wv->wv_name); printf(" (type=%s)", vartype_name_str(wv->wv_type)); if(wv->wv_ncols > 1) printf(" (%d columns)\n", wv->wv_ncols); for(j = 0; j < wv->wv_ncols; j++) { if(wv->wv_ncols > 1) printf(" col[%d] ", j); printf("blocks=%d/%d ", wv->wds[j].bpused, wv->wds[j].bpsize); printf("min=%.3g ",wv->wds[j].min); printf("max=%.3g ", wv->wds[j].max); printf("first=%.3g ", wds_get_point(&wv->wds[j], 0)); printf("last=%.3g\n", wds_get_point(&wv->wds[j], wv->wv_nvalues-1)); } } void test_interp(WvTable *wt, double mytm) { int idx; WaveVar *wv; idx = wf_find_point(wt->iv, mytm); printf("last %8s < %14.8g is %14.8g at [%4d];", wt->iv->wv_name, mytm, wds_get_point(wt->iv->wds, idx), idx); fflush(stdout); wv = wt_dv(wt, 0); printf("%8s at %8s=%14.8g is %14.8g\n", wv->wv_name, wt->iv->wv_name, mytm, wv_interp_value(wv, mytm)); } gwave2-20170109/spicefile/spicestream.c0000644001226200000360000002063413007135134014517 00000000000000/* * SpiceStream - simple, incremental reader for analog data files, * such as those produced by spice-type simulators. * * Copyright (C) 1998,1999 Stephen G. Tell * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this library; if not, write to the Free * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * */ #include "ssintern.h" #include #include #include #include #include #include #include #include #include #include "spicestream.h" extern SpiceStream *sf_rdhdr_hspice(char *name, FILE *fp); extern SpiceStream *sf_rdhdr_hsascii(char *name, FILE *fp); extern SpiceStream *sf_rdhdr_hsbin(char *name, FILE *fp); extern SpiceStream *sf_rdhdr_cazm(char *name, FILE *fp); extern SpiceStream *sf_rdhdr_s3raw(char *name, FILE *fp); extern SpiceStream *sf_rdhdr_s2raw(char *name, FILE *fp); extern SpiceStream *sf_rdhdr_ascii(char *name, FILE *fp); extern SpiceStream *sf_rdhdr_nsout(char *name, FILE *fp); static int ss_readrow_none(SpiceStream *, double *ivar, double *dvars); SSMsgLevel spicestream_msg_level = WARN; typedef SpiceStream* (*PFD)(char *name, FILE *fp); typedef struct { char *name; PFD rdfunc; } DFormat; static DFormat format_tab[] = { {"hspice", sf_rdhdr_hspice }, {"hsascii", sf_rdhdr_hsascii }, {"hsbinary", sf_rdhdr_hsbin }, {"cazm", sf_rdhdr_cazm }, {"spice3raw", sf_rdhdr_s3raw }, {"spice2raw", sf_rdhdr_s2raw }, {"ascii", sf_rdhdr_ascii }, {"nsout", sf_rdhdr_nsout }, }; static const int NFormats = sizeof(format_tab)/sizeof(DFormat); /* * Open spice waveform file for reading. * Reads in header with signal names (and sometimes signal types). * TODO: simple strategies for trying to deduce file type from * name or contents. */ SpiceStream * ss_open_internal(FILE *fp, char *filename, char *format) { SpiceStream *ss; int i; for(i = 0; i < NFormats; i++) { if(0==strcmp(format, format_tab[i].name)) { ss = (format_tab[i].rdfunc)(filename, fp); if(ss) { ss->filetype = i; return ss; } else { ss_msg(DBG, "ss_open", "failed to open %s using format %s", filename, format_tab[i].name); return NULL; } } } ss_msg(ERR, "ss_open", "Format \"%s\" unknown", format); return NULL; } SpiceStream * ss_open(char *filename, char *format) { FILE *fp; fp = fopen64(filename, "r"); if(fp == NULL) { fprintf(stderr, "fopen(\"%s\"): %s\n", filename, strerror(errno)); return NULL; } return ss_open_internal(fp, filename, format); } SpiceStream * ss_open_fp(FILE *fp, char *format) { return ss_open_internal(fp, "", format); } /* * Allocate SpiceStream structure and fill in some portions. * To be called only from format-specific header-reading functions, * usually after they read and verify the header. * Caller must still set types and names of ivar and dvars, * and must set readrow and linebuf items. */ SpiceStream * ss_new(FILE *fp, char *filename, int ndv, int nspar) { SpiceStream *ss; ss = g_new0(SpiceStream, 1); ss->filename = g_strdup(filename); ss->fp = fp; ss->ivar = g_new0(SpiceVar, 1); ss->ndv = ndv; if(ndv) { ss->dvarp = g_ptr_array_sized_new(ndv); } ss->nsweepparam = nspar; if(nspar) ss->spar = g_new0(SpiceVar, nspar); return ss; } /* * Close the file assocated with a SpiceStream. * No more data can be read, but the header information can still * be accessed. */ void ss_close(SpiceStream *ss) { fclose(ss->fp); ss->fp = NULL; ss->readrow = ss_readrow_none; } /* * Free all resources associated with a SpiceStream. */ void ss_delete(SpiceStream *ss) { if(ss->fp) fclose(ss->fp); if(ss->filename) { g_free(ss->filename); } if(ss->ivar) { ss_spicevar_free(ss->ivar); } if(ss->dvarp) { int i; for(i = 0; i < ss->dvarp->len; i++) { SpiceVar *sv; sv = ss_dvar(ss, i); ss_spicevar_free(sv); } g_ptr_array_free(ss->dvarp, 0); } if(ss->spar) { g_free(ss->spar); } if(ss->linebuf) { g_free(ss->linebuf); } g_free(ss); } /* * row-reading function that always returns EOF. */ static int ss_readrow_none(SpiceStream *ss, double *ivar, double *dvars) { return 0; } static char *vartype_names[] = { "Unknown", "Time", "Voltage", "Current", "Frequency" }; const int nvartype_names = sizeof(vartype_names)/sizeof(char *); /* * return a string corresponding to a SpiceStream VarType. * the pointer returned is in static or readonly storage, * and is overwritten with each call. */ char *vartype_name_str(VarType type) { static char buf[32]; if(type < nvartype_names) return vartype_names[type]; else { sprintf(buf, "type-%d", type); return buf; } } /* * return pointer to string with printable name for a variable * or one of the columns of a variable. * buf is a pointer to a buffer to use. If NULL, one will be allocated. * n is the maximum number of characters to put in the buffer. */ char *ss_var_name(SpiceVar *sv, int col, char *buf, int n) { int idx; if(buf == NULL) { int l; l = strlen(sv->name + 3); buf = g_new(char, l); n = l; } strncpy(buf, sv->name, n-1); n -= strlen(buf)+1; if(sv->ncols == 1 || col < 0) return buf; if(n>1) { idx = strlen(buf); buf[idx++] = '.'; buf[idx++] = '0'+col; buf[idx] = 0; } return(buf); } /* * given a filetype number, return a pointer to a string containing the * name of the Spicestream file format. * Valid file type numbers start at 0. */ char *ss_filetype_name(int n) { if(n >= 0 && n < NFormats) return format_tab[n].name; else return NULL; } /* * utility function to read whole line into buffer, expanding buffer if needed. * line buffer must be allocated with g_malloc/g_new, or NULL in which case * we allocate an initial, buffer. * returns 0 or EOF. */ int fread_line(FILE *fp, char **bufp, int *bufsize) { int c; int n = 0; if(*bufp == NULL) { if(*bufsize == 0) *bufsize = 1024; *bufp = g_new(char, *bufsize); } while(((c = getc(fp)) != EOF) && c != '\n') { (*bufp)[n++] = c; if(n >= *bufsize) { *bufsize *= 2; *bufp = g_realloc(*bufp, *bufsize); } } (*bufp)[n] = 0; if(c == EOF) return EOF; else return 0; } FILE *ss_error_file; SSMsgHook ss_error_hook; /* * ss_msg: emit an error message from anything in the spicestream subsystem, * or anything else that wants to use our routines. * * If ss_error_hook is non-NULL, it is a pointer to a function that * will be called with the error string. * if ss_error_file is non-NULL, it is a FILE* to write the message to. * If neither of these are non-null, the message is written to stderr. * * args: * type is one of: * DBG - Debug, ERR - ERROR, INFO - infomration, WARN - warning * id is the name of the function, or other identifier * remaining arguments are printf-like. */ void ss_msg(SSMsgLevel type, const char *id, const char *msg, ...) { char *typestr; va_list args; int blen = 1024; char buf[1024]; if(type < spicestream_msg_level) return; switch (type) { case DBG: typestr = "<>"; break; case ERR: typestr = "<>"; break; case WARN: typestr = "<>"; break; case INFO: default: typestr = ""; break; } va_start(args, msg); #ifdef HAVE_SNPRINTF blen = snprintf(buf, 1024, "[%s]: %s ", id, typestr); if(blen>0) blen += vsnprintf(&buf[blen-1], 1024-blen, msg, args); if(blen>0) blen += snprintf(&buf[blen-1], 1024-blen, "\n"); #else sprintf(buf, "[%s]: %s ", id, typestr); blen = strlen(buf); vsprintf(&buf[blen], msg, args); strcat(buf, "\n"); #endif if(ss_error_hook) (ss_error_hook)(buf); if(ss_error_file) fputs(buf, ss_error_file); if(ss_error_hook == NULL && ss_error_file == NULL) fputs(buf, stderr); va_end(args); } SpiceVar *ss_spicevar_new(char *name, VarType type, int col, int ncols) { SpiceVar *sv; sv = g_new0(SpiceVar, 1); if(name) sv->name = g_strdup(name); sv->type = type; sv->col = col; sv->ncols = ncols; return sv; } void ss_spicevar_free(SpiceVar *sv) { if(sv->name) g_free(sv->name); g_free(sv); } gwave2-20170109/spicefile/ss_spice3.c0000644001226200000360000002372013007135135014073 00000000000000/* * ss_spice3.c: routines for SpiceStream that handle the file formats * known as Berkeley Spice3 Rawfile * * Copyright (C) 1998,1999 Stephen G. Tell * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this library; if not, write to the Free * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * */ #include "ssintern.h" #include #include #include #include #include #include #include #include "spicestream.h" static int sf_readrow_s3raw(SpiceStream *sf, double *ivar, double *dvars); char *msgid = "s3raw"; static int sf_readrow_s3bin(SpiceStream *sf, double *ivar, double *dvars); /* convert variable type string from spice3 raw file to * our type numbers */ static VarType sf_str2type_s3raw(char *s) { if(strcasecmp(s, "voltage") == 0) return VOLTAGE; else if(strcasecmp(s, "current") == 0) return CURRENT; else if(strcasecmp(s, "frequency") == 0) return FREQUENCY; else if(strcasecmp(s, "time") == 0) return TIME; else return UNKNOWN; } /* Read spice-type file header - Berkeley Spice3 "raw" format */ SpiceStream * sf_rdhdr_s3raw(char *name, FILE *fp) { SpiceStream *sf = NULL; char *line = NULL; int lineno = 0; int linesize = 1024; char *key, *val; int nvars, npoints; int got_nvars = 0; int got_values = 0; int dtype_complex = 0; int binary = 0; char *vnum, *vname, *vtypestr; int i; while(fread_line(fp, &line, &linesize) != EOF) { lineno++; if(lineno == 1 && strncmp(line, "Title: ", 7)) { /* not a spice3raw file; bail out */ ss_msg(DBG, msgid, "%s:%d: Doesn't look like a spice3raw file; \"Title:\" expected\n", name, lineno); return NULL; } key = strtok(line, ":"); if(!key) { ss_msg(ERR, msgid, "%s:%d: syntax error, expected \"keyword:\"", name, lineno); g_free(line); return NULL; } if(strcmp(key, "Flags") == 0) { while(val = strtok(NULL, " ,\t\n")) { if(strcmp(val, "real") == 0) { dtype_complex = 0; } if(strcmp(val, "complex") == 0) { dtype_complex = 1; } } } else if(strcmp(key, "No. Variables") == 0) { val = strtok(NULL, " \t\n"); if(!val) { ss_msg(ERR, msgid, "%s:%d: syntax error, expected integer", name, lineno); g_free(line); return NULL; } nvars = atoi(val); got_nvars = 1; } else if(strcmp(key, "No. Points") == 0) { val = strtok(NULL, " \t\n"); if(!val) { ss_msg(ERR, msgid, "%s:%d: syntax error, expected integer", name, lineno); g_free(line); return NULL; } npoints = atoi(val); } else if(strcmp(key, "Variables") == 0) { if(!got_nvars) { ss_msg(ERR, msgid, "%s:%d: \"Variables:\" before \"No. Variables:\"", name, lineno, i); goto err; } sf = ss_new(fp, name, nvars-1, 0); sf->ncols = 1; sf->ntables = 1; /* first variable may be described on the same line * as "Variables:" keyword */ vnum = strtok(NULL, " \t\n"); for(i = 0; i < nvars; i++) { if(i || !vnum) { if(fread_line(fp, &line, &linesize) == EOF) { ss_msg(ERR, msgid, "%s:%d: Unexpected EOF in \"Variables:\" at var %d", name, lineno, i); goto err; } lineno++; vnum = strtok(line, " \t\n"); } vname = strtok(NULL, " \t\n"); vtypestr = strtok(NULL, " \t\n"); if(!vnum || !vname || !vtypestr) { ss_msg(ERR, msgid, "%s:%d: expected number name type", name, lineno); goto err; } if(i == 0) { /* assume Ind.Var. first */ sf->ivar->name = g_strdup(vname); sf->ivar->type = sf_str2type_s3raw(vtypestr); sf->ivar->col = 0; /* ivar can't really be two-column, this is a flag that says to discard 2nd point */ if(dtype_complex) sf->ivar->ncols = 2; else sf->ivar->ncols = 1; } else { SpiceVar *dvar; dvar = ss_spicevar_new(vname, sf_str2type_s3raw(vtypestr), sf->ncols, dtype_complex ? 2 : 1); g_ptr_array_add(sf->dvarp, dvar); sf->ncols += dvar->ncols; } } } else if(strcmp(key, "Values") == 0) { got_values = 1; break; } else if(strcmp(key, "Binary") == 0) { binary = 1; got_values = 1; break; } if(got_values) break; } if(!sf) { ss_msg(ERR, msgid, "%s:%d: no \"Variables:\" section in header", name, lineno); goto err; } if(!got_values) { ss_msg(ERR, msgid, "%s:%d: EOF without \"Values:\" in header", name, lineno); goto err; } if(binary) { sf->readrow = sf_readrow_s3bin; } else { sf->readrow = sf_readrow_s3raw; } sf->read_rows = 0; sf->expected_vals = npoints * (sf->ncols + (dtype_complex ? 1 : 0)); ss_msg(DBG, msgid, "expecting %d values\n", sf->expected_vals); sf->lineno = lineno; sf->linebuf = line; sf->lbufsize = linesize; ss_msg(DBG, msgid, "Done with header at offset 0x%lx\n", (long) ftello64(sf->fp)); return sf; err: if(line) g_free(line); if(sf) { sf->fp = NULL; /* prevent ss_delete from cleaning up FILE*; ss_open callers may rewind and try another format on failure. */ ss_delete(sf); } return NULL; } /* return pointer to the next whitespace-seperated token in the file * advances to the next lines of the file as needed. * pointer points into the line buffer linebuf. * token will not be nul-terminated; whole line remains available. * * upon return, sf->linep points to the char after the end of the token, * which might be the trailing nul or might be whitespace. */ static char *sf_nexttoken(SpiceStream *sf) { char *cp; char *tok = NULL; if(sf->linep) cp = sf->linep; else { if(fread_line(sf->fp, &sf->linebuf, &sf->lbufsize) == EOF) { return 0; /* normal EOF */ } sf->lineno++; cp = sf->linebuf; } // search for start of token while(!tok) { if(*cp == 0) { do { if(fread_line(sf->fp, &sf->linebuf, &sf->lbufsize) == EOF) { return 0; /* normal EOF */ } sf->lineno++; cp = sf->linebuf; } while (*cp == 0); // skip multiple blank lines } if(!isspace(*cp)) tok = cp; else cp++; } // tok now points to start of the token; search for the end while(*cp && !isspace(*cp)) cp++; sf->linep = cp; return tok; } /* * Read row of values from an ascii spice3 raw file */ static int sf_readrow_s3raw(SpiceStream *sf, double *ivar, double *dvars) { int i; int frownum; char *tok; double v; if((sf->flags & SSF_PUSHBACK) == 0) { tok = sf_nexttoken(sf); if(!tok) { return 0; // ss_msg(ERR, msgid, "%s:%d: expected row number", // sf->filename, sf->lineno); // return -1; } if(!isdigit(*tok)) { ss_msg(WARN, msgid, "%s:%d: expected row number, got \"%s\". Note: only one dataset per file is supported, extra garbage ignored", sf->filename, sf->lineno, tok); return 0; } frownum = atoi(tok); /* todo: check for expected and maximum row number */ tok = sf_nexttoken(sf); if(!tok) { ss_msg(WARN, msgid, "%s:%d: expected ivar value", sf->filename, sf->lineno); return -1; } v = atof(tok); if(v < sf->ivval) { /* independent-variable value decreased, this must * be the start of another sweep. hold the value and * return flag to caller. */ sf->ivval = v; sf->flags |= SSF_PUSHBACK; return -2; } else { sf->ivval = v; *ivar = v; } } else { /* iv value for start of new sweep was read last time */ sf->flags &= ~SSF_PUSHBACK; *ivar = sf->ivval; } for(i = 0; i < sf->ndv; i++) { SpiceVar *dv; dv = ss_dvar(sf, i); tok = sf_nexttoken(sf); if(!tok) { ss_msg(ERR, msgid, "%s:%d: expected value", sf->filename, sf->lineno); return -1; } dvars[dv->col-1] = atof(tok); if(dv->ncols > 1) { tok = strchr(tok, ','); if(!tok || !*(tok+1)) { ss_msg(ERR, msgid, "%s:%d: expected second value", sf->filename, sf->lineno); return -1; } tok++; dvars[dv->col] = atof(tok); } } sf->read_rows++; return 1; } /* * Read a single value from binary spice3 rawfile, and do * the related error-checking. */ static int sf_getval_s3bin(SpiceStream *sf, double *dval) { off64_t pos; double val; if(sf->read_vals >= sf->expected_vals) { pos = ftello64(sf->fp); ss_msg(DBG, "sf_getval_s3bin", "past last expected value offset 0x%lx", (long) pos); return 0; } if(fread(&val, sizeof(double), 1, sf->fp) != 1) { pos = ftello64(sf->fp); ss_msg(ERR, "sf_getval_s3bin", "unexepected EOF in data at offset 0x%lx", (long) pos); return -1; } sf->read_vals++; *dval = val; return 1; } /* * Read row of values from a binay spice3 raw file */ static int sf_readrow_s3bin(SpiceStream *sf, double *ivar, double *dvars) { int i, rc; double v; double dummy; if((sf->flags & SSF_PUSHBACK) == 0) { rc = sf_getval_s3bin(sf, &v); if(rc == 0) /* file EOF */ return 0; if(rc < 0) return -1; if(sf->ivar->ncols == 2) { rc = sf_getval_s3bin(sf, &dummy); if(rc == 0) /* file EOF */ return 0; if(rc < 0) return -1; } if(v < sf->ivval) { /* independent-variable value decreased, this must * be the start of another sweep. hold the value and * return flag to caller. */ sf->ivval = v; sf->flags |= SSF_PUSHBACK; return -2; } else { sf->ivval = v; *ivar = v; } } else { /* iv value for start of new sweep was read last time */ sf->flags &= ~SSF_PUSHBACK; *ivar = sf->ivval; } for(i = 0; i < sf->ncols-1; i++) { if(sf_getval_s3bin(sf, &dvars[i]) != 1) { ss_msg(WARN, "sf_readrow_s3bin", "%s: EOF or error reading data field %d in row %d; file is incomplete.", sf->filename, i, sf->read_rows); return 0; } } sf->read_rows++; return 1; } gwave2-20170109/spicefile/README0000644001226200000360000000345013007135135012712 00000000000000 libspicefile - a library for reading analog waveform data files of the sort generated by spice-type simulators, and similar data files. We've called the library spicefile instead of wavefile because: - at present, only analog waveforms of represented by floating-point numbers are handled. - We want to avoid confusion with the "wav" format for soundfiles. Our model for datafiles of this sort is as follows: Files contain a single independent variable, and zero or more dependent variables. Files can be thought of as organized into "rows" and "columns." The first column is the independent variable, remaining columns are associated with dependent variables. A single dependent variable may comprise several columns; for example complex variables occupy two columns, one for the real part and one for the imaginary part. Each row contains a one value for the independent variable and one value for each of the dependent variables. Two different levels of abstraction are provided, SpiceStream and WaveFile. A SpiceStream is like an open file from which one row of datapoints is read at a time. A WaveFile comprises all of the datapoints for all values of the independent variable, suitable for fast random access. It is implemented using a SpiceStream to read a whole file into memory. Two complete programs are provided. sp2sp ("spice to spice") uses SpiceStream to convert any file format supported by the SpiceStream layer into one of several ASCII printable formats. In addition to testing the SpiceStream code, this is extremely useful for converting files any of the binary formats into a printable form, where they can easily be processed by awk, perl, or some other scripting language. Test_read tests the WaveFile abstraction by loading a file into memory and printing various information about it. gwave2-20170109/spicefile/ssintern.h0000644001226200000360000000272313007135135014052 00000000000000 /* * ssintern.h: internal definitions for spicestream library * * Copyright (C) 1998-2003 Stephen G. Tell * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public * License along with this library; if not, write to the Free * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ /* try to arrange to be able ue fopen64 and off64_t inside the spicestream * library only. * None of spicestream's API is sensitive to whether or not we * have large file support. * * In particular, gwave (and guile) are ignorant of all this. No telling if * guile on a particular system has large file issues. * this is why we don't use autoconf's AC_SYS_LARGEFILE. */ #define _LARGEFILE64_SOURCE 1 #include #if !defined(_LFS64_STDIO) #define fopen64 fopen #define ftello64 ftello #define off64_t off_t #endif /* wish there was a way to portably printf either a 64-bit or 32-bit off_t * without cluttering the rest of the source with #ifdefs. */ gwave2-20170109/spicefile/ss_nsout.c0000644001226200000360000001505513007135135014057 00000000000000/* * ss_nsout.c: routines for SpiceStream that handle the ".out" file format * from Synopsis' nanosim. * * Copyright (C) 2004 Stephen G. Tell * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this library; if not, write to the Free * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * */ #include "ssintern.h" #include #include #include #include #include #include #include #include "spicestream.h" static int sf_readrow_nsout(SpiceStream *sf, double *ivar, double *dvars); static char *msgid = "nsout"; struct nsvar { char *name; int index; VarType type; }; /* convert variable type string from out-file to * our type numbers */ static VarType sf_str2type_nsout(char *s) { if(strcasecmp(s, "v") == 0) return VOLTAGE; else if(strcasecmp(s, "i") == 0) return CURRENT; else return UNKNOWN; } /* Read spice-type file header - nanosim "out" format */ SpiceStream * sf_rdhdr_nsout(char *name, FILE *fp) { SpiceStream *sf = NULL; char *line = NULL; int lineno = 0; int linesize = 1024; char *key, *val; int got_ivline = 0; int ndvars; double voltage_resolution = 1.0; double current_resolution = 1.0; double time_resolution = 1.0; GList *vlist = NULL; struct nsvar *nsv; int i; int maxindex = 0; while(fread_line(fp, &line, &linesize) != EOF) { lineno++; if(lineno == 1 && strncmp(line, ";! output_format", 16)) { /* not an out file; bail out */ ss_msg(DBG, msgid, "%s:%d: Doesn't look like an ns-out file; \"output_format\" expected\n", name, lineno); return NULL; } if(line[0] == ';') continue; if(line[0] == '.') { key = strtok(&line[1], " \t"); if(!key) { ss_msg(ERR, msgid, "%s:%d: syntax error, expected \"keyword:\"", name, lineno); g_free(line); return NULL; } if(strcmp(key, "time_resolution") == 0) { val = strtok(NULL, " \t\n"); if(!val) { ss_msg(ERR, msgid, "%s:%d: syntax error, expected number", name, lineno); g_free(line); return NULL; } time_resolution = atof(val); } if(strcmp(key, "current_resolution") == 0) { val = strtok(NULL, " \t\n"); if(!val) { ss_msg(ERR, msgid, "%s:%d: syntax error, expected number", name, lineno); g_free(line); return NULL; } current_resolution = atof(val); } if(strcmp(key, "voltage_resolution") == 0) { val = strtok(NULL, " \t\n"); if(!val) { ss_msg(ERR, msgid, "%s:%d: syntax error, expected number", name, lineno); g_free(line); return NULL; } voltage_resolution = atof(val); } if(strcmp(key, "index") == 0) { nsv = g_new0(struct nsvar, 1); val = strtok(NULL, " \t\n"); if(!val) { ss_msg(ERR, msgid, "%s:%d: syntax error, expected varname", name, lineno); goto err; } nsv->name = g_strdup(val); val = strtok(NULL, " \t\n"); if(!val) { ss_msg(ERR, msgid, "%s:%d: syntax error, expected var-index", name, lineno); goto err; } nsv->index = atoi(val); if(nsv->index > maxindex) maxindex = nsv->index; val = strtok(NULL, " \t\n"); if(!val) { ss_msg(ERR, msgid, "%s:%d: syntax error, expected variable type", name, lineno); goto err; } nsv->type = sf_str2type_nsout(val); vlist = g_list_append(vlist, nsv); } } if(isdigit(line[0])) { got_ivline = 1; break; } } if(!vlist) { ss_msg(ERR, msgid, "%s:%d: no variable indices found in header", name, lineno); } if(!got_ivline) { ss_msg(ERR, msgid, "%s:%d: EOF without data-line in header", name, lineno); goto err; } ndvars = g_list_length(vlist); sf = ss_new(fp, name, ndvars, 0); sf->time_resolution = time_resolution; sf->current_resolution = current_resolution; sf->voltage_resolution = voltage_resolution; sf->maxindex = maxindex; sf->datrow = g_new0(double, maxindex+1); sf->nsindexes = g_new0(int, ndvars); sf->ncols = 1; sf->ntables = 1; sf->ivar->name = g_strdup("TIME"); sf->ivar->type = TIME; sf->ivar->col = 0; for(i = 0; i < ndvars; i++) { SpiceVar *dvar; nsv = g_list_nth_data(vlist, i); dvar = ss_spicevar_new(nsv->name, nsv->type, sf->ncols, 1); g_ptr_array_add(sf->dvarp, dvar); sf->ncols += dvar->ncols; sf->nsindexes[i] = nsv->index; ss_msg(DBG, msgid, "dv[%d] \"%s\" nsindex=%d", i, dvar->name, sf->nsindexes[i]); } sf->readrow = sf_readrow_nsout; sf->read_rows = 0; sf->lineno = lineno; sf->linebuf = line; sf->lbufsize = linesize; ss_msg(DBG, msgid, "Done with header at offset 0x%lx", (long) ftello64(sf->fp)); return sf; err: if(line) g_free(line); if(sf) { sf->fp = NULL; /* prevent ss_delete from cleaning up FILE*; ss_open callers may rewind and try another format on failure. */ ss_delete(sf); } return NULL; } /* * Read row of values from an out-format file * upon call, line buffer should always contain the * independent-variable line that starts this set of values. */ static int sf_readrow_nsout(SpiceStream *sf, double *ivar, double *dvars) { int i; int idx; char *sidx; char *sval; double v; double scale; SpiceVar *dvp; if(feof(sf->fp)) { return 0; } // process iv line v = atof(sf->linebuf) * sf->time_resolution * 1e-9; /* ns */ *ivar = v; // read and process dv lines until we see another iv line while(fread_line(sf->fp, &sf->linebuf, &sf->lbufsize) != EOF) { sf->lineno++; if(sf->linebuf[0] == ';') continue; sidx = strtok(sf->linebuf, " \t"); if(!sidx) { ss_msg(ERR, msgid, "%s:%d: expected value", sf->filename, sf->lineno); return -1; } sval = strtok(NULL, " \t"); if(!sval) /* no value token: this is the ivar line for the next row */ break; idx = atoi(sidx); if(idx <= sf->maxindex) { sf->datrow[idx] = atof(sval); } } for(i = 0; i < sf->ndv; i++) { SpiceVar *dvar; dvar = ss_dvar(sf, i); scale = 1.0; switch(dvar->type) { case VOLTAGE: scale = sf->voltage_resolution; break; case CURRENT: scale = sf->current_resolution; break; } dvars[i] = sf->datrow[ sf->nsindexes[i] ] * scale; } return 1; } gwave2-20170109/spicefile/ss_spice2.c0000644001226200000360000000763513007135135014101 00000000000000/* * ss_spice2.c: routines for SpiceStream that handle the output * format from Berkeley Spice2G6 * * Copyright 1998,1999 Stephen G. Tell * Copyright 1998 D. Jeff Dionne * * Based on rd_spice2.c that Jeff Dione contributed to gwave-0.0.4, * this was largely rewritten by Steve Tell for the spicestream library. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this library; if not, write to the Free * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * */ #include "ssintern.h" #include #include #include #include #include #include #include #include "spice2.h" #include "spicestream.h" static int sf_readrow_s2raw(SpiceStream *sf, double *ivar, double *dvars); static char *msgid = "s2raw"; /* Read spice-type file header - Berkeley Spice2G6 "raw" format */ SpiceStream * sf_rdhdr_s2raw(char *name, FILE *fp) { SpiceStream *sf = NULL; int ndv; int i; char *cp; spice_hdr_t s2hdr; spice_var_name_t s2vname; spice_var_type_t s2vtype; spice_var_loc_t s2vloc; spice_plot_title_t s2title; spice_var_t s2var; if(fread (&s2var,sizeof(s2var),1,fp) != 1) return NULL; if (memcmp(&s2var,SPICE_MAGIC,8)) { ss_msg(DBG, msgid, "%s: not a spice2 rawfile (bad magic number)", name); return NULL; } if(fread (&s2hdr,sizeof(s2hdr),1,fp) != 1) return NULL; ss_msg(DBG, msgid, "%s: nvars=%d const=%d analysis mode %d", name, s2hdr.nvars, s2hdr.const4, s2hdr.mode); /* independent variable name */ if(fread (&s2vname,sizeof(s2vname),1,fp) != 1) return NULL; s2vname.name[7] = 0; if(cp = strchr(s2vname.name, ' ')) *cp = 0; ndv = s2hdr.nvars - 1; sf = ss_new(fp, name, ndv, 0); sf->ncols = ndv; sf->ivar->name = g_strdup(s2vname.name); sf->ivar->type = TIME; sf->ivar->col = 0; sf->ivar->ncols = 1; for (i = 0; i < ndv; i++) { SpiceVar *dvar; if(fread (&s2vname, sizeof(s2vname), 1, fp) != 1) goto err; s2vname.name[7] = 0; if(cp = strchr(s2vname.name, ' ')) *cp = 0; /* FIXME:sgt: get correct type */ /* FIXME:sgt: handle complex */ dvar = ss_spicevar_new(s2vname.name, VOLTAGE, i, 1); g_ptr_array_add(sf->dvarp, dvar); } if(fread (&s2vtype, sizeof(s2vtype), 1, fp) != 1) goto err; for (i = 0; i < ndv; i++) { if(fread (&s2vtype, sizeof(s2vtype), 1, fp) != 1) goto err; } if(fread (&s2vloc, sizeof(s2vloc), 1, fp) != 1) goto err; for (i = 0; i < ndv; i++) { if(fread (&s2vloc, sizeof(s2vloc), 1, fp) != 1) goto err; } if(fread (&s2title, sizeof(s2title), 1, fp) != 1) goto err; s2title.title[23] = 0; ss_msg(DBG, msgid, "title=\"%s\"", s2title.title); ss_msg(DBG, msgid, "done with header at offset=0x%lx", (long) ftello64(fp)); sf->readrow = sf_readrow_s2raw; return sf; err: if(sf) { ss_delete(sf); } return NULL; } /* * Read row of values from a spice2 rawfile */ static int sf_readrow_s2raw(SpiceStream *sf, double *ivar, double *dvars) { int i, rc; spice_var_t val; /* independent var */ if ((rc = fread (&val,sizeof(val),1, sf->fp)) != 1) { if(rc == 0) return 0; else return -1; } if (memcmp(&val,SPICE_MAGIC,8) == 0) /* another analysis */ return 0; *ivar = val.val; /* dependent vars */ for(i = 0; i < sf->ndv; i++) { if(fread(&val, sizeof(val), 1, sf->fp) != 1) { ss_msg(ERR, msgid, "unexpected EOF at dvar %d", i); return -1; } dvars[i] = val.val; } return 1; } gwave2-20170109/spicefile/wavefile.h0000644001226200000360000000770413007135135014013 00000000000000 /* * wavefile.h - definitions for WaveFile, routines and data structures * for reading and working with entire datasets of waveform data. * * Copyright 1999,2005 Stephen G. Tell. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this library; if not, write to the Free * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * */ #ifndef WAVEFILE_H #define WAVEFILE_H #include #include typedef struct _WaveFile WaveFile; typedef struct _WaveVar WaveVar; typedef struct _WDataSet WDataSet; typedef struct _WvTable WvTable; /* Wave Data Set - * an array of double-precision floating-point values, used to store a * column of values. Organized as a block structure because we don't know * how many entries there will be without reading the file, and we don't * want to read the whole thing twice. * * Depending on what the memory allocator does, this might even * end up being relatively cache-friendly. TODO: think more about this. */ #define DS_DBLKSIZE 8192 #define DS_INBLKS 1024 #define ds_blockno(n) ((n) / DS_DBLKSIZE) #define ds_offset(n) ((n) % DS_DBLKSIZE) struct _WDataSet { double min; double max; /* remaining stuff is an array storage structure * that could be abstracted out and/or replaced with somthing else */ /* pointer to array of pointers to blocks of doubles */ double **bptr; int bpsize; /* size of array of pointers */ int bpused; /* number of blocks actually allocated */ int nreallocs; }; /* Wave Variable - used for independent or dependent variable. */ struct _WaveVar { SpiceVar *sv; WvTable *wtable; /* backpointer to file */ WDataSet *wds; /* data for one or more columns */ void *udata; }; #define wv_name sv->name #define wv_type sv->type #define wv_ncols sv->ncols #define wv_nvalues wtable->nvalues #define wv_iv wtable->iv #define wv_file wtable->wf #define wv_is_multisweep(WV) ((WV)->wtable->wf->wf_ntables>1) /* * Wave Table - association of one or more dependent variables with * a contiguous, nondecreasing independent variable. */ struct _WvTable { WaveFile *wf; int swindex; /* index of the sweep, 0-based */ char *name; /* name of the sweep, if any, else NULL */ double swval; /* value at which the sweep was taken */ int nvalues; /* number of rows */ WaveVar *iv; /* pointer to single independent variable */ GPtrArray *dvp; /* array of WaveVar* */ }; #define wt_dv(WT, I) (WaveVar *)g_ptr_array_index((WT)->dvp, (I)) //#define wt_ndv wf->ss->ndv #define wt_ndv dvp->len /* * WaveFile - data struture containing all of the data from a file. */ struct _WaveFile { SpiceStream *ss; GPtrArray *tables; /* array of WvTable* */ void *udata; }; #define wf_filename ss->filename #define wf_ndv ss->ndv #define wf_ncols ss->ncols #define wf_ntables tables->len #define wf_wtable(WF,I) (WvTable*)g_ptr_array_index((WF)->tables, (I)) /* defined in wavefile.c */ extern WaveFile *wf_read(char *name, char *format); extern double wv_interp_value(WaveVar *dv, double ival); extern int wf_find_point(WaveVar *iv, double ival); extern double wds_get_point(WDataSet *ds, int n); extern void wf_free(WaveFile *df); extern WaveVar *wf_find_variable(WaveFile *wf, char *varname, int swpno); extern void wf_foreach_wavevar(WaveFile *wf, GFunc func, gpointer *p); extern int wf_add_var(WaveFile *wf, char *varname, int ncols, VarType type, void *udata); extern void wf_set_point(WDataSet *ds, int n, double val); #endif /* WAVEFILE_H */ gwave2-20170109/spicefile/ss_hspice.c0000644001226200000360000005203413007151374014163 00000000000000/* * ss_hspice.c: HSPICE routines for SpiceStream * * Copyright (C) 1998-2009 Stephen G. Tell * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public * License along with this library; if not, write to the Free * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * */ #include "ssintern.h" #include #include #include #include #include #include #include #include #include #include "spicestream.h" SpiceStream *sf_rdhdr_hspice(char *name, FILE *fp); SpiceStream *sf_rdhdr_hsascii(char *name, FILE *fp); SpiceStream *sf_rdhdr_hsbin(char *name, FILE *fp); static int sf_readrow_hsascii(SpiceStream *sf, double *ivar, double *dvars); static int sf_readrow_hsbin(SpiceStream *sf, double *ivar, double *dvars); static SpiceStream *hs_process_header(int nauto, int nprobe, int nsweepparam, char *line, char *name); static int sf_readsweep_hsascii(SpiceStream *sf, double *svar); static int sf_readsweep_hsbin(SpiceStream *sf, double *svar); static int sf_readblock_hsbin(FILE *fp, char **bufp, int *bufsize, int offset); struct hsblock_header { /* structure of binary tr0 block headers */ gint32 h1; gint32 h2; gint32 h3; gint32 block_nbytes; }; union gint32bytes { gint32 i; gchar b[4]; }; static void swap_gint32(gint32 *pi, size_t n); /* Read spice-type file header - autosense hspice binary or ascii */ SpiceStream * sf_rdhdr_hspice(char *name, FILE *fp) { int c; if((c = getc(fp)) == EOF) return NULL; ungetc(c, fp); if((c & 0xff) < ' ') return sf_rdhdr_hsbin(name, fp); else return sf_rdhdr_hsascii(name, fp); return NULL; } /* Read spice-type file header - hspice ascii */ SpiceStream * sf_rdhdr_hsascii(char *name, FILE *fp) { SpiceStream *sf = NULL; char *line = NULL; int nauto, nprobe, nsweepparam, ntables; int lineno = 0; int linesize = 1024; int lineused; char lbuf[256]; char nbuf[16]; char *cp; int maxlines; int postrev; int valsize; if(fgets(lbuf, sizeof(lbuf), fp) == NULL) return NULL; lineno++; /* version of post format */ if(strncmp(&lbuf[16], "9007", 4) != 0 && strncmp(&lbuf[16], "9601", 4) != 0 && strncmp(&lbuf[20], "2001", 4) != 0 ) return NULL; /* strncpy(nbuf, &lbuf[16], 8); nbuf[8] = 0; postrev = atoi(nbuf); switch(postrev) { case 9007: valsize=11; break; case 9601: valsize=11; break; case 2001: valsize=13; break; default: return NULL; } */ if(strncmp(&lbuf[20], "2001", 4) == 0) valsize=13; else valsize=11; strncpy(nbuf, &lbuf[0], 4); nbuf[4] = 0; nauto = atoi(nbuf); strncpy(nbuf, &lbuf[4], 4); nbuf[4] = 0; nprobe = atoi(nbuf); strncpy(nbuf, &lbuf[8], 4); nbuf[4] = 0; nsweepparam = atoi(nbuf); if(fgets(lbuf, sizeof(lbuf), fp) == NULL) /* date, time etc. */ return NULL; lineno++; /* number of sweeps, possibly with text cruft at the start of the line. look for several consecutive spaces */ if(fgets(lbuf, sizeof(lbuf), fp) == NULL) return NULL; // cp = strchr(lbuf, ' '); cp = strstr(lbuf, " "); if(!cp) cp = lbuf; ntables = atoi(cp); if(ntables == 0) ntables = 1; lineno++; maxlines = nauto + nprobe + nsweepparam + 100; /* lines making up a fixed-field structure with variable-types and * variable names. * variable names can get split across lines! so we remove newlines, * paste all of the lines together, and then deal with the * whole header at once. * A variable name of "$&%#" indicates the end! */ line = g_new0(char, linesize); lineused = 0; do { int len; if(fgets(lbuf, sizeof(lbuf), fp) == NULL) return NULL; lineno++; if((cp = strchr(lbuf, '\n')) != NULL) *cp = 0; len = strlen(lbuf); if(lineused + len + 1 > linesize) { linesize *= 2; if(linesize > 1050000) { ss_msg(ERR, "rdhdr_ascii", "internal error - failed to find end of header\n; linesize=%d line=\n%.200s\n", linesize, line); exit(4); } line = g_realloc(line, linesize); } strcat(line, lbuf); lineused += len; } while(!strstr(line, "$&%#") && lineno < maxlines); if(lineno == maxlines) { ss_msg(DBG, "rdhdr_hsascii", "%s:%d: end of hspice header not found", name,lineno); goto fail; } sf = hs_process_header(nauto, nprobe, nsweepparam, line, name); if(!sf) goto fail; sf->fp = fp; sf->readrow = sf_readrow_hsascii; sf->linebuf = line; sf->linep = NULL; sf->lbufsize = linesize; sf->ntables = ntables; sf->read_tables = 0; sf->read_rows = 0; sf->read_sweepparam = 0; sf->readsweep = sf_readsweep_hsascii; sf->lineno = lineno; sf->avalsize = valsize; ss_msg(DBG, "rdhdr_hsascii", "ntables=%d; expect %d columns", sf->ntables, sf->ncols); return sf; fail: if(line) g_free(line); return NULL; } /* Read spice-type file header - hspice binary */ SpiceStream * sf_rdhdr_hsbin(char *name, FILE *fp) { SpiceStream *sf = NULL; char *ahdr = NULL; int ahdrsize = 0; int ahdrend = 0; int n; int datasize; int nauto, nprobe, nsweepparam, ntables; char nbuf[16]; // int ntable_offset; char *ntable_cp; char *varlist_cp; struct hsblock_header hh; int floatsize; do { n = sf_readblock_hsbin(fp, &ahdr, &ahdrsize, ahdrend); if(n <= 0) goto fail; ahdrend += n; ahdr[ahdrend] = '\0'; } while(!strstr(ahdr, "$&%#")); /* ahdr is an ascii header that describes the variables in * much the same way that the first lines of the ascii format do, * except that there are no newlines */ if(strncmp(&ahdr[16], "9007", 4) != 0 /* version of post format */ && strncmp(&ahdr[16], "9601", 4) != 0 && strncmp(&ahdr[20], "2001", 4) != 0 ) goto fail; if(strncmp(&ahdr[20], "2001", 4) == 0) floatsize = sizeof(double); else floatsize = sizeof(float); strncpy(nbuf, &ahdr[0], 4); nbuf[4] = 0; nauto = atoi(nbuf); /* number of automaticly-included variables, first one is independent variable */ strncpy(nbuf, &ahdr[4], 4); nbuf[4] = 0; nprobe = atoi(nbuf); /* number of user-requested columns */ strncpy(nbuf, &ahdr[8], 4); nbuf[4] = 0; nsweepparam = atoi(nbuf); /* number of sweep parameters */ // ntables = atoi(&ahdr[ntable_offset]); ntable_cp = strstr(ahdr, "Copyright"); if(!ntable_cp) { ss_msg(DBG, "rdhdr_hsbin", "failed to find vendor string\n; ahdr=\n%.200s\n", ahdr); goto fail; } ntable_cp = strstr(ntable_cp, " "); if(!ntable_cp) { ss_msg(DBG, "rdhdr_hsbin", "failed to find end of vendor string\n; ahdr=\n%.200s\n", ahdr); goto fail; } ntables = atoi(ntable_cp); if(ntables == 0) ntables = 1; ss_msg(DBG, "sf_rdhdr_hsbin", "nauto=%d nprobe=%d nsweepparam=%d ntables=%d floatsize=%d", nauto, nprobe, nsweepparam, ntables, floatsize); varlist_cp = strpbrk(ntable_cp, "0123456789"); // find ntables digits if(!varlist_cp) { goto fail; ss_msg(DBG, "rdhdr_hsbin", "failed to find ntables digits\n; ahdr=\n%.200s\n", ahdr); } while(*varlist_cp && isdigit(*varlist_cp)) varlist_cp++; if(!*varlist_cp) { ss_msg(DBG, "rdhdr_hsbin", "failed to find end of ntables digits\n; ahdr=\n%.200s\n", ahdr); goto fail; } sf = hs_process_header(nauto, nprobe, nsweepparam, varlist_cp, name); if(!sf) goto fail; if(fread(&hh, sizeof(hh), 1, fp) != 1) { ss_msg(DBG, "sf_rdhdr_hsbin", "EOF reading block header"); goto fail; } if(hh.h1 == 0x04000000 && hh.h3 == 0x04000000) { /* detected endian swap */ sf->flags |= SSF_ESWAP; swap_gint32((gint32*)&hh, sizeof(hh)/sizeof(gint32)); } if(hh.h1 != 4 || hh.h3 != 4) { ss_msg(DBG, "sf_rdhdr_hsbin", "unexepected values in data block header"); goto fail; } datasize = hh.block_nbytes; sf->expected_vals = datasize / floatsize; sf->read_vals = 0; ss_msg(DBG, "sf_rdhdr_hsbin", "datasize=%d expect %d columns, %d values;\n reading first data block at 0x%lx", datasize, sf->ncols, sf->expected_vals, (long)ftello64(fp)); sf->fp = fp; sf->readrow = sf_readrow_hsbin; sf->readsweep = sf_readsweep_hsbin; sf->ntables = ntables; sf->read_tables = 0; sf->read_rows = 0; sf->read_sweepparam = 0; sf->floatsize = floatsize; return sf; fail: if(ahdr) g_free(ahdr); if(sf) { if(sf->dvarp) g_ptr_array_free(sf->dvarp, 1); g_free(sf); } return NULL; } /* common code for reading ascii or binary hspice headers. * Given a string of ascii header information, set up the * SpiceStream structure appropriately. * Returns NULL on failure. */ static SpiceStream * hs_process_header(int nauto, int nprobe, int nsweepparam, char *line, char *name) { char *cp; char *signam; SpiceStream *sf; int i; int hstype; /* type of independent variable */ cp = strtok(line, " \t\n"); if(!cp) { ss_msg(DBG, "hs_process_header", "%s: initial vartype not found on header line.", name); return NULL; } sf = ss_new(NULL, name, nauto-1 + nprobe, nsweepparam); hstype = atoi(cp); switch(hstype) { case 1: sf->ivar->type = TIME; break; case 2: sf->ivar->type = FREQUENCY; break; case 3: sf->ivar->type = VOLTAGE; break; default: sf->ivar->type = UNKNOWN; break; } sf->ivar->col = 0; sf->ivar->ncols = 1; sf->ncols = 1; /* dependent variable types */ for(i = 0; i < sf->ndv; i++) { int ncols; VarType vtype; SpiceVar *dvar; cp = strtok(NULL, " \t\n"); if(!cp) { ss_msg(DBG, "hs_process_header", "%s: not enough vartypes on header line", name); return NULL; } if(!isdigit(cp[0])) { ss_msg(DBG, "hs_process_header", "%s: bad vartype %d [%s] on header line", name, i, cp); return NULL; } hstype = atoi(cp); switch(hstype) { case 1: case 2: vtype = VOLTAGE; break; case 8: case 15: case 22: vtype = CURRENT; break; default: vtype = UNKNOWN; break; } if(i < nauto-1 && sf->ivar->type == FREQUENCY) { ncols = 2; } else { ncols = 1; } dvar = ss_spicevar_new(NULL, vtype, sf->ncols, ncols); g_ptr_array_add(sf->dvarp, dvar); sf->ncols += ncols; } /* independent variable name */ signam = strtok(NULL, " \t\n"); if(!signam) { ss_msg(DBG, "hs_process_header", "%s: no IV name found on header line", name); goto fail; } sf->ivar->name = g_strdup(signam); /* dependent variable names */ for(i = 0; i < sf->ndv; i++) { SpiceVar *dvar; if((signam = strtok(NULL, " \t\n")) == NULL) { ss_msg(DBG, "hs_process_header", "%s: not enough DV names found on header line", name); goto fail; } dvar = ss_dvar(sf, i); dvar->name = g_strdup(signam); } /* sweep parameter names */ for(i = 0; i < sf->nsweepparam; i++) { if((signam = strtok(NULL, " \t\n")) == NULL) { ss_msg(DBG, "hs_process_header", "%s: not enough sweep parameter names found on header line", name); goto fail; } sf->spar[i].name = g_strdup(signam); } return sf; fail: ss_delete(sf); return NULL; } /* * Read a "block" from an HSPICE binary file. * Returns number of bytes read, 0 for EOF, negative for error. * The body of the block is copied into the buffer pointed to by the * buffer-pointer pointed to by bufp, at offset offset. * The buffer is expanded with g_realloc if necessary. * If bufp is NULL, a new buffer is allocated. The buffer * size is maintained in the int pointed to by bufsize. * */ static int sf_readblock_hsbin(FILE *fp, char **bufp, int *bufsize, int offset) { struct hsblock_header hh; gint32 trailer; int eswap = 0; if(fread(&hh, sizeof(hh), 1, fp) != 1) { ss_msg(DBG, "sf_readblock_hsbin", "EOF reading block header"); return 0; } if(hh.h1 == 0x04000000 && hh.h3 == 0x04000000) { /* detected endian swap */ eswap = 1; swap_gint32((gint32*)&hh, sizeof(hh)/sizeof(gint32)); } if(hh.h1 != 0x00000004 || hh.h3 != 0x00000004) { ss_msg(DBG, "sf_readblock_hsbin", "unexpected values (0x%x,0x%x) in block header at offset 0x%x", hh.h1, hh.h3, (long)ftello64(fp)); return -1; } if(bufp == NULL) { /* new buffer: exact fit */ *bufsize = hh.block_nbytes; *bufp = g_new(char, *bufsize); } /* need to expand: double buffer size or make room for two blocks * this size, whichever is larger. Better to realloc more now and * cut down on the number of future reallocs. */ if(*bufsize < offset + hh.block_nbytes) { if(2 * *bufsize > (*bufsize + 2 * hh.block_nbytes)) *bufsize *= 2; else *bufsize += 2 * hh.block_nbytes; *bufp = g_realloc(*bufp, *bufsize); } if(fread(*bufp + offset, sizeof(char), hh.block_nbytes, fp) != hh.block_nbytes) { ss_msg(DBG, "sf_readblock_hsbin", "EOF reading block body"); return 0; } if(fread(&trailer, sizeof(gint32), 1, fp) != 1) { ss_msg(DBG, "sf_readblock_hsbin", "EOF reading block trailer"); return 0; } if(eswap) { swap_gint32(&trailer, 1); } if(trailer != hh.block_nbytes) { ss_msg(DBG, "sf_readblock_hsbin", "block trailer mismatch"); return -2; } return hh.block_nbytes; } /* * helper routine: get next floating-point value from data part of binary * hspice file. Handles the block-structure of hspice files; all blocks * encountered are assumed to be data blocks. We don't use readblock_hsbin because * some versions of hspice write very large blocks, which would require a * very large buffer. * * Returns 0 on EOF, 1 on success, negative on error. */ static int sf_getval_hsbin(SpiceStream *sf, double *dvalp) { off64_t pos; float fval; double dval; struct hsblock_header hh; gint32 trailer; if(sf->read_vals >= sf->expected_vals) { pos = ftello64(sf->fp); if(fread(&trailer, sizeof(gint32), 1, sf->fp) != 1) { ss_msg(DBG, "sf_getval_hsbin", "EOF reading block trailer at offset 0x%lx", (long) pos); return 0; } if(sf->flags & SSF_ESWAP) { swap_gint32(&trailer, 1); } if(trailer != sf->expected_vals * sf->floatsize) { ss_msg(DBG, "sf_getval_hsbin", "block trailer mismatch at offset 0x%lx", (long) pos); return -2; } pos = ftello64(sf->fp); if(fread(&hh, sizeof(hh), 1, sf->fp) != 1) { ss_msg(DBG, "sf_getval_hsbin", "EOF reading block header at offset 0x%lx", (long) pos); return 0; } if(hh.h1 == 0x04000000 && hh.h3 == 0x04000000) { /* detected endian swap */ sf->flags |= SSF_ESWAP; swap_gint32((gint32*)&hh, sizeof(hh)/sizeof(gint32)); } else { sf->flags &= ~SSF_ESWAP; } if(hh.h1 != 0x00000004 || hh.h3 != 0x00000004) { ss_msg(ERR, "sf_getval_hsbin", "unexepected values in block header at offset 0x%lx", pos); return -1; } sf->expected_vals = hh.block_nbytes / sf->floatsize; sf->read_vals = 0; } if(sf->floatsize == 4) { if(fread(&fval, sizeof(float), 1, sf->fp) != 1) { pos = ftello64(sf->fp); ss_msg(ERR, "sf_getval_hsbin", "unexepected EOF in data at offset 0x%lx", (long) pos); return 0; } if(sf->flags & SSF_ESWAP) { swap_gint32((gint32 *)&fval, 1); } *dvalp = fval; } else if(sf->floatsize == 8) { if(fread(&dval, sf->floatsize, 1, sf->fp) != 1) { pos = ftello64(sf->fp); ss_msg(ERR, "sf_getval_hsbin", "unexepected EOF in data at offset 0x%lx", (long) pos); return 0; } if(sf->flags & SSF_ESWAP) { dval = GUINT64_SWAP_LE_BE(dval); //swap_gint64((gint64 *)&dval, 1); } *dvalp = dval; } sf->read_vals++; return 1; } /* * helper routine: get next value from ascii hspice file. * the file is line-oriented, with fixed-width fields on each line. * Lines may look like either of these two examples: 0.66687E-090.21426E+010.00000E+000.00000E+000.25000E+010.71063E-090.17877E+01 .00000E+00 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30000E+01 .30092E-05 * There may be whitespace at the end of the line before the newline. * * Returns 0 on EOF, 1 on success. */ static int sf_getval_hsascii(SpiceStream *sf, double *val) { char vbuf[16]; char *vp; char *cp; int l; if(!sf->linep || (*sf->linep==0) || *sf->linep == '\n') { if(fgets(sf->linebuf, sf->lbufsize, sf->fp) == NULL) return 0; l = strlen(sf->linebuf); if(l) { /* delete whitespace at end of line */ cp = sf->linebuf + l - 1; while(cp > sf->linebuf && *cp && isspace(*cp)) *cp-- = '\0'; } sf->linep = sf->linebuf; sf->line_length = strlen(sf->linep); /* fprintf(stderr, "#line: \"%s\"\n", sf->linebuf); */ } if(sf->linep > sf->linebuf + sf->line_length) { ss_msg(WARN, "sf_getval_hsascii", "%s: internal error or bad line in file", sf->filename); return 0; } strncpy(vbuf, sf->linep, sf->avalsize); sf->linep += sf->avalsize; vbuf[sf->avalsize] = 0; if(strlen(vbuf) != sf->avalsize) { /* incomplete float value - probably truncated or partialy-written file */ ss_msg(ERR, "sf_getval_hsascii", "unexepected number \"%s\" near offset 0x%lx", vbuf, (long)ftello64(sf->fp)); return 0; } vp = vbuf; while(isspace(*vp)) /* atof doesn't like spaces */ vp++; *val = atof(vp); /* fprintf(stderr, "#vp=\"%s\" val=%f\n", vp, *val); */ return 1; } /* Read row of values from ascii hspice-format file. * Returns: * 1 on success. also fills in *ivar scalar and *dvars vector * 0 on EOF * -1 on error (may change some ivar/dvar values) * -2 on end of table, with more tables supposedly still to be read. */ static int sf_readrow_hsascii(SpiceStream *sf, double *ivar, double *dvars) { int i; if(!sf->read_sweepparam) { /* first row of table */ if(sf_readsweep_hsascii(sf, NULL) <= 0) /* discard sweep parameters, if any */ return -1; } if(sf_getval_hsascii(sf, ivar) == 0) return 0; if(*ivar >= 1.0e29) { /* "infinity" at end of data table */ sf->read_tables++; if(sf->read_tables == sf->ntables) return 0; /* EOF */ else sf->read_sweepparam = 0; sf->read_rows = 0; return -2; /* end of table, more tables follow */ } sf->read_rows++; for(i = 0; i < sf->ncols-1; i++) { if(sf_getval_hsascii(sf, &dvars[i]) == 0) { ss_msg(WARN, "sf_readrow_hsascii", "%s: EOF or error reading data field %d in row %d of table %d; file is incomplete at offset 0x%x.", sf->filename, i, sf->read_rows, sf->read_tables, (long)ftello64(sf->fp)); return 0; } } return 1; } /* Read row of values from binary hspice-format file. * Returns: * 1 on success. also fills in *ivar scalar and *dvars vector * 0 on EOF * -1 on error (may change some ivar/dvar values) */ static int sf_readrow_hsbin(SpiceStream *sf, double *ivar, double *dvars) { int i; int rc; if(!sf->read_sweepparam) { /* first row of table */ if(sf_readsweep_hsbin(sf, NULL) <= 0) /* discard sweep parameters, if any */ return -1; } rc = sf_getval_hsbin(sf, ivar); if(rc == 0) /* file EOF */ return 0; if(rc < 0) return -1; if(*ivar >= 1.0e29) { /* "infinity" at end of data table */ sf->read_tables++; if(sf->read_tables == sf->ntables) return 0; /* end of data, should also be EOF but we don't check */ else { sf->read_sweepparam = 0; sf->read_rows = 0; return -2; /* end of table, more tables follow */ } } sf->read_rows++; for(i = 0; i < sf->ncols-1; i++) { if(sf_getval_hsbin(sf, &dvars[i]) != 1) { ss_msg(WARN, "sf_readrow_hsbin", "%s: EOF or error reading data field %d in row %d of table %d; file is incomplete.", sf->filename, i, sf->read_rows, sf->read_tables); return 0; } } return 1; } /* * Read the sweep parameters from an HSPICE ascii or binary file * This routine must be called before the first sf_readrow_hsascii call in each data * table. If it has not been called before the first readrow call, it will be called * with a NULL svar pointer to read and discard the sweep data. * * returns: * 1 on success * -1 on error */ static int sf_readsweep_hsascii(SpiceStream *sf, double *svar) { int i; double val; for(i = 0; i < sf->nsweepparam; i++) { if(sf_getval_hsascii(sf, &val) == 0) { ss_msg(ERR, "sf_readsweep_hsascii", "unexpected EOF reading sweep parameters\n"); return -1; } if(svar) svar[i] = val; } sf->read_sweepparam = 1; return 1; } static int sf_readsweep_hsbin(SpiceStream *sf, double *svar) { int i; double val; for(i = 0; i < sf->nsweepparam; i++) { if(sf_getval_hsbin(sf, &val) != 1) { ss_msg(ERR, "sf_readsweep_hsbin", "EOF or error reading sweep parameter\n"); return -1; } if(svar) svar[i] = val; } sf->read_sweepparam = 1; return 1; } /* * Estimate how many rows are in the file associated with sf. * We base our estimate on the size of the file. * This can be useful to aid in memory-use planning by programs planning to * read the entire file. * * If the file descriptor is not associated with an ordinary file, we return 0 * to indicate that the length cannot be estimated. * If an error occurs, -1 is returned. */ static long sf_guessrows_hsbin(SpiceStream *sf) { int rc; struct stat st; rc = fstat(fileno(sf->fp), &st); if(rc < 0) return -1; if((st.st_mode & S_IFMT) != S_IFREG) return 0; return st.st_size / (sizeof(float) * sf->ncols); } static void swap_gint32(gint32 *pi, size_t n) { union gint32bytes *p = (union gint32bytes *)pi; size_t i; gchar temp; for(i = 0; i < n; i++) { temp = p[i].b[3] ; p[i].b[3] = p[i].b[0]; p[i].b[0] = temp; temp = p[i].b[2] ; p[i].b[2] = p[i].b[1]; p[i].b[1] = temp; } } gwave2-20170109/spicefile/sp2sp.c0000644001226200000360000004753013007135134013253 00000000000000/* * sp2sp - test program for spicestream library and * rudimentary spicefile format converter. * * Copyright (C) 1998,1999 Stephen G. Tell * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public * License along with this program; if not, write to the Free * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * */ #include #include #include #include #include #include #include #include "spicestream.h" #define SWEEP_NONE 0 #define SWEEP_PREPEND 1 #define SWEEP_HEAD 2 static const char NPY_MAGIC[] = "\x93NUMPY"; static const int NPY_MAJOR = 1; static const int NPY_MINOR = 0; static const int NPY_MAX_HDR_LEN = 256 * 256; static const int NPY_PREAMBLE_LEN = 6 + 1 + 1 + 2; #if __BYTE_ORDER == __LITTLE_ENDIAN static const char NPY_ENDIAN_CHAR = '<'; #else static const char NPY_ENDIAN_CHAR = '>'; #endif int g_verbose = 0; int sweep_mode = SWEEP_PREPEND; char *progname = "sp2sp"; static void ascii_header_output(SpiceStream *sf, int *enab, int nidx, FILE *of); static void ascii_data_output(SpiceStream *sf, int *enab, int nidx, double begin_val, double end_val, int ndigits, FILE *of); static void numpy_output(SpiceStream *sf, int *enab, int nidx, double begin_val, double end_val, int ndigits, FILE *of); static int numpy_header_output(int ndims, int* shape, int len, FILE *of); static int numpy_footer_output(SpiceStream *sf, int *indices, int nidx, int *sweeprows, FILE *of); static int parse_field_numbers(int **index, int *idxsize, int *nsel, char *list, int nfields); static int parse_field_names(int **index, int *idxsize, int *nsel, char *list, SpiceStream *sf); static VarType get_vartype_code(char *vartype); static void usage() { int i; char *s; fprintf(stderr, "usage: %s [options] file\n", progname); fprintf(stderr, " options:\n"); fprintf(stderr, " -b V begin output after independent-variable value V is reached\n"); fprintf(stderr, " instead of start of input\n"); fprintf(stderr, " -c T Convert output to type T\n"); fprintf(stderr, " -d N use N significant digits in output\n"); fprintf(stderr, " -e V stop after independent-variable value V is reached\n"); fprintf(stderr, " instead of end of input.\n"); fprintf(stderr, " -f f1,f2,... Output only fields named f1, f2, etc.\n"); fprintf(stderr, " -n n1,n2,... Output only fields n1, n2, etc;\n"); fprintf(stderr, " independent variable is field number 0\n"); fprintf(stderr, " -o file Output to named file instead of default '-' stdout.\n"); fprintf(stderr, " -u U Output only variables with units of type; U\n"); fprintf(stderr, " U = volts, amps, etc.\n"); fprintf(stderr, " -s S Handle sweep parameters as S:\n"); fprintf(stderr, " -s head add header-like comment line\n"); fprintf(stderr, " -s prepend prepend columns to all output lines\n"); fprintf(stderr, " -s none ignore sweep info\n"); fprintf(stderr, " -t T Assume that input is of type T\n"); fprintf(stderr, " -v Verbose - print detailed signal information\n"); fprintf(stderr, " output format types:\n"); fprintf(stderr, " none - no data output\n"); fprintf(stderr, " ascii - lines of space-seperated numbers, with header\n"); fprintf(stderr, " nohead - lines of space-seperated numbers, no headers\n"); fprintf(stderr, " cazm - CAzM format\n"); fprintf(stderr, " numpy - .npy data followed by python str(dict) and footer len uint16\n"); fprintf(stderr, " input format types:\n"); i = 0; while(s = ss_filetype_name(i++)) { fprintf(stderr, " %s\n", s); } } int main(int argc, char **argv) { SpiceStream *sf; FILE *of; int i; int idx; extern int optind; extern char *optarg; int x_flag = 0; int errflg = 0; char *infiletype = "hspice"; char *outfiletype = "ascii"; char *outfilename = "-"; char *fieldnamelist = NULL; char *fieldnumlist = NULL; int *out_indices = NULL; int outi_size = 0; int nsel; VarType vartype = UNKNOWN; int c; int ndigits = 7; double begin_val = -DBL_MAX; double end_val = DBL_MAX; while ((c = getopt (argc, argv, "b:c:d:e:f:n:s:t:u:o:vx")) != EOF) { switch(c) { case 'v': spicestream_msg_level = DBG; g_verbose = 1; break; case 'b': begin_val = atof(optarg); break; case 'c': outfiletype = optarg; break; case 'd': ndigits = atoi(optarg); if(ndigits < 5) ndigits = 5; break; case 'e': end_val = atof(optarg); break; case 'f': fieldnamelist = optarg; break; case 'n': fieldnumlist = optarg; break; case 's': if(strcmp(optarg, "none") == 0) sweep_mode = SWEEP_NONE; else if(strcmp(optarg, "prepend") == 0) sweep_mode = SWEEP_PREPEND; else if(strcmp(optarg, "head") == 0) sweep_mode = SWEEP_HEAD; else { fprintf(stderr, "unknown sweep-data style %s\n", optarg); exit(1); } break; case 't': infiletype = optarg; break; case 'u': vartype = get_vartype_code(optarg); break; case 'x': spicestream_msg_level = DBG; x_flag = 1; break; case 'o': outfilename = optarg; break; default: errflg = 1; break; } } if(errflg || optind >= argc) { usage(); exit(1); } sf = ss_open(argv[optind], infiletype); if(!sf) { if(errno) perror(argv[optind]); fprintf(stderr, "unable to read file\n"); exit(1); } if(g_verbose) { printf("filename: \"%s\"\n", sf->filename); printf(" columns: %d\n", sf->ncols); printf(" tables: %d\n", sf->ntables); printf("independent variable:\n"); printf(" name: \"%s\"\n", sf->ivar->name); printf(" type: %s\n", vartype_name_str(sf->ivar->type)); printf(" col: %d\n", sf->ivar->col); printf(" ncols: %d\n", sf->ivar->ncols); printf("sweep parameters: %d\n", sf->nsweepparam); for(i = 0; i < sf->nsweepparam; i++) { printf(" name: \"%s\"\n", sf->spar[i].name); printf(" type: %s\n", vartype_name_str(sf->spar[i].type)); } printf("dependent variables: %d\n", sf->ndv); for(i = 0; i < sf->ndv; i++) { SpiceVar *dvar; dvar = ss_dvar(sf, i); printf(" dv[%d] \"%s\" ", i, dvar->name); printf(" (type=%s col=%d ncols=%d)\n", vartype_name_str(dvar->type), dvar->col, dvar->ncols); } } if(strcmp(outfilename, "-") == 0) { if(strcmp(outfiletype, "numpy") == 0) { fprintf(stderr, "cannot output to stdout for 'numpy' format, use -o\n"); exit(1); } of = stdout; } else { of = (FILE *)fopen64(outfilename, "w"); /* DJW: why is the cast needed? */ if(!of) { if(errno) perror(outfilename); fprintf(stderr, "unable to open output file\n"); exit(1); } } if(fieldnamelist == NULL && fieldnumlist == NULL) { out_indices = g_new0(int, sf->ndv+1); nsel = 0; idx = 0; for(i = 0; i < sf->ndv+1; i++) { SpiceVar *dvar; dvar = ss_dvar(sf, i-1); if(i == 0 || (vartype == UNKNOWN || dvar->type == vartype)) { out_indices[idx++] = i; nsel++; } } } if(fieldnumlist) if(parse_field_numbers(&out_indices, &outi_size, &nsel, fieldnumlist, sf->ndv+1) < 0) exit(1); if(fieldnamelist) if(parse_field_names(&out_indices, &outi_size, &nsel, fieldnamelist, sf) < 0) exit(1); if(nsel == 0) { fprintf(stderr, "No fields selected for output\n"); exit(0); } if(strcmp(outfiletype, "cazm") == 0) { fprintf(of, "* CAZM-format output converted with sp2sp\n"); fprintf(of, "\n"); fprintf(of, "TRANSIENT ANALYSIS\n"); ascii_header_output(sf, out_indices, nsel, of); ascii_data_output(sf, out_indices, nsel, begin_val, end_val, ndigits, of); } else if(strcmp(outfiletype, "ascii") == 0) { ascii_header_output(sf, out_indices, nsel, of); ascii_data_output(sf, out_indices, nsel, begin_val, end_val, ndigits, of); } else if(strcmp(outfiletype, "nohead") == 0) { ascii_data_output(sf, out_indices, nsel, begin_val, end_val, ndigits, of); } else if(strcmp(outfiletype, "numpy") == 0) { numpy_output(sf, out_indices, nsel, begin_val, end_val, ndigits, of); } else if(strcmp(outfiletype, "none") == 0) { /* do nothing */ } else { fprintf(stderr, "%s: invalid output type name: %s\n", progname, outfiletype); } ss_close(sf); close(of); exit(0); } /* * print all column headers. * For multicolumn variables, ss_var_name will generate a column name * consisting of the variable name plus a suffix. */ static void ascii_header_output(SpiceStream *sf, int *indices, int nidx, FILE *of) { int i, j; char buf[1024]; if((sf->nsweepparam > 0) && (sweep_mode == SWEEP_PREPEND)) { for(i = 0; i < sf->nsweepparam; i++) { fprintf(of, "%s ", sf->spar[i].name); } } for(i = 0; i < nidx; i++) { if(i > 0) fputc(' ', of); if(indices[i] == 0) { ss_var_name(sf->ivar, 0, buf, 1024); fprintf(of, "%s", buf); } else { int varno = indices[i]-1; SpiceVar *dvar; dvar = ss_dvar(sf, varno); for(j = 0; j < dvar->ncols; j++) { if(j > 0) fputc(' ', of); ss_var_name(dvar, j, buf, 1024); fprintf(of, "%s", buf); } } } fputc('\n', of); } /* * print data as space-seperated columns. */ static void ascii_data_output(SpiceStream *sf, int *indices, int nidx, double begin_val, double end_val, int ndigits, FILE *of) { int i, j, tab; int rc; double ival; double *dvals; double *spar = NULL; int done; dvals = g_new(double, sf->ncols); if(sf->nsweepparam > 0) spar = g_new(double, sf->nsweepparam); done = 0; tab = 0; while(!done) { if(sf->nsweepparam > 0) { if(ss_readsweep(sf, spar) <= 0) break; } if(tab > 0 && sweep_mode == SWEEP_HEAD) { fprintf(of, "# sweep %d;", tab); for(i = 0; i < sf->nsweepparam; i++) { fprintf(of, " %s=%g", sf->spar[i].name, spar[i]); } fputc('\n', of); } while((rc = ss_readrow(sf, &ival, dvals)) > 0) { if(ival < begin_val) continue; if(ival > end_val) { /* past end_val, but can only stop reading early if if there is only one sweep-table in the file. */ if(sf->ntables == 1) break; else continue; } if((sf->nsweepparam > 0) && (sweep_mode == SWEEP_PREPEND)) { for(i = 0; i < sf->nsweepparam; i++) { fprintf(of, "%.*g ", ndigits, spar[i]); } } for(i = 0; i < nidx; i++) { if(i > 0) fputc(' ', of); if(indices[i] == 0) fprintf(of, "%.*g", ndigits, ival); else { int varno = indices[i]-1; SpiceVar *dvar = ss_dvar(sf, varno); int dcolno = dvar->col - 1; for(j = 0; j < dvar->ncols; j++) { if(j > 0) fputc(' ', of); fprintf(of, "%.*g", ndigits, dvals[dcolno+j]); } } } fputc('\n', of); } if(rc == -2) { /* end of sweep, more follow */ if(sf->nsweepparam == 0) sweep_mode = SWEEP_HEAD; tab++; } else { /* EOF or error */ done = 1; } } g_free(dvals); if(spar) g_free(spar); } static int numpy_header_output(int ndims, int *shape, int len, FILE *of) { /* More documentation about the npy format at numpy/lib/format.py */ char header[NPY_MAX_HDR_LEN]; char descr[5]; int i; int hlen; int nspaces = 0; strcpy(header, "{'descr':'"); descr[0] = NPY_ENDIAN_CHAR; descr[1] = 'f'; sprintf(descr+2, "%d", (int) sizeof(float)); strcat(header, descr); strcat(header, "', 'fortran_order':False, 'shape': ("); for(i=0; i < ndims; i++) { hlen = strlen(header); sprintf(header+hlen, "%d", shape[i]); if(i != ndims-1) { strcat(header, ", "); } } strcat(header, ") }"); hlen = strlen(header); if(len == -1) { /* bogus header values or just write the length needed */ nspaces = 16 - ((NPY_PREAMBLE_LEN + hlen + 1) % 16); } else if(len < hlen) { fprintf(stderr, "numpy_header_output: requested header len is too small\n"); } else if(((len + NPY_PREAMBLE_LEN) % 16) != 0) { fprintf(stderr, "requested header len does not align to mult of 16\n"); } else { /* pad to the (longer) header length */ nspaces = len - hlen - 1; } if(hlen + nspaces + 1 > NPY_MAX_HDR_LEN) { fprintf(stderr, "npy header too long (%d)\n", hlen+nspaces+1); return 0; } for(i=0; i < nspaces; i++) { strcat(header, " "); } strcat(header, "\n"); hlen = strlen(header); /* preamble */ fprintf(of, NPY_MAGIC); fwrite(&NPY_MAJOR, sizeof(char), 1, of); fwrite(&NPY_MINOR, sizeof(char), 1, of); fputc((0xff & hlen), of); fputc((0xff & (hlen >> 8)), of); fwrite(header, sizeof(char), hlen, of); return hlen; } static int numpy_footer_output(SpiceStream *sf, int *indices, int nidx, int *sweeprows, FILE *of) { int i, j; int foot_start = 0; int foot_len = 0; char buf[1024]; double *spar = NULL; foot_start = ftell(of); /* * make footer dict */ fprintf(of, "{ "); /* sweep variables, these values prepend the data columns for each row */ fprintf(of, "'sweepvars':("); /*for(i=0; i < sf->ntables; i++) {*/ if(sf->ntables > 1) { for(j = 0; j < sf->nsweepparam; j++) { fprintf(of, "'%s'", sf->spar[j].name); fprintf(of, ","); } } fprintf(of, "), "); fprintf(of, "'sweeprows':("); if(sf->ntables > 1) { for(i=0; i < sf->ntables; i++) { fprintf(of, "(%d,%d),", sweeprows[2*i], sweeprows[2*i+1]); } } fprintf(of, "), "); fprintf(of, "'cols':("); for(i = 0; i < nidx; i++) { if(indices[i] == 0) { ss_var_name(sf->ivar, 0, buf, 1024); fprintf(of, "'%s', ", buf); } else { int varno = indices[i]-1; SpiceVar *dvar = ss_dvar(sf, varno); int dcolno = dvar->col - 1; for(j = 0; j < dvar->ncols; j++) { ss_var_name(dvar, j, buf, 1024); fprintf(of, "'%s', ", buf); } } } fprintf(of, ") }"); /* space-pad to end on a 16 byte boundary */ while(((ftell(of)+3) % 16) != 0) { fputc(' ', of); } fputc('\n', of); foot_len = ftell(of) - foot_start + 2; fputc((0xFF & foot_len), of); fputc((0xFF & (foot_len >> 8)), of); return foot_len; } /* * print data as a .npy format array * See numpy/lib/format.py for details of the .npy file format. */ static void numpy_output(SpiceStream *sf, int *indices, int nidx, double begin_val, double end_val, int ndigits, FILE *of) { int i, j, tab; int rc; int npy_hlen = 0; int foot_len = 0; int npy_end = 0; int ndims = 0, ncols = 0, nrows = 0; int *sweeprows; int shape[3]; char buf[1024]; char npy_descr[5], npy_preamble[NPY_PREAMBLE_LEN], npy_header[NPY_MAX_HDR_LEN]; float val; double ival; double *dvals; double *spar = NULL; int done; /* * write sham npy preamble + header to reserve space, don't know nrows yet */ ndims = 2; shape[0] = INT_MAX; shape[1] = INT_MAX; npy_hlen = numpy_header_output(ndims, shape, -1, of); /* now write rows */ dvals = g_new(double, sf->ncols); sweeprows = g_new(int, 2 * sf->ntables); if(sf->nsweepparam > 0) spar = g_new(double, sf->nsweepparam); done = 0; tab = 0; nrows = 0; sweeprows[2*tab] = nrows; while(!done) { if(sf->nsweepparam > 0) { if(ss_readsweep(sf, spar) <= 0) break; } while((rc = ss_readrow(sf, &ival, dvals)) > 0) { if(ival < begin_val) continue; if(ival > end_val) { /* past end_val, but can only stop reading early if if there is only one sweep-table in the file. */ if(sf->ntables == 1) break; else continue; } if(sf->nsweepparam > 0) { for(i = 0; i < sf->nsweepparam; i++) { val = (float)spar[i]; fwrite(&val, sizeof(float), 1, of); } } for(i = 0; i < nidx; i++) { if(indices[i] == 0) { val = (float)ival; fwrite(&val, sizeof(float), 1, of); } else { int varno = indices[i]-1; SpiceVar *dvar = ss_dvar(sf, varno); int dcolno = dvar->col - 1; for(j = 0; j < dvar->ncols; j++) { val = (float)dvals[dcolno+j]; fwrite(&val, sizeof(float), 1, of); } } } nrows += 1; } if(rc == -2) { /* end of sweep, more follow */ if(sf->nsweepparam == 0) sweep_mode = SWEEP_HEAD; sweeprows[2*tab+1] = nrows-1; tab++; sweeprows[2*tab] = nrows; } else { /* EOF or error */ done = 1; sweeprows[2*tab+1] = nrows-1; } } npy_end = ftell(of); /* write trailing string representation of a python dict describing the data */ foot_len = numpy_footer_output(sf, indices, nidx, sweeprows, of); /* * go back and overwrite npy header with correct values */ fseek(of, 0, SEEK_SET); /* calc num cols of data, second dimension */ ncols = sf->nsweepparam; for(i = 0; i < nidx; i++) { if(indices[i] == 0) { /* independent var */ ncols += 1; } else { int varno = indices[i]-1; SpiceVar *dvar = ss_dvar(sf, varno); ncols += dvar->ncols; } } shape[0] = nrows; shape[1] = ncols; int npy_hlen2 = numpy_header_output(ndims, shape, npy_hlen, of); if(npy_hlen2 != npy_hlen) { fprintf(stderr, "numpy OOPS, inconsistent header lengths\n"); } fclose(of); g_free(dvals); g_free(sweeprows); if(spar) g_free(spar); } static int parse_field_numbers(int **indices, int *idxsize, int *nidx, char *list, int nfields) { int n, i; char *fnum; int err = 0; int *idx; if(!*indices || idxsize == 0) { *idxsize = nfields*2; idx = g_new0(int, *idxsize); *indices = idx; *nidx = 0; } fnum = strtok(list, ", \t"); i = 0; while(fnum) { if(*nidx >= *idxsize) { *idxsize *= 2; idx = g_realloc(idx, (*idxsize) * sizeof(int)); *indices = idx; } n = atoi(fnum); if(n < 0 || n >= nfields) { fprintf(stderr, "bad field number in -n option: %s\n", fnum); err = -1; } else { idx[i++] = n; (*nidx)++; } fnum = strtok(NULL, ", \t"); } return err; } /* * Try looking for named dependent variable. Try twice, * first as-is, then with "v(" prepended the way hspice mangles things. */ static int find_dv_by_name(char *name, SpiceStream *sf) { int i; SpiceVar *dvar; for(i = 0; i < sf->ndv; i++) { dvar = ss_dvar(sf, i); if(strcasecmp(name, dvar->name) == 0) return i; } for(i = 0; i < sf->ndv; i++) { dvar = ss_dvar(sf, i); if(strncasecmp("v(", dvar->name, 2) == 0 && strcasecmp(name, &dvar->name[2]) == 0) return i; } return -1; } /* * parse comma-seperated list of field names. Turn on the output-enables * for the listed fields. */ static int parse_field_names(int **indices, int *idxsize, int *nidx, char *list, SpiceStream *sf) { int err = 0; int n; char *fld; int i; int *idx; if(!*indices || idxsize == 0) { *idxsize = (sf->ndv+1)*2; idx = g_new0(int, *idxsize); *indices = idx; *nidx = 0; } fld = strtok(list, ", \t"); i = 0; while(fld) { if(*nidx >= *idxsize) { *idxsize *= 2; idx = g_realloc(idx, (*idxsize) * sizeof(int)); *indices = idx; } if(strcasecmp(fld, sf->ivar->name)==0) { idx[i++] = 0; (*nidx)++; } else if((n = find_dv_by_name(fld, sf)) >= 0) { idx[i++] = n+1; (*nidx)++; } else { fprintf(stderr, "field name in -f option not found in file: %s\n", fld); err = -1; } fld = strtok(NULL, ", \t"); } return err; } struct vtlistel { VarType t; char *s; }; static struct vtlistel vtlist[] = { {TIME, "time"}, {VOLTAGE, "volt"}, {VOLTAGE, "volts"}, {VOLTAGE, "voltage"}, {CURRENT, "current"}, {CURRENT, "amps"}, {FREQUENCY, "freq"}, {FREQUENCY, "frequency"}, {FREQUENCY, "hertz"}, {UNKNOWN, NULL}, }; /* * Given a variable type name, return a numeric VarType. * Returns 0 (UNKNOWN) if no match. */ static VarType get_vartype_code(char *vartype) { int i; for(i = 0; vtlist[i].s; i++) { if(strcasecmp(vartype, vtlist[i].s) == 0) return vtlist[i].t; } return UNKNOWN; } /* * vim:tabstop=4 noexpandtab */ gwave2-20170109/spicefile/spicestream.h0000644001226200000360000000703513007151363014526 00000000000000/* * spicefile.h - definitions for a file reader for the analog * output files of various spice-like simulators. * * Copyright 1998,1999 Stephen G. Tell. * * */ #ifndef SPICESTREAM_H #define SPICESTREAM_H #ifdef __cplusplus extern "C" { #endif #include typedef struct _SpiceStream SpiceStream; typedef struct _SpiceVar SpiceVar; typedef enum { UNKNOWN = 0, TIME = 1, VOLTAGE = 2, CURRENT = 3, FREQUENCY = 4, MATH = 5, } VarType; typedef enum SSMsgLevel_tag {DBG = -1, INFO = 0, WARN = 1, ERR = 2} SSMsgLevel; extern FILE *ss_error_file; typedef void (*SSMsgHook) (char *s); extern SSMsgHook ss_error_hook; extern SSMsgLevel spicestream_msg_level; /* header data on each variable mentioned in the file * For sweep parameters, ncols will be 0. */ struct _SpiceVar { char *name; VarType type; int col; /* index of (first) column of data that goes with this variable */ int ncols; /* number of columns of data for this variable; complex numbers have two */ }; typedef int (*SSReadRow) (SpiceStream *sf, double *ivar, double *dvars); typedef int (*SSReadSweep) (SpiceStream *sf, double *spar); struct _SpiceStream { char *filename; int filetype; int ndv; /* number of dependent variables */ int ncols; /* number of columns of data readrow will fill in */ SpiceVar *ivar; /* ptr to independent-variable info */ GPtrArray *dvarp; /* array of SpiceVar* */ SpiceVar *spar; /* ptr to array of sweep parameter info */ SSReadRow readrow; /* func to read one row of data points */ SSReadSweep readsweep; /* func to read one row of data points */ int ntables; /* number of data tables in the file; not * reliable for all file formats */ int nsweepparam; /* number of implicit sweep parameter values at the start * of each table; may be 0 even for a multi-variate * sweep in some file formats */ /* the following stuff is for private use of reader routines */ FILE *fp; int flags; int lineno; char *linebuf; int line_length; int lbufsize; int expected_vals; int read_vals; int read_rows; int read_tables; int read_sweepparam; char *linep; double ivval; int avalsize; /* size of ascii numeric value in this ascii format */ int floatsize; /* 4 or 8, size of the floating point values in a binary file */ /* following for nsout format */ double voltage_resolution; double current_resolution; double time_resolution; int maxindex; double *datrow; /* temporary data row indexed by ns indices */ int *nsindexes; /* indexed by dvar, contains ns index number */ }; /* values for flags field */ #define SSF_ESWAP 1 #define SSF_PUSHBACK 2 #define ss_readrow(sf, ivp, dvp) ((sf->readrow)(sf, ivp, dvp)) #define ss_readsweep(sf, swp) ((sf->readsweep)(sf, swp)) #define ss_dvar(SF, I) (SpiceVar*)(g_ptr_array_index((SF)->dvarp, (I))) extern SpiceStream *ss_open(char *filename, char *type); extern SpiceStream *ss_open_fp(FILE *fp, char *type); extern SpiceStream *ss_open_internal(FILE *fp, char *name, char *type); extern SpiceStream *ss_new(FILE *fp, char *name, int ndv, int nspar); extern SpiceVar *ss_spicevar_new(char *name, VarType type, int col, int ncols); extern void ss_spicevar_free(SpiceVar *sv); extern void ss_close(SpiceStream *sf); extern void ss_delete(SpiceStream *ss); extern char *ss_var_name(SpiceVar *sv, int col, char *buf, int n); extern char *vartype_name_str(VarType type); extern int fread_line(FILE *fp, char **bufp, int *bufsize); extern void ss_msg(SSMsgLevel type, const char *id, const char *msg, ...); extern char *ss_filetype_name(int n); #ifdef __cplusplus } #endif #endif /* SPICESTREAM_H */ gwave2-20170109/NEWS0000644001226200000360000001533513034766060010602 00000000000000Gwave NEWS --- history of user-visible changes. -*- text -*- New in 20170109 - incorporate patches for various hspice file formats; files generated by newer versions work properly now. - add a binding 'control-button-1' to set cursor 1, for use when middle mouse button is missing or inoperative. New in 20090213 - Fix warnings related to GtkTooltips - fix reading of ascii spice3 rawfiles containing blank lines, like those generated by ngspice - add patchfile and explanation sometimes needed when building g-wrap - applied submitted patch that fixes some gcc return-type warnings, fixed many additional gcc warnings. New in 20090124 - minor fixes adaptating for stable guile-gnome-platform-2.16.1 - seems to be stable now New in 20080206 - Another alpha release using guile-gnome-platform, for wider testing - Fixed "zoom dialog" for guile-gnome-platform - Still having some occasional crashes, apparently due to memory corruption that I haven't yet tracked down or pinned on guile-gnome-platform or anything else. New in 20070514 a "gwave2" version that uses Gtk+-2.0 by way of guile-gnome-platform. Feature-wise, about the same as the previous release. I think I've fixed most of the crashes. Known defects: Several dialogs that should have defaults don't. The change-waveform-color menu doesn't show the colors, just numbers. New in 20051222 - full-height vertical scrollbar appears if the total height of all panels becomes larger than the window. - new panel type "jumbo" stays larger even when things get crowded - most deprecated guile calls removed. Guile 1.6 or later is now required. New in 20050928 - ALPHA RELEASE: may crash. do not rely on for production use. - handling of multi-sweep datafiles - vertical scrollbars on label/measure area in each wavepanel make handling large numbers of waveforms easier. New in 20031202 - Got docstring extraction from C source to .txt files in doc directory working again - applied submitted patch that cleans up warnings from gcc3 about multiline text strings in C code New in 20030917 - bugfixes to make the new print/plot stuff work better - path to working gnu graph found by configure is passed to scheme code New in 20030804 - major new work on print/plot output, gnugraph and gnuplot backends - simple data-export function New in 20021113 - tiniest bugfix to accconfig.h: left some CVS-conflict junk behind - missing files src/xsnarf.h, src/xguile-snarf added - Now a useful snapshot, while 20020419 didn't quite work. New in 20020419: - minor bugfixes - better handling of really huge hspice files New in 20020122: - fix RPM building and other minor build issues New in 20020114: - restore ability to compile with guile-1.3.4 New in 20020109: - interactive Y-zoom and XY-area zoom added (see Readme) - zoom-to-exact-size dialog box added New in 20011021: - better measurement: value at both cursors or difference in values at cursors - enhanced handling of log scales - yet more file-reading improvements and general bug fixes New in 20001123: - Saving wave and panel configuration as guile scripts. - Executing guile scripts from menu or command line (-s