Introduction
This documentation covers version 2 of the GauOpen interfacing facility (included with the Gaussian 16 product). See “Release History” for information about changes from earlier versions.
There are a variety of circumstances where it is useful to run one or more calculations in Gaussian as part of a larger task, with data passed between Gaussian and the other part(s) of the task:
- Scripting to automate running multiple, related Gaussian jobs. This is typically done with shell scripts or programs in scripting languages such as Python and Perl. Some of the tools provided here for more closely integrated computations are also useful for this purpose.
- Post-processing of Gaussian calculation results. In the past, the formatted checkpoint file (.fchk) has been the standard method to communicate results for this purpose. It is well suited to analysis tasks such as visualization, but is less suitable for numerically intensive follow-on calculations for reasons discussed below. Wavefunction (.wfn) files provide some additional information for these purposes but share some of the limitations of .fchk files.
- Computations in other programs using intermediate data generated by Gaussian. This strategy avoids the need to program features in the other program which would duplicate functionality already in Gaussian. Typical uses fall in three main categories:
- Running production calculations combining Gaussian results with those of an independent program. These programs would typically be implemented in a compiled language such as Fortran or C. For example, SCF methods such as Valence Bond methods or unusual MCSCF methods can use one- and two-electron integrals computed by Gaussian. Similarly, post-SCF methods can use the required integrals over molecular orbitals produced by Gaussian.
- Gaussian’s infrastructure can also incorporate results from external programs. For example, geometry optimizations and ONIOM calculations can be done in Gaussian using energies and forces provided by an external program (e.g., computed using a theoretical method not available in Gaussian).
- Prototyping new models or methods, implemented in either a compiled language or an interpreted one such as Python. It can be convenient to have all the quantities computed by Gaussian available so that only the unique aspects of the new model need to be implemented and debugged.
- Classroom exercises, which created using interpreted languages such as Python or MatLab, so that the exercise can focus on a specific issue without having to provide code for unrelated parts (e.g., coding a simple SCF algorithm without having to evaluate integrals).
There are several methods available to facilitate this type of communication, with data flowing to Gaussian from another source, from Gaussian to another program, or both. The process can be controlled with Gaussian, by a script or by another program. In general, data interchange happens via a text file known as the matrix element file. Its structure is designed to be very general. Some interface routines are provided; they are implemented with open source software and hence are useful for communication between user programs and other quantum chemistry packages as well.
The matrix element file is the recommended tool for communicating intermediate results with external programs since all quantities are included to full precision. The formatted checkpoint file remains a simpler and machine-independent option for visualization, post-processing and other cases where a moderate number of significant figures is adequate or having a plain text file is desirable.
Description
In the past, some people have used functionality from Gaussian by linking the executables for their programs with Gaussian’s libraries, or by having their code called within a Gaussian link. However, this is problematic in many ways. It requires having Gaussian source code, that the user compile their own code with the same compiler and options as Gaussian, and that the user understand the internal data structures and calling conventions within Gaussian. It made the resulting code fragile in that internal changes in future versions of Gaussian, transparent to ordinary users, could break the user’s code. In addition, it created unnecessary complications with respect to code ownership and intellectual property.
Goals for a General Interface
Our goals for a general interface are to facilitate all of the above uses in clean and maintainable ways. It should:
- Allow communication between other programs or scripts and standard Gaussian binaries without requiring recompilation, modification of Gaussian, or access to Gaussian source code.
- Be as simple for the user as possible, in particular by providing an interface which does not require knowledge of Gaussian’s internal data structures or algorithms, and requiring as little knowledge of the internal structure of interface files as possible.
- Be self-defining and upward compatible, so that new types of data and new functionality can be added without breaking user code which worked with a previous version of the interface.
- Facilitate the use of Gaussian as either the controlling or the subordinate program.
- Be as non-Gaussian-centric as possible, to allow code that uses the Gaussian interface to also use other quantum chemistry codes which provide the same interface.
Previously, we have provided the formatted checkpoint file as an interface mechanism, particularly for post-processing of results from Gaussian. This file is still supported and available. It is self-defining and extensible. Being an ordinary text file gives it a relatively simple format to process. However, while this design is suitable for post-processing results from Gaussian, especially for visualization, it is not adequate as a general interface for two reasons. First, the limited precision with which values are stored is not sufficient for intermediate data such as integrals. Second, reading and writing the file is expensive when large amounts of data are involved because of the conversion to and from text form. In addition, since the file was intended for post-processing and for moving data between Gaussian running on different types of hardware, it mirrors many of the internal Gaussian data structures.
Structure of the General Interface
There are three basic components of the GauOpen interface:
- A binary data file which is self-defining but reasonably compact, and which attempts to store standard data in simple forms rather than using Gaussian’s internal data structures. These forms are supported in either Fortran unformatted form, which is useful for interfacing to programs in Fortran or Python, and as raw binary data, which is suitable for use in C, C++, and Perl programs. Data is organized in the same way in either type of file. Details of the file structure can be found in Matrix Element File. The formchk and unfchk utilities can convert between Gaussian checkpoint files and either type of binary interface file.
- Functionality within Gaussian to use such binary data files as input or output for complete Gaussian jobs and as input/output between Gaussian and external programs being run from within Gaussian. A subordinate program is connected to Gaussian via the External interface. Such a program can be used:
- In lieu of a Gaussian SCF link.
- As a post-SCF step using orbitals generated within Gaussian.
- To compute derivatives for use in optimizations and frequency calculations controlled by Gaussian.
- To perform one or more of the sub-calculations within an ONIOM model.
Gaussian can also be run as a subordinate program, taking most or all of its input from a data file provided by the controlling program, and producing a new data file containing the results from Gaussian.
- Libraries and scripts which provide easy-to-use interfaces for reading and writing these file. They are open source and hence can be easily incorporated in user programs.
The interface will continue to evolve as additional capabilities are required. The quantities which are currently available in the data file include the most common quantities used in SCF and post-SCF calculations, such as the location and identities of atoms, basis set, one and two electron integrals over atomic orbitals, molecular orbital coefficients, and two electron integrals over molecular orbitals.
About the Interface Libraries and Scripts
The open source interface libraries and scripts have reached varying degrees of maturity depending on their extent of use so far:
- The Fortran interface routines (in qcmatrix.F and qcmatrixio.F) provide for convenient reading and writing data from the files with minimal knowledge of their structure. The Fortran interfaces have been tested with the PGI, Gnu and Intel Fortran compilers.
- The Python modules import the Fortran interface via f2py but add higher-level functionality, including object interfaces for both the individual items in the file (atomic coordinates, operator matrices, etc. in QCOpMat.py) and for the entire file as an object (in QCMatEl.py). In addition to reading and writing the file, the file object also provides methods to transparently run Gaussian to generate additional data, so a Python user can request and consume results from Gaussian without any knowledge of Gaussian’s input or any knowledge of the structure of the interface file on disk. The actual data from the file are stored as NumPy arrays and hence are useful directly in NumPy and SciPy routines. The Python interface uses many features of Python3 and is not supported with Python2.
- The Perl modules (OpMat.pm and MatEl.pm) provide transparent object interfaces to the data items and entire file in the same style as the Python modules, but do not include all of the higher level functionality.
Details of all the interfaces are in the comments in the source files.
The interface routines assume 4 byte integers in the data file. For the raw form of the file, a fixed integer size must be assumed because there is no reliable way to determine this when the file is read. Since both Perl and Python currently use 32-bit addressing and cannot handle arrays larger than 2 GB, this is not a limitation for these languages. Versions of the Fortran interface routines are built for both 4-byte and 8-byte integers (the latter have 8 appended to their filename).
There is not currently a separate C interface library; depending on the circumstances, C code can either read the raw binary files using the same logic as in the Perl modules, or can call the Fortran interface routines. Since the details of calling Fortran from C or C++ depend on the particular operating system and compilers, we have not attempted to standardize this.
Generating Interface Data Files in Gaussian
The binary matrix element file can be produced in three ways;
- Using the formchk utility to convert the binary checkpoint file left after a Gaussian job.
- Using an external script or program is to be run as part of the calculation in Gaussian via the External keyword.
- Using the Output=MatrixElement or Output=RawMatrixElement keywords to cause a file to be generated at the end of the current Gaussian job step.
A formatted checkpoint file can similarly be produced in three ways:
- Using the formchk utility to convert the binary checkpoint file left after a Gaussian job.
- Generating it when an external script or program is to be run as part of the calculation in Gaussian (see External).
- By using the -fchk switch on the g16 command line, which causes a formatted checkpoint file to be written or rewritten at each “interesting” point of a job step: for a new geometry during an optimization, the end of the job step, and the like.
Using Data Files as Input to Gaussian.
Either the formatted checkpoint file or the binary matrix element file can be used as input to Gaussian by converting it to a binary checkpoint file. This is done using the unfchk utility. You then specify the name of the generated binary checkpoint file with the %Chk or %OldChk Link 0 command to provide the file to the Gaussian job step.
In addition, a matrix element file can be specified as input using the %OldMatrixElement or %OldRawMatrixElement Link 0 commands. These take the data from the matrix element file and move it to the checkpoint file for the current job step, where it can be used to provide the geometry, initial wavefunction, etc.
Running Gaussian from within other programs.
There are at least two ways this can be accomplished:
- The other program can generate an Gaussian input file. This input filspecifies that Gaussian take input from a data file and/or generate a data file containing its results. The controlling program can then run Gaussian in a subprocess using the UNIX
system command, the fork/exec facility, or equivalent functionality. - The Python interface (QCMatEl.py) provides a matrix element class which includes methods which automatically run Gaussian and update a matrix element object with additonal data. This can be used directly by a Python program, or by a program in another language can create a subprocess running a simple Python script which in turn runs Gaussian.
Matrix Element File
The matrix element file is a simple unformatted file designed to exchange data, such as the overlap and core Hamiltonian matrix and two-electron integrals, in an extensible format. It can be written either as a Fortran unformatted file, suitable for processing by other Fortran programs, or as a raw binary fine without any flags or lengths for records, suitable for processing in C/C++/Perl/Python. This file format can be used as input to and/or output from a program run via the external interface (using the External keyword), or written as file by Gaussian for separate use by another program (using the Output=MatrixElement or Output=RawMatrixElement keywords). Various options to Output in combination with one of these will select various additional data within the file (e.g., the two-electron integrals over MOs). Finally, the data within any internal Gaussian file can be included within the matrix element file via the Output=Files option.
The structure of the unformatted matrix element is as follows. The initial section contains records relating to the molecular structure and other general job characteristics:
Record | Format and Description |
1 | Character*64 LabFil, Integer IVers, Integer NLab, Character*64 GVers |
A label for the file type, version number for the file format, the number of general data records which precede the matrix element data (including this record), and the version of Gaussian which wrote the file. | |
2 | Character*64 Title, Integer NAtoms, Integer NBasis, NBsUse, ICharg, Multip, NE, Len12L, Len4L, IOpCl, ICGU |
The first 64 characters of the title section from the run which created the file, and the number of atoms and basis functions. NBsUse is the number of linearly independent basis functions. ICharg is the molecular charge, Multip the spin multiplicity (1=singlet, etc.), and NE is the number of electrons. | |
Len12L is the number of bytes used for the integer labels for sparse 1D and 2D matrices, and Len4L is the number of bytes used for 4D matrices (2 electron integrals). Len12L and Len4L will be 4 if the file is written in raw mode (i.e., all integers will be I*4), for compatibility with other languages. | |
IOpCl is the closed/open-shell flag, which set if the matrix element file is written after an initial guess or the SCF has completed (otherwise it is -1, meaning unspecified). ICGU encodes whether the calculation is complex and/or GHF in a simpler way than IOpCl. Its three-digit value is interpreted as klm, where k is 1 for the spin-aligned case and 2 for GHF; l is 1 for real and 2 for complex; and m is 1 for RHF/GHF and 2 for UHF (i.e., 1 vs. 2 spin blocks). When k=2, then NBasis is the number of spatial basis functions, but the operator matrices are over the spin orbital basis and hence have dimension k*NBasis. When the file is read back into Gaussian, IOpCl can be -1 to indicate that ICGU should be used to specify these parameters. If IOpCl≥0 and ICGU≥0, then they are checked for consistency. | |
3 | Integer IAn(NAtoms) |
Atomic numbers, padded to an even number of integers if using I*4. | |
4 | Integer IAtTyp(NAtoms) |
Atom type information. The main aspect of interest to other programs is that negative values indicate inactive atoms during an ONIOM model system calculation. By default, the file is written with inactive atoms omitted from all arrays and NAtoms set to the number of active atoms, but all atoms can optionally be included. It is padded to an even number of integers if using I*4. | |
5 | Real*8 AtmChg(NAtoms) |
Nuclear charges; may be different from atomic numbers if ECPs were used. | |
6 | Real*8 C(3,NAtoms) |
Cartesian nuclear coordinates in Bohr. | |
7 | Integer IBfAtm(NBasis), IBfTyp(NBasis) |
IBfAtm is the map from basis functions to atoms. IBfTyp is a type flag for each basis function. Each is of the form lllmmm, where lll is the angular momentum and mmm is the component number. Negative values indicate pure functions, and positive values indicate Cartesian functions. Thus, Cartesian d functions are numbered 2001 through 2006, and pure d functions are -2001 through -2005. | |
8 | Real*8 AtmWgt(NAtoms) |
Atomic weights. | |
9 | NFC, NFV, ITran, IDum |
Window information for MO 2 electron integrals. The MOs include NFC frozen core orbitals and NFV frozen virtuals, so the MO 2 electron integrals will be over NBsUse–NFC–NFV orbitals. ITran=0 if no MO integrals were stored, ITran=4 if only MOs involving at least one occupied orbital were stored, or ITran=5 if a full transformation was done. | |
10 to NLab | Other scalar data about the calculation (if applicable). |
Record 10 is only present when NLab>9. It contains NLab-10 integers, each of which specifies the number of 32-bit words in the corresponding initial record (allowing programs to skip them when the file is stored without record marks/lengths). E.g., if NLab were to be 13, record 10 will contain 3 integers, specifying the lengths of the eleventh through thirteenth initial records. Currently, NLab’s maximum value is 11, and record 10 contains the single integer 16. | |
11 | 16 additional integers, of which only the first five are currently used: |
NShellAO:Number of contracted shells of AO basis functions, needed if shell data is provided. NPrimAO: Number of primitive AO shells. NShellDB: Number of contracted shells of density fitting functions, needed if fitting shell data is provided. NPrimDB: Number of primitive density fitting shells. NBTot: Total Number of bonds in connectivity data, if any. |
In general, programs should read (or skip) NLab records at the beginning of the file in order to reach the matrix element data. Doing so will ensure that additional initial records added in subsequent versions of the matrix element file are handled properly.
These NLab records are followed by zero or more matrix sections, each of which has an initial record:
Character*64 Label, Integer NI, NR, NTot, NPerRec, N1, N2, N3, N4, N5, ISym
where the fields contain a label, the number of integers and number of reals for each element, the total number of elements, and number of elements per record. NI can be zero for dense matrices (stored with zeros included). NR is negative to flag complex rather than real data.
N1 through N5 are dimensions for the object as a matrix, with 0 for unused dimensions and negative values for ones which are lower triangular. For example, if NBasis=50 and NBsUse=49 then N1 … N5 would be –50 50 0 0 0 for the overlap matrix and 50 49 0 0 0 for the transformation to an orthogonal basis. ISym=-1 for anti-symmetric/Hermetian matrices.
The end of the file is marked with a record whose label is END and having all 0 values for the integers.
This initial record is followed by (NTot+NPerRec-1)/NPerRec records, each of the one of the following forms:
Integer ID(NI,NPerRec), Real*8 DX(NR,NPerRec)
or just:
Real*8 DX(NR,NPerRec)
If NI=0 or NR<0, then the format is:
Integer ID(NI,NPerRec), Complex*16 DX(-NR,NPerRec)
or
Complex*16 DX(NR,NPerRec)
with the labels (if any) in ID, and values in DX. All matrix elements are over pure or Cartesian basis functions in accord with that specified in the Gaussian route or defaulted for the particular basis set.
Labeled Sections
The possible labels and sections include the following:
OVERLAP
CORE HAMILTONIAN ALPHA
CORE HAMILTONIAN BETA
KINETIC ENERGY
Each is a lower triangular matrix stored dense (all N*(N+1)/2 elements with no labels). The two core Hamiltonians are identical unless a Fermi contact perturbation has been applied.
ORTHOGONAL BASIS
If present, this is an (NBasis,NBsUse) matrix giving the transformation from AOs to a linearly independent orthonormal set.
DIPOLE INTEGRALS
If present, this includes three lower-triangular matrices holding the X, Y, and Z dipole matrix elements.
QUADRUPOLE INTEGRALS
OCTOPOLE INTEGRALS
HEXADECAPOLE INTEGRALS
If present, these items are the 6, 10 or 15 matrices of the Cartesian multipole integrals (respectively).
DIP VEL INTEGRALS
R X DEL INTEGRALS
If present, these are the 3 matrices of the Del and RxDel one-electron operators.
GIAO D2H/DBDM
If present, each is a 9×NAtoms lower triangular matrices holding the GIAO core Hamiltonian second derivatives with respect to an external field and nuclear magnetic moments (the matrix elements required for the diamagnetic shielding term).
GIAO L/R3
If present, this each is a 3×NAtoms lower triangular matrices holding the GIAO magnetic perturbations (the matrices required for the paramagnetic shielding term).
ALPHA ORBITAL ENERGIES
If present, this is an NBsUse vector of initial guess or converged orbital energies.
ALPHA MO COEFFICIENTS
If present, this is an NBasis×NBsUse matrix of initial guess or converged orbitals.
BETA ORBITAL ENERGIES
If present, this is an NBsUse vector of initial guess or converged orbital energies.
BETA MO COEFFICIENTS
If present, this is an NBasis×NBsUse matrix of initial guess or converged orbitals.
ALPHA DENSITY MATRIX
If present, this is a lower-triangular matrix containing the alpha spin part of the density matrix selected by the options for population analysis, etc. If read back into Gaussian, it is stored in place of the SCF density.
BETA DENSITY MATRIX
If present, this is a lower-triangular matrix containing the beta spin part of the density matrix selected by the options for population analysis, etc. If read back into Gaussian, it is stored in place of the SCF density.
ALPHA SCF DENSITY MATRIX
If present, this is a lower-triangular matrix containing an initial guess or converged SCF density.
BETA SCF DENSITY MATRIX
If present, this is a lower-triangular matrix containing an initial guess or converged SCF density.
[ALPHA,BETA] [MP2,MP3,MP4,CI,QCI/CC] DENSITY MATRIX
If present, these are the alpha and beta densities computed including the indicated type of correlation.
[MULLIKEN,ESP,AIM,NPA,MBS] CHARGES
Atomic charges of the specific type. Multiple charge sections may be present depending on the options to the Population keyword. Note that all types of electrostatic potential-derived charges are labeled as “ESP CHARGES”.
GAUSSIAN SCALARS
This a vector of labeled reals. Labels between 1 and 1000 refer to elements of the Gaussian /Gen/ file (for a table, see below). Labels higher than 1000 are reserved for specific scalars to/from the external program.
ALPHA DENSITY DERIVATIVES
BETA DENSITY DERIVATIVES
If present, these hold the lower triangular AO density derivatives with respect to whatever perturbations were applied during the CPHF. The number of matrices is the number of perturbations, and it varies.
ALPHA MO DERIVATIVES
BETA MO DERIVATIVES
If present, these are the (NBasis,NAE,3) and (NBasis,NBE,3) MO coefficient derivatives with respect to a magnetic field.
ALPHA FOCK MATRIX
If present, this is the alpha-spin Fock matrix, or the only Fock matrix for closed-shell and GHF.
BETA FOCK MATRIX
If present, this is the beta-spin Fock matrix for unrestricted SCF calculations.
NUCLEAR GRADIENT
If present, there are the 3*NAtoms derivatives of the energy with respect to the nuclear coordinates. This is more likely to be a field returned by an external program than one used as input to the external program.
NUCLEAR FORCE CONSTANTS
If present, these are the second derivatives of the energy with respect to the nuclear coordinates. This is more likely to be a field returned by an external program than one used as input to the external program. They are stored as a lower triangular matrix of dimension 3*NAtoms.
ELECTRIC DIPOLE MOMENT
ELECTRIC DIPOLE DERIVATIVES
ELECTRIC DIPOLE POLARIZABILITY
DIPOLE POLARIZABILITY DERIVATIVES
ELECTRIC DIPOLE HYPERPOLARIZABILITY
ATOMIC AXIAL TENSORS
If present, these are derivatives with respect to static external fields. If provided back to Gaussian, only the properties in the file are updated in the Gaussian internal data; any other properties already present in the Gaussian internal data are unaltered.
SHELL TYPE
NUMBER OF PRIMITIVES PER SHELL
CONTRACTION COEFFICIENTS
P(S=P) CONTRACTION COEFFICIENTS
COORDINATES OF EACH SHELL
These specify the basis set and are in the same format as the same fields in the fchk file. The same field names prefixed with DENSITY specify the density fitting set, if any.
OVERLAP DERIVATIVES
CORE HAMILTONIAN DERIVATIVES
F(X)
DENSITY DERIVATIVES
FOCK DERIVATIVES
ALPHA UX
BETA UX
These records contain the results of a derivative SCF (CPHF) calculation and are in the notation of [Frisch90a]: Sx, Hx, F(x), Px, Fx, Ux, and Cx. F(x) and Fx contain all alpha followed by all beta Fock derivatives for open-shell, while the spin-cases of Ux and Cx are in separate records.
[Alpha,Beta] [SCF,MP2,MP3,MP4,CI Rho(1),CI,CC] DENSITY
These records hold post-SCF densities, alpha followed by beta for open-shell.
REGULAR 2E INTEGRALS or
RAFFENETTI 2E INTEGRALS
Only non-zero integrals are stored with 4 indices i≥j, i≥k, k≥l, j≥l if i=k. NR is 1 for regular integrals and 1, 2, or 3 for Raffenetti integral combinations:
R1(i,j,k,l) = (ij|kl) – 1/4[(ik|jl)+(il|jk)]
R2(i,j,k,l) = (ij|kl) + (il|jk)
R3(i,j,k,l) = (ik|jl) – (il|jk)
The default is R1 only for closed-shell systems, R1 and R2 for UHF. The NoRaff keyword forces regular integrals, and IOp(3/11=N) can be used for force a particular set of Raffenetti integrals.
If MO 2 electron integrals were requested, then these are stored dense (zeroes included and no integer labels). For restricted calculations there will be one set labelled AA MO 2E INTEGRALS with integrals stored over the unique quartets of indices if a fill transformation (ITran=5 above) is done. That is, if
NROrb = NBsUse – NFC – NFV
is the number of active orbitals (included in the transformation) then there will NO4=(NOrbTT*(NOrbTT+1))/2 integrals, where NOrbTT=(NROrb*(NROrb+1))/2, when there was a full transformation. For unrestricted and a full transformation, there will be 3 sets of integrals, AA, BA, and BB. AA and BB are length NO4 and BA is NOrbTT2, with the beta spin indices running fastest.
For a partial transformation (ITran=4) there will be one set of MO integrals for restricted, dimensioned (NOrbTT,NROrb,NOA) where NOA=NAE–NFC is the number of active occupieds. For restricted there will be AA, AB, BA and BB with dimensions (NOrbTT,NROrb,NOA), (NOrbTT,NROrb,NOB), (NOrbTT,NROrb,NOA), and (NOrbTT,NROrb,NOB), respectively.
TRANS MO COEFFICIENTS
If MO two-electron integrals are included, this record holds the MO coefficients used in the transformation (i.e., with any frozen core or virtual orbitals omitted), alpha followed by beta spins.
Gaussian Scalars
1 | Virial ratio | |
2-4 | Components of applied electric field, if any | |
5 | 2e SCF energy | |
6 | SCRF g-factor | |
7 | SCRF a0 | |
8 | Thermal energy | |
9 | E(CI/CC/QCI/BD) | |
10 | E(CCD+ST4(CCD)/QCISD(T)/BD(T)/CI+Davidson) | |
11 | E(VAR1) | |
12 | Zero-point energy | |
13 | Multi-step (G1, G2, etc.) energy | |
14 | Number of imaginary frequencies | |
15 | D(PUHF) | |
16 | EPUHF | |
17 | ECBS2 | |
18 | ECBSI | |
19 | EPMP2-0 | |
20 | EPMP3-0 | |
21 | Root-mean-squared force of optimized parameters | |
22 | E(CIS-MP2) | |
23 | RMS error in density matrix | |
24 | S2 after annihilation of first contaminant | |
25 | CIS energy | |
26 | UMP4D (=UMP4DQ – E4(R+Q)) | |
27 | Reference energy for BD | |
28 | MP5 | |
29 | S4SD (computed in ANNIL in L502, used by PSCF spin projection routines) | |
30 | Frozen-core part of total energy | |
31 | 'TAU' from SCFDM | |
32 | SCF energy | |
33 | UMP2 energy | |
34 | UMP3 energy | |
35 | UMP4(SDTQ) energy | |
36 | CBS OIii | |
37 | Total energy with RF from L116 | |
38 | MP4DQ energy | |
39 | MP4SDQ energy | |
40 | Used by L116 | |
41 | Nuclear repulsion energy | |
42 | T (length of correction of reference determinant) | |
43 | Updated energy for optimizations | |
44 | <S2> of SCF wave function | |
45 | <S2> corrected to first order (after DOUBAR) | |
46 | <S2> corrected for doubles (not implemented) | |
47 | A0 | |
48 | Used to accumulate energy during Opt=Simult | |
49 | Temperature for thermochemistry | |
50 | Pressure for thermochemistry | |
51 | Scale factor for frequencies in thermochemistry | |
52 | Nuclear repulsion contribution from inactive atom pairs | |
53 | Singles contribution to E2 in ROMP2 | |
54 | E(2) with current orbitals for extrapolation | |
55 | Nuclear term in the reaction field energy | |
56 | Electronic term in the reaction field energy | |
57 | Curvature from projected frequency jobs | |
58 | Reaction coordinate for single-points along IRCs | |
59 | Flag for status from external programs; see RunExt. | |
60 | SCF energy at first iteration | |
61 | Job status: -1=in progress; 0=undefined/old chk file; 1=finished successfully; 2=step in multi-step job completed successfully; 3=error termination in Link 9999 | |
62 | Highest order of nuclear coordinate derivatives available. | |
63 | Number of iterations in most recent SCF. | |
64 | Nuclear repulsion energy without external field contribution. |
Structure of the Formatted Checkpoint File
This file is designed to be machine independent with a structure that makes it easy for post-processors to extract required data and ignore the remainder. The latter fact is important for extensibility as future additions will not interfere with applications designed for previous revisions. Typically a job is run specifying a .chk file, which is the binary file containing results from a calculation which are potentially useful in later calculations or for post-processing, and then after Gaussian has completed, the formchk utility is run to generate the text .fchk file from the binary .chk file. There is also a utility, unfchk, to reverse the process. For backwards compatibility, running formchk without any options produces a subset of the full information. This document describes the results of running formchk -3 chkfile fchkfile, which produces a version 3 formatted checkpoint file (the current and most full-featured version).
Here is a description of the data in Fortran formatted form, although there is no particular reason to use Fortran as opposed to other languages to read the data.
The first two lines in the file contain strings describing the job:
Initial 72 characters of the title section. Complete route and title appear later. Type, Method, Basis Format: A10,A30,A30
Type is one of the following keywords:
SP | Single point | |
FOPT | Full optimization to a minimum | |
POPT | Partial optimization to a minimum | |
FTS | Full optimization to a transition state | |
PTS | Partial optimization to a transition state | |
FSADDLE | Full optimization to a saddle point of order 2 or higher | |
PSADDLE | Partial optimization to a saddle point of order 2 or higher | |
FORCE | Energy+gradient calculation | |
FREQ | Vibrational frequency (2nd derivative) calculation | |
SCAN | Potential surface scan | |
GUESS=ONLY | Generate molecular orbitals only, also used with localized orbital generation | |
LST | Linear synchronous transit | |
STABILITY | Test of SCF/KS stability | |
REARCHIVE/MS-RESTART | Generate archive information from checkpoint file | |
MIXED | Mixed method model chemistry (CBS-x, G1, G2, etc.), with method and basis set implied by model |
Method is the method of computing the energy (AM1, RHF, CASSCF, MP4, etc.), and Basis is the basis set.
All other data contained in the file is located in a labeled line/section set up in one of the following forms:
- Scalar values appear on the same line as their data label. This line consists of a string describing the data item, a flag indicating the data type, and finally the value:
- Integer scalars: Name,I,IValue, using format A40,3X,A1,5X,I12.
- Real scalars: Name,R,Value, using format A40,3X,A1,5X,E22.15.
- Character string scalars: Name,C,Value, using format A40,3X,A1,5X,A12.
- Logical scalars: Name,L,Value, using format A40,3X,A1,5X,L1.
- Vector and array data sections begin with a line naming the data and giving the type and number of values, followed by the data on one or more succeeding lines (as needed):
- Integer arrays: Name,I,Num, using format A40,3X,A1,3X,'N=',I12. The N= indicates that this is an array, and the string is followed by the number of values. The array elements then follow starting on the next line in format 6I12.
- Real arrays: Name,R,Num, using format A40,3X,A1,3X,'N=',I12, where the N= string again indicates an array and is followed by the number of elements. The elements themselves follow on succeeding lines in format 5E16.8. Note that the Real format has been chosen to ensure that at least one space is present between elements, to facilitate reading the data in C.
- Character string arrays (first type): Name,C,Num, using format A40,3X,A1,3X,'N=',I12, where the N= string indicates an array and is followed by the number of elements. The elements themselves follow on succeeding lines in format 5A12.
- Character string arrays (second type): Name,H,Num, using format A40,3X,A1,3X,'N=',I12, where the N= string indicates an array and is followed by the number of elements. The elements themselves follow on succeeding lines in format 9A8.
- Logical arrays: Name,H,Num, using format A40,3X,A1,3X,'N=',I12, where the N= string indicates an array and is followed by the number of elements. The elements themselves follow on succeeding lines in format 72L1.
All quantities are in atomic units and in the standard orientation, if that was determined by the Gaussian run. Standard orientation is seldom an interesting visual perspective, but it is the natural orientation for the vector fields. The field names are fairly verbose to make them informative and should not be an impediment as only the interface program needs to use them. An example program, demofc, is distributed with Gaussian and demonstrates how to extract a named field.
Basis Set Data
The basis set information is provided in a reasonably general way which does not assume the specific structure of Gaussian's Common /B/, which is rather obscure and reflects history more than clarity. The basis set data will include scalars giving the number of shells (NShell), largest degree of contraction, highest angular momentum present, and number of primitive shells (NPrim). There will then be arrays containing:
- Shell types (NShell values): 0=s, 1=p, -1=sp, 2=6d, -2=5d, 3=10f, -3=7f
- Number of primitives per shell (NShell values).
- Shell to atom map (NShell values): number of the atom on which each shell is located.
- Primitive exponents (NPrim values).
- Contraction coefficients (NPrim values): contraction coefficients of each normalized primitive shell. Contains the S coefficient for any S=P shells.
- P(S=P) Contraction coefficients (NPrim values): contraction coefficients for p portions of S=P shells. Not present if there are no S=P shells. Contains zeros for every primitive which is not part of an S=P shell.
- Coordinates of each shell: (3,NShell) array of XYZ coordinates for each shell.
Other data, such as basis function indexing arrays, are easily derived from the above. The order of basis functions within shells is the usual Gaussian order:
S,X,Y,Z,XX,YY,ZZ,XY,XZ,YZ,XXX,YYY,ZZZ,XYY,XXY,XXZ,XZZ,YZZ,YYZ,XYZ
or
3ZZ-RR,XZ,YZ,XX-YY,XY,ZZZ-ZRR,XZZ-XRR,YZZ-YRR,XXZ-YYZ,XYZ,XXX-XYY,XXY-YYY
Available Items
The following items are among those currently defined:
- Route
- Full Title
- Number of atoms
- Charge
- Multiplicity
- Number of electrons
- Number of alpha electrons
- Number of beta electrons
- Number of basis functions
- Number of contracted shells
- Highest angular momentum
- Largest degree of contraction
- Number of primitive shells
- Virial Ratio
- Atomic numbers
- Nuclear charges
- Current Cartesian coordinates
- Alpha Orbital Energies
- Beta Orbital Energies
- Alpha MO coefficients
- Beta MO coefficients
- Shell types
- Number of primitives per shell
- Shell to atom map
- Primitive exponents
- Contraction coefficients
- P(S=P) Contraction coefficients
- Coordinates of each shell
- Total SCF Density
- Spin SCF Density
- Total MP2 Density
- Spin MP2 Density
- Total CI Density
- Spin CI Density
- Total CC Density
- Spin CC Density
- Cartesian Forces
- Cartesian Force Constants
- Dipole Moment
- Dipole Derivatives
- Polarizability
- Dipole 2nd Derivatives
- Polarizability Derivatives
- HyperPolarizability
Formatted Checkpoint File FAQ
Which energy should be used by default?
The Total Energy field has the energy at whatever level of theory the user requested. This is so other programs don't have to figure out where the energy is from the Method string. In particular, we can add new methods and you won't have to change logic to find the energy you'll normally want.
Why does the field descriptor include the data type information?
The purpose of including the data type for each field is to facilitate skipping that field if it's not of interest, as illustrated in the demo program below.
How are ECP atomic charges handled?
The “Nuclear charges” will differ from the atomic numbers if ECPs are in use.
Which density matrix will be present?
The total density will always be present; the spin density will be stored only for open-shell systems. By default this will be the SCF density. If a post-SCF density is desired, include the Density keyword in the Gaussian input.
When will force constants be present?
The force constants may be present and zero for cases for which only first derivatives were actually computed, or when they were computed at the first point of a geometry optimization but not at later points. They should only be used for vibrational analysis if the job type is Freq.
Why is there no mapping array between shells and primitives?
It was pointed out that the mapping from shells to primitives is not made explicit, so that the primitive data is stored separately for every atom, even if some have the same basis set. The information that atoms have the same basis set is discarded early in Gaussian. The basis set is only of interest if the orbitals or density is also used. Since the latter are quadratic in the size of the molecule, the potential savings for large molecules from removing redundant primitives seemed modest.
FChk File Example
Here is an example formatted checkpoint file for an APFD/6-311+G(2d,p) energy calculation on HOF (some sections are truncated; see gaussian.com/interfacing for the full file):
Example SP RAPFD 6-311+G(2d,p) Number of atoms I 3 Info1-9 I N= 9 8 8 0 0 0 111 1 18 -402 Full Title C N= 1 Example Route C N= 4 #p apfd/6-311+g(2d,p) geom=modela test Charge I 0 Multiplicity I 1 Number of electrons I 18 Number of alpha electrons I 9 Number of beta electrons I 9 Number of basis functions I 60 Number of independent functions I 60 Number of point charges in /Mol/ I 0 Number of translation vectors I 0 Atomic numbers I N= 3 8 9 1 Nuclear charges R N= 3 8.00000000E+00 9.00000000E+00 1.00000000E+00 Current cartesian coordinates R N= 9 9.50213801E-02 1.30811042E+00 -4.93038066E-32 9.50213801E-02 -1.37530068E+00 4.93038066E-32 -1.61536346E+00 1.91282278E+00 -4.93038066E-32 Number of symbols in /Mol/ I 0 Force Field I 0 Atom Types C N= 3 Int Atom Types I N= 3 0 0 0 MM charges R N= 3 0.00000000E+00 0.00000000E+00 0.00000000E+00 Integer atomic weights I N= 3 16 19 1 Real atomic weights R N= 3 1.59949146E+01 1.89984032E+01 1.00782504E+00 Atom fragment info I N= 3 0 0 0 Atom residue num I N= 3 0 0 0 Nuclear spins I N= 3 0 1 1 Nuclear ZEff R N= 3 -5.60000000E+00 -6.75000000E+00 -1.00000000E+00 Nuclear ZNuc R N= 3 8.00000000E+00 9.00000000E+00 1.00000000E+00 Nuclear QMom R N= 3 0.00000000E+00 0.00000000E+00 0.00000000E+00 Nuclear GFac R N= 3 0.00000000E+00 2.62886700E+00 2.79284600E+00 MicOpt I N= 3 -1 -1 -1 Number of residues I 0 Number of secondary structures I 0 SymInf integers I N= 26 1 2 1 1 1 1 1 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 RotTr to input orientation R N= 12 -1.00000000E+00 1.24776449E-17 2.19609195E-16 -2.19609195E-16 -1.21827362E-16 -1.00000000E+00 -1.24776449E-17 -1.00000000E+00 1.21827362E-16 9.50213801E-02 0.00000000E+00 1.30811042E+00 Number of contracted shells I 18 Number of primitive shells I 34 Pure/Cartesian d shells I 0 Pure/Cartesian f shells I 0 Highest angular momentum I 2 Largest degree of contraction I 6 Shell types I N= 18 0 -1 -1 -1 -1 -2 -2 0 -1 -1 -1 -1 -2 -2 0 0 0 1 Number of primitives per shell I N= 18 6 3 1 1 1 1 1 6 3 1 1 1 1 1 3 1 1 1 Shell to atom map I N= 18 1 1 1 1 1 1 1 2 2 2 2 2 2 2 3 3 3 3 Primitive exponents R N= 34 8.58850000E+03 1.29723000E+03 2.99296000E+02 8.73771000E+01 2.56789000E+01 3.74004000E+00 4.21175000E+01 9.62837000E+00 2.85332000E+00 9.05661000E-01 2.55611000E-01 8.45000000E-02 2.58400000E+00 6.46000000E-01 1.14271000E+04 1.72235000E+03 3.95746000E+02 1.15139000E+02 3.36026000E+01 4.91901000E+00 5.54441000E+01 1.26323000E+01 3.71756000E+00 1.16545000E+00 3.21892000E-01 1.07600000E-01 3.50000000E+00 8.75000000E-01 3.38650000E+01 5.09479000E+00 1.15879000E+00 3.25840000E-01 1.02741000E-01 7.50000000E-01 Contraction coefficients R N= 34 1.89515008E-03 1.43859006E-02 7.07320031E-02 2.40001011E-01 5.94797026E-01 2.80802012E-01 1.13889012E-01 9.20811101E-01 -3.27447036E-03 1.00000000E+00 1.00000000E+00 1.00000000E+00 1.00000000E+00 1.00000000E+00 1.80093016E-03 1.37419012E-02 6.81334059E-02 2.33325020E-01 5.89086051E-01 2.99505026E-01 1.14536016E-01 9.20512125E-01 -3.37804046E-03 1.00000000E+00 1.00000000E+00 1.00000000E+00 1.00000000E+00 1.00000000E+00 2.54938145E-02 1.90373109E-01 8.52161486E-01 1.00000000E+00 1.00000000E+00 1.00000000E+00 P(S=P) Contraction coefficients R N= 34 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 3.65113974E-02 2.37152983E-01 8.19701941E-01 1.00000000E+00 1.00000000E+00 1.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 3.54608874E-02 2.37450915E-01 8.20457708E-01 1.00000000E+00 1.00000000E+00 1.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 Coordinates of each shell R N= 54 9.50213801E-02 1.30811042E+00 -1.61237057E-32 9.50213801E-02 1.30811042E+00 -1.61237057E-32 9.50213801E-02 1.30811042E+00 -1.61237057E-32 9.50213801E-02 1.30811042E+00 -1.61237057E-32 9.50213801E-02 1.30811042E+00 -1.61237057E-32 9.50213801E-02 1.30811042E+00 -1.61237057E-32 9.50213801E-02 1.30811042E+00 -1.61237057E-32 9.50213801E-02 -1.37530068E+00 1.69518897E-32 9.50213801E-02 -1.37530068E+00 1.69518897E-32 9.50213801E-02 -1.37530068E+00 1.69518897E-32 9.50213801E-02 -1.37530068E+00 1.69518897E-32 9.50213801E-02 -1.37530068E+00 1.69518897E-32 9.50213801E-02 -1.37530068E+00 1.69518897E-32 9.50213801E-02 -1.37530068E+00 1.69518897E-32 -1.61536346E+00 1.91282278E+00 -2.35773611E-32 -1.61536346E+00 1.91282278E+00 -2.35773611E-32 -1.61536346E+00 1.91282278E+00 -2.35773611E-32 -1.61536346E+00 1.91282278E+00 -2.35773611E-32 Num ILSW I 100 ILSW I N= 100 0 0 0 0 2 0 0 0 0 0 3731 -1 5 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 100000 0 -1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -2000000000 1 0 0 0 0 0 211 52 0 0 0 0 44 0 0 0 0 0 0 3 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 Num RLSW I 52 RLSW R N= 52 1.00000000E+00 1.00000000E+00 1.00000000E+00 1.00000000E+00 2.29450000E-01 0.00000000E+00 0.00000000E+00 1.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 1.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 1.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 1.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 1.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 1.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 1.00000000E+00 1.00000000E+00 0.00000000E+00 1.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 MxBond I 2 NBond I N= 3 2 1 1 IBond I N= 6 2 3 1 0 1 0 RBond R N= 6 1.00000000E+00 1.00000000E+00 1.00000000E+00 0.00000000E+00 1.00000000E+00 0.00000000E+00 Virial Ratio R 2.002512534176115E+00 SCF Energy R -1.754626954507162E+02 Total Energy R -1.754626954507162E+02 RMS Density R 4.488893701372455E-09 Job Status I 1 Nuclear derivative order I 0 External E-field R N= 35 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 IOpCl I 0 IROHF I 0 Alpha Orbital Energies R N= 60 -2.47825247E+01 -1.92801781E+01 -1.28195154E+00 -1.00757835E+00 -6.04560094E-01 -5.12982655E-01 -4.94596384E-01 -4.01954556E-01 -3.38230039E-01 -6.58462909E-02 4.07532035E-02 1.39155686E-01 1.55117986E-01 1.60149436E-01 2.05024127E-01 2.46056007E-01 2.69798844E-01 2.75685603E-01 4.34434634E-01 4.63470905E-01 9.29907334E-01 9.57102470E-01 9.76415895E-01 1.14903972E+00 1.17020112E+00 1.25751233E+00 1.27171430E+00 1.33085595E+00 1.35781975E+00 1.43155639E+00 1.64048158E+00 1.77499818E+00 1.88891855E+00 1.89118130E+00 1.94124827E+00 2.00276879E+00 2.11613032E+00 2.39300985E+00 2.43050550E+00 2.61793604E+00 2.86301553E+00 2.97816502E+00 4.88767380E+00 5.10627675E+00 5.54646244E+00 6.27544226E+00 6.27881599E+00 6.42218447E+00 6.71755388E+00 6.76899153E+00 6.81635021E+00 6.90109776E+00 7.24649832E+00 9.02982340E+00 9.03495751E+00 9.16099297E+00 9.20885688E+00 9.59815697E+00 4.98240319E+01 6.68532287E+01 Alpha MO coefficients R N= 3600 7.04073669E-07 -4.92616307E-07 2.07806755E-05 8.64419501E-05 0.00000000E+00 -3.75517181E-04 -9.99575007E-05 -3.63516943E-04 0.00000000E+00 2.43894709E-03 -4.77092936E-04 -1.40722936E-03 0.00000000E+00 -6.50159110E-03 5.98856667E-04 &hellip 2.61179608E-03 0.00000000E+00 2.82432268E-05 0.00000000E+00 0.00000000E+00 6.81317360E-06 -1.13840320E-05 -4.24614472E-04 0.00000000E+00 0.00000000E+00 -3.84770299E-04 -1.77613611E-07 5.47905673E-01 4.71853600E-01 -8.23472073E-05 8.68977079E-04 0.00000000E+00 1.18464427E-02 1.19179384E-05 -5.88059875E-05 0.00000000E+00 -8.21006488E-03 9.43336019E-05 -1.85209415E-03 0.00000000E+00 8.28549614E-03 -1.34745907E-04 2.59614980E-03 0.00000000E+00 -1.18005370E-04 0.00000000E+00 0.00000000E+00 -1.93993490E-04 -1.77731633E-05 3.02226140E-04 0.00000000E+00 0.00000000E+00 5.05298915E-04 4.66757354E-05 -1.32368058E-06 -8.32649802E-04 1.20728425E-03 -1.67136058E-04 2.53451457E-04 0.00000000E+00 5.51575846E-01 4.69825106E-01 -1.23655916E-03 -1.05168828E-03 0.00000000E+00 1.20447834E-02 -1.75057406E-04 4.55116980E-04 0.00000000E+00 -5.88595955E-03 -3.72808113E-04 1.36625846E-03 0.00000000E+00 2.70203367E-03 -4.31321987E-04 -1.45154889E-04 0.00000000E+00 -1.93659934E-04 0.00000000E+00 0.00000000E+00 -1.04966900E-04 -4.52346153E-05 1.53742651E-04 0.00000000E+00 0.00000000E+00 7.12178718E-04 -2.51553591E-04 -5.98766109E-06 -5.01121183E-06 -5.51174103E-06 -2.68518873E-05 0.00000000E+00 -1.61104531E-04 2.50929158E-05 2.30878781E-04 0.00000000E+00 1.38940517E-03 -6.09926082E-05 9.30854832E-04 0.00000000E+00 -5.51708222E-05 8.61204851E-05 3.90768524E-04 0.00000000E+00 -1.27444434E-05 0.00000000E+00 0.00000000E+00 -2.35124001E-05 1.08238777E-05 -7.21944869E-05 0.00000000E+00 0.00000000E+00 -1.19146590E-04 -4.05788795E-05 -2.41597612E-04 -3.57105763E-04 -1.29781885E-03 -1.01947921E-03 2.30699818E-04 0.00000000E+00 -5.65136145E-02 -9.07632707E-02 -1.41304172E-02 -3.83255059E-02 0.00000000E+00 2.62165232E-01 -2.07585672E-02 -6.58254845E-02 0.00000000E+00 1.50548698E-01 -2.12443233E-03 -2.40360356E-02 0.00000000E+00 8.19958458E-02 -6.22215480E-03 -3.24096882E-02 0.00000000E+00 -3.61601144E-03 0.00000000E+00 0.00000000E+00 -3.13027097E-03 -2.32262902E-04 -7.93542730E-03 0.00000000E+00 0.00000000E+00 -1.35607643E-02 3.65623576E-03 -1.08753713E-01 -1.76585582E-01 -2.44417163E-03 3.81133534E-02 0.00000000E+00 5.23958957E-01 -3.79863484E-03 6.31087205E-02 0.00000000E+00 4.13895266E-01 -5.26002703E-03 4.65348814E-02 0.00000000E+00 -1.06837151E-01 1.53648192E-03 -4.61845381E-02 0.00000000E+00 -1.32167278E-03 0.00000000E+00 0.00000000E+00 -2.29886519E-03 -1.21197993E-04 -9.44396867E-03 0.00000000E+00 0.00000000E+00 -1.49378424E-02 -1.97370137E-03 3.61532905E-02 3.39855117E-02 -1.26959135E-02 1.28284405E-02 -7.37744371E-03 0.00000000E+00 -1.04210734E-01 -1.68441606E-01 -5.21434573E-02 2.52380633E-02 0.00000000E+00 5.00043171E-01 -7.99071144E-02 3.24209935E-02 0.00000000E+00 3.72229392E-01 -3.43921899E-02 5.88304234E-03 0.00000000E+00 -3.41391173E-02 6.02772009E-03 1.25695909E-02 0.00000000E+00 -2.67683643E-03 0.00000000E+00 0.00000000E+00 3.41783789E-03 -2.07351857E-03 -6.65673545E-03 0.00000000E+00 0.00000000E+00 3.12281010E-03 -2.47077090E-03 6.62813466E-02 1.08339528E-01 -3.53137250E-03 4.05923435E-02 0.00000000E+00 -3.32716742E-01 -5.43754245E-03 6.05493589E-02 0.00000000E+00 -2.87870749E-01 -2.15845298E-03 2.63320864E-02 0.00000000E+00 1.80032597E-02 -5.18182136E-04 4.16365227E-03 0.00000000E+00 -6.37869310E-04 0.00000000E+00 0.00000000E+00 -1.05840469E-03 -1.97115221E-04 -2.47995320E-03 0.00000000E+00 0.00000000E+00 -4.67543116E-03 -1.50882270E-03 1.09149992E-01 8.84097127E-02 1.37246915E-02 2.66827445E-02 -7.62904254E-03 0.00000000E+00 -1.07755503E-02 -1.79558046E-02 1.38389350E-01 -1.45404053E-01 0.00000000E+00 5.46768182E-02 2.01630936E-01 -2.25813805E-01 0.00000000E+00 8.73678132E-02 1.25234160E-01 -1.44538525E-01 0.00000000E+00 3.31409884E-02 5.38104399E-03 -1.14934915E-02 0.00000000E+00 3.94106972E-04 0.00000000E+00 0.00000000E+00 -8.66991374E-03 2.50584022E-03 -3.67209035E-03 0.00000000E+00 0.00000000E+00 -2.66797734E-02 3.13584010E-03 2.42346024E-02 3.99762751E-02 5.93090819E-02 1.84799026E-01 0.00000000E+00 -1.28303135E-01 8.65327076E-02 2.76405354E-01 0.00000000E+00 -1.25665457E-01 6.93035442E-02 2.01931257E-01 0.00000000E+00 -6.71246581E-02 2.91472734E-03 -1.08720672E-02 0.00000000E+00 -1.66191627E-03 0.00000000E+00 0.00000000E+00 -3.02098850E-03 9.08534223E-04 -8.66267699E-03 0.00000000E+00 0.00000000E+00 -1.62007045E-02 7.41912554E-03 -1.25558117E-01 -1.60480596E-01 -3.60099557E-02 -2.23987344E-02 3.16118507E-04 0.00000000E+00 -3.19504269E-02 -5.23709549E-02 1.45459921E-01 1.08818976E-01 0.00000000E+00 1.63555564E-01 2.11873303E-01 1.67517355E-01 0.00000000E+00 1.95607739E-01 1.55970002E-01 1.33698186E-01 0.00000000E+00 5.80210089E-03 1.44583519E-02 2.13284638E-02 0.00000000E+00 3.08633754E-03 0.00000000E+00 0.00000000E+00 -1.50998635E-05 -3.34416069E-03 9.10390248E-03 0.00000000E+00 0.00000000E+00 2.18105934E-03 -2.71887669E-02 -7.74089703E-03 -1.28147947E-02 1.92847789E-01 -1.22448840E-01 0.00000000E+00 4.21292443E-02 2.80110443E-01 -1.82680325E-01 0.00000000E+00 3.86200538E-02 2.34404429E-01 -1.45379541E-01 0.00000000E+00 4.08122303E-02 2.77796758E-02 -1.56854700E-03 0.00000000E+00 7.59270879E-04 0.00000000E+00 0.00000000E+00 1.26652179E-03 2.10961722E-03 6.22560632E-03 0.00000000E+00 0.00000000E+00 7.00432766E-03 1.61009710E-02 -4.51177649E-02 -7.44305743E-02 -1.53405622E-02 -5.74939758E-03 1.46005363E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 1.53320574E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 2.28505521E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 1.87015315E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 2.41482229E-02 0.00000000E+00 -2.01367435E-03 -3.40085250E-03 0.00000000E+00 0.00000000E+00 0.00000000E+00 -1.11455943E-02 -1.92987021E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 2.64756217E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 3.84385082E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 3.20775829E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 3.39603562E-02 0.00000000E+00 -7.31280399E-05 2.53856320E-03 0.00000000E+00 0.00000000E+00 0.00000000E+00 -1.98836331E-03 1.80698601E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 1.43421889E-02 2.92898444E-02 4.81752955E-02 -1.70300451E-01 -4.96721124E-02 0.00000000E+00 -1.50008426E-01 -2.45487416E-01 -7.71258289E-02 0.00000000E+00 -2.17165703E-01 -1.80167273E-01 -6.89256377E-02 0.00000000E+00 -5.57266126E-02 -1.13003913E-02 -2.21520793E-02 0.00000000E+00 -3.69018301E-03 0.00000000E+00 0.00000000E+00 3.11397330E-03 -2.10130090E-03 -6.73115240E-03 0.00000000E+00 0.00000000E+00 5.56852354E-03 -6.19909742E-03 -1.49182095E-03 -2.49940651E-03 2.53726360E-01 6.07333606E-02 0.00000000E+00 8.27581094E-03 3.67119796E-01 9.06813729E-02 0.00000000E+00 1.52676192E-02 3.19798149E-01 7.76879578E-02 0.00000000E+00 -3.09193662E-02 5.55844153E-02 6.43393460E-04 0.00000000E+00 -1.63526166E-04 0.00000000E+00 0.00000000E+00 -4.30777460E-04 6.72364365E-04 -1.20024488E-03 0.00000000E+00 0.00000000E+00 -3.86357905E-03 1.75175787E-03 9.87555730E-02 1.62465694E-01 8.13059100E-02 1.22630845E-02 -1.22445884E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 2.72247357E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 4.00737934E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 3.67357873E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 7.82234452E-02 0.00000000E+00 -3.81297499E-03 -2.09437691E-04 0.00000000E+00 0.00000000E+00 0.00000000E+00 -1.88849306E-02 3.74471567E-03 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 -1.90940051E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 -2.75830471E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 -2.47273796E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 -6.53423202E-02 0.00000000E+00 8.09116635E-05 3.80299865E-04 0.00000000E+00 0.00000000E+00 0.00000000E+00 6.32364074E-04 6.36477212E-03 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 2.82542931E-02 -4.02144413E-02 -6.65772664E-02 -3.81403137E-02 -2.28630656E-01 0.00000000E+00 2.21328201E-01 -6.24366195E-02 -3.41323171E-01 0.00000000E+00 4.26726025E-01 -8.47042021E-02 -3.89221043E-01 0.00000000E+00 5.04572094E-01 -4.73670571E-02 -3.97404296E-01 0.00000000E+00 2.53744818E-03 0.00000000E+00 0.00000000E+00 4.28673497E-03 4.03843285E-03 1.15962848E-02 0.00000000E+00 0.00000000E+00 2.96782476E-02 1.56995874E-02 3.06601683E-02 5.13715629E-02 1.21256056E-02 -2.25861585E-01 0.00000000E+00 -1.80787369E-01 1.75076354E-02 -3.28870666E-01 0.00000000E+00 -2.44541213E-01 2.20628390E-02 -3.51464684E-01 0.00000000E+00 -4.88088176E-01 -1.50483111E-02 -3.03072313E-01 0.00000000E+00 -1.16362101E-03 0.00000000E+00 0.00000000E+00 -2.20412577E-03 -1.48618845E-04 -8.92805029E-03 0.00000000E+00 0.00000000E+00 -1.58546022E-02 -4.85703058E-04 -3.72190411E-02 -8.39798343E-02 -2.62362970E-01 -8.64415344E-03 -2.99010321E-02 0.00000000E+00 2.57389739E-02 4.18263175E-02 1.12141572E-01 -9.26347578E-02 0.00000000E+00 -1.15596988E-01 1.59497659E-01 -1.18582542E-01 0.00000000E+00 -5.17015133E-01 2.52541137E-01 -2.38448182E-01 0.00000000E+00 3.56663032E-01 2.11088942E-01 -4.06379564E-01 0.00000000E+00 1.18468764E-03 0.00000000E+00 0.00000000E+00 1.91815623E-03 -9.21593076E-04 1.65967962E-03 0.00000000E+00 0.00000000E+00 1.45304265E-02 -4.42411727E-03 1.67686489E-02 2.82328904E-02 1.04920856E-03 -2.60806733E-02 0.00000000E+00 -1.00298913E-01 -1.74121748E-03 -4.63376731E-02 0.00000000E+00 -1.52967736E-01 1.82976730E-02 -2.17730753E-02 0.00000000E+00 -5.84761677E-01 -4.88471736E-02 -4.19916530E-01 0.00000000E+00 -1.38659565E-04 0.00000000E+00 0.00000000E+00 1.74574672E-04 4.41680234E-04 -1.15619175E-03 0.00000000E+00 0.00000000E+00 1.24674096E-03 6.14196241E-03 6.91010707E-02 6.74481502E-02 1.55885427E+00 -3.71274180E-02 5.30382367E-03 0.00000000E+00 1.39445369E-02 2.24398928E-02 -6.15117904E-02 9.18715962E-02 0.00000000E+00 -5.51147189E-02 -6.59080534E-02 1.38852612E-01 0.00000000E+00 -3.29981874E-01 -2.37858136E-01 2.81844797E-01 0.00000000E+00 3.96186114E+00 -1.82343566E-01 -1.58181638E+00 0.00000000E+00 5.67805382E-04 0.00000000E+00 0.00000000E+00 -2.07434876E-03 8.22642232E-04 1.29875470E-02 0.00000000E+00 0.00000000E+00 2.41612405E-02 -5.63684771E-04 1.41569242E-02 2.47062341E-02 -5.41422824E-04 9.80045991E-02 0.00000000E+00 -1.07166233E-01 -1.91644158E-03 1.11848700E-01 0.00000000E+00 2.04200870E-02 7.16458955E-03 3.52140226E-01 0.00000000E+00 -2.22974380E+00 -1.99246396E-02 -1.28265473E+00 0.00000000E+00 1.77166468E-03 0.00000000E+00 0.00000000E+00 2.64640464E-03 -4.85319949E-04 2.43447592E-03 0.00000000E+00 0.00000000E+00 1.07042875E-03 -1.64376337E-03 -2.42398073E-02 -6.49849715E-02 -1.43465045E+00 1.11637614E-02 -1.11378872E-02 0.00000000E+00 1.01644753E-02 1.64328004E-02 -8.85847042E-02 -9.71878084E-02 0.00000000E+00 -4.47444595E-02 -9.33676881E-02 -1.15746579E-01 0.00000000E+00 -2.35111937E-01 -3.51284196E-01 -3.54068449E-01 0.00000000E+00 2.76367950E-01 4.64947098E-01 1.36860808E+00 0.00000000E+00 1.22753003E-03 0.00000000E+00 0.00000000E+00 9.89987582E-04 2.95719337E-03 -6.99056724E-03 0.00000000E+00 0.00000000E+00 -5.24038663E-03 1.52126326E-02 4.31880888E-03 6.54973471E-03 -2.79482451E-02 -3.95752128E-02 0.00000000E+00 -5.79281064E-03 -3.26205852E-02 -5.48016437E-02 0.00000000E+00 -2.06471193E-01 -7.77159032E-02 -1.32457214E-01 0.00000000E+00 1.10332887E+00 1.08773173E-01 2.48560723E-01 0.00000000E+00 -8.37410087E-04 0.00000000E+00 0.00000000E+00 -1.48799670E-03 -1.12919096E-03 9.13790802E-04 0.00000000E+00 0.00000000E+00 -9.26951832E-04 -1.32602066E-03 -1.97858562E-02 -8.27209458E-02 -5.83164006E-01 1.17189007E-02 1.07173618E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 -1.19067558E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 -1.22871489E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 -4.65256864E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 1.27966316E+00 0.00000000E+00 1.25894070E-03 1.75928240E-03 0.00000000E+00 0.00000000E+00 0.00000000E+00 7.24948322E-03 1.05583966E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 -4.18635605E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 -5.35302650E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 -9.47551980E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 -3.76950864E-02 0.00000000E+00 7.09935856E-05 -1.02722050E-03 0.00000000E+00 0.00000000E+00 0.00000000E+00 -1.13286350E-04 -2.24736121E-03 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 2.17890928E-02 6.20780652E-03 1.08917532E-02 1.52697973E-02 1.18156042E-02 0.00000000E+00 -6.24329471E-02 2.23379165E-02 6.68420203E-03 0.00000000E+00 2.01892990E-01 -1.98832550E-01 1.68908144E-01 0.00000000E+00 -4.88282550E+00 2.99723504E+00 -9.81818883E-01 0.00000000E+00 -2.14748022E-03 0.00000000E+00 0.00000000E+00 2.51922146E-03 -1.33645711E-03 -3.64999753E-02 0.00000000E+00 0.00000000E+00 5.70327172E-02 -3.24867228E-02 -4.84446634E-03 -7.92343501E-03 -5.81817083E-02 -1.59379961E-02 0.00000000E+00 2.12910418E-02 -7.69341566E-02 -1.16768872E-02 0.00000000E+00 1.06057599E-01 -1.20387282E-01 -5.05080292E-02 0.00000000E+00 2.47632438E-01 -1.50280420E-01 4.65934105E-01 0.00000000E+00 4.10015773E-05 0.00000000E+00 0.00000000E+00 1.42316369E-03 -2.70456939E-04 -6.06957568E-03 0.00000000E+00 0.00000000E+00 4.76097772E-03 4.55302267E-03 7.67733264E-02 -1.38131038E-01 5.05301750E+00 -7.20719885E-02 1.48532316E-02 0.00000000E+00 1.09972847E-02 1.70416440E-02 -1.64959055E-02 5.54679246E-03 0.00000000E+00 -2.56807365E-02 -2.83057557E-03 -4.62909266E-03 0.00000000E+00 -5.94214378E-01 -6.95887756E-02 4.96966190E-03 0.00000000E+00 2.88116639E+00 -5.14497592E-01 -7.41762798E-01 0.00000000E+00 4.50164873E-03 0.00000000E+00 0.00000000E+00 4.95332688E-03 1.08060389E-03 1.20986732E-02 0.00000000E+00 0.00000000E+00 -1.97873696E-03 1.55934509E-02 -8.03798989E-03 -1.29225138E-02 4.55377266E-02 -7.97951734E-02 0.00000000E+00 3.10183697E-02 4.62361280E-02 -7.67761113E-02 0.00000000E+00 2.08199452E-01 1.75069880E-01 -3.49056702E-01 0.00000000E+00 -1.56293808E+00 -4.61511738E-01 8.08765356E-01 0.00000000E+00 1.19883859E-03 0.00000000E+00 0.00000000E+00 1.55208052E-03 2.04768042E-04 1.10255524E-02 0.00000000E+00 0.00000000E+00 1.38093586E-02 3.56134201E-03 -9.46128827E-03 3.50477094E-02 -1.84058963E+00 1.01878543E-02 -2.24062577E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 2.55166521E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 3.29199390E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 7.44796670E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 -1.02728261E+00 0.00000000E+00 -2.67214523E-04 -1.41095056E-03 0.00000000E+00 0.00000000E+00 0.00000000E+00 -1.00631093E-03 -1.30268815E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 -1.16226902E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 -1.10940952E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 -4.84967798E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 1.70198687E+00 0.00000000E+00 1.08376052E-04 -1.42864572E-03 0.00000000E+00 0.00000000E+00 0.00000000E+00 -4.35633217E-05 -1.14025798E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 -7.79249879E-03 9.59175285E-04 9.19653083E-04 8.27100124E-03 4.12301850E-03 0.00000000E+00 1.45646960E-02 1.56012050E-02 -9.21422511E-05 0.00000000E+00 -2.34422441E-01 3.26736793E-02 -5.54834012E-03 0.00000000E+00 4.15545551E+00 -2.62718263E+00 -4.38633638E-01 0.00000000E+00 3.27173058E-03 0.00000000E+00 0.00000000E+00 -3.31681919E-04 -1.56965580E-04 1.92144086E-02 0.00000000E+00 0.00000000E+00 -1.04328513E-02 -3.78338806E-03 -2.20861330E-03 -3.03877399E-03 -9.69286553E-02 -2.46979493E-02 0.00000000E+00 -5.71601440E-03 -8.73261224E-02 -2.24854263E-02 0.00000000E+00 1.86895242E-01 -4.37684010E-01 -1.06844137E-01 0.00000000E+00 -1.70477264E+00 1.83781176E+00 -1.47601302E-01 0.00000000E+00 3.64885191E-04 0.00000000E+00 0.00000000E+00 2.86039545E-04 -1.79175329E-03 8.36048880E-03 0.00000000E+00 0.00000000E+00 1.43093297E-03 -1.21817480E-02 -1.85848621E-02 -1.03913841E-02 -3.15728857E+00 1.47417209E-02 5.71861140E-03 0.00000000E+00 1.10778808E-02 1.85202455E-02 2.97261216E-02 1.87517349E-02 0.00000000E+00 -5.07187803E-02 6.17548229E-02 -1.33501065E-02 0.00000000E+00 -5.93284790E-01 1.88462019E-01 3.74703701E-01 0.00000000E+00 -6.40655679E+00 -7.47199751E-02 3.01753320E+00 0.00000000E+00 -1.45406424E-03 0.00000000E+00 0.00000000E+00 3.78400131E-03 -2.34654713E-03 8.00500323E-03 0.00000000E+00 0.00000000E+00 -5.08915854E-03 4.67286241E-03 3.17922927E-02 5.05223397E-02 -6.94304737E-03 -7.10469626E-04 0.00000000E+00 -9.92286247E-02 -6.90388173E-04 -1.01931059E-03 0.00000000E+00 -1.51411909E+00 -5.37110967E-02 -2.11671465E-02 0.00000000E+00 8.40531996E+00 6.10618038E-02 3.23911309E+00 0.00000000E+00 3.55959295E-03 0.00000000E+00 0.00000000E+00 5.70238544E-03 8.59704154E-04 4.58653107E-03 0.00000000E+00 0.00000000E+00 1.54232901E-02 -9.99220287E-04 1.81972179E-02 4.81153876E-01 -2.77334791E-01 1.33988453E-02 -2.64111789E-02 0.00000000E+00 -2.95579206E-02 -5.13373723E-02 -1.41670611E-01 6.00914975E-02 0.00000000E+00 1.79071065E-01 -2.86284711E-01 1.09287872E-01 0.00000000E+00 7.48250885E-01 -7.75147949E-01 3.47529342E-01 0.00000000E+00 -5.24778142E+00 1.98573832E+00 -1.00684719E-02 0.00000000E+00 9.46337448E-03 0.00000000E+00 0.00000000E+00 -1.10435914E-02 1.13439558E-02 -2.63681224E-02 0.00000000E+00 0.00000000E+00 3.08620116E-02 -7.87686567E-03 6.43026144E-03 1.01240727E-02 3.04677982E-02 -8.54329832E-03 0.00000000E+00 -1.69198862E-02 3.95806948E-02 -6.05951120E-03 0.00000000E+00 -3.06084126E-01 9.60426035E-02 -6.62328533E-02 0.00000000E+00 1.81119172E+00 -2.19905843E-01 7.79174739E-01 0.00000000E+00 8.64476269E-05 0.00000000E+00 0.00000000E+00 1.47713793E-03 -2.41103868E-03 4.98862596E-03 0.00000000E+00 0.00000000E+00 5.92706969E-03 -1.16557204E-02 -1.64047024E-01 -2.33473684E+00 5.28812704E+00 -4.22943111E-02 9.74520424E-03 0.00000000E+00 1.44002473E-02 2.62269259E-02 1.23962081E-01 -1.64957762E-01 0.00000000E+00 -1.91621126E-01 3.12775513E-01 -5.47608897E-01 0.00000000E+00 7.11995020E-01 -1.69702855E+00 2.07211292E+00 0.00000000E+00 -1.92107620E+00 1.28478637E+00 -8.41006634E-01 0.00000000E+00 2.02082542E-03 0.00000000E+00 0.00000000E+00 -3.50900656E-02 1.36556330E-02 -3.50159077E-02 0.00000000E+00 0.00000000E+00 1.13511182E-01 -9.54448107E-02 1.59914284E-03 4.68063331E-03 4.88415332E-02 -4.20628381E-02 0.00000000E+00 -8.72932479E-02 9.23428594E-02 -8.75461912E-02 0.00000000E+00 6.47113158E-01 5.07926396E-02 6.71490967E-01 0.00000000E+00 3.16202717E-01 -1.61029604E-01 2.32461992E-01 0.00000000E+00 3.39322893E-03 0.00000000E+00 0.00000000E+00 7.05796199E-03 -4.84487723E-03 -4.59787305E-02 0.00000000E+00 0.00000000E+00 -9.80350722E-02 -1.98737666E-02 -9.16209967E-02 -1.52102104E+00 1.86933965E+00 -2.96003676E-01 1.60176421E-01 0.00000000E+00 8.54991031E-03 1.16223461E-02 -1.94293328E-01 -1.35736845E-01 0.00000000E+00 8.75921372E-02 -5.38517581E-01 -4.79814497E-01 0.00000000E+00 -1.15259847E+00 1.66928483E+00 1.19895158E+00 0.00000000E+00 4.00439713E-01 -8.95240961E-01 -3.52352093E-01 0.00000000E+00 -1.64288083E-02 0.00000000E+00 0.00000000E+00 -3.54623056E-03 -4.54592839E-03 4.70695709E-02 0.00000000E+00 0.00000000E+00 -5.86627885E-02 -5.67044564E-02 -1.00536246E-03 -3.19756003E-04 -7.01159122E-02 -2.75218640E-02 0.00000000E+00 -4.95991297E-02 -1.52600669E-01 -7.24214310E-02 0.00000000E+00 4.90262977E-01 6.10450181E-02 5.91064639E-01 0.00000000E+00 2.41059890E-01 -1.49221621E-02 1.94713272E-01 0.00000000E+00 3.35511258E-03 0.00000000E+00 0.00000000E+00 5.75279762E-03 5.60957816E-03 -4.07601551E-02 0.00000000E+00 0.00000000E+00 -6.87838538E-02 5.01679147E-02 3.10622488E-02 9.65566271E-01 -8.46966430E-01 2.32780968E-01 6.16396227E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 -2.64637958E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 -8.18667512E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 1.57985008E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 -8.54908453E-01 0.00000000E+00 4.89101471E-03 3.21232519E-03 0.00000000E+00 0.00000000E+00 0.00000000E+00 -8.17397081E-02 1.28484608E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 -5.19967815E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 -1.10434937E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 5.87231446E-03 0.00000000E+00 0.00000000E+00 0.00000000E+00 1.10745568E-01 0.00000000E+00 2.79127615E-04 5.42911873E-03 0.00000000E+00 0.00000000E+00 0.00000000E+00 -8.95902371E-03 1.43934134E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 9.12294689E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 1.38694391E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 6.71447294E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 -3.32200652E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 -6.38812063E-02 0.00000000E+00 -1.40475205E-02 1.00249164E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 -4.50763284E-01 2.36819630E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 9.82670739E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 2.52147100E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 -4.13612847E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 3.28732114E-01 0.00000000E+00 1.06417652E-03 -1.92966578E-03 0.00000000E+00 0.00000000E+00 0.00000000E+00 -5.84723703E-02 -9.88359198E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 5.78645319E-01 4.73314589E-02 9.32325457E-02 -4.55263876E-02 -1.37107688E-02 0.00000000E+00 -6.57275987E-01 -2.24524009E-01 -9.77477790E-02 0.00000000E+00 7.71178102E-01 7.59017046E-01 4.81731164E-01 0.00000000E+00 -5.46846794E-02 -7.14511436E-01 -6.29834385E-03 0.00000000E+00 -4.84135845E-04 0.00000000E+00 0.00000000E+00 8.70829919E-03 1.84512996E-02 -1.03161277E-01 0.00000000E+00 0.00000000E+00 1.38729207E-01 4.21408478E-01 -3.60939561E-03 -5.87029271E-03 1.00688242E-01 -1.26652586E-03 0.00000000E+00 1.35262438E-02 2.86510088E-01 -3.51921190E-02 0.00000000E+00 1.77064817E-01 -6.16779964E-01 2.17419385E-01 0.00000000E+00 -1.13357429E-02 5.64481360E-01 -1.74448888E-01 0.00000000E+00 1.41009244E-03 0.00000000E+00 0.00000000E+00 -6.47754626E-05 1.78308670E-03 -2.98581788E-02 0.00000000E+00 0.00000000E+00 2.80199365E-02 -1.31328814E-01 -5.29367542E-02 3.38868812E-01 -5.35079483E-01 -1.70556983E-01 -4.31337966E-01 0.00000000E+00 6.03923581E-02 1.23292261E-01 -2.59705492E-02 -7.02483241E-03 0.00000000E+00 -1.08040507E+00 -1.33217296E-01 -5.86247676E-02 0.00000000E+00 2.79471542E+00 -3.76321929E-01 -7.48325288E-01 0.00000000E+00 -1.52986820E+00 5.39069471E-01 -9.13235055E-02 0.00000000E+00 1.38778928E-02 0.00000000E+00 0.00000000E+00 5.66005771E-03 1.75028026E-03 8.30657425E-02 0.00000000E+00 0.00000000E+00 -1.55666545E-01 -1.19099668E-01 3.33834692E-02 6.02451449E-02 -2.28435084E-02 1.51595602E-01 0.00000000E+00 -2.95848624E-01 -7.32083991E-02 5.70828355E-01 0.00000000E+00 -1.94903001E-01 1.90374176E-01 -1.92567600E+00 0.00000000E+00 -3.88861466E-01 -1.95887588E-01 4.73645367E-01 0.00000000E+00 -9.93524654E-03 0.00000000E+00 0.00000000E+00 -1.54569068E-02 -1.02108844E-03 3.49292906E-02 0.00000000E+00 0.00000000E+00 -1.38685334E-02 2.29437841E-02 -2.43767765E-02 -8.23372287E-01 1.14743008E+00 -1.60400861E-01 1.92260680E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 1.37875262E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 1.30813671E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 -5.65852875E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 4.92320125E-01 0.00000000E+00 -6.46390502E-03 -1.02742221E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 -3.32557201E-01 -3.77927216E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 -2.09434799E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 -6.05233074E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 1.27174444E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 -8.33982828E-01 0.00000000E+00 1.15200172E-03 -1.01700499E-03 0.00000000E+00 0.00000000E+00 0.00000000E+00 -5.45600591E-02 9.14623918E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 2.09298961E-01 6.45107963E-02 1.30880427E-01 -6.13253011E-03 2.24378874E-02 0.00000000E+00 -1.04185993E+00 -7.06606839E-02 2.06396428E-01 0.00000000E+00 1.93518175E+00 -6.14532020E-01 5.85379431E-02 0.00000000E+00 -1.93196431E+00 9.97386086E-01 2.52336524E-02 0.00000000E+00 9.75279930E-03 0.00000000E+00 0.00000000E+00 -3.60835946E-03 1.24845839E-04 3.12054690E-01 0.00000000E+00 0.00000000E+00 2.40578783E-01 -1.17685851E-01 -1.33030272E-02 -2.44623582E-02 -1.18319426E-01 -1.23920758E-01 0.00000000E+00 1.39314105E-01 -3.64683195E-01 -4.41544883E-01 0.00000000E+00 -1.37580353E-01 8.48527963E-01 1.01386791E+00 0.00000000E+00 2.19956679E-01 -6.23521601E-01 -6.96065866E-01 0.00000000E+00 2.38269571E-03 0.00000000E+00 0.00000000E+00 5.60505393E-03 -2.09127137E-03 7.69610082E-02 0.00000000E+00 0.00000000E+00 7.45533098E-02 -4.76421349E-03 -4.06077512E-02 -9.40207948E-01 1.71154246E+00 -2.06252501E-01 5.53723620E-02 0.00000000E+00 -2.40196668E-02 -4.86960390E-02 3.09741375E-02 -1.14651140E-02 0.00000000E+00 3.66795954E-01 9.36076513E-02 -1.24471854E-01 0.00000000E+00 -4.32121711E-01 -4.01310453E-01 4.04144163E-01 0.00000000E+00 -1.75506892E-01 3.74620387E-01 -6.02963847E-02 0.00000000E+00 -2.00533978E-03 0.00000000E+00 0.00000000E+00 4.49415836E-04 1.46853660E-03 -2.44345093E-01 0.00000000E+00 0.00000000E+00 -2.12819081E-02 2.80538544E-01 1.57579363E-03 2.80050222E-03 -1.97617905E-01 5.49085127E-02 0.00000000E+00 -1.63271927E-02 -6.32705824E-01 1.84365012E-01 0.00000000E+00 8.68411416E-02 1.46176906E+00 -3.24950490E-01 0.00000000E+00 2.38165911E-01 -7.96581764E-01 3.78367861E-01 0.00000000E+00 -2.61951925E-04 0.00000000E+00 0.00000000E+00 -1.27791176E-03 -5.39545826E-03 -6.26479155E-02 0.00000000E+00 0.00000000E+00 -2.79187626E-02 -1.57365252E-01 1.68005777E-02 -2.10447551E-01 1.55010883E-01 -1.00613888E-01 -2.68020294E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 2.88062100E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 3.30444772E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 -1.54576617E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 1.69688017E-01 0.00000000E+00 3.87765707E-04 4.35711528E-03 0.00000000E+00 0.00000000E+00 0.00000000E+00 1.90444127E-01 7.07607513E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 -1.22043566E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 -4.54331071E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 1.16300892E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 -5.95671140E-01 0.00000000E+00 -1.72784999E-04 -8.41804473E-03 0.00000000E+00 0.00000000E+00 0.00000000E+00 3.56954695E-02 -3.35005149E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 1.12034675E-02 -3.64896024E-02 -7.37039544E-02 -8.66325719E-02 3.04949427E-02 0.00000000E+00 6.75109128E-01 -7.11099804E-02 1.29071698E-02 0.00000000E+00 -2.32331597E+00 1.58621508E+00 -4.78267070E-01 0.00000000E+00 1.56019114E+00 -9.31644774E-01 4.92941167E-01 0.00000000E+00 1.83037189E-03 0.00000000E+00 0.00000000E+00 -4.57678302E-03 3.51038088E-03 6.65347173E-01 0.00000000E+00 0.00000000E+00 -5.55000682E-01 5.93871583E-01 -5.41138011E-03 -1.05292250E-02 1.27645743E-02 -8.26914655E-03 0.00000000E+00 7.35264429E-02 5.75430369E-03 -3.11016603E-02 0.00000000E+00 -1.37413632E-01 -8.60731860E-02 1.59243623E-01 0.00000000E+00 5.62574947E-01 2.66424179E-02 1.67009675E-01 0.00000000E+00 2.81879170E-04 0.00000000E+00 0.00000000E+00 1.08087041E-03 -1.41844036E-03 1.50335881E-01 0.00000000E+00 0.00000000E+00 -9.58528750E-02 -1.58968968E-01 -4.44144990E-01 3.26591042E+00 -2.64772489E+00 1.92816614E-01 1.13858282E-01 0.00000000E+00 -2.87659114E-02 -5.84984312E-02 -2.42824676E-03 -6.63030827E-02 0.00000000E+00 4.67000551E-01 2.71874462E-03 -2.58228269E-01 0.00000000E+00 -6.08568486E-01 -2.24567139E-02 9.73581499E-01 0.00000000E+00 -2.53251013E+00 2.57720956E-01 7.09947125E-01 0.00000000E+00 1.12020547E-02 0.00000000E+00 0.00000000E+00 2.10997813E-02 2.93690421E-03 4.73536144E-01 0.00000000E+00 0.00000000E+00 9.20579559E-02 -3.01390616E-01 -6.95126409E-02 -1.35576482E-01 -1.39264495E-02 1.06678929E-01 0.00000000E+00 9.57731783E-01 1.97444228E-02 2.44704441E-01 0.00000000E+00 -1.20275389E+00 -1.24839114E-01 -5.47483893E-02 0.00000000E+00 2.99242642E+00 8.04172570E-02 1.08099195E+00 0.00000000E+00 5.42180681E-03 0.00000000E+00 0.00000000E+00 8.21682864E-03 5.51310846E-03 5.03579028E-02 0.00000000E+00 0.00000000E+00 -9.92950730E-02 3.00163256E-01 1.28084006E-01 -2.45796076E-01 6.47259100E-01 -2.52988043E-01 -6.00179903E-01 0.00000000E+00 1.62609638E-02 3.28842336E-02 -5.61565838E-02 8.97616844E-02 0.00000000E+00 -2.60504134E-01 1.28303033E-02 1.85564771E-01 0.00000000E+00 1.25997147E-01 2.01229335E-01 -2.70452198E-01 0.00000000E+00 1.11169583E+00 -3.29906171E-01 -8.54481442E-02 0.00000000E+00 -7.29728978E-03 0.00000000E+00 0.00000000E+00 -2.18753284E-02 3.29546256E-03 -2.37741492E-01 0.00000000E+00 0.00000000E+00 -7.59218362E-01 -2.61637855E-01 3.04950109E-02 5.73067219E-02 -2.30426523E-02 -1.05191284E-01 0.00000000E+00 -3.43645419E-01 -1.45975065E-03 -2.31926249E-01 0.00000000E+00 1.91256640E-01 -9.79178721E-02 4.60679617E-02 0.00000000E+00 -7.44871417E-01 1.50500961E-01 -3.11384624E-01 0.00000000E+00 -8.93319404E-03 0.00000000E+00 0.00000000E+00 -1.64513736E-02 8.48056953E-03 -1.32785189E-01 0.00000000E+00 0.00000000E+00 -6.15828071E-02 3.87641837E-01 -3.26562998E-01 7.84737469E-01 -8.98107181E-01 -2.32086340E-01 -6.06006773E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 -8.30627098E-03 0.00000000E+00 0.00000000E+00 0.00000000E+00 1.76105778E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 -3.85987902E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 6.35907251E-02 0.00000000E+00 -7.59820749E-03 6.65033869E-04 0.00000000E+00 0.00000000E+00 0.00000000E+00 6.10224644E-01 -2.11076146E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 -8.12006744E-03 0.00000000E+00 0.00000000E+00 0.00000000E+00 -1.49792263E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 5.00433276E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 -8.56512367E-03 0.00000000E+00 3.47397319E-03 1.36958558E-03 0.00000000E+00 0.00000000E+00 0.00000000E+00 7.02580085E-01 5.38007008E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 8.02426029E-01 2.79932638E-02 5.81512022E-02 1.81856191E-03 3.75805339E-02 0.00000000E+00 -5.40273676E-01 3.75177673E-02 6.64065348E-02 0.00000000E+00 9.63796064E-01 2.13256599E-02 -9.93083468E-01 0.00000000E+00 -2.97229445E+00 9.91888386E-02 1.38317509E+00 0.00000000E+00 -1.06766912E-03 0.00000000E+00 0.00000000E+00 -5.74281890E-03 -2.23185232E-03 -2.76911095E-01 0.00000000E+00 0.00000000E+00 -2.85371093E-01 8.39927626E-02 -8.36316397E-02 -1.72473880E-01 8.45077151E-03 -4.15430235E-02 0.00000000E+00 1.49261628E+00 3.20727303E-03 -8.65772494E-03 0.00000000E+00 -3.40667428E+00 2.03922904E-02 -8.17177014E-01 0.00000000E+00 4.17049226E+00 -6.75144050E-02 1.38371044E+00 0.00000000E+00 -1.31934265E-02 0.00000000E+00 0.00000000E+00 -2.01233959E-02 -3.15974879E-03 -3.30218081E-01 0.00000000E+00 0.00000000E+00 -2.45087190E-01 -1.69063579E-01 -8.12603605E-02 1.39911865E-01 1.39854536E-01 2.08166992E-01 2.62496182E-01 0.00000000E+00 -1.34769305E-02 -2.55498571E-02 -3.29970669E-02 -1.49852539E-02 0.00000000E+00 2.10448812E-01 2.72520504E-02 -6.83451244E-02 0.00000000E+00 -6.50128193E-01 2.56139562E-01 1.26207279E-01 0.00000000E+00 1.14308982E+00 -4.05617449E-01 -6.12438701E-02 0.00000000E+00 1.40520380E-02 0.00000000E+00 0.00000000E+00 -5.89492278E-05 2.61646427E-03 2.69348074E-01 0.00000000E+00 0.00000000E+00 7.37244806E-02 2.67410260E-02 2.44519422E-03 6.66501406E-03 6.00262872E-04 3.56289285E-02 0.00000000E+00 -1.01056991E-01 1.42455896E-03 6.36485692E-02 0.00000000E+00 4.26220533E-01 -3.06788199E-02 1.00897127E-01 0.00000000E+00 -4.86455417E-01 5.54201961E-02 -1.46612974E-01 0.00000000E+00 -2.88658108E-03 0.00000000E+00 0.00000000E+00 1.11504207E-02 9.22096200E-04 -7.64096711E-01 0.00000000E+00 0.00000000E+00 5.52962506E-01 2.52767140E-02 -3.02881483E-01 8.69404526E-01 -1.08153857E+00 6.91183554E-02 7.34121924E-03 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 -6.54517609E-03 0.00000000E+00 0.00000000E+00 0.00000000E+00 1.63173427E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 -3.72370321E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 5.54870510E-02 0.00000000E+00 1.16833013E-02 2.86596888E-04 0.00000000E+00 0.00000000E+00 0.00000000E+00 7.91046610E-01 -1.65913536E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 -8.14590569E-03 0.00000000E+00 0.00000000E+00 0.00000000E+00 -1.27555337E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 5.16305683E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 -3.89388584E-03 0.00000000E+00 -9.12727545E-03 1.32108097E-03 0.00000000E+00 0.00000000E+00 0.00000000E+00 -7.03618423E-01 4.86817569E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 7.90774814E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 -1.20486392E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 1.13960038E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 -4.55206415E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 1.23886295E-01 0.00000000E+00 -6.94816664E-04 2.30431443E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 -3.05710764E-03 6.77236932E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 -3.48147140E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 -1.08435807E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 4.31015667E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 -6.93663129E-02 0.00000000E+00 1.62281204E-04 1.75052056E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 6.84922910E-03 1.00256746E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 -5.15682487E-03 1.69203481E-02 4.35415887E-02 -1.71618139E-02 -3.87796971E-02 0.00000000E+00 -3.36815822E-01 6.24761977E-01 -2.54223605E-01 0.00000000E+00 -1.42694575E+00 7.42052642E-01 -5.09244505E-01 0.00000000E+00 1.53514808E+00 -5.84698027E-01 1.48884408E-01 0.00000000E+00 -1.32414026E-03 0.00000000E+00 0.00000000E+00 2.57250750E-02 1.26379063E-03 1.62877082E-02 0.00000000E+00 0.00000000E+00 -2.58484648E-03 4.03818277E-01 -1.08549458E-02 -2.08772899E-02 -2.16641977E-02 4.68502115E-02 0.00000000E+00 1.53320343E-01 -4.88778980E-02 8.21919973E-02 0.00000000E+00 -1.47254316E-01 1.15548223E-01 -2.13749165E-01 0.00000000E+00 -2.53790084E-01 1.93469840E-03 -7.34084403E-02 0.00000000E+00 7.40366102E-03 0.00000000E+00 0.00000000E+00 1.68645786E-03 8.17188813E-03 2.27754467E-01 0.00000000E+00 0.00000000E+00 7.37018192E-02 3.21730313E-01 -1.07457714E+00 3.27227898E+00 -1.99574184E+00 1.32256899E+00 -2.16144740E-01 0.00000000E+00 1.39697355E-03 7.05231525E-03 -1.37705858E-03 -4.17037105E-02 0.00000000E+00 -3.08661031E-02 1.40795272E-01 -1.21055882E-01 0.00000000E+00 -1.01145336E+00 1.26346837E+00 -3.50450508E-02 0.00000000E+00 1.05444961E+00 -6.58759678E-01 9.16204559E-02 0.00000000E+00 7.12135398E-03 0.00000000E+00 0.00000000E+00 5.72732433E-03 -3.89539980E-02 1.22224278E-01 0.00000000E+00 0.00000000E+00 -4.81006975E-01 -7.46476422E-01 9.99414371E-04 1.88309847E-03 1.67643684E-02 6.18771187E-03 0.00000000E+00 -6.38755235E-03 1.10442118E-01 7.94698985E-03 0.00000000E+00 8.63485869E-02 -5.65551129E-01 -7.29245947E-02 0.00000000E+00 -2.22763137E-01 2.24813104E-01 -8.52992568E-02 0.00000000E+00 3.26039751E-03 0.00000000E+00 0.00000000E+00 -7.41594182E-05 -1.65571356E-02 1.37211923E-01 0.00000000E+00 0.00000000E+00 1.66972754E-01 -8.52414331E-01 -4.37095523E-01 1.97625748E+00 -1.34088558E+00 3.74209869E-01 -8.14094750E-01 0.00000000E+00 3.07658246E-02 5.63626067E-02 3.01142062E-01 -7.13785950E-02 0.00000000E+00 -4.23878140E-02 5.26453743E-01 -1.88474998E-01 0.00000000E+00 -3.36231622E+00 2.36097564E+00 -5.49691944E-01 0.00000000E+00 1.58459342E+00 -9.26635077E-01 1.57304312E-01 0.00000000E+00 -6.54909523E-03 0.00000000E+00 0.00000000E+00 -2.62546286E-03 -1.54048612E-02 8.73838594E-01 0.00000000E+00 0.00000000E+00 -1.03630983E+00 7.89030753E-01 1.51837499E-02 3.02850136E-02 1.41732789E-02 -3.64452511E-02 0.00000000E+00 -2.56056087E-01 1.49410173E-02 -8.18561830E-02 0.00000000E+00 4.90755668E-01 -2.09706261E-01 3.24160049E-01 0.00000000E+00 -3.14691479E-01 1.60788535E-01 -1.34845159E-01 0.00000000E+00 -7.95519898E-03 0.00000000E+00 0.00000000E+00 -5.77674552E-03 -1.78498855E-04 -1.32125139E-01 0.00000000E+00 0.00000000E+00 -1.62353565E-02 -4.95287132E-03 9.10087295E-01 3.42027598E+00 -1.52861138E+00 1.86433098E+00 -7.40960468E-01 0.00000000E+00 -1.51861436E-03 -1.65400751E-02 -1.40101545E-02 3.06154873E-01 0.00000000E+00 5.82749198E-01 9.36019463E-02 -1.56381692E-01 0.00000000E+00 -2.96781304E+00 3.40045982E-01 2.24850333E+00 0.00000000E+00 1.15547347E+00 -2.12952132E-01 -6.04488073E-01 0.00000000E+00 -5.65272897E-03 0.00000000E+00 0.00000000E+00 -1.19311835E-02 -1.29039775E-02 6.56056308E-01 0.00000000E+00 0.00000000E+00 9.99552986E-01 -1.24640597E-01 3.85381583E-02 8.47593737E-02 -1.60691262E-03 2.48474486E-02 0.00000000E+00 -9.93538948E-01 1.54493296E-02 -1.29356058E-01 0.00000000E+00 3.08512377E+00 -1.00871684E-01 2.21134365E+00 0.00000000E+00 -8.58910583E-01 4.94734662E-02 -3.89682238E-01 0.00000000E+00 -4.41907646E-03 0.00000000E+00 0.00000000E+00 -1.11425152E-02 -2.76936791E-03 -5.82042368E-01 0.00000000E+00 0.00000000E+00 -1.04407049E+00 -1.09728780E-01 -3.20291426E-01 8.71404398E-01 -5.80214264E-01 1.78564745E-01 -2.30894876E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 -1.27284900E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 1.52245179E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 -8.53250048E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 3.43486697E-01 0.00000000E+00 -2.42665322E-03 1.15831002E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 -1.18489597E-02 1.07751329E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 -2.91197782E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 3.20983440E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 5.61697960E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 -6.48674392E-02 0.00000000E+00 2.09822082E-04 -1.21958114E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 7.60472808E-04 -1.24009124E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 -3.63723613E-02 5.82326008E-03 1.00661825E-02 -6.45123724E-01 -1.04940600E+00 0.00000000E+00 6.61548098E-02 8.80111899E-01 1.33478311E+00 0.00000000E+00 -9.71285439E-01 -1.54326224E-01 -3.43766611E-01 0.00000000E+00 9.07069741E-01 1.00107592E-02 -1.59037875E-02 0.00000000E+00 1.82561797E-02 0.00000000E+00 0.00000000E+00 6.71950052E-03 -2.97575010E-05 2.03491907E-01 0.00000000E+00 0.00000000E+00 8.34854705E-02 7.48874318E-02 1.18827394E-02 2.69230259E-02 -1.42572668E-02 2.50420888E-01 0.00000000E+00 -3.55558237E-01 1.98659789E-02 -3.62959294E-01 0.00000000E+00 8.20974968E-01 -6.70991902E-03 8.15627805E-01 0.00000000E+00 -6.92509696E-01 5.09713211E-03 -4.76537005E-01 0.00000000E+00 -3.06868235E-02 0.00000000E+00 0.00000000E+00 -5.13951498E-02 -8.76734197E-03 -2.01976719E-01 0.00000000E+00 0.00000000E+00 -3.41380919E-01 -1.43756952E-02 9.50819868E-02 4.49741290E-01 -2.89626275E-01 2.33263405E-01 -1.35871897E-01 0.00000000E+00 1.43004401E-02 2.50250926E-02 -1.10566117E+00 5.78310314E-01 0.00000000E+00 -9.04634059E-02 1.80348561E+00 -9.36307717E-01 0.00000000E+00 -1.25177900E+00 2.06040096E-01 -9.93009759E-02 0.00000000E+00 2.63389057E-01 -6.43264084E-02 8.88410349E-02 0.00000000E+00 2.57734499E-02 0.00000000E+00 0.00000000E+00 -4.02632606E-02 2.60885970E-02 2.86674918E-01 0.00000000E+00 0.00000000E+00 -5.14920181E-01 3.55329452E-01 -2.93930461E-03 -8.22708859E-03 -2.56009807E-02 -3.14483013E-01 0.00000000E+00 1.33572514E-01 3.71001687E-02 3.85678356E-01 0.00000000E+00 -2.94418409E-01 -3.14307953E-02 -4.69791946E-01 0.00000000E+00 2.61123487E-01 1.46877538E-02 2.74041730E-01 0.00000000E+00 1.52663766E-02 0.00000000E+00 0.00000000E+00 3.73988437E-02 -1.63108898E-02 9.37355873E-02 0.00000000E+00 0.00000000E+00 1.92971042E-01 -1.24891536E-02 5.00719273E-01 1.45311490E+00 -5.16382063E-01 1.05404308E+00 -3.68592528E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 3.44725025E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 -4.76363894E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 1.36670312E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 -1.54488727E-01 0.00000000E+00 -1.78211031E-02 4.38379251E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 2.14450434E-03 -5.95225902E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 -1.25865677E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 1.51777681E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 -9.23271851E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 4.12288966E-01 0.00000000E+00 2.29785687E-04 -1.76591587E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 8.50293159E-05 -2.64383555E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 -1.16086288E-02 -8.50474679E-04 -1.44953844E-03 3.92074233E-02 2.22125199E-03 0.00000000E+00 2.14405264E-02 -5.84483627E-02 2.63190253E-04 0.00000000E+00 -9.35663018E-02 2.00250061E-01 -7.89576938E-03 0.00000000E+00 2.60900751E-01 -2.80629371E-01 1.16271170E-02 0.00000000E+00 3.13521182E-02 0.00000000E+00 0.00000000E+00 -4.07690143E-02 6.91708716E-02 -3.12678595E-03 0.00000000E+00 0.00000000E+00 7.99715077E-03 -6.47563846E-02 1.45476099E-04 5.09078155E-04 -1.25598675E+00 2.07882400E-02 0.00000000E+00 -7.26269284E-03 1.51739215E+00 -2.51487778E-02 0.00000000E+00 2.70417636E-02 -9.38025343E-01 2.94189353E-02 0.00000000E+00 -5.88868493E-02 4.36708830E-01 -2.50845558E-02 0.00000000E+00 -4.39394917E-04 0.00000000E+00 0.00000000E+00 9.17899855E-04 -1.96164611E-02 -2.17430329E-03 0.00000000E+00 0.00000000E+00 -2.33654997E-03 -3.15307896E-02 9.84716716E-04 1.10925764E-01 -2.61028405E-01 2.74388917E-03 -3.47857263E-04 0.00000000E+00 -3.82796176E-03 -9.31668719E-03 1.33775017E-01 -3.52038434E-01 0.00000000E+00 9.10110497E-02 -2.60517177E-01 4.51537370E-01 0.00000000E+00 3.30599411E-01 -9.45811388E-02 -2.38298779E-01 0.00000000E+00 -1.07356953E-01 -4.76035106E-03 6.30390029E-02 0.00000000E+00 9.18010611E-02 0.00000000E+00 0.00000000E+00 3.71479190E-01 -5.24726672E-02 -5.23321128E-02 0.00000000E+00 0.00000000E+00 2.87805122E-02 -5.55405432E-02 3.73423120E-04 -1.24859657E-04 -3.29780704E-02 -1.12366681E+00 0.00000000E+00 -9.45714258E-03 3.88545960E-02 1.34732848E+00 0.00000000E+00 -7.45829708E-02 -1.52464041E-02 -7.96399901E-01 0.00000000E+00 3.75934093E-02 1.28399205E-02 2.80574800E-01 0.00000000E+00 -2.22149985E-02 0.00000000E+00 0.00000000E+00 -3.83591274E-02 3.66858522E-03 -2.95822395E-02 0.00000000E+00 0.00000000E+00 -5.18620948E-02 4.01524822E-03 -1.24461772E-01 -2.55412505E-01 1.27402678E-02 -2.28647911E-01 6.54241279E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 5.11533232E-03 0.00000000E+00 0.00000000E+00 0.00000000E+00 -2.48581366E-03 0.00000000E+00 0.00000000E+00 0.00000000E+00 8.90275097E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 -3.15169753E-03 0.00000000E+00 1.04516399E+00 4.38961491E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 -5.60459401E-01 -2.13970713E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 1.05269429E-04 0.00000000E+00 0.00000000E+00 0.00000000E+00 9.40097685E-03 0.00000000E+00 0.00000000E+00 0.00000000E+00 -6.98750063E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 1.92373182E-03 0.00000000E+00 2.96827168E-02 -2.33891180E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 2.58003757E-02 -4.85148320E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 -1.46460406E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 1.88630705E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 -3.81260783E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 2.82925052E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 1.80343460E-02 0.00000000E+00 -4.44450099E-01 1.04796014E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 2.65715725E-01 -5.81285213E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 5.42979031E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 -5.16294025E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 -9.68355464E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 -1.26205135E-02 0.00000000E+00 -1.45344085E-02 -4.67249007E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 -1.20234142E-02 -1.07741299E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 1.16535367E-01 1.02586174E-03 2.97673177E-03 3.93599665E-02 -4.52154203E-03 0.00000000E+00 -1.14098195E-01 -1.01763241E-01 3.23190217E-02 0.00000000E+00 7.49204719E-01 -4.65067606E-01 -1.69207773E-01 0.00000000E+00 -1.04860615E-02 6.98133407E-02 -5.63145238E-02 0.00000000E+00 9.68312500E-01 0.00000000E+00 0.00000000E+00 -3.32591108E-01 -5.07122653E-01 -6.21596055E-01 0.00000000E+00 0.00000000E+00 2.60569406E-01 2.51406516E-01 -1.78067222E-03 -3.75997520E-03 1.04321848E-02 -1.52838105E-03 0.00000000E+00 6.62198552E-02 -3.33823137E-02 3.87255510E-03 0.00000000E+00 -2.74336570E-01 1.60483494E-01 -2.31855694E-01 0.00000000E+00 -1.34903072E-01 -2.42948542E-02 -9.73864347E-03 0.00000000E+00 2.49475512E-02 0.00000000E+00 0.00000000E+00 -1.12994540E-02 5.52961815E-02 4.56021456E-02 0.00000000E+00 0.00000000E+00 3.20632942E-02 8.38898474E-02 -6.74632406E-02 -6.96754508E-01 2.11066094E-01 -1.28208711E-01 2.18726045E-01 0.00000000E+00 9.06824972E-04 3.22984206E-03 6.19766643E-02 -2.90705814E-03 0.00000000E+00 -1.13436220E-01 -1.31558925E-01 3.22109904E-02 0.00000000E+00 6.50263552E-01 -2.57058754E-01 2.95970114E-03 0.00000000E+00 -8.19746394E-02 9.74000534E-02 -8.55459507E-02 0.00000000E+00 5.55903310E-01 0.00000000E+00 0.00000000E+00 5.21181382E-02 1.01199594E+00 -4.16195215E-01 0.00000000E+00 0.00000000E+00 -9.18544961E-03 -7.23689775E-01 7.14663186E-04 4.84548118E-04 8.70640148E-02 2.86960921E-02 0.00000000E+00 2.56023992E-02 -9.49965346E-02 -5.28733656E-02 0.00000000E+00 -1.63429443E-01 -6.31563940E-02 -1.43653148E-01 0.00000000E+00 -1.48426514E-01 1.39421193E-03 -3.46781088E-02 0.00000000E+00 7.56910277E-03 0.00000000E+00 0.00000000E+00 -2.57383670E-02 -5.31820236E-02 3.99298169E-02 0.00000000E+00 0.00000000E+00 4.25571325E-02 -1.10217601E-01 -1.36084693E-01 -5.81970039E-01 2.75681778E-01 -1.88714296E-01 -1.01437793E-01 0.00000000E+00 -8.17523144E-03 -1.54975283E-02 9.78988551E-02 -1.91944724E-01 0.00000000E+00 2.22696117E-01 -2.09084802E-01 2.37522810E-01 0.00000000E+00 -2.20234275E-01 -4.47411944E-01 8.90410551E-01 0.00000000E+00 -3.07372267E-01 2.18790066E-01 -1.81710063E-01 0.00000000E+00 -2.67218907E-01 0.00000000E+00 0.00000000E+00 -1.08032703E+00 2.03927370E-01 2.11928771E-01 0.00000000E+00 0.00000000E+00 1.14490439E+00 -2.56651671E-01 -1.61914497E-03 1.02650794E-03 4.32276948E-02 -4.34038065E-01 0.00000000E+00 -1.73080647E-01 -6.25442649E-02 6.43155300E-01 0.00000000E+00 1.00771048E+00 6.79515746E-02 4.16003280E-01 0.00000000E+00 -1.18912045E-01 -4.43818269E-02 -4.31599875E-03 0.00000000E+00 3.29354122E-02 0.00000000E+00 0.00000000E+00 9.69128988E-03 9.91203403E-03 -1.42189659E-01 0.00000000E+00 0.00000000E+00 -2.67975338E-01 -9.34987590E-03 -2.63533459E-01 -7.06296660E-01 4.65263541E-01 -2.29529591E-01 9.51130305E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 7.43236974E-04 0.00000000E+00 0.00000000E+00 0.00000000E+00 -9.80793268E-04 0.00000000E+00 0.00000000E+00 0.00000000E+00 -1.18584929E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 1.68675887E-03 0.00000000E+00 -4.75891644E-02 2.27562418E-03 0.00000000E+00 0.00000000E+00 0.00000000E+00 6.59901273E-02 -4.68910346E-03 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 1.33842730E-03 0.00000000E+00 0.00000000E+00 0.00000000E+00 -1.55944206E-03 0.00000000E+00 0.00000000E+00 0.00000000E+00 2.11291538E-03 0.00000000E+00 0.00000000E+00 0.00000000E+00 -1.22960598E-04 0.00000000E+00 1.12493713E+00 -4.12801010E-03 0.00000000E+00 0.00000000E+00 0.00000000E+00 -5.26861237E-01 2.50718074E-03 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 2.72362430E-02 2.72976928E-04 2.33848337E-04 -1.26646730E-02 6.54992678E-03 0.00000000E+00 9.38412211E-03 2.99164718E-02 -1.19083668E-02 0.00000000E+00 -1.06494712E-01 7.79781910E-02 -4.12566930E-02 0.00000000E+00 2.02546781E-01 -1.04822641E-01 1.91263770E-02 0.00000000E+00 -3.88178044E-02 0.00000000E+00 0.00000000E+00 3.88687951E-02 -1.34720598E-02 6.39836403E-02 0.00000000E+00 0.00000000E+00 -7.28461993E-02 3.59200474E-02 2.46143384E-04 3.18244660E-04 -4.27739513E-03 7.91189012E-03 0.00000000E+00 -2.52719671E-04 6.99098648E-03 -1.38835175E-02 0.00000000E+00 -1.06430040E-02 -1.25176516E-02 -2.28228823E-03 0.00000000E+00 -3.07135352E-02 2.16722721E-02 -9.38568092E-03 0.00000000E+00 9.76263724E-01 0.00000000E+00 0.00000000E+00 -5.58649851E-01 -1.68337034E-02 -4.55979483E-01 0.00000000E+00 0.00000000E+00 2.67943750E-01 8.39075417E-03 4.38896529E-02 1.25041575E-01 -2.07273688E-01 4.05404436E-02 -1.06559035E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 -1.74732906E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 6.67386616E-03 0.00000000E+00 0.00000000E+00 0.00000000E+00 1.34486848E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 -2.65857216E-02 0.00000000E+00 4.28991240E-03 9.48175569E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 -7.90151808E-03 -1.90499909E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 -2.53249051E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 4.79200697E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 -1.07818299E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 -3.21892366E-05 0.00000000E+00 3.95668816E-03 1.13593121E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 -1.41204637E-03 -6.10551748E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 -1.22344073E-02 -6.08739046E-04 -5.73429848E-04 -3.10829368E-02 1.25258406E-02 0.00000000E+00 2.42828527E-02 4.87086438E-02 -3.51857371E-02 0.00000000E+00 -2.42514779E-01 3.36277834E-01 2.33020564E-03 0.00000000E+00 1.56301760E-01 -1.31449869E-01 2.95542463E-02 0.00000000E+00 -2.72932380E-02 0.00000000E+00 0.00000000E+00 3.64528310E-02 1.19514385E-01 5.82058963E-02 0.00000000E+00 0.00000000E+00 -1.08046993E-01 -2.15320067E-01 6.29067812E-04 9.07593516E-04 -2.79520927E-02 9.43885230E-03 0.00000000E+00 -7.60951302E-03 5.78822159E-02 -1.69027862E-02 0.00000000E+00 2.57055860E-02 -1.58812219E-01 2.05826451E-02 0.00000000E+00 4.10300435E-03 2.99236899E-02 -6.59607794E-03 0.00000000E+00 -1.35781996E-02 0.00000000E+00 0.00000000E+00 -5.66473249E-02 1.13604442E+00 9.94426259E-03 0.00000000E+00 0.00000000E+00 3.78533421E-02 -6.36605337E-01 2.39716480E-03 3.39442115E-01 -2.28166153E-01 5.53876979E-02 -1.28892075E-01 0.00000000E+00 6.37863363E-03 2.71822454E-03 1.48104151E-02 -1.79308563E-01 0.00000000E+00 1.50869249E-01 -3.72146508E-02 3.83900997E-01 0.00000000E+00 -9.27992760E-01 5.40147433E-02 5.91382491E-01 0.00000000E+00 4.84811107E-02 -2.97204418E-02 -4.13149482E-02 0.00000000E+00 -4.25679234E-03 0.00000000E+00 0.00000000E+00 1.36340143E-02 2.05118479E-02 1.81530447E-01 0.00000000E+00 0.00000000E+00 3.01872959E-01 -4.84514810E-02 9.66115193E-03 1.67926233E-02 -1.39128231E-03 -9.95946644E-03 0.00000000E+00 -2.70131703E-01 5.32498639E-03 -5.34745538E-02 0.00000000E+00 8.19382738E-01 -2.50907298E-02 7.98231091E-01 0.00000000E+00 1.50787611E-01 9.08757250E-03 3.08254812E-03 0.00000000E+00 5.81523373E-01 0.00000000E+00 0.00000000E+00 1.01489604E+00 5.58805598E-02 -4.44991179E-01 0.00000000E+00 0.00000000E+00 -7.75558909E-01 -4.21274944E-02 -5.21173843E-02 8.21862579E-02 -7.80107904E-02 -4.16432240E-02 -3.66647772E-02 0.00000000E+00 -2.24667577E+00 2.33807647E+00 -1.31204682E-02 3.43332310E-03 0.00000000E+00 -2.93020960E-01 5.20497107E-02 -6.90099802E-03 0.00000000E+00 2.43400632E-01 2.65573051E-02 -9.85789214E-02 0.00000000E+00 -1.09398515E-01 1.80144776E-02 1.45425213E-02 0.00000000E+00 5.75115317E-03 0.00000000E+00 0.00000000E+00 7.79567654E-03 -3.50576537E-04 -1.73087526E-03 0.00000000E+00 0.00000000E+00 -5.04995107E-02 2.11995258E-02 7.79419388E-04 -4.89600494E-04 4.98369611E-04 5.52796259E-03 0.00000000E+00 9.80747029E-03 -1.60327368E-03 -1.78527124E-02 0.00000000E+00 -8.01608817E-02 3.06492190E-03 -5.05375273E-02 0.00000000E+00 -3.06380596E-03 -4.28573392E-03 -2.44807595E-02 0.00000000E+00 1.58289500E-03 0.00000000E+00 0.00000000E+00 2.76463251E-03 -6.55186824E-04 4.28103197E-03 0.00000000E+00 0.00000000E+00 7.52688317E-03 2.05429932E-03 1.80998265E-02 6.41370198E-02 4.52710447E-02 7.89507748E-02 -2.10119883E-02 0.00000000E+00 -5.19124398E-04 7.45100060E-04 -1.35945793E-03 -8.83076850E-03 0.00000000E+00 2.36562848E-02 5.65186723E-03 2.46305001E-02 0.00000000E+00 -1.45679984E-01 2.75572534E-02 8.33322613E-02 0.00000000E+00 3.35937497E-01 -3.20364294E-02 -1.33818693E-01 0.00000000E+00 -2.20791290E-03 0.00000000E+00 0.00000000E+00 -7.79254551E-04 9.98006237E-04 2.65938525E-02 0.00000000E+00 0.00000000E+00 2.53833754E-02 -5.37073682E-04 -2.32622269E+00 2.40020189E+00 -2.59824568E-04 2.49816034E-03 0.00000000E+00 -2.56250434E-01 1.24149966E-03 -1.57747836E-02 0.00000000E+00 3.99324638E-01 -6.58155800E-03 1.20381336E-01 0.00000000E+00 -4.15248951E-01 7.66712875E-03 -1.38455291E-01 0.00000000E+00 5.38199891E-03 0.00000000E+00 0.00000000E+00 9.01113451E-03 9.01130367E-04 -1.84151117E-02 0.00000000E+00 0.00000000E+00 -3.09740739E-02 -2.83102602E-03 -8.24316210E-04 4.84962949E-02 -6.51141396E-02 9.31506995E-03 -1.49704033E-02 0.00000000E+00 Orthonormal basis R N= 3600 3.74052621E-02 3.94846940E-02 -2.01356384E-02 -6.44987206E-03 0.00000000E+00 1.14671020E-01 -4.77011805E-02 -1.73222960E-02 0.00000000E+00 1.63063708E-01 -7.22918756E-02 -3.03547433E-02 0.00000000E+00 1.56018700E-01 -6.40510802E-02 &hellip -1.98331944E-02 0.00000000E+00 -6.22824138E-03 0.00000000E+00 0.00000000E+00 2.11302385E-03 -2.71913326E-03 -1.91823588E-02 0.00000000E+00 0.00000000E+00 2.47374847E-03 -5.81157323E-03 1.73691965E-02 1.79228208E-02 -5.22501805E-03 1.46284964E-02 0.00000000E+00 5.35565353E-02 -1.36936798E-02 3.84728746E-02 0.00000000E+00 9.03531575E-02 -3.28796563E-02 8.81051580E-02 0.00000000E+00 1.13495811E-01 -4.69539474E-02 1.12638659E-01 0.00000000E+00 -1.93325462E-03 0.00000000E+00 0.00000000E+00 -2.89725250E-03 -1.66757032E-03 -9.25609127E-03 0.00000000E+00 0.00000000E+00 -1.36828308E-02 -8.29234878E-03 9.13655370E-02 1.50514833E-01 1.60476874E-01 3.85524491E-02 -3.26147834E-02 0.00000000E+00 -5.75576775E-03 -6.03926013E-03 -4.68459397E-02 5.53625481E-02 0.00000000E+00 -1.37934472E-02 -9.82947368E-02 1.18034374E-01 0.00000000E+00 -2.88706991E-02 -1.46037712E-01 1.84223158E-01 0.00000000E+00 -3.91992574E-02 -1.30462229E-01 1.62750877E-01 0.00000000E+00 1.55650393E-04 0.00000000E+00 0.00000000E+00 1.83589627E-02 -2.91945843E-03 5.32064737E-03 0.00000000E+00 0.00000000E+00 5.66515922E-02 -2.52475445E-03 -6.30623670E-02 -6.49355812E-02 -2.29901569E-02 -2.08944688E-02 0.00000000E+00 -1.37986365E-01 -4.95615533E-02 -4.47279577E-02 0.00000000E+00 -1.74363834E-01 -9.23797120E-02 -4.78334537E-02 0.00000000E+00 -1.42015335E-01 -1.12343450E-01 1.26710734E-02 0.00000000E+00 3.70088833E-03 0.00000000E+00 0.00000000E+00 7.09221754E-03 -5.36317576E-03 1.06411337E-02 0.00000000E+00 0.00000000E+00 2.10525701E-02 -1.98444171E-02 1.07242827E-01 1.18932146E-01 5.76011552E-02 2.01856189E-02 2.51364070E-02 0.00000000E+00 7.08039502E-02 7.37016229E-02 5.37821084E-02 4.54421247E-02 0.00000000E+00 1.19762894E-01 1.05651847E-01 8.54855653E-02 0.00000000E+00 1.18359835E-01 1.70708726E-01 1.36779017E-01 0.00000000E+00 7.70102847E-02 1.68058206E-01 1.46605449E-01 0.00000000E+00 6.72365822E-05 0.00000000E+00 0.00000000E+00 -1.12668278E-03 -2.80942111E-02 6.65594192E-03 0.00000000E+00 0.00000000E+00 1.40010656E-03 -7.30615389E-02 -5.89604334E-02 -6.05273421E-02 5.82515668E-02 1.83145636E-02 0.00000000E+00 -1.00158604E-01 1.11915803E-01 3.52870432E-02 0.00000000E+00 -1.06141119E-01 1.75935810E-01 7.89102359E-02 0.00000000E+00 -6.60707482E-02 1.81868056E-01 1.29933336E-01 0.00000000E+00 2.51730805E-04 0.00000000E+00 0.00000000E+00 1.77634532E-04 1.27648708E-02 -7.19665395E-04 0.00000000E+00 0.00000000E+00 -2.28549894E-03 3.90338096E-02 1.87096964E-04 1.04165528E-02 1.87746435E-02 7.54205359E-02 7.99528129E-02 0.00000000E+00 2.94570181E-02 3.02212078E-02 4.89154308E-03 -1.29912262E-01 0.00000000E+00 3.23284991E-02 7.12960363E-03 -2.04858404E-01 0.00000000E+00 2.24704365E-04 -7.10807513E-03 -1.33689674E-01 0.00000000E+00 -6.74149576E-02 -2.09337773E-02 2.62543536E-02 0.00000000E+00 -3.48954809E-03 0.00000000E+00 0.00000000E+00 -2.58926520E-02 4.80346989E-02 -2.24442834E-03 0.00000000E+00 0.00000000E+00 -4.45452702E-02 1.00993462E-01 -1.40635337E-01 -1.43323171E-01 -4.85195635E-02 1.46787035E-01 0.00000000E+00 -1.44615924E-01 -7.79921144E-02 2.36977311E-01 0.00000000E+00 -1.24633796E-01 -9.11849641E-02 2.56271273E-01 0.00000000E+00 -1.26705459E-01 -6.36656195E-02 1.26413817E-01 0.00000000E+00 -1.48478362E-02 0.00000000E+00 0.00000000E+00 -2.66222026E-02 -1.10441161E-02 -3.46086149E-02 0.00000000E+00 0.00000000E+00 -6.19913718E-02 -2.55788536E-02 -8.17756773E-02 -6.02853929E-02 -4.88028586E-02 -4.24179076E-02 -1.06423617E-01 0.00000000E+00 3.18005521E-01 3.22441345E-01 4.54213084E-02 5.55941088E-02 0.00000000E+00 1.71859683E-01 6.97746573E-02 7.49800593E-02 0.00000000E+00 4.35507097E-02 7.00005262E-02 3.94860216E-02 0.00000000E+00 -5.44159454E-03 3.57657359E-02 -2.53635023E-02 0.00000000E+00 4.28711093E-02 0.00000000E+00 0.00000000E+00 1.18809765E-02 8.92898348E-02 8.40986000E-02 0.00000000E+00 0.00000000E+00 1.42339381E-02 1.74265223E-01 -5.14253124E-03 -5.15225756E-03 -1.36195522E-01 -1.03580552E-01 0.00000000E+00 -4.11496764E-03 -1.86968002E-01 -1.41380636E-01 0.00000000E+00 1.09952876E-02 -1.61940242E-01 -9.16672154E-02 0.00000000E+00 2.57022396E-02 -6.89846277E-02 -4.73207120E-02 0.00000000E+00 6.24211654E-03 0.00000000E+00 0.00000000E+00 4.82975012E-03 -1.92649555E-02 8.36122454E-03 0.00000000E+00 0.00000000E+00 2.44196602E-03 -3.50452926E-02 -1.38132276E-01 -9.45238749E-02 -4.41560531E-02 7.58753018E-02 -6.97818126E-02 0.00000000E+00 -1.21622051E-01 -1.22874746E-01 1.68348642E-01 8.32009123E-02 0.00000000E+00 -5.53606816E-02 2.08037711E-01 1.09250197E-01 0.00000000E+00 2.54641072E-02 8.81891704E-02 1.17781723E-01 0.00000000E+00 6.05148296E-02 -2.65929233E-02 1.39930349E-01 0.00000000E+00 9.32754782E-03 0.00000000E+00 0.00000000E+00 -1.23989596E-01 3.52466964E-02 -3.27645145E-03 0.00000000E+00 0.00000000E+00 -1.99856147E-01 5.95230171E-02 1.90627471E-01 1.92172527E-01 -1.40843830E-01 9.28260165E-02 0.00000000E+00 9.10813647E-02 -1.86566405E-01 1.20240343E-01 0.00000000E+00 -3.39856056E-03 -1.49966986E-01 6.39152873E-02 0.00000000E+00 -4.30988661E-02 -9.21198555E-02 7.80620782E-02 0.00000000E+00 2.18515797E-03 0.00000000E+00 0.00000000E+00 -7.30478396E-03 1.56049506E-02 1.16122642E-02 0.00000000E+00 0.00000000E+00 -2.17180897E-03 3.38470127E-02 -9.77349449E-02 -2.05232028E-02 7.71629445E-02 -8.72431221E-02 1.81171224E-01 0.00000000E+00 1.69386121E-01 1.70439918E-01 -1.86463667E-01 2.20561330E-02 0.00000000E+00 5.98663165E-02 -2.18613151E-01 1.68022742E-02 0.00000000E+00 -4.99931324E-02 -9.87825045E-02 5.49411717E-03 0.00000000E+00 -1.42963526E-01 -1.71158046E-03 4.54330875E-02 0.00000000E+00 -5.99121607E-02 0.00000000E+00 0.00000000E+00 -7.99616995E-02 -6.80930573E-02 -8.56727474E-02 0.00000000E+00 0.00000000E+00 -1.55194002E-01 -9.39562789E-02 2.63684047E-01 2.65124258E-01 5.02835372E-02 1.13235200E-01 0.00000000E+00 9.24489222E-02 6.37767497E-02 1.42606490E-01 0.00000000E+00 -3.95650814E-02 4.25522009E-02 7.49581192E-02 0.00000000E+00 -1.34060959E-01 2.34541463E-02 -2.58835731E-02 0.00000000E+00 -2.20488580E-02 0.00000000E+00 0.00000000E+00 -4.06065415E-02 -5.19561312E-03 -3.41126002E-02 0.00000000E+00 0.00000000E+00 -6.35330278E-02 -1.27824760E-02 1.15576102E-02 -2.95959725E-02 -1.17000865E-01 1.91461231E-01 2.92956828E-02 0.00000000E+00 -6.50610107E-02 -6.46972363E-02 -2.19826714E-03 -2.18436946E-03 0.00000000E+00 -1.00487846E-02 -2.42333235E-03 7.51539014E-04 0.00000000E+00 1.83255862E-02 3.02610184E-02 -1.60927644E-03 0.00000000E+00 6.47016620E-03 6.81271091E-02 6.72378800E-02 0.00000000E+00 3.32237046E-02 0.00000000E+00 0.00000000E+00 2.13583572E-01 1.77265824E-01 4.29381751E-02 0.00000000E+00 0.00000000E+00 2.86686048E-01 2.47431737E-01 2.48467566E-01 2.48256562E-01 5.76984831E-02 -4.10969791E-03 0.00000000E+00 7.95743495E-03 6.34853028E-02 -3.70059648E-03 0.00000000E+00 -9.44201551E-02 4.11853122E-02 8.04191698E-02 0.00000000E+00 -8.95524165E-02 5.70592044E-02 1.32747562E-01 0.00000000E+00 4.77642229E-02 0.00000000E+00 0.00000000E+00 1.09100807E-01 -1.08739021E-01 6.27374559E-02 0.00000000E+00 0.00000000E+00 1.50603720E-01 -1.64676107E-01 1.80010739E-02 4.41961068E-03 -8.89182356E-03 -6.75095988E-02 -2.36178935E-01 0.00000000E+00 1.59413465E-01 1.57739412E-01 2.01097579E-01 -1.95165840E-01 0.00000000E+00 -8.51890045E-03 1.92245447E-01 -1.94409499E-01 0.00000000E+00 -5.39778849E-02 5.46369990E-03 -5.54620978E-02 0.00000000E+00 -5.91868701E-02 -1.06930472E-01 3.53473075E-02 0.00000000E+00 -1.16200902E-02 0.00000000E+00 0.00000000E+00 1.29679589E-01 -1.50781034E-01 -3.03502187E-02 0.00000000E+00 0.00000000E+00 2.01894593E-01 -2.25126073E-01 1.46408671E-01 1.45585234E-01 -8.76813884E-03 -6.60701097E-02 0.00000000E+00 -1.77591909E-02 -6.72876558E-03 -6.57019023E-02 0.00000000E+00 -7.73040608E-02 -8.79223227E-03 8.43711779E-03 0.00000000E+00 -8.69883007E-02 -7.39619121E-02 1.83488341E-02 0.00000000E+00 -2.33691452E-02 0.00000000E+00 0.00000000E+00 -5.07467240E-03 1.77438696E-01 -3.94140058E-02 0.00000000E+00 0.00000000E+00 -1.83098842E-02 2.46378720E-01 1.29571096E-01 6.80475209E-02 1.95362451E-02 -2.06555187E-01 4.03520025E-02 0.00000000E+00 -6.87311043E-02 -6.75605843E-02 -1.05057709E-01 1.17742044E-01 0.00000000E+00 4.77260714E-03 -8.33745833E-02 1.09131458E-01 0.00000000E+00 1.20494983E-02 5.88339643E-02 -5.58920525E-02 0.00000000E+00 -1.58016201E-02 1.20375856E-01 -9.75371708E-02 0.00000000E+00 -1.29615510E-02 0.00000000E+00 0.00000000E+00 1.65148350E-01 -1.52450111E-01 -9.48460154E-03 0.00000000E+00 0.00000000E+00 1.53998265E-01 -1.61632386E-01 -3.06315023E-02 -3.02575118E-02 -2.38889148E-01 1.19666895E-01 0.00000000E+00 2.80806159E-03 -2.39264206E-01 1.17351032E-01 0.00000000E+00 1.97285366E-02 -9.14300534E-02 7.64647975E-02 0.00000000E+00 2.81721149E-02 3.70231286E-02 2.90316027E-02 0.00000000E+00 9.88528973E-02 0.00000000E+00 0.00000000E+00 2.01017118E-01 1.74432703E-01 1.24136608E-01 0.00000000E+00 0.00000000E+00 2.54312817E-01 2.21919435E-01 3.84379343E-02 -5.86815982E-02 -9.22970166E-02 1.98728113E-01 -4.96150625E-02 0.00000000E+00 1.14894031E-01 1.12909100E-01 2.35086262E-02 3.92387599E-02 0.00000000E+00 -4.59412988E-02 1.14244080E-02 4.01979464E-02 0.00000000E+00 -5.00343506E-02 -8.13888335E-02 -4.18971104E-02 0.00000000E+00 -5.69692078E-03 -1.48179780E-01 -4.80880285E-02 0.00000000E+00 3.25623417E-01 0.00000000E+00 0.00000000E+00 -7.77648265E-02 -3.36514770E-02 3.52300345E-01 0.00000000E+00 0.00000000E+00 -9.75613989E-02 -5.94493069E-02 -1.68602016E-02 -1.65863547E-02 1.83182045E-01 1.07768995E-01 0.00000000E+00 3.03021607E-03 1.75105606E-01 1.00603943E-01 0.00000000E+00 1.00531520E-02 4.26386468E-02 4.39342863E-02 0.00000000E+00 1.71723935E-02 -8.58731702E-02 9.28914787E-03 0.00000000E+00 2.24361948E-01 0.00000000E+00 0.00000000E+00 1.69420173E-01 5.25346879E-03 2.67885751E-01 0.00000000E+00 0.00000000E+00 1.98544461E-01 6.68667313E-03 -9.03791704E-02 -4.08317148E-03 5.25375574E-02 -1.02541173E-01 8.60820951E-02 0.00000000E+00 -1.53051983E-01 -1.49387793E-01 -1.66692127E-01 -1.63461443E-01 0.00000000E+00 6.06084683E-02 -1.35017763E-01 -1.46968335E-01 0.00000000E+00 7.90744162E-02 2.07176149E-02 2.74023464E-03 0.00000000E+00 4.34706975E-02 8.55340942E-02 7.80959456E-02 0.00000000E+00 2.82639093E-01 0.00000000E+00 0.00000000E+00 -2.76587293E-02 -6.55355020E-02 3.41590119E-01 0.00000000E+00 0.00000000E+00 -2.21346827E-02 -5.76085098E-02 9.10475775E-02 8.96229421E-02 -1.09198350E-01 -2.04883056E-01 0.00000000E+00 -4.06247174E-02 -9.94719842E-02 -1.81745719E-01 0.00000000E+00 -6.31001299E-02 -2.13916445E-02 1.40786024E-02 0.00000000E+00 -4.59540980E-02 5.03481091E-02 1.00124898E-01 0.00000000E+00 5.95930194E-02 0.00000000E+00 0.00000000E+00 -2.02061118E-01 8.54776603E-02 6.11381789E-02 0.00000000E+00 0.00000000E+00 -2.39330258E-01 9.32583901E-02 -8.74956355E-02 -3.36862536E-02 1.49773538E-04 1.29617105E-01 -3.08269673E-02 0.00000000E+00 2.18540779E-02 2.10566881E-02 5.43819815E-02 3.47324025E-02 0.00000000E+00 -9.50143607E-03 4.13930823E-02 2.79313070E-02 0.00000000E+00 -1.39687572E-02 9.60107591E-03 7.03408971E-04 0.00000000E+00 -1.60148072E-02 1.11513243E-02 -1.76480317E-02 0.00000000E+00 -1.79689605E-01 0.00000000E+00 0.00000000E+00 6.38438375E-02 1.71478695E-02 -1.70946355E-01 0.00000000E+00 0.00000000E+00 5.56790089E-02 1.68935690E-02 -1.41129819E-02 -1.38042330E-02 -2.05825244E-02 4.23307016E-02 0.00000000E+00 9.10162367E-03 -1.70209582E-02 3.41267961E-02 0.00000000E+00 1.11201907E-02 1.34244891E-03 -1.03709558E-02 0.00000000E+00 6.32311625E-03 1.18254426E-02 -2.86500414E-02 0.00000000E+00 4.75854960E-01 0.00000000E+00 0.00000000E+00 -2.84173809E-01 -3.19177641E-02 4.66065356E-01 0.00000000E+00 0.00000000E+00 -2.74845653E-01 -3.06007666E-02 7.38484673E-02 1.56632736E-02 -1.94373114E-02 -2.23450537E-02 -1.58499965E-02 0.00000000E+00 -3.35053137E-02 -3.20147533E-02 -6.49262496E-02 1.47875411E-01 0.00000000E+00 2.55699385E-02 -3.14379809E-02 1.04556930E-01 0.00000000E+00 2.08422320E-02 2.10136815E-02 2.05018191E-02 0.00000000E+00 6.84909432E-03 -4.30472668E-02 -4.25342980E-04 0.00000000E+00 -5.24171473E-02 0.00000000E+00 0.00000000E+00 -2.24218127E-02 2.73762312E-01 -3.64843626E-02 0.00000000E+00 0.00000000E+00 -2.78439833E-02 2.10039633E-01 -1.66465351E-03 -1.62655463E-03 2.44930556E-01 1.66729218E-02 0.00000000E+00 8.42962834E-04 1.77380647E-01 1.00352686E-02 0.00000000E+00 -1.95357590E-03 -4.39087280E-02 -7.41208630E-03 0.00000000E+00 4.23372391E-03 -1.13686962E-01 2.19359124E-03 0.00000000E+00 -2.83166337E-02 0.00000000E+00 0.00000000E+00 -8.59338011E-02 4.94507560E-01 -2.16496775E-02 0.00000000E+00 0.00000000E+00 -6.68219300E-02 4.04432855E-01 -8.89861550E-02 -3.41769570E-02 1.25803544E-02 2.08527144E-03 -1.79481893E-01 0.00000000E+00 2.65201285E-02 2.50201180E-02 -1.53999053E-01 -3.24617866E-01 0.00000000E+00 -4.41325635E-02 -9.55448654E-02 -1.69147447E-01 0.00000000E+00 -1.84175881E-02 9.69813301E-03 5.37417972E-02 0.00000000E+00 4.51402176E-02 5.54232643E-02 1.28403307E-01 0.00000000E+00 -2.52924757E-01 0.00000000E+00 0.00000000E+00 -2.86200413E-01 1.48483304E-01 -1.62417937E-01 0.00000000E+00 0.00000000E+00 -1.59434908E-01 7.97315529E-02 -1.05471069E-02 -1.01673038E-02 -4.78108505E-02 -2.90050947E-01 0.00000000E+00 2.18938083E-02 -2.86123039E-02 -1.57192844E-01 0.00000000E+00 1.60270133E-02 2.34257576E-02 4.80101796E-02 0.00000000E+00 -4.14076135E-02 6.91287674E-02 7.88343127E-02 0.00000000E+00 2.25866731E-01 0.00000000E+00 0.00000000E+00 3.70083328E-01 9.97932747E-02 1.28604391E-01 0.00000000E+00 0.00000000E+00 2.11224217E-01 5.42740830E-02 -2.46820254E-02 1.21660353E-02 3.99642845E-02 -4.63800765E-02 9.29699233E-02 0.00000000E+00 -1.37590746E-01 -1.26017838E-01 1.82942450E-01 7.14504698E-02 0.00000000E+00 1.73921775E-01 1.26953523E-01 2.88868847E-02 0.00000000E+00 7.68017276E-02 3.72074087E-02 -7.33854776E-02 0.00000000E+00 -7.36351923E-02 -1.27214065E-01 -4.51960175E-02 0.00000000E+00 -2.09680985E-01 0.00000000E+00 0.00000000E+00 1.00672226E-02 -3.16982919E-01 -4.47959130E-02 0.00000000E+00 0.00000000E+00 -2.75071903E-02 -9.21431753E-02 1.40542216E-02 1.31709318E-02 3.04234507E-01 -2.82103461E-01 0.00000000E+00 -1.87596589E-02 1.41059192E-01 -1.27335449E-01 0.00000000E+00 -2.68930359E-02 -1.79597670E-01 1.43661650E-01 0.00000000E+00 -7.60732894E-02 -2.95463713E-01 1.13585982E-01 0.00000000E+00 6.02505847E-02 0.00000000E+00 0.00000000E+00 9.52075832E-02 -1.35511690E-01 2.28390549E-02 0.00000000E+00 0.00000000E+00 3.69470196E-02 -4.75303233E-02 -2.02446610E-01 -1.40881884E-01 -5.49645914E-02 3.18197030E-01 -1.04106226E-01 0.00000000E+00 2.72991755E-02 2.38339731E-02 8.70533286E-02 4.67642938E-01 0.00000000E+00 -4.24024233E-02 -3.09441719E-03 1.34748057E-01 0.00000000E+00 -4.22030865E-02 -1.03945354E-01 -2.24610665E-01 0.00000000E+00 -1.11563901E-01 1.78553806E-03 -1.58354526E-01 0.00000000E+00 3.87182656E-02 0.00000000E+00 0.00000000E+00 -4.38383198E-01 -7.14573199E-02 -5.83527427E-04 0.00000000E+00 0.00000000E+00 -1.61971322E-02 -4.75065202E-02 1.24910505E-02 1.13263239E-02 -1.93927743E-01 -3.29856543E-01 0.00000000E+00 -2.57516647E-02 -4.61413806E-02 -8.18084181E-02 0.00000000E+00 -5.89945844E-02 1.48149810E-01 2.18012882E-01 0.00000000E+00 -1.03765570E-01 1.45540514E-01 2.00653666E-01 0.00000000E+00 -2.97215997E-02 0.00000000E+00 0.00000000E+00 -5.88544492E-02 2.01238414E-02 1.95043762E-03 0.00000000E+00 0.00000000E+00 3.79812729E-03 -6.10226745E-04 1.72379383E-01 7.91220009E-02 -8.63217592E-02 -2.71205731E-01 -2.55117882E-01 0.00000000E+00 -1.52498605E-01 -1.27173587E-01 4.44243026E-01 -2.03365339E-01 0.00000000E+00 3.62093870E-01 4.64106844E-02 -1.46084699E-02 0.00000000E+00 1.40376705E-01 -1.37296179E-01 6.87390137E-02 0.00000000E+00 -1.35888862E-01 2.13732229E-02 -1.93639096E-01 0.00000000E+00 1.15669175E-01 0.00000000E+00 0.00000000E+00 -3.70457620E-01 1.76880703E-01 2.90707760E-02 0.00000000E+00 0.00000000E+00 2.49781628E-02 7.13346788E-03 9.60067987E-02 8.37820250E-02 -4.72821031E-02 2.18806895E-01 0.00000000E+00 -2.29027802E-01 -1.96385027E-03 1.66874877E-02 0.00000000E+00 -9.85483514E-02 4.23816414E-02 -1.51971346E-01 0.00000000E+00 5.95384209E-02 6.59388566E-02 -2.85780354E-01 0.00000000E+00 1.32049213E-01 0.00000000E+00 0.00000000E+00 2.28746301E-01 7.67361295E-02 -4.61043703E-02 0.00000000E+00 0.00000000E+00 -7.96976390E-02 -2.15865611E-02 2.59022715E-01 9.22360087E-02 -1.61104115E-01 2.45195201E-01 -1.44647978E-01 0.00000000E+00 -3.81668218E-02 -3.14131969E-02 2.13195851E-01 5.29849959E-02 0.00000000E+00 9.99659952E-02 1.92935823E-03 -3.34435767E-03 0.00000000E+00 1.98455968E-03 -1.44412778E-01 -1.27113677E-01 0.00000000E+00 -2.30663384E-01 -9.41840750E-02 -6.38872872E-02 0.00000000E+00 1.63504850E-01 0.00000000E+00 0.00000000E+00 3.63314083E-01 5.83244973E-01 -3.05472104E-02 0.00000000E+00 0.00000000E+00 -9.76705677E-02 -1.19723052E-01 -9.69063729E-02 -8.35539237E-02 -5.81343480E-02 -3.00546979E-01 0.00000000E+00 2.45396282E-01 1.47320791E-03 7.87104048E-05 0.00000000E+00 1.00455973E-01 5.78206374E-02 2.29478700E-01 0.00000000E+00 -1.70782348E-01 2.63444332E-02 9.93632465E-02 0.00000000E+00 -4.03331986E-02 0.00000000E+00 0.00000000E+00 -3.18141255E-02 7.66628679E-03 2.56023747E-02 0.00000000E+00 0.00000000E+00 2.93250574E-02 -7.90160775E-03 1.53175455E-01 2.95259628E-02 -1.62739221E-01 2.30209515E-01 4.25101431E-01 0.00000000E+00 1.60445765E-02 1.18655083E-02 1.23799741E-01 -1.23775307E-01 0.00000000E+00 -2.58120795E-02 -3.85188789E-02 2.13452768E-02 0.00000000E+00 8.61027957E-03 2.26003317E-02 1.11575122E-01 0.00000000E+00 -8.31946505E-02 2.96281306E-01 2.87124949E-01 0.00000000E+00 5.13594396E-01 0.00000000E+00 0.00000000E+00 -1.03505973E-01 -2.87230864E-01 -3.03634727E-01 0.00000000E+00 0.00000000E+00 8.50639119E-03 1.75251408E-01 -1.77921473E-01 -1.44188828E-01 2.86750611E-01 1.74707970E-02 0.00000000E+00 5.28361778E-01 -7.13953383E-02 -8.71047424E-03 0.00000000E+00 2.14121166E-01 -2.71944237E-01 -2.39313281E-02 0.00000000E+00 -1.88797518E-01 7.96400859E-04 7.50521746E-02 0.00000000E+00 8.18492339E-02 0.00000000E+00 0.00000000E+00 1.23702203E-02 7.48291163E-02 -4.56446118E-02 0.00000000E+00 0.00000000E+00 3.56518448E-03 -4.07959255E-02 3.10285183E-01 1.08445845E-02 -1.79870509E-01 -4.03191942E-02 -1.85496368E-01 0.00000000E+00 -8.07680911E-03 -6.08076891E-03 3.46621157E-01 -2.84022235E-02 0.00000000E+00 7.86066352E-03 -5.88930365E-02 -8.37035851E-03 0.00000000E+00 -4.36585275E-02 -2.79941779E-01 5.54809445E-02 0.00000000E+00 -3.62164489E-02 -2.20737771E-01 2.16986880E-01 0.00000000E+00 -1.29151329E-01 0.00000000E+00 0.00000000E+00 2.89277965E-01 -3.10575509E-01 9.30595047E-02 0.00000000E+00 0.00000000E+00 -2.19990425E-01 1.80668867E-01 -7.77996495E-02 -6.25915212E-02 -3.68971571E-01 2.14693967E-02 0.00000000E+00 2.38038454E-01 9.67839594E-02 -8.44540871E-03 0.00000000E+00 9.05048421E-02 3.75355194E-01 -4.73452177E-02 0.00000000E+00 -1.00344480E-01 1.86510625E-01 -2.10929953E-02 0.00000000E+00 2.33699531E-02 0.00000000E+00 0.00000000E+00 9.93950920E-02 4.71637382E-01 -8.20636784E-03 0.00000000E+00 0.00000000E+00 -5.24850734E-02 -3.04666920E-01 -2.83734904E-01 1.68657672E-02 1.15132271E-01 8.94860867E-02 -2.52393573E-01 0.00000000E+00 -6.77513211E-02 -4.71178750E-02 -2.68123076E-01 2.72315254E-01 0.00000000E+00 2.36612603E-01 1.18707872E-01 -1.15396744E-01 0.00000000E+00 6.07159645E-02 1.39980340E-01 -2.20127080E-02 0.00000000E+00 -9.82434192E-02 -2.24677085E-01 2.18267745E-01 0.00000000E+00 1.52489387E-01 0.00000000E+00 0.00000000E+00 1.21976517E-01 1.20839467E-01 -1.10646689E-01 0.00000000E+00 0.00000000E+00 -3.78164050E-02 -1.38229764E-01 -6.23566941E-02 -4.70336268E-02 -2.48965489E-01 9.31843417E-02 0.00000000E+00 2.14089410E-01 1.13750868E-01 -3.96650211E-02 0.00000000E+00 5.64307577E-02 2.03382936E-01 -1.19336567E-01 0.00000000E+00 -1.39963884E-01 -1.28967247E-01 -9.83200026E-02 0.00000000E+00 3.66035755E-01 0.00000000E+00 0.00000000E+00 4.70386126E-01 -4.19459995E-01 -3.12891328E-01 0.00000000E+00 0.00000000E+00 -3.97447281E-01 3.59874581E-01 -1.15056726E-01 3.57132560E-03 5.55524572E-02 -1.54322443E-01 -2.20919935E-01 0.00000000E+00 -1.42594758E-02 -9.56848549E-03 -2.04889079E-01 2.38654934E-01 0.00000000E+00 6.92688229E-02 6.39489049E-02 -1.04315742E-01 0.00000000E+00 3.84791745E-02 4.32238994E-02 -5.01135841E-02 0.00000000E+00 2.99432225E-02 3.45450293E-02 -1.80594992E-01 0.00000000E+00 3.06435150E-01 0.00000000E+00 0.00000000E+00 2.35420990E-01 -1.97909062E-01 -2.94651582E-01 0.00000000E+00 0.00000000E+00 -8.80596543E-02 1.71989382E-01 1.14890712E-01 8.28099974E-02 1.29309113E-01 -2.69872106E-01 0.00000000E+00 -3.88282757E-01 -7.04344076E-02 1.39392851E-01 0.00000000E+00 -1.25083100E-01 -8.29291997E-02 9.20445906E-02 0.00000000E+00 1.47730559E-01 5.38801740E-02 -1.77788382E-01 0.00000000E+00 5.20270017E-01 0.00000000E+00 0.00000000E+00 7.85627112E-02 4.10951718E-01 -4.85012435E-01 0.00000000E+00 0.00000000E+00 -4.09169918E-02 -3.89940595E-01 -9.93738723E-03 5.26108255E-02 1.06402004E-02 -1.26471969E-01 3.36936235E-01 0.00000000E+00 -2.37167922E-03 -1.88118875E-03 -7.11516131E-02 2.28620911E-01 0.00000000E+00 3.78037416E-02 -3.33992999E-03 -1.05024291E-01 0.00000000E+00 4.67592906E-02 -1.71565589E-02 -5.48410673E-02 0.00000000E+00 2.66571921E-03 1.58530691E-01 -2.28807344E-02 0.00000000E+00 -8.04298207E-02 0.00000000E+00 0.00000000E+00 1.64604983E-01 -9.98630993E-02 9.24051332E-02 0.00000000E+00 0.00000000E+00 -6.84995210E-02 7.82841242E-02 2.08917254E-02 1.49557369E-02 2.11616889E-01 -4.13713379E-02 0.00000000E+00 -6.94416037E-02 -1.15410193E-01 2.31023554E-02 0.00000000E+00 -2.83344612E-02 -1.67904950E-01 -6.34398459E-03 0.00000000E+00 1.50065914E-02 8.22404630E-02 -4.20403893E-02 0.00000000E+00 -5.11226492E-01 0.00000000E+00 0.00000000E+00 6.84377837E-01 1.56098848E-01 5.10255102E-01 0.00000000E+00 0.00000000E+00 -6.65008066E-01 -1.49170025E-01 1.37376295E-01 4.80764875E-02 -7.23035269E-02 -1.68469171E-01 1.62613443E-01 0.00000000E+00 5.04546174E-02 2.98046234E-02 2.39420310E-01 2.68040897E-01 0.00000000E+00 -1.56170071E-01 -1.70886462E-01 -1.64992016E-01 0.00000000E+00 -1.88175476E-02 -1.97344894E-01 -1.42264254E-01 0.00000000E+00 5.27073624E-02 2.84622938E-01 1.23299983E-01 0.00000000E+00 -5.37621378E-01 0.00000000E+00 0.00000000E+00 7.17259209E-03 1.09303068E-01 6.16058546E-01 0.00000000E+00 0.00000000E+00 4.86256996E-02 -1.18605597E-01 -4.96022356E-02 -3.32139499E-02 3.39474433E-01 2.56739862E-01 0.00000000E+00 1.73979821E-01 -2.22523522E-01 -1.61078495E-01 0.00000000E+00 4.16895996E-02 -2.62751851E-01 -1.10219228E-01 0.00000000E+00 -8.63031479E-02 2.07468289E-01 1.90436250E-01 0.00000000E+00 4.27627374E-01 0.00000000E+00 0.00000000E+00 6.57341177E-02 1.95426253E-02 -4.91550119E-01 0.00000000E+00 0.00000000E+00 -1.01706134E-01 -2.50857488E-02 8.35938577E-02 3.82175922E-02 -5.83008270E-02 -3.81422476E-02 1.13546365E-01 0.00000000E+00 1.16603646E-01 6.49570032E-02 5.08098736E-01 4.74657254E-02 0.00000000E+00 -4.18343398E-01 -3.18006170E-01 -5.07871265E-02 0.00000000E+00 -1.39369630E-01 -2.43169789E-01 8.33939569E-02 0.00000000E+00 2.66558486E-01 2.29452870E-01 1.05296986E-01 0.00000000E+00 1.85512226E-01 0.00000000E+00 0.00000000E+00 3.06577285E-01 3.33815864E-02 -1.75669370E-01 0.00000000E+00 0.00000000E+00 -4.06484216E-01 -2.25964381E-02 9.15335861E-02 5.84343719E-02 1.08166063E-01 -3.55094673E-01 0.00000000E+00 -3.31447052E-01 -8.15455813E-02 2.52159957E-01 0.00000000E+00 -6.96999241E-02 -8.72922456E-02 5.75902510E-02 0.00000000E+00 2.36187933E-01 2.08912390E-01 -1.78109949E-01 0.00000000E+00 3.58881723E-02 0.00000000E+00 0.00000000E+00 8.85781663E-02 -3.96345762E-01 -1.33753751E-02 0.00000000E+00 0.00000000E+00 -5.33902736E-02 4.70982635E-01 -8.03417356E-02 -1.45266413E-03 1.40439697E-01 1.27938862E-01 -3.30877518E-01 0.00000000E+00 -1.44031996E-01 -6.67784516E-02 -2.15197164E-01 -2.53235768E-01 0.00000000E+00 5.49948105E-01 1.15601686E-01 2.46438051E-01 0.00000000E+00 2.13760254E-01 -1.52196529E-01 2.01208639E-01 0.00000000E+00 -2.69015999E-01 4.83397507E-02 -2.10899085E-01 0.00000000E+00 -3.05998579E-01 0.00000000E+00 0.00000000E+00 3.73209895E-01 -2.82766847E-01 3.40344564E-01 0.00000000E+00 0.00000000E+00 -4.88109497E-01 3.06581617E-01 -1.72234849E-02 -1.00833041E-02 1.27425093E-01 -1.81459747E-01 0.00000000E+00 7.38282028E-02 -1.19320556E-01 1.59379266E-01 0.00000000E+00 -7.61740426E-03 -3.09582392E-02 7.47624085E-02 0.00000000E+00 -5.85797064E-02 2.30004043E-01 -2.28276364E-01 0.00000000E+00 1.14136840E-03 0.00000000E+00 0.00000000E+00 -1.82885568E-01 -2.32162729E-01 6.56453871E-03 0.00000000E+00 0.00000000E+00 2.63794346E-01 3.31953664E-01 1.67537375E-01 2.28839788E-01 -2.52926426E-01 -5.49332387E-01 -5.56410744E-02 0.00000000E+00 -1.42099620E-01 -3.81837241E-02 -5.10226860E-02 3.03382587E-01 0.00000000E+00 4.76040730E-01 9.34209468E-02 -3.67279669E-01 0.00000000E+00 -9.94213476E-02 -2.36450225E-01 -1.93760949E-01 0.00000000E+00 -8.47245353E-02 -3.48842278E-01 3.93000218E-01 0.00000000E+00 1.29486967E-01 0.00000000E+00 0.00000000E+00 -1.86549020E-01 7.63248841E-02 -2.91208611E-01 0.00000000E+00 0.00000000E+00 2.88071539E-01 -1.47981285E-01 -2.50347695E-03 -4.20598364E-04 5.54610833E-01 7.05820565E-02 0.00000000E+00 1.71939672E-02 -6.74930015E-01 -6.16657144E-02 0.00000000E+00 6.65489393E-02 2.75717937E-02 -2.24935208E-02 0.00000000E+00 -6.63043426E-02 6.96280103E-01 -3.57336746E-01 0.00000000E+00 -1.55066350E-01 0.00000000E+00 0.00000000E+00 -1.84313097E-01 -4.16804401E-02 2.51652754E-01 0.00000000E+00 0.00000000E+00 2.97584886E-01 6.62136328E-02 -5.66122205E-01 1.46594898E-01 2.78497611E-01 1.30136833E-02 1.85237438E-02 0.00000000E+00 3.43899324E-02 7.75015318E-03 3.06574935E-02 -3.25563433E-01 0.00000000E+00 -1.60121317E-01 -1.51182968E-02 4.37365854E-01 0.00000000E+00 -9.84050240E-02 -1.99626607E-01 -1.35477412E-02 0.00000000E+00 -1.26258718E-01 -2.24033191E-01 -6.80945398E-01 0.00000000E+00 2.33745100E-01 0.00000000E+00 0.00000000E+00 1.45631306E-01 -1.19570695E-01 -4.05231077E-01 0.00000000E+00 0.00000000E+00 -1.66792875E-01 2.09016050E-01 4.01890593E-02 1.37577558E-02 1.84066296E-01 5.12008182E-01 0.00000000E+00 -1.59419690E-01 -2.36241026E-01 -6.62547336E-01 0.00000000E+00 -7.31763579E-02 5.98073092E-02 -8.04840800E-02 0.00000000E+00 -1.41532966E-01 3.80153380E-01 8.18314756E-01 0.00000000E+00 6.77321490E-02 0.00000000E+00 0.00000000E+00 1.64094779E-01 -1.36123669E-01 -9.37894728E-02 0.00000000E+00 0.00000000E+00 -2.41049474E-01 2.39602906E-01 -3.52387365E-01 1.54705791E-01 1.20086373E-02 1.82296129E-02 1.51001681E-01 0.00000000E+00 -5.72940748E-02 -5.90905052E-03 2.80784794E-01 4.20296500E-01 0.00000000E+00 1.89679536E-01 -3.95490409E-01 -5.51866342E-01 0.00000000E+00 6.14963880E-03 -1.48614676E-01 -1.67138953E-01 0.00000000E+00 -3.93842698E-02 1.42490058E-01 1.10919679E-01 0.00000000E+00 8.10835665E-03 0.00000000E+00 0.00000000E+00 -1.28221259E-01 -4.71208400E-01 -6.12822138E-02 0.00000000E+00 0.00000000E+00 3.23830964E-01 9.52334220E-01 2.94829202E-02 7.81384291E-03 -4.06534275E-01 1.88161716E-01 0.00000000E+00 -1.15105132E-01 5.53791432E-01 -2.38181219E-01 0.00000000E+00 1.09933596E-01 -5.44394108E-02 3.94850885E-02 0.00000000E+00 -1.88329988E-02 -2.80019652E-02 -3.92937324E-02 0.00000000E+00 -5.93858175E-02 0.00000000E+00 0.00000000E+00 -9.60339432E-02 -2.78685139E-01 1.02811780E-01 0.00000000E+00 0.00000000E+00 1.62333503E-01 5.46791066E-01 -2.44400340E-02 9.66096864E-02 -7.59359510E-02 9.74350446E-02 7.90585630E-01 0.00000000E+00 1.48815212E-01 1.26131916E-03 -3.16620351E-02 -3.13568489E-01 0.00000000E+00 -4.59630094E-01 1.11020960E-01 3.85343380E-01 0.00000000E+00 6.61496724E-02 1.38999990E-01 8.20454919E-02 0.00000000E+00 -8.95524307E-02 -5.28387236E-01 -2.69852368E-01 0.00000000E+00 -1.07722618E-01 0.00000000E+00 0.00000000E+00 -3.39376902E-01 -2.24830774E-01 3.16684558E-01 0.00000000E+00 0.00000000E+00 7.19245215E-01 5.66044856E-01 -1.37063165E-01 -1.89752466E-02 1.70176025E-01 -5.07588616E-01 0.00000000E+00 4.91412393E-01 -2.72832688E-01 7.49023062E-01 0.00000000E+00 -2.48056635E-01 2.11431047E-01 1.29637520E-01 0.00000000E+00 -9.50813933E-04 3.64455862E-01 -2.02955566E-01 0.00000000E+00 9.95597324E-02 0.00000000E+00 0.00000000E+00 1.79704570E-01 -1.36460732E-01 -2.43137594E-01 0.00000000E+00 0.00000000E+00 -4.36097910E-01 2.81270283E-01 4.38308621E-03 2.84122988E-02 1.99043992E-01 4.40607871E-01 2.71903681E-01 0.00000000E+00 1.04647351E-01 -3.89683819E-02 -3.56140521E-03 2.18514261E-01 0.00000000E+00 -2.03728114E-01 -1.99350835E-02 -3.49684880E-01 0.00000000E+00 2.69401125E-02 6.79521761E-01 -8.72311720E-02 0.00000000E+00 -7.45442449E-02 -7.80373645E-01 2.30734775E-01 0.00000000E+00 -3.42128833E-02 0.00000000E+00 0.00000000E+00 1.69294596E-01 -1.55356928E-01 1.89972513E-01 0.00000000E+00 0.00000000E+00 -5.57813662E-01 5.06621561E-01 1.39232091E-01 -3.07601120E-02 3.72764507E-01 2.21759737E-01 0.00000000E+00 -4.09453233E-01 -7.03929966E-01 -3.96704825E-01 0.00000000E+00 3.43773518E-01 7.04095462E-01 4.89277694E-02 0.00000000E+00 -1.66345080E-02 -7.45468996E-02 6.18129451E-02 0.00000000E+00 -6.26746247E-03 0.00000000E+00 0.00000000E+00 -6.23335148E-02 -3.57919526E-02 4.55088787E-02 0.00000000E+00 0.00000000E+00 1.86976320E-01 8.74079997E-02 1.18880873E+00 -7.59403457E-01 1.63143954E-01 3.52965678E-01 -1.08458645E-01 0.00000000E+00 4.30345215E-01 -2.84797690E-01 -7.20821749E-01 2.01130752E-02 0.00000000E+00 -6.34506897E-01 1.58792498E+00 -5.17166887E-02 0.00000000E+00 2.66939541E-01 -9.61748021E-01 -1.90008304E-01 0.00000000E+00 -1.30057623E-01 -6.27962115E-02 4.16652357E-01 0.00000000E+00 1.73535372E-02 0.00000000E+00 0.00000000E+00 -1.42901394E-02 -8.23630400E-03 1.15968453E-01 0.00000000E+00 0.00000000E+00 -1.36094839E-01 1.58589731E-01 1.90577574E-01 -1.01247973E-01 -2.81463159E-01 1.02280442E-01 0.00000000E+00 -4.00812373E-01 5.89423392E-01 -2.17111167E-01 0.00000000E+00 4.94654766E-01 -6.68380590E-01 1.63503888E-01 0.00000000E+00 1.76621086E-02 7.24233060E-01 -1.24648636E-01 0.00000000E+00 4.82233979E-03 0.00000000E+00 0.00000000E+00 -2.88356502E-03 -3.96909432E-02 -1.45184429E-03 0.00000000E+00 0.00000000E+00 2.34678908E-02 1.14628738E-01 3.45299995E-01 -3.71505638E-02 -1.33707815E-01 6.65597528E-01 -2.17970245E-01 0.00000000E+00 5.17066436E-01 -3.90896533E-01 -5.08417161E-02 4.63151316E-01 0.00000000E+00 -6.64173936E-01 1.58448397E-01 -9.51464169E-01 0.00000000E+00 6.57265573E-01 8.31369180E-02 1.12632735E+00 0.00000000E+00 -5.68548827E-02 4.98702098E-02 -7.02546801E-01 0.00000000E+00 2.47953215E-02 0.00000000E+00 0.00000000E+00 3.56206420E-02 3.78437761E-02 -4.10880330E-02 0.00000000E+00 0.00000000E+00 -1.70975368E-01 -6.89259697E-02 -3.91527405E-01 2.50328229E-01 8.77440604E-02 3.66637086E-01 0.00000000E+00 6.98798141E-01 -1.85682156E-01 -7.44612072E-01 0.00000000E+00 -8.46076693E-01 2.15188700E-01 9.39220671E-01 0.00000000E+00 1.62526779E-01 -1.97497841E-01 -6.40128161E-01 0.00000000E+00 -4.06615444E-02 0.00000000E+00 0.00000000E+00 -6.51929745E-02 1.30711053E-02 1.06873350E-01 0.00000000E+00 0.00000000E+00 1.74646383E-01 -3.52427727E-02 -2.09625471E-01 4.80141676E-01 -2.22616459E-01 1.44812152E-01 -2.13883262E-01 0.00000000E+00 6.21020981E-01 -5.56305608E-01 2.66100812E-02 2.43041282E-01 0.00000000E+00 -3.98883766E-01 -5.96276775E-03 -6.17876416E-01 0.00000000E+00 7.93969823E-01 -4.08143677E-02 6.00038326E-01 0.00000000E+00 -5.46535472E-01 1.28325023E-01 -1.55582990E-01 0.00000000E+00 -1.77609425E-02 0.00000000E+00 0.00000000E+00 -9.11862907E-02 1.19684520E-02 -8.09053101E-04 0.00000000E+00 0.00000000E+00 1.88746688E-01 -3.08947176E-02 5.24493766E-01 -4.15393425E-01 1.95570477E-01 -3.45333679E-01 0.00000000E+00 -5.46296881E-01 -4.39680820E-01 8.06946038E-01 0.00000000E+00 1.08360152E+00 6.12896860E-01 -1.02437311E+00 0.00000000E+00 -3.45531984E-01 -5.38185628E-01 7.29142676E-01 0.00000000E+00 -4.21846993E-02 0.00000000E+00 0.00000000E+00 -6.05879832E-02 -4.11650546E-03 9.07898589E-02 0.00000000E+00 0.00000000E+00 1.29267015E-01 7.20845940E-03 -5.47725519E-01 7.46052988E-01 -6.83510094E-01 1.78282087E-02 -4.03184196E-02 0.00000000E+00 1.01503184E+00 -9.99041754E-01 1.93300328E-01 -4.83599831E-01 0.00000000E+00 -1.60935212E-01 -4.71917645E-01 1.15781847E+00 0.00000000E+00 4.53245944E-01 1.68137386E-01 -9.96970195E-01 0.00000000E+00 -1.55726841E-01 2.73264398E-01 8.25636519E-01 0.00000000E+00 -1.12520558E-02 0.00000000E+00 0.00000000E+00 2.18273249E-03 -2.93554732E-02 1.10947804E-02 0.00000000E+00 0.00000000E+00 2.25098516E-01 1.15152624E-02 4.61652846E-01 -4.12286512E-01 1.18804493E-01 2.62282962E-01 0.00000000E+00 -3.01983934E-01 -2.76493822E-01 -6.67195591E-01 0.00000000E+00 3.28294684E-01 4.11078724E-01 1.01502909E+00 0.00000000E+00 9.88667814E-02 -4.86600481E-01 -9.30293323E-01 0.00000000E+00 4.33906450E-02 0.00000000E+00 0.00000000E+00 8.28952292E-02 -6.39591242E-04 -1.11083344E-01 0.00000000E+00 0.00000000E+00 -2.11147726E-01 -1.58750953E-03 -3.59190543E-01 4.13383330E-01 -1.88141146E-01 -3.16065048E-01 2.23845151E-01 0.00000000E+00 -1.62311603E+00 1.78386831E+00 -1.15605055E-01 -3.75775481E-02 0.00000000E+00 -6.51113105E-01 3.19414922E-01 8.63610318E-02 0.00000000E+00 4.19153281E-01 -3.44812995E-01 1.13639146E-01 0.00000000E+00 -5.77353084E-02 2.91807957E-01 1.46505515E-01 0.00000000E+00 -1.23849211E-03 0.00000000E+00 0.00000000E+00 -4.51083155E-02 -2.17776468E-02 5.75125227E-02 0.00000000E+00 0.00000000E+00 1.47229113E-01 1.03701216E-01 1.10073153E+00 -1.11977263E+00 1.44652982E-01 1.29898014E-01 0.00000000E+00 1.04003016E-02 -3.45284508E-01 -3.26125275E-01 0.00000000E+00 1.42555004E-01 5.65103213E-01 6.20208790E-01 0.00000000E+00 1.14637092E-01 -4.83515361E-01 -3.85177146E-01 0.00000000E+00 2.11488354E-02 0.00000000E+00 0.00000000E+00 4.02697424E-02 -2.28882210E-02 -5.72973191E-02 0.00000000E+00 0.00000000E+00 -1.07560138E-01 6.39724342E-02 -1.95100013E-01 3.64567380E-01 -3.57908979E-01 1.61183924E-01 3.96989268E-03 0.00000000E+00 -4.62711076E-01 5.27796018E-01 -1.69700461E-01 -1.18361868E-01 0.00000000E+00 -2.80688173E-01 4.42564523E-01 2.80001384E-01 0.00000000E+00 1.89498912E-01 -6.61532033E-01 -4.01703856E-01 0.00000000E+00 1.86144186E-02 5.20748542E-01 4.52694156E-01 0.00000000E+00 1.46933401E-02 0.00000000E+00 0.00000000E+00 -2.62511968E-02 -5.86568019E-02 -3.41407989E-03 0.00000000E+00 0.00000000E+00 1.03228034E-01 2.13104454E-01 -1.78858243E+00 1.90435500E+00 2.19567402E-01 3.83456661E-03 0.00000000E+00 -4.76840344E-01 -5.32147731E-01 -2.75356148E-02 0.00000000E+00 4.46831374E-01 9.09162350E-01 1.68285716E-02 0.00000000E+00 1.07803568E-01 -7.77489350E-01 -3.01259723E-03 0.00000000E+00 1.37461804E-02 0.00000000E+00 0.00000000E+00 2.54057511E-02 -4.43180848E-02 -3.40001338E-02 0.00000000E+00 0.00000000E+00 -6.30355686E-02 1.25577031E-01 -1.47011914E-01 2.54884277E-01 -4.34699746E-01 1.45728817E-01 1.25006031E-01 0.00000000E+00 -5.39940053E-01 6.92011018E-01 3.32153396E-01 -5.72121437E-02 0.00000000E+00 -7.50073433E-01 -8.41579537E-01 1.52766790E-01 0.00000000E+00 1.23455772E+00 1.35296776E+00 7.83514172E-02 0.00000000E+00 -8.78283363E-01 -9.48624597E-01 1.49080313E-01 0.00000000E+00 -2.93951268E-02 0.00000000E+00 0.00000000E+00 3.19528274E-02 8.80717972E-02 6.40924822E-02 0.00000000E+00 0.00000000E+00 -2.31458482E-02 -3.36480269E-01 -5.43652036E-01 6.62480041E-01 -2.50372278E-01 5.60529544E-02 0.00000000E+00 -5.81534555E-01 6.29084342E-01 -1.53031717E-01 0.00000000E+00 9.23241429E-01 -1.17984473E+00 2.32692389E-01 0.00000000E+00 -3.13477652E-01 9.81450859E-01 -3.33984227E-01 0.00000000E+00 -7.00765430E-04 0.00000000E+00 0.00000000E+00 3.16022089E-03 7.36203295E-02 8.25964575E-03 0.00000000E+00 0.00000000E+00 5.11321526E-03 -2.15428990E-01 -2.21719397E-01 4.98864755E-01 -6.30456600E-02 -2.50553015E-01 -1.90748628E-01 0.00000000E+00 -8.64386416E-02 1.86222108E-01 -1.96223960E-01 9.94990866E-02 0.00000000E+00 -6.53566613E-01 7.52210457E-01 -2.27878027E-01 0.00000000E+00 6.58998647E-03 1.52903521E+00 -2.63788294E+00 0.00000000E+00 -5.82997981E-01 1.21411826E+00 -4.99966929E-01 0.00000000E+00 2.10464875E-02 0.00000000E+00 0.00000000E+00 2.64283558E-01 -6.86918764E-02 1.15810796E-01 0.00000000E+00 0.00000000E+00 -1.45039434E+00 5.77174764E-01 3.61815597E-02 -8.26206529E-02 6.66914605E-03 1.01313226E-02 0.00000000E+00 4.64896615E-01 -2.29362704E-02 6.07349757E-02 0.00000000E+00 -1.53854917E+00 2.96324686E-03 -1.71420971E+00 0.00000000E+00 -1.72353634E+00 -4.60027956E-01 -6.38068806E-01 0.00000000E+00 -9.77572601E-02 0.00000000E+00 0.00000000E+00 -1.66674974E-01 1.37181590E-02 3.68894409E-01 0.00000000E+00 0.00000000E+00 6.35767985E-01 -3.63184351E-02 2.48755124E-01 2.80955936E+00 1.91119004E+00 1.38126447E+00 -3.37779045E-01 0.00000000E+00 -4.26972277E-02 1.07972106E-01 1.22421997E-01 1.23395366E-02 0.00000000E+00 -9.33701023E-01 -5.01322689E-01 1.75324922E-01 0.00000000E+00 4.60963203E+00 -1.11187571E+00 -2.45367143E+00 0.00000000E+00 1.63154150E+00 -1.48136170E+00 1.04856898E+00 0.00000000E+00 1.95156083E-01 0.00000000E+00 0.00000000E+00 1.51627297E-01 -7.18095579E-03 -1.00739188E+00 0.00000000E+00 0.00000000E+00 -4.92005092E-01 -1.92183578E-01 7.61775610E-02 -2.05065838E-01 -6.81187992E-03 -4.17167814E-02 0.00000000E+00 1.08739937E+00 1.38326466E-02 2.48239809E-01 0.00000000E+00 -3.50523862E+00 5.31105572E-02 -2.65238936E+00 0.00000000E+00 6.22582690E-01 4.11792332E-01 4.09781985E-01 0.00000000E+00 -1.01104470E-01 0.00000000E+00 0.00000000E+00 -1.87281347E-01 -2.84139960E-02 3.98645119E-01 0.00000000E+00 0.00000000E+00 7.18531759E-01 8.78252259E-02 -4.47491525E-02 -2.00028331E+00 -2.54126614E+00 -8.49654129E-01 5.59645963E-01 0.00000000E+00 3.87785961E-03 -1.49984257E-02 -1.26453494E-01 9.04057266E-02 0.00000000E+00 3.55748670E-01 5.75027435E-01 -3.50709362E-01 0.00000000E+00 -3.88422390E+00 2.71885283E+00 -6.11220150E-01 0.00000000E+00 -1.19509656E+00 -2.42983599E+00 3.33675901E+00 0.00000000E+00 -8.25044749E-02 0.00000000E+00 0.00000000E+00 1.10954315E-01 -5.06050550E-02 5.92413129E-01 0.00000000E+00 0.00000000E+00 -8.79113232E-01 5.34566800E-01 3.90685022E-02 -1.18493494E-01 -3.34130065E-02 3.15807538E-03 0.00000000E+00 5.99535011E-01 1.13872011E-01 8.88314766E-03 0.00000000E+00 -2.05164367E+00 -4.59466638E-01 -1.42932958E-01 0.00000000E+00 6.93107153E+00 4.78501842E-01 2.58088681E+00 0.00000000E+00 2.32081214E-02 0.00000000E+00 0.00000000E+00 1.42342304E-02 3.74990827E-02 -5.47113673E-02 0.00000000E+00 0.00000000E+00 -1.78034648E-02 -1.22905949E-01 -4.87523078E-02 4.98945260E+00 -5.09460929E+00 1.36091536E+00 -5.65106208E-01 0.00000000E+00 1.12961181E-02 -3.30033350E-02 -8.21944100E-02 -2.34938566E-02 0.00000000E+00 4.58137146E-01 3.90179563E-01 -1.70698561E-03 0.00000000E+00 -3.43282191E+00 1.95766174E+00 -3.82199048E-01 0.00000000E+00 1.29233914E+01 -3.91904161E+00 -2.04998854E+00 0.00000000E+00 -3.70263618E-02 0.00000000E+00 0.00000000E+00 2.82766420E-02 -2.26846307E-02 4.36116610E-01 0.00000000E+00 0.00000000E+00 -3.28690381E-01 3.29028356E-01 -4.55379760E-02 1.42329161E-01 -3.07431021E-02 3.08870734E-02 0.00000000E+00 -7.62274330E-01 1.07523615E-01 -1.35430287E-01 0.00000000E+00 2.61871468E+00 -4.24898866E-01 7.66152354E-01 0.00000000E+00 -7.98452879E+00 8.44990390E-01 -2.86216349E+00 0.00000000E+00 2.43675679E-02 0.00000000E+00 0.00000000E+00 5.82906769E-03 2.30101174E-02 -8.40047425E-02 0.00000000E+00 0.00000000E+00 -4.16718871E-02 -8.01369143E-02 -1.51291798E-01 3.84996842E+00 -7.87204966E+00 9.21418188E-01 -4.01893757E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 8.98451055E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 1.72702510E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 2.55649698E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 2.40117582E-01 0.00000000E+00 -1.14325133E-02 -1.63750853E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 -2.61673288E-02 -5.30367637E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 7.22347556E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 1.41033272E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 2.27841910E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 2.44052699E-01 0.00000000E+00 -3.34862143E-04 1.50454676E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 -1.18852141E-03 4.75762895E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 1.09693069E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 -1.90278082E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 -2.42144330E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 -1.59242568E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 -5.18629562E-02 0.00000000E+00 1.10618955E-01 -1.22564627E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 1.75050397E-01 -2.17339834E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 2.27315328E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 2.96581565E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 2.28740265E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 9.21051696E-02 0.00000000E+00 9.31316680E-03 8.43029671E-03 0.00000000E+00 0.00000000E+00 0.00000000E+00 1.78944936E-02 9.73223197E-03 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 -2.64549877E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 1.60944875E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 1.71711625E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 8.36497672E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 3.69956139E-03 0.00000000E+00 2.28371653E-01 -1.94763974E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 2.90055966E-01 -2.49345079E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 -1.89083190E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 -1.94980963E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 -8.89288162E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 -4.13159007E-02 0.00000000E+00 4.43194975E-02 2.46166706E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 6.15900090E-02 3.34291944E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 -1.87972298E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 8.02550597E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 7.44466913E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 6.08196681E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 9.16501622E-02 0.00000000E+00 3.32855159E-01 2.23997763E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 3.93923567E-01 2.79601834E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 -3.28898271E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 -3.42236808E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 2.57959924E-03 0.00000000E+00 0.00000000E+00 0.00000000E+00 7.08812667E-02 0.00000000E+00 9.77833271E-02 -2.44277877E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 1.22601452E-01 -2.98469092E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 -1.60837840E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 -3.08824506E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 -2.53391303E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 -1.36018261E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 -1.97170997E-02 0.00000000E+00 -1.12342823E-01 -1.32364266E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 -9.88224135E-02 -1.62310775E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 3.07724862E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 2.56822201E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 -1.15176933E-03 0.00000000E+00 0.00000000E+00 0.00000000E+00 -1.90729783E-02 0.00000000E+00 5.75727695E-01 3.74597350E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 5.68099029E-01 3.65897986E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 7.33915689E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 4.16529333E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 3.18280707E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 -4.77135287E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 -2.93047128E-01 0.00000000E+00 1.86362714E-02 6.52742741E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 1.64968143E-02 4.85947498E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 4.08932329E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 3.11585884E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 -4.80402484E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 -2.90559992E-01 0.00000000E+00 -8.88937996E-03 3.88398190E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 -7.61581028E-03 3.87560506E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 3.62651719E-03 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 -2.15789528E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 -1.37509607E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 4.19463972E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 7.30539779E-02 0.00000000E+00 9.28290174E-02 4.61959605E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 7.07923639E-02 3.24928316E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 1.25286810E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 7.93547974E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 -3.01005437E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 4.40889245E-03 0.00000000E+00 -1.93148557E-02 4.79020548E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 -1.33317349E-02 3.36807735E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 4.43894986E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 -3.42691957E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 -4.83453708E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 1.94214988E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 6.30170601E-02 0.00000000E+00 5.62067471E-01 -3.80299577E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 4.31952116E-03 1.65699892E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 2.79142388E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 3.59972534E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 -2.45582447E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 -2.18776566E-01 0.00000000E+00 -5.94701953E-04 -1.03982881E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 1.99155158E-04 1.65035509E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 5.50919338E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 2.19424249E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 -4.57140906E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 -3.16869710E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 -3.81774362E-01 0.00000000E+00 5.85467214E-01 2.18199043E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 -2.98133126E-01 -1.46145170E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 -4.73935414E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 1.06132041E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 4.60287631E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 1.29356879E-01 0.00000000E+00 6.87877905E-02 1.64757070E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 -4.19545506E-02 -1.03121273E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 3.71922344E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 2.55571437E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 -1.00302188E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 -1.89303658E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 1.30566565E-01 0.00000000E+00 -3.00234512E-02 -6.04262404E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 2.16823978E-02 4.44244232E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 7.42342261E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 -3.31237340E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 -2.42220808E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 1.91534667E-01 0.00000000E+00 -8.09613499E-03 7.43394009E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 6.33051813E-03 -5.58516024E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 -1.12041796E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 7.05481285E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 -3.80314435E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 -2.27365455E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 1.26032378E-01 0.00000000E+00 9.10823628E-02 1.29354027E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 -1.15155424E-01 -5.36822173E-03 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 1.25875612E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 -6.88615976E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 -1.08607955E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 5.25028305E-02 0.00000000E+00 9.34763400E-01 -3.07802920E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 -9.27068462E-01 2.99810939E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 -1.40994521E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 5.63935783E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 -3.83720939E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 -4.01918276E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 4.66741095E-01 0.00000000E+00 3.53608570E-01 2.02260789E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 -4.22072489E-01 -2.24818467E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 5.03730282E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 -3.50209532E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 -3.80892706E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 3.87362331E-01 0.00000000E+00 -1.89060683E-01 -1.57481940E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 2.18007017E-01 1.73729583E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 -8.91815698E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 3.88829498E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 -3.77629124E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 -2.42959467E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 8.66867930E-03 0.00000000E+00 -6.20129431E-02 -5.53649824E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 1.07706951E-01 8.72688121E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 -3.35810130E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 3.38422008E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 1.70756897E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 1.03645956E-01 0.00000000E+00 1.25073882E-02 -5.48017075E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 -1.88828235E-02 8.62711884E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 8.34332352E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 3.45612252E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 -4.09175394E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 -3.10915766E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 -4.78824881E-02 0.00000000E+00 -5.44531224E-01 2.04948040E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 1.06777311E+00 -3.97983762E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 1.41205802E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 -1.68697992E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 -2.12283935E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 1.83277973E-01 0.00000000E+00 9.29680913E-02 1.97594411E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 -1.53122308E-01 -4.61023406E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 1.00284554E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 -4.34623463E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 5.92287720E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 -2.31201468E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 -8.69015585E-01 0.00000000E+00 -1.40598889E-02 -1.73132087E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 3.05853557E-02 3.39206173E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 6.28569483E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 -8.65929980E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 2.94738491E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 8.83621120E-01 0.00000000E+00 2.13608435E-03 -1.39657536E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 -3.78713272E-03 2.67546573E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 3.29254425E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 6.20302974E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 -1.23513090E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 1.35008826E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 -5.27089009E-01 0.00000000E+00 4.35677581E-02 -3.26245580E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 -1.30555692E-01 1.18545677E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 4.84046610E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 -9.71351303E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 1.03519495E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 -6.86646650E-01 0.00000000E+00 -5.10156632E-03 2.48700941E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 1.12779782E-02 -7.42177460E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 -1.93803469E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 -3.31855492E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 8.14380253E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 -1.46194810E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 1.50824214E+00 0.00000000E+00 -2.65658137E-02 -5.90131629E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 9.22105536E-02 1.93857095E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 4.06935720E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 -9.90406933E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 1.69957572E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 -1.59476060E+00 0.00000000E+00 2.86208750E-03 -6.21044518E-02 0.00000000E+00 0.00000000E+00 0.00000000E+00 -6.97219864E-03 1.79400391E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 1.53464066E-01 Total SCF Density R N= 1830 6.40568834E-01 5.70209538E-01 5.25464326E-01 -1.11527780E-02 -1.76447153E-02 1.44465166E-01 -8.81828504E-03 -1.34955538E-02 6.78493651E-03 7.51162892E-02 0.00000000E+00 1.70026412E-34 -1.13767723E-34 -9.27295157E-34 1.95251644E-01 &hellip -1.40981451E-01 -2.38276269E-01 5.42211714E-02 3.97175193E-02 0.00000000E+00 7.42323009E-01 -1.34573037E-02 -2.25626597E-02 2.09978882E-01 9.42163273E-03 1.61938408E-34 7.42030479E-02 3.05251016E-01 -9.17106942E-03 -1.54132345E-02 1.09808552E-02 1.16469681E-01 -1.06595649E-32 5.11630011E-02 1.53411166E-02 1.80773573E-01 0.00000000E+00 1.94689587E-34 -1.79153250E-34 -1.43756510E-33 2.88268882E-01 -6.46112199E-34 -2.52772371E-34 -2.23140664E-33 4.25611329E-01 -1.28193674E-01 -2.02807054E-01 1.11995928E-01 4.60003477E-02 0.00000000E+00 5.89748004E-01 1.59006787E-01 6.38849157E-02 0.00000000E+00 5.08633376E-01 -1.62227683E-02 -2.65716958E-02 1.45049648E-01 1.38520180E-02 1.44581168E-34 8.32498656E-02 2.10636305E-01 2.15368936E-02 2.13411310E-34 1.34911886E-01 1.47316370E-01 -6.46834383E-03 -1.17891316E-02 2.24287213E-02 8.01143607E-02 -9.51702791E-33 4.19218980E-02 3.22655462E-02 1.24251118E-01 -1.40477589E-32 5.41048861E-02 3.00375679E-02 8.82670438E-02 0.00000000E+00 1.50855396E-34 -3.06714186E-34 -9.90375410E-34 2.57371011E-01 -5.34094068E-34 -4.41644468E-34 -1.53600609E-33 3.79896533E-01 -6.95038221E-34 -4.00973323E-34 -1.09424146E-33 3.39853069E-01 -3.52112606E-03 -8.01171527E-03 3.10772400E-02 -1.08538759E-02 0.00000000E+00 3.11617709E-02 4.52355197E-02 -1.74288522E-02 0.00000000E+00 3.14746487E-02 3.21949366E-02 -4.66456588E-03 0.00000000E+00 2.43516291E-02 -2.73068794E-03 -4.10288057E-03 9.09282585E-03 3.48666468E-03 2.80864493E-35 1.14631674E-02 1.31398970E-02 5.36609985E-03 4.14188045E-35 1.41266192E-02 9.54141504E-03 4.23551835E-03 3.73594944E-35 3.41847207E-04 8.82583409E-04 -1.52959108E-03 -2.44326315E-03 1.01742864E-02 1.33044213E-02 -1.84878519E-33 7.93775093E-03 1.46153772E-02 2.08333219E-02 -2.72638494E-33 1.55705649E-02 1.10273340E-02 1.37774991E-02 -2.45918162E-33 -4.25328601E-03 1.55181078E-03 4.58588678E-03 0.00000000E+00 3.09714466E-35 -1.27304619E-34 -1.64717008E-34 4.99970913E-02 -1.00231669E-34 -1.82889551E-34 -2.57909942E-34 7.37302081E-02 -1.94868989E-34 -1.37912823E-34 -1.70704361E-34 6.65041719E-02 5.23544848E-35 -1.93116606E-35 -5.68491424E-35 1.34040881E-02 3.31098868E-04 6.83237463E-04 2.64566754E-03 1.06615987E-03 -6.71032775E-36 -2.41794943E-03 3.85652550E-03 1.72754067E-03 -1.00075858E-35 -2.00098582E-04 2.59076980E-03 1.36176922E-03 -8.13813198E-36 6.15795019E-05 1.89818357E-04 4.53382681E-04 -1.00989949E-36 8.71550884E-05 0.00000000E+00 -8.77874825E-36 -5.31310547E-36 1.67227519E-35 -2.69362014E-03 2.75739315E-35 -7.80627266E-36 2.55259379E-35 -3.97627885E-03 1.94735720E-35 -3.25469535E-36 1.71197421E-35 -3.55462865E-03 -5.33441793E-36 7.09826605E-37 2.05409751E-36 -6.93781394E-04 -4.64483436E-38 3.71873253E-05 0.00000000E+00 -2.53173029E-35 -1.40280632E-34 -5.34740031E-36 -1.15687903E-03 8.51406909E-35 -2.04572987E-34 -1.09552023E-35 -1.72208640E-03 -8.20826480E-36 -1.35673778E-34 -2.02763724E-35 -1.42590017E-03 -2.28632507E-35 -7.77857734E-36 -1.17932522E-35 -1.97014964E-04 -3.41781590E-36 1.52935803E-05 2.32193237E-05 -1.04112674E-04 -6.88518142E-05 -3.73237424E-03 2.62131924E-03 -4.42920776E-35 -1.12967548E-04 -5.44775054E-03 4.06380000E-03 -6.59127821E-35 -1.27015461E-03 -3.52004314E-03 2.26335743E-03 -5.47235838E-35 -1.66925482E-03 -8.38649357E-05 3.49579001E-04 -7.67493056E-36 -2.55279704E-05 7.88296269E-37 3.54463134E-36 2.12711477E-04 4.45114713E-04 7.56014215E-04 6.59301673E-04 -1.33454964E-03 9.89544046E-35 -2.38602501E-03 9.66157703E-04 -2.03189371E-03 1.46066860E-34 -1.57087279E-03 4.85284533E-04 -1.34225373E-03 1.30641526E-34 4.64873069E-04 -4.43244275E-05 -1.44274716E-04 2.55438723E-35 9.63863854E-06 -6.24872993E-37 -1.20621071E-36 -6.91471020E-05 5.24674249E-05 1.55700843E-03 2.35725786E-03 4.84286039E-03 3.98978497E-03 -1.98593420E-35 -6.21818347E-03 7.07508848E-03 6.36035152E-03 -2.99721426E-35 -1.50538930E-03 4.83748232E-03 4.72852936E-03 -2.15902834E-35 -2.28023068E-04 3.93724650E-04 1.11573475E-03 -4.89588292E-37 1.95923051E-04 2.43110789E-37 8.75644459E-37 2.56159483E-05 -1.97171172E-05 4.98321536E-04 0.00000000E+00 -2.44018636E-35 6.43786014E-35 8.27880774E-35 -1.37004427E-02 8.62290672E-35 9.39599091E-35 1.27850077E-34 -2.02294758E-02 1.00742426E-34 7.08438285E-35 9.47074056E-35 -1.80438495E-02 -1.58181076E-35 8.80615456E-36 1.60475929E-35 -3.49278126E-03 1.77984090E-36 1.88902731E-04 8.37194770E-05 1.51948733E-36 -2.83986168E-36 5.98129591E-36 9.61729752E-04 0.00000000E+00 -4.30772628E-35 -2.77211179E-34 -3.11825579E-35 -3.87879829E-03 1.26076476E-34 -4.04427072E-34 -5.27320731E-35 -5.81842071E-03 -4.32947109E-35 -2.71673078E-34 -6.53636753E-35 -4.46700413E-03 -5.12332455E-35 -1.56482745E-35 -2.19979117E-35 -3.46209600E-04 -6.54438217E-36 4.91655885E-05 1.29695509E-04 6.55262415E-36 -1.54590088E-36 -1.35076218E-35 2.88753617E-04 7.72925597E-04 2.42932487E-03 3.34501141E-03 -8.59073071E-03 8.87568414E-03 -1.51126024E-34 -7.84452941E-03 -1.25049616E-02 1.39098038E-02 -2.26516861E-34 -7.99579538E-03 -8.16595635E-03 8.21975570E-03 -1.75316574E-34 -4.79192931E-03 -1.44588013E-04 1.41490458E-03 -1.47641990E-35 3.23915379E-05 1.92415631E-36 4.84289213E-36 6.03326765E-04 -1.78407165E-04 3.34879438E-04 5.65679448E-36 1.14014322E-35 1.88375460E-03 1.13086915E-03 2.07018863E-03 -4.77543696E-03 -6.61783078E-03 5.04434024E-34 -7.25096714E-03 -6.96982615E-03 -1.02109771E-02 7.44774055E-34 -8.13180439E-03 -5.30748316E-03 -7.52764457E-03 6.64713458E-34 1.35019020E-03 -6.87425652E-04 -1.25626295E-03 1.28961071E-34 -1.32720963E-04 -6.95759843E-36 -3.02290871E-36 -1.31888080E-04 2.32186102E-04 -4.59834051E-04 -2.01503932E-35 1.02328804E-35 -4.69919640E-04 1.61405479E-03 -1.64318121E-03 -2.79679870E-03 1.14773683E-03 3.19231648E-03 0.00000000E+00 9.41812397E-03 1.03806660E-03 4.90862566E-03 0.00000000E+00 2.11252016E-02 -4.26981548E-04 -4.40409180E-03 0.00000000E+00 -2.78020698E-02 2.87934480E-03 1.07564548E-02 0.00000000E+00 4.44942458E-04 0.00000000E+00 0.00000000E+00 7.12121157E-04 -5.73272905E-05 7.94357046E-05 0.00000000E+00 0.00000000E+00 1.59836229E-03 -5.31563643E-04 6.34141353E-01 -2.81523889E-03 -4.78215758E-03 1.89948756E-03 4.91950079E-03 0.00000000E+00 1.63347364E-02 1.84062781E-03 7.96730218E-03 0.00000000E+00 3.28440696E-02 -2.36045406E-04 -6.20276635E-03 0.00000000E+00 -3.97118575E-02 4.18487114E-03 1.52796670E-02 0.00000000E+00 6.94566683E-04 1.29934282E-36 -1.05941287E-35 1.14416514E-03 -8.14404356E-05 4.66201173E-04 1.02121685E-35 1.91606769E-35 2.88594924E-03 -8.48262967E-04 5.71976455E-01 5.34668619E-01 2.26808821E-03 3.74571753E-03 -1.34633276E-02 -4.73716803E-04 -1.27973229E-35 -1.13671640E-02 -1.82717121E-02 -1.21977625E-03 -1.79973430E-35 -2.77581090E-02 -1.61610158E-02 -4.78434833E-04 -2.31781332E-35 -2.22683203E-02 4.68147566E-04 -4.30895028E-03 -9.59780642E-36 -5.98878817E-04 2.46107242E-35 2.83560554E-35 5.37123581E-04 -2.04311819E-03 -2.54109120E-04 1.63142376E-34 1.85450474E-35 5.46571214E-04 -1.32607881E-02 -8.94734022E-04 -1.44870306E-03 2.10206708E-01 -5.39807856E-03 -8.57790639E-03 -1.04704635E-02 -8.72963541E-02 8.42381347E-34 2.25115767E-02 -1.52531865E-02 -1.36239403E-01 1.18467168E-33 -2.91600903E-04 -1.67495848E-02 -9.58927980E-02 1.52569621E-33 7.52624991E-03 -2.90848680E-03 -1.36074823E-02 6.31773784E-34 -1.55130545E-03 -1.66834219E-35 2.06164924E-35 -2.78355784E-03 1.30383278E-03 -5.55039574E-03 -9.01180263E-35 6.65886624E-35 -1.04994133E-02 7.14260955E-03 8.71491115E-03 1.37649056E-02 5.03870655E-03 1.11868123E-01 0.00000000E+00 1.04949464E-34 1.31867016E-34 1.07610946E-33 -2.27806980E-02 -2.75105299E-34 1.91821707E-34 1.67953475E-33 -3.20373284E-02 9.38488638E-36 2.09825927E-34 1.18206980E-33 -4.12597273E-02 -8.81227912E-35 3.57522072E-35 1.68624061E-34 -1.70851929E-02 -1.24663234E-35 3.89833669E-04 -1.72081360E-03 -6.34130019E-35 -1.53819000E-35 -8.36388428E-35 1.31004845E-03 -1.16489351E-02 -4.30016698E-34 -5.49867068E-35 0.00000000E+00 -1.69363347E-34 -1.05958140E-34 -1.37993220E-33 2.13107914E-01 1.05037500E-02 1.78150880E-02 -6.18271451E-03 -1.12954895E-02 0.00000000E+00 -6.07629573E-02 -6.53356970E-03 -1.97790388E-02 0.00000000E+00 -9.94035025E-02 -1.32783425E-03 1.80775206E-02 0.00000000E+00 9.95496404E-02 -1.08666372E-02 -3.78852385E-02 0.00000000E+00 -1.90945370E-03 -2.96088970E-36 2.74836344E-35 -3.27939231E-03 1.76572912E-04 -2.29822066E-03 -2.79255181E-35 -3.18003590E-35 -9.17579805E-03 2.27747973E-03 -1.51985003E-01 -2.57339657E-01 5.01621675E-03 -4.37839488E-02 0.00000000E+00 8.07357679E-01 3.33192292E-03 5.47032618E-03 -1.89268820E-02 -6.56328819E-04 -1.81561094E-35 -1.64813726E-02 -2.56286947E-02 -1.71514911E-03 -2.55057995E-35 -3.99397923E-02 -2.28444631E-02 -6.03371041E-04 -3.30794459E-35 -3.21823664E-02 7.15660673E-04 -6.19582397E-03 -1.38128128E-35 -8.55667841E-04 3.56468705E-35 4.04815906E-35 7.64088138E-04 -2.95834098E-03 -3.44916385E-04 2.36746155E-34 2.56822421E-35 7.62249923E-04 -1.92415526E-02 -1.11931913E-03 -1.92115468E-03 3.04654620E-01 7.24577715E-03 1.73511803E-34 7.11121487E-03 4.41541423E-01 -8.46941998E-03 -1.36916960E-02 -1.56269586E-02 -1.30929306E-01 1.19512245E-33 3.69132409E-02 -2.27655104E-02 -2.04406222E-01 1.67891441E-33 1.52009255E-03 -2.48632543E-02 -1.43571585E-01 2.17744824E-33 1.23112173E-02 -4.41294898E-03 -2.07327493E-02 9.09225778E-34 -2.35967938E-03 -2.49186076E-35 3.17403913E-35 -4.20379378E-03 1.94554671E-03 -8.38454940E-03 -1.35088800E-34 1.00506469E-34 -1.58688775E-02 1.07051036E-02 1.01903338E-02 1.71041352E-02 7.60807651E-03 1.67637773E-01 -1.14213814E-32 -5.89790710E-02 1.09388048E-02 2.51288249E-01 0.00000000E+00 1.67622016E-34 1.96565479E-34 1.61396521E-33 -3.23199507E-02 -4.51552638E-34 2.85952991E-34 2.51985900E-33 -4.54032396E-02 -1.04047347E-35 3.11228861E-34 1.76978229E-33 -5.88851962E-02 -1.45033895E-34 5.42445016E-35 2.56843378E-34 -2.45883862E-02 -1.80973324E-35 5.55416615E-04 -2.49893534E-03 -9.20932568E-35 -2.19419211E-35 -1.21327284E-34 1.84967826E-03 -1.69020798E-02 -6.23963575E-34 -7.78920748E-35 0.00000000E+00 -2.10423970E-34 -1.57330878E-34 -2.06780663E-33 3.08870849E-01 7.25489705E-34 -2.26941273E-34 -3.09964876E-33 4.47668681E-01 1.58844687E-02 2.50901642E-02 -1.04259974E-02 -2.82746006E-03 0.00000000E+00 -7.65275394E-02 -1.29837362E-02 -5.81059780E-03 0.00000000E+00 -1.03222201E-01 -6.88030293E-03 2.12921902E-02 0.00000000E+00 7.80621314E-02 -9.21279948E-03 -3.02488940E-02 0.00000000E+00 -1.42647896E-03 -1.22835613E-36 2.25637456E-35 -2.28646639E-03 4.93447193E-05 -1.30835443E-03 -1.66587470E-35 -2.73323288E-35 -5.97115342E-03 1.37093883E-03 -1.43917281E-01 -2.27412756E-01 7.74820552E-03 -4.58843287E-02 0.00000000E+00 6.60845447E-01 1.10835257E-02 -6.34288508E-02 0.00000000E+00 5.43529222E-01 3.23857549E-03 5.39664058E-03 -2.11749877E-02 -6.14451126E-04 -2.03785820E-35 -1.66081139E-02 -2.91739486E-02 -1.54276373E-03 -2.89789722E-35 -3.82754224E-02 -2.45850879E-02 -1.21272121E-03 -3.46584286E-35 -2.90456645E-02 3.35967751E-04 -5.47529418E-03 -1.30288731E-35 -8.09073756E-04 3.06791600E-35 3.91951586E-35 8.01085569E-04 -2.55303123E-03 -4.34089023E-04 2.00421274E-34 3.13593284E-35 1.01512090E-03 -1.63043719E-02 -2.62739395E-04 -5.86283080E-04 2.60952794E-01 6.47816600E-03 1.48464470E-34 3.18650195E-03 3.78184200E-01 9.74372485E-03 2.15162685E-34 7.33920480E-03 3.24103225E-01 -2.32036924E-04 -9.82539145E-04 -1.69276966E-02 -1.00321284E-01 1.34141629E-33 1.97678591E-03 -2.44559350E-02 -1.56305163E-01 1.90753534E-33 -2.17377695E-02 -2.47738502E-02 -1.09876485E-01 2.28138447E-33 8.90135497E-03 -4.05117467E-03 -1.66494743E-02 8.57623097E-34 -1.78956106E-03 -1.95463502E-35 2.48416127E-35 -3.12478291E-03 1.52700964E-03 -6.26318167E-03 -1.06153079E-34 7.76408943E-35 -1.16387945E-02 8.41833499E-03 3.14580359E-03 7.00557885E-03 6.89027368E-03 1.25354707E-01 -9.77264550E-33 -3.15821230E-02 9.90433689E-03 1.87898370E-01 -1.41630429E-32 -3.62148208E-02 8.91913162E-03 1.41620066E-01 0.00000000E+00 1.09849351E-35 2.13067290E-34 1.23668348E-33 -3.62762061E-02 -2.09011437E-35 3.07528659E-34 1.92693172E-33 -5.15858841E-02 2.75923343E-34 3.10489983E-34 1.35458522E-33 -6.16959658E-02 -1.03658446E-34 4.98644967E-35 2.06362818E-34 -2.31928839E-02 -1.51252469E-35 5.93821477E-04 -2.07824565E-03 -7.65154802E-35 -2.31257232E-35 -1.02525258E-34 2.18902243E-03 -1.42330544E-02 -5.25078114E-34 -8.89409384E-35 0.00000000E+00 -8.62281214E-35 -1.39366624E-34 -1.54646747E-33 2.64283732E-01 3.88614984E-34 -2.00973501E-34 -2.31805886E-33 3.83014182E-01 4.44851096E-34 -1.77548060E-34 -1.74746271E-33 3.28082925E-01 5.28981825E-03 8.43363743E-03 4.96785945E-03 4.05738043E-02 0.00000000E+00 -2.27345704E-02 6.96261760E-03 6.39847336E-02 0.00000000E+00 -1.05807905E-03 6.26741145E-03 3.99037556E-02 0.00000000E+00 -1.93871704E-02 2.71307861E-03 1.20747750E-02 0.00000000E+00 1.10396283E-03 6.70170057E-36 -1.74553299E-35 1.76218070E-03 -5.04646090E-04 3.10118045E-03 3.95904483E-35 -3.05735369E-35 6.41899244E-03 -3.12709116E-03 3.09107027E-02 4.31935850E-02 -7.51748316E-03 -4.52274898E-02 0.00000000E+00 -1.03588592E-01 -1.08392375E-02 -6.89315740E-02 0.00000000E+00 -7.98614954E-02 -8.89894639E-03 -5.28057599E-02 0.00000000E+00 3.78686234E-02 1.44749692E-03 2.31780030E-03 -1.00333099E-02 -4.67838389E-04 -1.41366792E-35 -6.98091094E-03 -1.43245878E-02 -8.18906864E-04 -2.07009371E-35 -1.26897170E-02 -1.06041672E-02 -1.15612306E-03 -1.98334552E-35 -5.38993915E-03 -4.47189124E-04 -1.45797526E-03 -4.82128484E-36 -2.44839651E-04 4.72474502E-36 1.22672009E-35 2.81615713E-04 -4.03360420E-04 -2.81239273E-04 2.63900541E-35 1.71154383E-35 5.40014216E-04 -2.16770362E-03 -1.00519367E-03 -1.53887977E-03 3.92628707E-02 1.10056975E-03 2.41194409E-35 4.46445082E-03 5.68734348E-02 1.67386947E-03 3.49160237E-35 4.68310344E-03 4.89649833E-02 1.85280531E-03 3.03925476E-35 -1.91027590E-03 7.74497623E-03 5.15562277E-03 7.96495547E-03 -2.81447786E-03 6.50627601E-03 9.30544220E-34 -2.19395031E-02 -4.11346368E-03 1.06340504E-02 1.36263525E-33 -1.35911363E-02 -3.53716883E-03 4.89768606E-03 1.30553342E-33 -8.70034595E-03 4.50797153E-04 3.26627318E-03 3.17360158E-34 2.88711974E-04 6.40812610E-37 -3.97622197E-36 5.10129115E-04 -4.26076795E-05 7.18095926E-04 4.47103043E-36 -2.58156031E-36 1.85761051E-03 -3.49364831E-04 1.29377146E-02 1.88309602E-02 -1.37218735E-03 -6.73398989E-03 -1.58765761E-33 -4.84385277E-02 -1.98222885E-03 -1.06456284E-02 -2.29834062E-33 -3.80388760E-02 -1.36245035E-03 -7.92278112E-03 -2.00058367E-33 1.13530944E-02 -2.25871189E-04 4.55663280E-03 0.00000000E+00 -9.86591730E-35 3.67841699E-35 -8.00984476E-35 -2.51649054E-02 2.71881544E-34 5.36906112E-35 -1.30903959E-34 -3.68500350E-02 1.70170895E-34 4.58111105E-35 -6.01274623E-35 -3.53058181E-02 1.08364440E-34 -5.46321564E-36 -3.99557766E-35 -8.58243830E-03 -1.65336643E-36 3.61527069E-04 -2.03618035E-04 -7.32626612E-36 -1.34828803E-35 -1.37776899E-35 1.71095366E-03 -1.80015842E-03 -6.56048486E-35 -6.42786562E-35 0.00000000E+00 -2.31788479E-34 8.72287523E-36 8.27732435E-35 4.29353627E-02 5.96119620E-34 1.25684720E-35 1.30868314E-34 6.21545146E-02 4.67888403E-34 6.57889673E-36 9.72693027E-35 5.41022099E-02 -1.39539189E-34 1.16839546E-36 -5.61177165E-35 1.08458492E-02 2.45990204E-04 4.07229711E-04 -7.94992885E-05 7.33907050E-04 7.00097144E-36 -1.21544610E-03 -1.11321065E-04 1.16288653E-03 1.04074122E-35 -7.95578143E-04 -7.08731340E-05 7.62318042E-04 8.72728325E-36 -2.54844035E-04 1.63929086E-05 1.46857274E-04 1.29073864E-36 1.75552517E-05 -9.32119993E-38 -1.24271195E-37 3.16911669E-05 -9.45694698E-06 5.77961344E-05 -5.04112448E-37 -6.78946659E-37 1.22104484E-04 -5.61890390E-05 -1.82142313E-05 6.56845957E-05 2.37176408E-05 -9.72784065E-04 8.57170365E-36 -4.75610234E-04 3.46463245E-05 -1.46984568E-03 1.24521578E-35 -2.53574343E-04 3.76457893E-05 -1.07354586E-03 1.03006025E-35 5.52684443E-04 1.09467382E-05 1.49691885E-04 8.82119363E-37 1.10659653E-05 0.00000000E+00 1.28228969E-36 -8.16761392E-36 -1.28171551E-36 2.16319070E-05 -4.54126329E-36 -1.19587511E-35 -1.95685078E-36 3.14284240E-05 -6.60408916E-36 -8.13229163E-36 -2.31710356E-36 3.20949464E-05 -1.49053874E-37 -6.67602508E-37 -4.61301194E-37 9.12655372E-06 -1.24862754E-37 -3.22516182E-07 4.63503451E-07 1.63158865E-37 1.37994361E-37 -3.12708831E-37 -1.42591137E-06 3.42853486E-06 4.14602531E-37 1.42188598E-36 0.00000000E+00 4.20086854E-38 -1.55548530E-35 1.14889285E-36 -6.96207606E-05 3.07702272E-37 -2.25806967E-35 1.70746411E-36 -1.00854460E-04 2.84943327E-37 -1.90255469E-35 1.59194308E-36 -8.69300835E-05 -1.15177927E-37 -2.42067928E-36 2.57815318E-37 -1.55408202E-05 -2.22427359E-39 2.37888150E-08 0.00000000E+00 -6.01442592E-36 8.96738990E-37 -9.87303264E-36 9.85499201E-04 1.78978631E-35 1.22726824E-36 -1.56663297E-35 1.46495257E-03 1.18569121E-35 8.61326526E-37 -1.02839381E-35 1.22891269E-03 3.64537475E-36 -2.31286592E-37 -1.98080114E-36 1.82100311E-04 -2.45938413E-37 -1.31238269E-05 -1.74258562E-05 -4.24701084E-37 1.37527555E-37 -8.07649211E-37 -7.09514641E-05 -9.51337201E-05 -1.65417626E-36 8.64592331E-37 0.00000000E+00 -7.63556459E-37 -1.96692985E-36 1.31856877E-35 1.19897182E-03 6.64530458E-36 -2.85600639E-36 1.99311529E-35 1.74177506E-03 3.52505091E-36 -2.54698354E-36 1.45145370E-35 1.44054305E-03 -7.52439796E-36 -4.43585988E-37 -2.07305000E-36 1.22721670E-04 -1.52534671E-37 -3.09738912E-07 1.31778622E-05 4.13429596E-04 6.86095562E-04 -1.45570064E-04 1.31976850E-03 3.64537985E-35 -2.05110404E-03 -2.05426838E-04 2.08927712E-03 5.41884591E-35 -1.32608169E-03 -1.23587189E-04 1.36988467E-03 4.54605849E-35 -4.39861896E-04 2.94835893E-05 2.63951636E-04 6.73880584E-36 3.09058845E-05 -4.85472146E-37 -6.44110406E-37 5.68218350E-05 -1.63370779E-05 1.01780035E-04 -2.62443397E-36 -3.51591488E-36 2.17779847E-04 -9.40444797E-05 -1.76123628E-05 1.27643158E-04 -6.97063535E-05 -1.74054190E-03 4.42962959E-35 -8.34523051E-04 -1.00621000E-04 -2.62921538E-03 6.43504495E-35 -4.46551095E-04 -7.17779666E-05 -1.92426920E-03 5.32193578E-35 9.85470406E-04 -1.05181930E-06 2.63666012E-04 4.52925387E-36 1.95787395E-05 4.65999275E-39 -2.68765813E-37 3.47184123E-05 -4.82772883E-05 -9.02334212E-05 6.60138710E-04 1.27442636E-04 -2.46285845E-37 3.27304202E-04 9.66739746E-04 1.95959802E-04 -3.39201504E-37 5.08588575E-04 6.57439227E-04 2.12367877E-04 -4.96446231E-37 3.63550731E-06 5.46862311E-05 4.21214718E-05 -2.35183405E-37 1.07024067E-05 4.55349368E-39 -2.69285414E-38 -1.22212523E-05 -1.15090253E-05 2.72537106E-05 1.28693311E-38 -1.80222342E-37 -2.97033578E-05 -1.17271493E-04 -9.87564719E-06 -1.46989340E-06 1.26461926E-03 -1.24450723E-04 3.24796280E-36 -4.05167629E-05 1.83582856E-03 -1.85742439E-04 4.70784405E-36 -3.13820920E-05 1.54709954E-03 -1.63573016E-04 4.02372988E-36 2.71518597E-05 1.97089685E-04 -1.60384843E-05 6.43606525E-37 5.39582348E-07 -1.42174962E-37 -1.84562049E-38 2.56008479E-07 1.15639390E-05 1.22321874E-03 2.02531218E-03 3.48024626E-04 4.59225772E-03 6.42441231E-35 -5.98463035E-03 5.22425411E-04 7.26545516E-03 9.52974197E-35 -3.24427391E-03 4.15252826E-04 4.75810486E-03 8.15335427E-35 -1.75189062E-03 2.01972996E-04 1.06927772E-03 1.32950451E-35 1.22079738E-04 -8.65097476E-37 -9.01113240E-37 1.84737732E-04 -6.53381979E-05 3.75754733E-04 -4.58878125E-36 -4.67015194E-36 7.16336782E-04 -4.34749534E-04 1.54389223E-03 2.23703415E-03 8.28202122E-04 -5.79282261E-03 5.15257976E-35 -5.51148476E-03 1.20595924E-03 -8.77347348E-03 7.49319605E-35 -3.77356383E-03 1.06036138E-03 -6.50597776E-03 6.09961685E-35 3.67899692E-03 1.35417427E-04 1.02047980E-03 2.93785873E-36 6.66976299E-05 -1.16999408E-38 6.92763705E-37 1.17700049E-04 1.21671591E-05 4.21351998E-04 0.00000000E+00 1.25754225E-35 -7.80070555E-35 -1.34193954E-35 -2.65395114E-04 -3.94160305E-35 -1.13890592E-34 -2.07551415E-35 -4.01879444E-04 -6.42428568E-35 -7.80749691E-35 -2.25604131E-35 -2.79100939E-04 -4.01211361E-36 -6.21055908E-36 -6.05085007E-36 2.90051185E-06 -1.35966672E-36 3.18545561E-06 1.32593789E-05 1.50761396E-36 8.38919387E-37 -3.11991285E-36 2.04386783E-05 8.14817098E-05 3.52583772E-36 1.03459129E-35 0.00000000E+00 -6.18671654E-36 -9.77383892E-35 1.31100194E-35 -1.29435035E-03 1.68889836E-35 -1.41997263E-34 1.96751612E-35 -1.87744495E-03 1.46168134E-35 -1.18784169E-34 1.79164518E-35 -1.58837191E-03 -5.55106704E-36 -1.37631611E-35 9.25143397E-37 -2.17691324E-04 -5.01353349E-38 3.93141482E-07 -9.61419591E-06 -3.32431470E-38 -1.03646610E-36 -1.20541166E-36 8.70694597E-06 0.00000000E+00 -2.68678342E-35 -1.64245348E-35 -7.08613541E-35 9.00654744E-03 7.87937892E-35 -2.42323210E-35 -1.11969380E-34 1.33593368E-02 3.56428224E-35 -1.72856764E-35 -7.41915159E-35 1.14349794E-02 2.90060148E-35 -4.26444629E-36 -1.72554747E-35 1.86845883E-03 -1.99973756E-36 -1.21311061E-04 -1.25571904E-04 -2.62654787E-36 1.28604244E-36 -6.06234995E-36 -6.43195219E-04 -6.49781171E-04 -1.03055451E-35 9.23063739E-36 0.00000000E+00 -3.92429670E-35 -4.43855168E-35 8.69477736E-35 7.13763577E-03 9.97174754E-35 -6.44679432E-35 1.31782399E-34 1.03803731E-02 7.06091437E-35 -5.52339597E-35 9.84990651E-35 8.44506599E-03 -5.68557029E-35 -7.22322176E-36 -1.57338785E-35 3.95539815E-04 -1.00535708E-36 -1.61285830E-06 9.65840076E-05 -1.75696866E-36 -4.46153600E-37 -6.59950913E-36 -6.38091873E-05 7.34060336E-04 2.20664034E-03 3.65062111E-03 -2.20315692E-04 7.52886904E-03 3.32893716E-34 -1.08327240E-02 -3.00828767E-04 1.19222832E-02 4.93773859E-34 -6.38710900E-03 -9.59800695E-05 7.75011678E-03 4.22684223E-34 -2.69959297E-03 2.45743310E-04 1.69576022E-03 6.90932288E-35 1.92116682E-04 -4.48403336E-36 -4.63593104E-36 3.18234884E-04 -8.54753898E-05 5.97383804E-04 -2.37724978E-35 -2.39817406E-35 1.22736470E-03 -5.20651241E-04 2.30087034E-03 3.28391023E-03 -1.07478254E-03 -9.68974007E-03 2.63207344E-34 -7.84700590E-03 -1.55226513E-03 -1.46674574E-02 3.82789255E-34 -5.18741536E-03 -1.25553232E-03 -1.08183190E-02 3.11388138E-34 6.01745030E-03 -1.76009630E-04 1.66871697E-03 1.45039233E-35 1.11082674E-04 -5.94191885E-38 3.56606854E-36 1.97341959E-04 3.63175318E-07 6.82827161E-04 -2.65050692E-37 -1.02117027E-35 1.14343798E-03 -5.93350243E-04 -9.55650062E-04 6.35412878E-03 1.24783359E-03 1.48732751E-35 3.00772096E-03 9.27759191E-03 1.93542443E-03 2.23654031E-35 5.11766387E-03 6.36172913E-03 1.99604499E-03 1.67442872E-35 2.61877057E-04 5.12303931E-04 5.28923603E-04 9.42373837E-37 1.14675257E-04 -1.85939219E-37 -5.60844873E-37 -1.16170975E-04 -7.06915358E-05 2.66453122E-04 -1.11710090E-36 -3.37804100E-36 -2.62124873E-04 -8.57675676E-04 3.85529973E-04 5.85932790E-04 7.99934800E-03 -1.26107458E-03 5.18719497E-35 -1.58129314E-03 1.16217067E-02 -1.89544184E-03 7.52551828E-35 -1.33352318E-03 9.72432971E-03 -1.67641714E-03 6.34787004E-35 5.78073807E-04 1.12802885E-03 -3.96233966E-05 8.27195732E-36 6.34920596E-06 -1.54435706E-38 4.09769535E-37 6.70127534E-06 8.48411732E-05 1.12529400E-04 -7.89840069E-36 -3.58731402E-36 4.47580352E-05 6.47058431E-04 -1.57279764E-02 -2.48107262E-02 -9.39177433E-02 1.96219747E-02 0.00000000E+00 6.99927728E-02 -1.37182420E-01 2.86739516E-02 0.00000000E+00 9.66327818E-03 -8.87686545E-02 1.01637097E-02 0.00000000E+00 -2.13774408E-02 -4.02172249E-03 -3.01309454E-03 0.00000000E+00 -1.95203751E-03 0.00000000E+00 0.00000000E+00 3.31338853E-03 -1.21194671E-03 -3.25587361E-03 0.00000000E+00 0.00000000E+00 7.30359440E-03 1.66663809E-04 9.22310656E-04 1.50496824E-03 1.68709631E-02 -1.17441187E-02 0.00000000E+00 -4.69432181E-03 2.40428760E-02 -1.72340452E-02 0.00000000E+00 -1.82821757E-03 2.37573504E-02 -1.31329519E-02 0.00000000E+00 3.27154553E-03 7.73782980E-03 5.68052103E-04 0.00000000E+00 8.17166739E-05 0.00000000E+00 0.00000000E+00 1.61989705E-04 -3.37509509E-04 1.52305449E-04 0.00000000E+00 0.00000000E+00 5.72426137E-04 -3.44201889E-03 8.15479121E-02 -4.92981275E-03 -7.07579162E-03 -1.31586490E-01 1.61882751E-02 0.00000000E+00 1.55903565E-02 -1.91561795E-01 2.37387556E-02 0.00000000E+00 -5.16735448E-02 -1.28179727E-01 3.50053851E-03 0.00000000E+00 -3.00622243E-02 -6.90904242E-03 -6.66853833E-03 0.00000000E+00 -2.50399448E-03 0.00000000E+00 0.00000000E+00 4.18841733E-03 -1.37161472E-03 -4.07960352E-03 0.00000000E+00 0.00000000E+00 9.67845150E-03 8.38404528E-04 -3.69548190E-03 -5.36728713E-03 3.39097941E-02 -1.15845748E-02 0.00000000E+00 1.43616206E-02 4.85978434E-02 -1.70603643E-02 0.00000000E+00 1.67900622E-02 4.60356960E-02 -1.01060082E-02 0.00000000E+00 1.33011933E-03 1.30032668E-02 1.52446791E-03 0.00000000E+00 1.64832387E-04 0.00000000E+00 0.00000000E+00 2.98048184E-04 -4.30241869E-04 3.82763142E-04 0.00000000E+00 0.00000000E+00 1.05892321E-03 -4.60985171E-03 1.00861740E-01 1.33322294E-01 3.66197833E-03 7.19537788E-03 -4.31917778E-02 7.24888276E-04 0.00000000E+00 -2.63121796E-02 -6.26071988E-02 1.14120454E-03 0.00000000E+00 -4.11914703E-02 -4.39923019E-02 -4.13562171E-03 0.00000000E+00 -1.46684660E-02 -2.34270339E-03 -2.25415910E-03 0.00000000E+00 -7.04232736E-04 0.00000000E+00 0.00000000E+00 1.30482831E-03 -4.70493445E-04 -1.09207189E-03 0.00000000E+00 0.00000000E+00 3.18733949E-03 -5.59714631E-04 4.15334666E-03 5.70467109E-03 3.10356268E-02 4.72255951E-04 0.00000000E+00 -1.31145698E-02 4.48189977E-02 5.02867288E-04 0.00000000E+00 -8.08665788E-03 3.98946320E-02 2.08462243E-03 0.00000000E+00 1.78141033E-03 7.92266609E-03 2.22800727E-03 0.00000000E+00 8.56032062E-05 0.00000000E+00 0.00000000E+00 1.37575956E-04 -2.32278518E-05 4.10346195E-04 0.00000000E+00 0.00000000E+00 5.76099788E-04 -7.34546462E-04 2.85644974E-02 4.18230084E-02 1.69907920E-02 -6.56738381E-03 -9.68749190E-03 -1.51916133E-02 4.40982388E-03 -5.11861487E-35 2.53777502E-02 -2.22862011E-02 6.33851711E-03 -7.34791240E-35 1.22486465E-02 -1.37113962E-02 2.94205655E-03 -3.34033082E-35 -2.63953895E-03 -5.21755671E-04 -4.35004180E-04 5.47068410E-36 -3.78891046E-04 -1.53488355E-37 -6.14490673E-38 5.67231002E-04 -2.41855778E-04 -6.64282732E-04 -7.79087686E-37 -1.92101523E-37 1.12408120E-03 -1.74130735E-05 -4.69508492E-04 -6.11542747E-04 1.09739713E-03 -2.23709348E-03 2.73453777E-35 1.15012354E-03 1.51896990E-03 -3.20762193E-03 3.92201200E-35 8.16676233E-04 1.79338160E-03 -2.87104594E-03 3.50142555E-35 -3.62272333E-06 9.24905289E-04 -4.43562968E-04 5.27439092E-36 -6.17650597E-06 1.39011934E-39 5.29782337E-38 -5.14736415E-06 -6.21124088E-05 -8.75588971E-05 -1.19660655E-38 4.93219423E-37 -8.22406520E-05 -6.05626849E-04 1.53184980E-02 1.76206437E-02 4.19260531E-03 3.12549425E-03 1.02132189E-03 1.40566138E-03 9.50914047E-03 4.48209272E-03 -5.72297629E-35 -3.00840316E-03 1.38515794E-02 7.11425773E-03 -9.05795791E-35 3.18308597E-03 9.60150809E-03 5.76548207E-03 -7.30680268E-35 8.64088520E-04 7.02279037E-04 1.44570396E-03 -1.79661798E-35 2.74865282E-04 1.01033418E-35 4.04487318E-36 -8.81888589E-05 -9.57137136E-06 6.46873538E-04 5.12832989E-35 1.26450462E-35 6.30257811E-05 -6.56512044E-04 6.96867577E-04 9.03905439E-04 -4.54788802E-04 -6.12740227E-03 7.56209377E-35 -1.70197107E-03 -6.17194474E-04 -9.23537255E-03 1.13963509E-34 -1.04373710E-03 -8.32351729E-04 -7.10898775E-03 8.77986765E-35 3.21236139E-03 -5.62970159E-04 5.50981443E-04 -6.67392924E-36 5.42935200E-05 -9.15043413E-38 -3.48728217E-36 9.55827409E-05 5.05036935E-05 3.83014447E-04 7.87663990E-37 -3.24660748E-35 5.80852539E-04 4.84105586E-04 -6.01428204E-03 -8.10456763E-03 -2.48391507E-03 -1.07932762E-03 9.51903925E-04 -1.12187403E-35 0.00000000E+00 1.11128920E-35 -7.31504007E-34 1.97822185E-02 0.00000000E+00 1.64032568E-35 -1.07974126E-33 2.91996727E-02 0.00000000E+00 1.46750640E-35 -9.65983300E-34 2.61232920E-02 0.00000000E+00 2.87227226E-36 -1.89066775E-34 5.11297304E-03 -3.30893559E-36 -2.73226822E-04 -1.09386366E-04 9.68681375E-37 1.68429870E-37 -7.83475573E-36 -1.38686517E-03 -3.41962676E-04 -1.01134766E-36 8.09576825E-36 -8.49161174E-36 0.00000000E+00 -1.79504476E-36 1.18158480E-34 -3.19538493E-03 0.00000000E+00 -2.56216294E-36 1.68653889E-34 -4.56094300E-03 0.00000000E+00 -2.68063537E-36 1.76452314E-34 -4.77183748E-03 0.00000000E+00 -1.52702013E-36 1.00515810E-34 -2.71827044E-03 -6.67930820E-37 2.47457137E-06 9.43073137E-05 -1.17707445E-36 -6.09548795E-37 -4.70275186E-36 -2.13009649E-05 8.77986969E-04 -7.14240406E-36 -5.84072204E-36 7.09361529E-35 9.62206607E-35 2.97419964E-35 1.37797510E-35 -8.57597515E-35 2.00800692E-03 Grdnt Energy R 0.000000000000000E+00 Grdnt NVar I 3 Grdnt IGetFC I 0 Internal Forces R N= 3 0.00000000E+00 0.00000000E+00 0.00000000E+00 Internal Force Constants R N= 6 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 Mulliken Charges R N= 3 -2.77802219E-01 -2.02518456E-02 2.98054065E-01 ONIOM Charges I N= 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 ONIOM Multiplicities I N= 16 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 Atom Layers I N= 3 1 1 1 Atom Modifiers I N= 3 0 0 0 Force Field I 0 Atom Modified Types C N= 3 Int Atom Modified Types I N= 3 0 0 0 Link Atoms I N= 3 0 0 0 Atom Modified MM Charges R N= 3 0.00000000E+00 0.00000000E+00 0.00000000E+00 Link Distances R N= 12 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 Cartesian Gradient R N= 9 0.00000000E+00 -0.00000000E+00 0.00000000E+00 0.00000000E+00 -0.00000000E+00 0.00000000E+00 0.00000000E+00 -0.00000000E+00 0.00000000E+00 Nonadiabatic coupling R N= 9 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 Dipole Moment R N= 3 -6.93821359E-01 4.40200507E-01 -3.08148791E-32 Quadrupole Moment R N= 6 5.73854220E-01 3.90460996E-01 -9.64315217E-01 -1.47854898E+00 2.46519033E-32 4.93038066E-32 QEq coupling tensors R N= 18 3.36257316E-01 3.84493196E-01 -3.53301870E+00 -6.16297582E-33 0.00000000E+00 3.19676139E+00 2.57085837E+00 4.02724474E-01 -5.36804341E+00 -1.23259516E-32 1.97215226E-31 2.79718504E+00 -4.24598100E-01 2.00606872E-01 1.24168477E-01 -6.16297582E-33 -9.24446373E-33 3.00429623E-01 ClPar MaxAn I 200 ClPar NIntPar I 4 ClPar NRealPar I 16 ClPar NBits I 30 ClPar LenBitVec I 1 ClPar Read BitMap I N= 200 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 ClPar Default BitMap I N= 200 2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 2016 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 480 ClPar Int Params I N= 800 0 0 0 0 0 0 0 0 0 0 0 0 &hellip 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 ClPar Real Params R N= 3200 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 &hellip 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 2.26000000E-01 4.43000000E-01 1.01000000E-01 1.47000000E-01 1.92000000E-01 2.40000000E-01 2.75000000E-01 3.03000000E-01 3.25000000E-01 4.13000000E-01 9.60000000E-02 1.35000000E-01 1.73000000E-01 2.11000000E-01 2.48000000E-01 2.86000000E-01 3.23000000E-01 3.60000000E-01 8.20000000E-02 1.04000000E-01 1.17000000E-01 1.23000000E-01 1.29000000E-01 1.34000000E-01 1.40000000E-01 1.44000000E-01 1.48000000E-01 1.52000000E-01 1.55000000E-01 1.76000000E-01 1.98000000E-01 2.19000000E-01 2.39000000E-01 2.60000000E-01 2.80000000E-01 3.00000000E-01 7.90000000E-02 9.90000000E-02 1.19000000E-01 1.26000000E-01 1.33000000E-01 1.40000000E-01 1.47000000E-01 1.53000000E-01 1.58000000E-01 1.63000000E-01 1.57000000E-01 1.70000000E-01 1.87000000E-01 2.03000000E-01 2.19000000E-01 2.34000000E-01 2.50000000E-01 2.65000000E-01 7.40000000E-02 9.20000000E-02 1.05000000E-01 1.06000000E-01 1.07000000E-01 1.08000000E-01 1.09000000E-01 1.10000000E-01 1.11000000E-01 1.12000000E-01 1.13000000E-01 1.14000000E-01 1.15000000E-01 1.16000000E-01 1.17000000E-01 1.17000000E-01 1.26000000E-01 1.36000000E-01 1.46000000E-01 1.55000000E-01 1.65000000E-01 1.73000000E-01 1.82000000E-01 1.90000000E-01 1.62000000E-01 1.78000000E-01 1.10000000E-01 1.35000000E-01 1.59000000E-01 1.83000000E-01 2.07000000E-01 2.31000000E-01 6.90000000E-02 9.40000000E-02 1.02000000E-01 1.03000000E-01 1.05000000E-01 1.07000000E-01 1.09000000E-01 1.11000000E-01 1.13000000E-01 1.15000000E-01 1.17000000E-01 1.19000000E-01 1.20000000E-01 1.22000000E-01 1.24000000E-01 1.26000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 1.28000000E-01 5.47000000E-01 5.92000000E-01 5.99000000E-01 6.68000000E-01 6.98000000E-01 7.18000000E-01 7.26000000E-01 7.36000000E-01 7.43000000E-01 7.45000000E-01 6.07000000E-01 6.66000000E-01 6.93000000E-01 7.09000000E-01 7.20000000E-01 7.29000000E-01 7.35000000E-01 7.40000000E-01 6.08000000E-01 7.34000000E-01 7.46000000E-01 7.55000000E-01 7.61000000E-01 7.65000000E-01 7.67000000E-01 7.60000000E-01 7.49000000E-01 7.33000000E-01 7.08000000E-01 6.48000000E-01 6.88000000E-01 7.09000000E-01 7.22000000E-01 7.31000000E-01 7.38000000E-01 7.44000000E-01 6.09000000E-01 7.30000000E-01 7.41000000E-01 7.52000000E-01 7.58000000E-01 7.63000000E-01 7.66000000E-01 7.58000000E-01 7.48000000E-01 7.33000000E-01 7.01000000E-01 6.45000000E-01 6.86000000E-01 7.08000000E-01 7.22000000E-01 7.31000000E-01 7.38000000E-01 7.44000000E-01 6.08000000E-01 7.28000000E-01 7.32000000E-01 7.32000000E-01 7.32000000E-01 7.32000000E-01 7.32000000E-01 7.32000000E-01 7.32000000E-01 7.32000000E-01 7.32000000E-01 7.31000000E-01 7.31000000E-01 7.31000000E-01 7.31000000E-01 7.46000000E-01 7.37000000E-01 7.46000000E-01 7.51000000E-01 7.55000000E-01 7.58000000E-01 7.47000000E-01 7.32000000E-01 7.11000000E-01 7.41000000E-01 7.07000000E-01 7.47000000E-01 7.43000000E-01 7.42000000E-01 7.42000000E-01 7.43000000E-01 7.44000000E-01 6.05000000E-01 7.24000000E-01 7.26000000E-01 7.26000000E-01 7.27000000E-01 7.27000000E-01 7.27000000E-01 7.28000000E-01 7.28000000E-01 7.28000000E-01 7.28000000E-01 7.28000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 7.29000000E-01 1.00000000E+00 1.70400000E+00 3.23000000E-01 3.89000000E-01 4.67000000E-01 5.67000000E-01 6.36000000E-01 6.64000000E-01 6.96000000E-01 8.79000000E-01 3.07000000E-01 3.48000000E-01 4.00000000E-01 4.54000000E-01 5.09000000E-01 5.65000000E-01 6.21000000E-01 6.77000000E-01 2.56000000E-01 3.50000000E-01 3.64000000E-01 3.62000000E-01 3.62000000E-01 3.62000000E-01 3.62000000E-01 3.65000000E-01 3.69000000E-01 3.75000000E-01 3.86000000E-01 4.46000000E-01 4.55000000E-01 4.74000000E-01 4.96000000E-01 5.20000000E-01 5.45000000E-01 5.70000000E-01 2.45000000E-01 3.22000000E-01 3.55000000E-01 3.59000000E-01 3.64000000E-01 3.70000000E-01 3.76000000E-01 3.85000000E-01 3.95000000E-01 4.08000000E-01 3.76000000E-01 4.23000000E-01 4.22000000E-01 4.32000000E-01 4.45000000E-01 4.59000000E-01 4.75000000E-01 4.91000000E-01 2.28000000E-01 2.92000000E-01 2.89000000E-01 2.92000000E-01 2.95000000E-01 2.98000000E-01 3.00000000E-01 3.03000000E-01 3.06000000E-01 3.09000000E-01 3.12000000E-01 3.15000000E-01 3.18000000E-01 3.21000000E-01 3.24000000E-01 3.61000000E-01 3.69000000E-01 3.70000000E-01 3.72000000E-01 3.75000000E-01 3.78000000E-01 3.85000000E-01 3.94000000E-01 4.07000000E-01 5.26000000E-01 6.21000000E-01 3.36000000E-01 3.54000000E-01 3.71000000E-01 3.86000000E-01 4.02000000E-01 4.17000000E-01 2.09000000E-01 2.94000000E-01 2.65000000E-01 2.72000000E-01 2.78000000E-01 2.84000000E-01 2.91000000E-01 2.97000000E-01 3.03000000E-01 3.10000000E-01 3.16000000E-01 3.22000000E-01 3.29000000E-01 3.35000000E-01 3.41000000E-01 3.48000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 3.54000000E-01 2.74000000E-01 2.96000000E-01 5.80000000E-02 4.40000000E-02 3.90000000E-02 3.90000000E-02 3.60000000E-02 3.20000000E-02 2.90000000E-02 3.30000000E-02 5.50000000E-02 3.90000000E-02 3.30000000E-02 3.00000000E-02 2.80000000E-02 2.60000000E-02 2.50000000E-02 2.50000000E-02 4.50000000E-02 4.40000000E-02 3.30000000E-02 2.50000000E-02 2.10000000E-02 1.80000000E-02 1.50000000E-02 1.80000000E-02 2.10000000E-02 2.50000000E-02 3.30000000E-02 5.00000000E-02 3.80000000E-02 3.10000000E-02 2.70000000E-02 2.40000000E-02 2.20000000E-02 2.10000000E-02 4.30000000E-02 4.00000000E-02 3.20000000E-02 2.50000000E-02 2.10000000E-02 1.80000000E-02 1.60000000E-02 1.90000000E-02 2.20000000E-02 2.80000000E-02 3.10000000E-02 4.70000000E-02 3.40000000E-02 2.80000000E-02 2.40000000E-02 2.10000000E-02 1.90000000E-02 1.80000000E-02 3.90000000E-02 3.60000000E-02 2.50000000E-02 2.50000000E-02 2.50000000E-02 2.60000000E-02 2.60000000E-02 2.60000000E-02 2.70000000E-02 2.70000000E-02 2.70000000E-02 2.70000000E-02 2.80000000E-02 2.80000000E-02 2.80000000E-02 3.30000000E-02 3.30000000E-02 2.60000000E-02 2.10000000E-02 1.80000000E-02 1.60000000E-02 1.80000000E-02 2.20000000E-02 2.60000000E-02 4.90000000E-02 8.20000000E-02 3.00000000E-02 2.40000000E-02 2.10000000E-02 1.80000000E-02 1.60000000E-02 1.50000000E-02 3.50000000E-02 3.60000000E-02 2.20000000E-02 2.30000000E-02 2.40000000E-02 2.40000000E-02 2.50000000E-02 2.50000000E-02 2.60000000E-02 2.70000000E-02 2.70000000E-02 2.80000000E-02 2.80000000E-02 2.90000000E-02 3.00000000E-02 3.00000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 3.10000000E-02 -5.92770000E-01 -9.17860000E-01 -2.48668000E+00 -8.36430000E-01 -3.18470000E-01 -4.55790000E-01 -5.70730000E-01 -6.77940000E-01 -7.69860000E-01 -8.51140000E-01 -1.51908000E+00 -3.18830000E-01 -2.17900000E-01 -3.01260000E-01 -3.72750000E-01 -4.15890000E-01 -4.45930000E-01 -5.91320000E-01 -9.56370000E-01 -2.88450000E-01 -4.87320000E-01 -6.34280000E-01 -7.17490000E-01 -7.91980000E-01 -8.68490000E-01 -9.17520000E-01 -9.54890000E-01 -9.88460000E-01 -1.50055000E+00 -2.92560000E-01 -2.14960000E-01 -2.91180000E-01 -3.42080000E-01 -3.84480000E-01 -4.34940000E-01 -5.24310000E-01 -8.10070000E-01 -2.58460000E-01 -4.35550000E-01 -5.32740000E-01 -6.08450000E-01 -6.10260000E-01 -7.58920000E-01 -8.90130000E-01 -8.45780000E-01 -8.69340000E-01 -1.38234000E+00 -2.64850000E-01 -1.97280000E-01 -2.65040000E-01 -2.94470000E-01 -3.16570000E-01 -3.63590000E-01 -4.57840000E-01 -8.61830000E-01 -1.33004000E+00 -6.82880000E-01 -6.25540000E-01 -6.35430000E-01 -8.79690000E-01 -9.02690000E-01 -9.59650000E-01 -1.01869000E+00 -6.81170000E-01 -7.96500000E-01 -9.04950000E-01 -8.34790000E-01 -9.01560000E-01 -9.74130000E-01 -1.03326000E+00 -7.15490000E-01 -7.83960000E-01 -8.28380000E-01 -5.61040000E-01 -1.03841000E+00 -8.62500000E-01 -9.59300000E-01 -1.01755000E+00 -7.64900000E-01 -1.29467000E+00 -1.92740000E-01 -2.56010000E-01 -3.19820000E-01 -1.94660000E-01 -2.60090000E-01 -4.27990000E-01 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 1.90440000E+00 1.36430000E+00 4.84000000E-01 7.31600000E+00 9.24030000E+00 8.78200000E+00 5.61290000E+00 4.83340000E+00 3.24870000E+00 2.71090000E+00 2.01130000E+00 1.50282000E+01 1.46788000E+01 2.13546000E+01 2.38290000E+01 1.98022000E+01 1.50468000E+01 1.09745000E+01 1.27219000E+01 1.51949000E+01 1.57342000E+01 2.79222000E+01 1.61366000E+01 2.21252000E+01 2.45676000E+01 1.96016000E+01 1.79818000E+01 1.72396000E+01 5.01500000E+00 1.92898000E+01 2.34477000E+01 2.23993000E+01 2.96586000E+01 2.60081000E+01 2.15580000E+01 1.69594000E+01 1.56479000E+01 1.86897000E+01 1.93530000E+01 3.43444000E+01 1.98480000E+01 2.72140000E+01 3.02182000E+01 2.41099000E+01 2.21176000E+01 2.12047000E+01 7.56690000E+00 2.37264000E+01 2.93879000E+01 3.01278000E+01 4.19382000E+01 3.85203000E+01 3.39511000E+01 2.75774000E+01 1.56460000E+01 1.04460000E+01 2.01830000E+01 4.99540000E+01 4.76430000E+01 1.18690000E+01 1.08670000E+01 9.96100000E+00 9.18700000E+00 3.67980000E+01 1.34070000E+01 9.38200000E+00 9.81700000E+00 8.90800000E+00 8.40700000E+00 8.05800000E+00 1.29600000E+01 2.67920000E+01 2.49300000E+01 3.45630000E+01 1.11860000E+01 1.09440000E+01 1.01270000E+01 9.40400000E+00 1.36660000E+01 7.81000000E+00 6.93600000E+01 5.86630000E+01 4.79690000E+01 4.52740000E+01 3.92290000E+01 3.30660000E+01 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 0.00000000E+00 Gaussian Version C N= 2 ES64L-G16RevA.03+
License
Gaussian Interface Code Open Source Public License, v. 1.0
Based on the Mozilla Public License version 2.0
1. Definitions
1.1. “CONTRIBUTOR” means each individual or legal entity that creates, contributes to the creation of, or owns Covered Software.
1.2. “CONTRIBUTION” means Covered Software of a particular CONTRIBUTOR.
1.3. “CONTRIBUTOR VERSION” means the combination of the CONTRIBUTIONS of others (if any) used by a CONTRIBUTOR and that particular CONTRIBUTOR’s Contribution.
1.4. “COVERED SOFTWARE” means Source Code Form to which the initial CONTRIBUTOR has attached the notice in Exhibit A, the Executable Form of such Source Code Form, and Modifications of such Source Code Form, in each case including portions thereof.
1.5. “EXECUTABLE FORM” means any form of the work other than Source Code Form.
1.6. “LARGER WORK” means a work that combines COVERED SOFTWARE with other material, in a separate file or files, that is not COVERED SOFTWARE.
1.7. “LICENSE” means this document.
1.8. “LICENSABLE” means having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently, any and all of the rights conveyed by this LICENSE.
1.9. “MODIFICATIONS” means any of the following:
- Any file in Source Code Form that results from an addition to, deletion from, or modification of the contents of Covered Software; or
- Any new file in Source Code Form that contains any COVERED SOFTWARE.
1.10. “PATENT CLAIMS” of a CONTRIBUTOR means any patent claim(s), including without limitation, method, process, and apparatus claims, in any patent LICENSABLE by such CONTRIBUTOR that would be infringed, but for the grant of the LICENSE, by the making, using, selling, offering for sale, having made, import, or transfer of either its CONTRIBUTIONS or its CONTRIBUTOR VERSION.
1.11. “SOURCE CODE FORM” means the form of the work preferred for making modifications.
1.12. “YOU” (OR “YOUR”) means an individual or a legal entity exercising rights under this LICENSE. For legal entities, “YOU” includes any entity that controls, is controlled by, or is under common control with YOU. For purposes of this definition, “control” means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity.
2. License Grants and Conditions
2.1. Grants: Each CONTRIBUTOR hereby grants YOU a world-wide, royalty-free, non-exclusive license:
- Under intellectual property rights (other than patent or trademark) LICENSABLE by such CONTRIBUTOR to use, reproduce, make available, modify, display, perform, distribute, and otherwise exploit its CONTRIBUTIONS, either on an unmodified basis, with MODIFICATIONS, or as part of a LARGER WORK; and
- Under PATENT CLAIMS of such CONTRIBUTOR to make, use, sell, offer for sale, have made, import, and otherwise transfer either its CONTRIBUTIONS or its CONTRIBUTOR VERSION.
2.2. Effective Date: The licenses granted in Section 2.1 with respect to any CONTRIBUTION become effective for each CONTRIBUTION on the date the CONTRIBUTOR first distributes such CONTRIBUTION.
2.3. Limitations on Grant Scope: The licenses granted in this Section 2 are the only rights granted under this LICENSE. No additional rights or licenses will be implied from the distribution or licensing of COVERED SOFTWARE under this LICENSE. Notwithstanding Section 2.1(1) above, no patent license is granted by a CONTRIBUTOR:
- For any code that a CONTRIBUTOR has removed from COVERED SOFTWARE; or
- For infringements caused by: (i) YOUR and any other third party’s modifications of COVERED SOFTWARE, or (ii) the combination of its CONTRIBUTIONS with other software (except as part of its CONTRIBUTOR Version); or
- Under PATENT CLAIMS infringed by COVERED SOFTWARE in the absence of its CONTRIBUTIONS.
This LICENSE does not grant any rights in the trademarks, service marks, or logos of Gaussian, Inc. or any CONTRIBUTOR (except as may be necessary to comply with the notice requirements in Section 3.4).
2.4. Representation: Each CONTRIBUTOR represents that the CONTRIBUTOR believes its CONTRIBUTIONS are its original creation(s) or it has sufficient rights to grant the rights to its CONTRIBUTIONS conveyed by this LICENSE.
2.5. Fair Use: This License is not intended to limit any rights YOU have under applicable copyright doctrines of fair use, fair dealing, or other equivalents.
2.6. Conditions: Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in Section 2.1.
3. Responsibilities
3.1. Distribution of Source Form: All distribution of COVERED SOFTWARE in SOURCE CODE FORM, including any MODIFICATIONS that YOU create or to which YOU contribute, must be under the terms of this License. YOU must inform recipients that the SOURCE CODE FORM of the COVERED SOFTWARE is governed by the terms of this License, and how they can obtain a copy of this License. YOU may not attempt to alter or restrict the recipients’ rights in the SOURCE CODE FORM.
3.2. Distribution of EXECUTABLE FORM: If YOU distribute COVERED SOFTWARE in EXECUTABLE FORM, including any MODIFICATIONS that YOU create or to which YOU contribute, then:
- Such COVERED SOFTWARE must also be made available in Source Code Form, as described in Section 3.1, and YOU must inform recipients of the EXECUTABLE FORM how they can obtain a copy of such Source Code Form by reasonable means in a timely manner, at a charge no more than the cost of distribution to the recipient; and
- YOU may distribute such EXECUTABLE FORM under the terms of this License, or sublicense it under different terms, provided that the license for the EXECUTABLE FORM does not attempt to limit or alter the recipients’ rights in the SOURCE CODE FORM, including any MODIFICATIONS that YOU create or to which YOU contribute, under this License.
3.3. Notices: YOU may not remove or alter the substance of any license notices (including copyright notices, patent notices, disclaimers of warranty, or limitations of liability) contained within the SOURCE CODE FORM of the COVERED SOFTWARE, except that YOU may alter any license notices to the extent required to remedy known factual inaccuracies.
3.4. Application of Additional Terms: YOU may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of COVERED SOFTWARE. However, YOU may do so only on YOUR own behalf, and not on behalf of any CONTRIBUTOR. YOU must make it absolutely clear that any such warranty, support, indemnity, or liability obligation is offered by YOU alone, and YOU hereby agree to indemnify every CONTRIBUTOR for any liability incurred by such CONTRIBUTOR as a result of warranty, support, indemnity or liability terms YOU offer. YOU may include additional disclaimers of warranty and limitations of liability specific to any jurisdiction.
4. Inability to Comply Due to Statute or Regulation
If it is impossible for YOU to comply with any of the terms of this License with respect to some or all of the COVERED SOFTWARE due to statute, judicial order, or regulation then YOU must: (a) comply with the terms of this License to the maximum extent possible; and (b) describe the limitations and the code they affect. Such description must be placed in a text file included with all distributions of the COVERED SOFTWARE under this License. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill to be able to understand it.
5. Termination
5.1. The rights granted under this License will terminate automatically if YOU fail to comply with any of its terms. However, if YOU become compliant, then the rights granted under this License from a particular CONTRIBUTOR are reinstated (a) provisionally, unless and until such CONTRIBUTOR explicitly and finally terminates YOUR grants, and (b) on an ongoing basis, if such CONTRIBUTOR fails to notify YOU of the non-compliance by some reasonable means prior to 60 days after YOU have come back into compliance. Moreover, YOUR grants from a particular CONTRIBUTOR are reinstated on an ongoing basis if such CONTRIBUTOR notifies YOU of the non-compliance by some reasonable means, this is the first time YOU have received notice of non-compliance with this License from such CONTRIBUTOR, and YOU become compliant prior to 30 days after YOUR receipt of the notice.
5.2. If YOU initiate litigation against any entity by asserting a patent infringement claim (excluding declaratory judgment actions, counter-claims, and cross-claims) alleging that a CONTRIBUTOR VERSION directly or indirectly infringes any patent, then the rights granted to YOU by any and all CONTRIBUTORs for the COVERED SOFTWARE under Section 2.1 of this License shall terminate.
5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user license agreements (excluding distributors and resellers) which have been validly granted by YOU or YOUR distributors under this License prior to termination shall survive termination.
6. Disclaimer of Warranty
COVERED SOFTWARE is provided under this License on an “as is” basis, without warranty of any kind, either expressed, implied, or statutory, including, without limitation, warranties that the COVERED SOFTWARE is free of defects, merchantable, fit for a particular purpose or non-infringing. The entire risk as to the quality and performance of the COVERED SOFTWARE is with YOU. Should any COVERED SOFTWARE prove defective in any respect, YOU (not any CONTRIBUTOR) assume the cost of any necessary servicing, repair, or correction. This disclaimer of warranty constitutes an essential part of this License. No use of any COVERED SOFTWARE is authorized under this License except under this disclaimer.
7. Limitation of Liability
Under no circumstances and under no legal theory, whether tort (including negligence), contract, or otherwise, shall any CONTRIBUTOR, or anyone who distributes COVERED SOFTWARE as permitted above, be liable to YOU for any direct, indirect, special, incidental, or consequential damages of any character including, without limitation, damages for lost profits, loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses, even if such party shall have been informed of the possibility of such damages. This limitation of liability shall not apply to liability for death or personal injury resulting from such party’s negligence to the extent applicable law prohibits such limitation. Some jurisdictions do not allow the exclusion or limitation of incidental or consequential damages, so this exclusion and limitation may not apply to YOU.
8. Litigation
Any litigation relating to this License may be brought only in the courts of a jurisdiction where the defendant maintains its principal place of business and such litigation shall be governed by laws of that jurisdiction, without reference to its conflict-of-law provisions. Nothing in this Section shall prevent a party’s ability to bring cross-claims or counter-claims.
9. Miscellaneous
This License represents the complete agreement concerning the subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not be used to construe this License against a CONTRIBUTOR.
10. Versions of the License
This is the sole applicable version of this License. It is a modification of the Mozilla Public License version 2.0, but the Mozilla Foundation is not responsible for this version of the license and no modifications made to the Mozilla Public License apply to this contract.
Exhibit A – SOURCE CODE FORM License Notice
This source code is subject to the terms of the Gaussian Interface Code Public License, v. 1.0. A copy of this license should have been distributed with this file, but is also available on the Gaussian website, https://gaussian.com/public-licensev1.0.
If it is not possible or desirable to put the notice in a particular file, then YOU may include the notice in a location (such as a LICENSE file in a relevant directory) where a recipient would be likely to look for such a notice.
Downloads
You can download the Gaussian interfacing package here (gaussian.com/g16/gauopen_v2.zip). This is version 2 for Rev B.01; see the note for Rev A.03 below. You may need to right-click on the link to save the file in some browser configurations.
Once you unzip the archive, the resulting gauopen folder will contain descriptions of the structure of the interface files, the procedures for using them, open source code for use in interfacing, and example programs which illustrate the interfaces.
General documentation about the interfaces:
- interface.txt: Description of the interfacing methods and examples.
- unfdat.txt: Description of the matrix element file, which provides the basic interface between Gaussian and other programs.
- LICENSE.txt: Modified version of the Mozilla open source license, which applies to all files in the directory.
Routines which provide access to the files in various languages. Details about the objects, methods, and calling sequences are in the comments in each file:
- qcmatrixio.F: Low-level Fortran routines to read and write the matrix element file, used by both the Fortran and Python interfaces.
- qcmatrix.F: Higher-level interfacing routines for use in Fortran programs.
- QCMatEl.py, QCOpMat.py: Python object-oriented interface. QCOpMat.py provides an operator matrix object class for individual operator objects in the file, and QMatEl.py provides a class for the complete data file to matrix element files. Both of these use f2py to wrap the low-level Fortran routines and work with the Fortran unformatted version of the matrix element file. The matrix element file class also provides for running a Gaussian job to populate a matrix element object with additional data. Details on the objects and methods are in the comments in the files.
- MatEl.pm, OpMat.pm, GauComplex.pm: Modules which provide a Perl object-oriented interface to matrix element files. These do raw C-style read and write calls to the file and work with the raw binary form of the matrix element file.
- qc.make: Makefile which compiles the Fortran and Python interfaces and the example programs. In interface version 2, qc.makee tries to set the correct .so file name if Python 3.6 rather than 3.4 is used.
Example programs and scripts:
- readmat.F, readmat.py, readmat.pl: Simple programs to read a matrix element file and print the contents.
- writemat.F, writemat.py, writemat.pl: Simple programs which use internally stored data to create a matrix element file.
- domp2.F, domp2.py, domp2.pl: Recover orbital energies and MO integrals from the file and compute the MP2 energy.
- f2o2a.gjf, f2o2b.gjf, f2o2c.gjf, f2o2d.gjf, f2o2e.gjf, f2o2.gjf: Input files for Gaussian to produce matrix element files read by the domp2 examples.
- pyquante2-interface.py: A replacement for the one and two electron integral modules in the PyQuante2’s program which generates a minimal matrix element file from PyQuante2 data on a molecule. It runs Gaussian to add one and two electron integrals to the file, and then returns the integrals in the form used by PyQuante2.
Python library file name utility:
- cksoname: Python library file names vary considerably between Python 3.4 and 3.6, between different hardware/operating system environments, and according to the exact installation method used to install the software. This script tries to find a .so in the Python tree in order to display what a typical name looks like for the local installation. You will need to name the provided gauopen shared object file to conform to the convention in use.
Using the Current Files with Rev A.03
The files in the download archive will work normally with Rev A.03 with one exception. When running Gaussian 16 from Python, if you use any of the methods for a matrix element file object in order to update the matrix element file and run Gaussian 16—i.e., the usual method update() or the underlying rungau() or makegauinp() methods—then you need to add the Python keyword argument revision="a03" when invoking the method in order to have it generate the input file required for Rev A.03, rather than using the command-line options mechanism introduced in Rev B.01 which is now the default. You can also download the Rev A.03 build of version 1 of the interface files here.
Release History
1 June 2018: Version 2.0
This version of the interface package:
- Fixes problems in returning arrays holding complex numbers in Python as well as a problem in writing the matrix element file from Python when the object contained 2-electron integrals.
- Addresses the multiple naming conventions for Python library files by setting __version__ in Python modules.
- Provides precompiled shared libraries for the Python interface for systems lacking a Fortran compiler. See the file so.list in the zip archive for information about the appropriate file names for various Python versions in common hardware+OS environments.
25 February 2018: Version 1.1 for Gaussian 16 Rev B.01
Updated for this revision of Gaussian 16. Not compatible with Gaussian Revision A.03.
5 February 2017: Version 1.0
Initial release.
Last updated on: 1 June 2018 [G16 Rev B.01].