diff --git a/dependencies/nomad-dos-fingerprints b/dependencies/nomad-dos-fingerprints index bb633623789ee9850873ba0b16a32c66c8265558..562ae7d26fa108c7c31ebe38775c767aba1e642c 160000 --- a/dependencies/nomad-dos-fingerprints +++ b/dependencies/nomad-dos-fingerprints @@ -1 +1 @@ -Subproject commit bb633623789ee9850873ba0b16a32c66c8265558 +Subproject commit 562ae7d26fa108c7c31ebe38775c767aba1e642c diff --git a/dependencies/parsers/exciting b/dependencies/parsers/exciting index 2849061c5212de8e2845ec0c3ed96b7a7f4e67d9..7636d097167089c24ab6b9253083c0284b430cab 160000 --- a/dependencies/parsers/exciting +++ b/dependencies/parsers/exciting @@ -1 +1 @@ -Subproject commit 2849061c5212de8e2845ec0c3ed96b7a7f4e67d9 +Subproject commit 7636d097167089c24ab6b9253083c0284b430cab diff --git a/dependencies/parsers/fhi-aims b/dependencies/parsers/fhi-aims index ca7513c0e23b20d738f65b081b482e74a8d0527d..d342d8a14dc49d528fe7ca867c3f5891d8b73077 160000 --- a/dependencies/parsers/fhi-aims +++ b/dependencies/parsers/fhi-aims @@ -1 +1 @@ -Subproject commit ca7513c0e23b20d738f65b081b482e74a8d0527d +Subproject commit d342d8a14dc49d528fe7ca867c3f5891d8b73077 diff --git a/dependencies/parsers/vasp b/dependencies/parsers/vasp index ba060d7c8cb902d16e47ca382ef986662a5f3fa4..1a0c8cb0801375a78134c67f7a6d31319a338503 160000 --- a/dependencies/parsers/vasp +++ b/dependencies/parsers/vasp @@ -1 +1 @@ -Subproject commit ba060d7c8cb902d16e47ca382ef986662a5f3fa4 +Subproject commit 1a0c8cb0801375a78134c67f7a6d31319a338503 diff --git a/nomad/metainfo/metainfo.py b/nomad/metainfo/metainfo.py index eb845b4d9a15cea2871777b55863cb23797a67a1..dc7c0b04056870ba207f9e898d81cb57e828e50d 100644 --- a/nomad/metainfo/metainfo.py +++ b/nomad/metainfo/metainfo.py @@ -822,20 +822,21 @@ class MSection(metaclass=MObjectMeta): # TODO find a way to make this a subclas (quantity_def, value)) value = value.to(quantity_def.unit).magnitude - if len(quantity_def.shape) > 0 and type(value) != np.ndarray: - try: - value = np.asarray(value) - except TypeError: - raise TypeError( - 'Could not convert value %s of %s to a numpy array' % - (value, quantity_def)) - elif type(value) != quantity_def.type.type: - try: - value = quantity_def.type.type(value) - except TypeError: - raise TypeError( - 'Could not convert value %s of %s to a numpy scalar' % - (value, quantity_def)) + if type(value) != np.ndarray: + if len(quantity_def.shape) > 0: + try: + value = np.asarray(value) + except TypeError: + raise TypeError( + 'Could not convert value %s of %s to a numpy array' % + (value, quantity_def)) + elif type(value) != quantity_def.type.type: + try: + value = quantity_def.type.type(value) + except TypeError: + raise TypeError( + 'Could not convert value %s of %s to a numpy scalar' % + (value, quantity_def)) return self.__check_np(quantity_def, value) diff --git a/nomad/normalizing/band_structure.py b/nomad/normalizing/band_structure.py index 2d68a8ca6f555517b4ce6718b2a7e36f01cbdb15..b001a89f7306e758d335d3fcde30c91ff92c4b16 100644 --- a/nomad/normalizing/band_structure.py +++ b/nomad/normalizing/band_structure.py @@ -52,12 +52,29 @@ class BandStructureNormalizer(Normalizer): system = scc.single_configuration_calculation_to_system_ref for band in scc.section_k_band: - if band.band_structure_kind != "vibrational": + valid_band = self.validate_band(band) + if valid_band: self.add_reciprocal_cell(band, system) self.add_brillouin_zone(band) self.add_band_gaps(band, energy_reference) self.add_path_labels(band, system) + def validate_band(self, band: section_k_band) -> bool: + """Used to check that a band has all required information for normalization. + """ + if band.band_structure_kind == "vibrational": + return False + if len(band.section_k_band_segment) == 0: + self.logger.info("Could not normalize band structure as band segments are missing.") + return False + for segment in band.section_k_band_segment: + seg_k_points = segment.band_k_points + seg_energies = segment.band_energies + if seg_k_points is None or seg_energies is None: + self.logger.info("Could not normalize band structure as energies or k points are missing.") + return False + return True + def add_reciprocal_cell(self, band: section_k_band, system: section_system): """A reciprocal cell for this calculation. If the original unit cell is not a primitive one, then we will use the one given by spglib. @@ -143,21 +160,12 @@ class BandStructureNormalizer(Normalizer): # Gather the energies and k points from each segment into one big # array reciprocal_cell = reciprocal_cell.magnitude - valence_band_maximum = energy_reference.magnitude path: np.array = [] energies: np.array = [] for segment in band.section_k_band_segment: - try: - seg_k_points = segment.band_k_points - seg_energies = segment.band_energies - except Exception: - return - if seg_k_points is None or seg_energies is None: - self.logger.info("Could not resolve band gaps as energies or k points are missing.") - return - else: - seg_energies = seg_energies.magnitude - + seg_k_points = segment.band_k_points + seg_energies = segment.band_energies + seg_energies = seg_energies.magnitude seg_energies = np.swapaxes(seg_energies, 1, 2) path.append(seg_k_points) energies.append(seg_energies) @@ -168,10 +176,7 @@ class BandStructureNormalizer(Normalizer): # Handle spin channels separately to find gaps for spin up and down n_channels = energies.shape[0] # pylint: disable=E1136 # pylint/issues/3139 for channel in range(n_channels): - if n_channels == 1: - vbm = valence_band_maximum - else: - vbm = valence_band_maximum[channel] + eref = energy_reference.magnitude[channel] channel_energies = energies[channel, :, :] lower_defined = False upper_defined = False @@ -194,17 +199,17 @@ class BandStructureNormalizer(Normalizer): # If any of the bands band crosses the Fermi level, there is no # band gap - if band_min_tol <= vbm and band_max_tol >= vbm: + if band_min_tol <= eref and band_max_tol >= eref: break # Whole band below Fermi level, save the current highest # occupied band point - elif band_min_tol <= vbm and band_max_tol <= vbm: + elif band_min_tol <= eref and band_max_tol <= eref: gap_lower_energy = band_max gap_lower_idx = band_maxima_idx[band_idx] lower_defined = True # Whole band above Fermi level, save the current lowest # unoccupied band point - elif band_min_tol >= vbm: + elif band_min_tol >= eref: gap_upper_energy = band_min gap_upper_idx = band_minima_idx[band_idx] upper_defined = True @@ -280,12 +285,6 @@ class BandStructureNormalizer(Normalizer): # parser are overridden, because one cannot ascertain that those labels # are consistent across codes. for segment in band.section_k_band_segment: - - seg_k_points = segment.band_k_points - if seg_k_points is None: - self.logger.info("Could not resolve band path as k points are missing.") - return - start_point_cartesian = np.dot(segment.band_k_points[0], reciprocal_cell_trans) end_point_cartesian = np.dot(segment.band_k_points[-1], reciprocal_cell_trans) diff --git a/nomad/normalizing/dos.py b/nomad/normalizing/dos.py index 5e351f528a3bbfdb3add3c6a644db62b29135cff..10b0633e547f91a6856dda5735d3eb2d5f71e5cc 100644 --- a/nomad/normalizing/dos.py +++ b/nomad/normalizing/dos.py @@ -14,8 +14,8 @@ import numpy as np +from nomad import config from nomad_dos_fingerprints import DOSFingerprint - from nomad.datamodel.metainfo.public import section_dos_fingerprint from nomad.atomutils import get_volume @@ -45,15 +45,16 @@ class DosNormalizer(Normalizer): for dos in section_dos: dos_values = dos.dos_values - if dos_values is None: - # section dos without dos_values + dos_energies = dos.dos_energies + energy_reference_fermi = scc.energy_reference_fermi + if dos_energies is None or dos_values is None or energy_reference_fermi is None: continue + # Normalize DOS values to be 1/J/atom/m^3 system = scc.single_configuration_calculation_to_system_ref if system is None: self.logger.error('referenced system for dos calculation could not be found') continue - atom_positions = system.atom_positions lattice_vectors = system.lattice_vectors if atom_positions is None: @@ -62,25 +63,75 @@ class DosNormalizer(Normalizer): if lattice_vectors is None: self.logger.error('required quantity lattice_vectors is not available') return - number_of_atoms = np.shape(atom_positions)[0] unit_cell_volume = get_volume(lattice_vectors.magnitude) - - # Final quantities - dos_normed = dos_values / (number_of_atoms * unit_cell_volume) + dos_values_normalized = dos_values / (number_of_atoms * unit_cell_volume) + + # Normalize energies so that they are normalized to HOMO. + i_channel = 0 + fermi_energy = energy_reference_fermi[i_channel] + fermi_idx = (np.abs(dos_energies - fermi_energy)).argmin() + energy_threshold = config.normalize.band_structure_energy_tolerance + value_threshold = 1e-8 # The DOS value that is considered to be zero + homo_found = False + zero_found = False + energy_reference = fermi_energy + + # Walk through the energies in descencing direction to see if a + # gap is nearby (see energy_threshold). If gap found, continue + # until HOMO found + idx = fermi_idx + while True: + try: + value = dos_values_normalized[i_channel, idx] + energy_distance = fermi_energy - dos_energies[idx] + except IndexError: + break + if energy_distance.magnitude > energy_threshold and not zero_found: + break + if value <= value_threshold: + zero_found = True + if zero_found and value > value_threshold: + energy_reference = dos_energies[idx + 1] + homo_found = True + break + idx -= 1 + # If gap was not found in descending direction, check the + # ascending direction for a nearby (see energy_threshold) HOMO + # value + if not homo_found: + idx = fermi_idx + 1 + while True: + try: + value = dos_values_normalized[i_channel, idx] + energy_distance = dos_energies[idx] - fermi_energy + except IndexError: + break + if energy_distance.magnitude > energy_threshold: + break + if value <= value_threshold: + energy_reference = dos_energies[idx] + break + idx += 1 + + dos_energies_normalized = dos_energies - energy_reference # Data for DOS fingerprint dos_fingerprint = None try: - dos_energies = dos.dos_energies - dos_fingerprint = DOSFingerprint().calculate(np.array(dos_energies), dos_values) + dos_fingerprint = DOSFingerprint().calculate( + dos_energies_normalized.magnitude, + dos_values_normalized, + n_atoms=number_of_atoms + ) except Exception as e: self.logger.error('could not generate dos fingerprint', exc_info=e) # Add quantities to NOMAD's Metainfo scc_url = '/section_run/0/section_single_configuration_calculation/%d/section_dos/0' % scc.m_parent_index self._backend.openContext(scc_url) - dos.dos_values_normalized = dos_normed + dos.dos_values_normalized = dos_values_normalized + dos.dos_energies_normalized = dos_energies_normalized if dos_fingerprint is not None: sec_dos_fingerprint = dos.m_create(section_dos_fingerprint) sec_dos_fingerprint.bins = dos_fingerprint.bins diff --git a/ops/helm/nomad/templates/gui-deployment.yml b/ops/helm/nomad/templates/gui-deployment.yml index 0a50d737bfd49c416f3f327aa3d8b769bd7c6078..35955e501f6ab5eae93b2d3dfedee4bf53e4b9bb 100644 --- a/ops/helm/nomad/templates/gui-deployment.yml +++ b/ops/helm/nomad/templates/gui-deployment.yml @@ -18,6 +18,11 @@ data: proxy_read_timeout {{ .Values.proxy.timeout }}; {{ if .Values.gui.gzip }} + gzip_min_length 1000; + gzip_buffers 4 8k; + gzip_http_version 1.0; + gzip_disable "msie6"; + gzip_vary on; gzip on; gzip_proxied any; gzip_types diff --git a/requirements.txt b/requirements.txt index fa51b5f2e78ef0e56490f0f5a146c0082adaaab5..52b8d6f72995a7341ea22ced2182b977588f8e9c 100644 --- a/requirements.txt +++ b/requirements.txt @@ -35,7 +35,7 @@ parmed==3.0.0 mdtraj mdanalysis nomadcore -nomadDOSfingerprints +nomad_dos_fingerprints # [infrastructure] optimade diff --git a/tests/data/normalizers/dos/dos_si_exciting/INFO.OUT b/tests/data/normalizers/dos/dos_si_exciting/INFO.OUT new file mode 100644 index 0000000000000000000000000000000000000000..68ac32ca5c62e357608f0142959cfca2a8697aa6 --- /dev/null +++ b/tests/data/normalizers/dos/dos_si_exciting/INFO.OUT @@ -0,0 +1,518 @@ +================================================================================ +| EXCITING CARBON started = +| version hash id: 73900701ef032aa97aeb07ce43a791d723614420 = +| MPI version using 16 processor(s) = +| = +| Date (DD-MM-YYYY) : 21-12-2017 = +| Time (hh:mm:ss) : 12:56:13 = +| = +| All units are atomic (Hartree, Bohr, etc.) = +================================================================================ + +******************************************************************************** +| Ground-state run starting from atomic densities * +******************************************************************************** + +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +| Starting initialization + +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + + Lattice vectors (cartesian) : + 5.1315533366 5.1315533366 0.0000000000 + 5.1315533366 0.0000000000 5.1315533366 + 0.0000000000 5.1315533366 5.1315533366 + + Reciprocal lattice vectors (cartesian) : + 0.6122108546 0.6122108546 -0.6122108546 + 0.6122108546 -0.6122108546 0.6122108546 + -0.6122108546 0.6122108546 0.6122108546 + + Unit cell volume : 270.2567422984 + Brillouin zone volume : 0.9178317304 + + Species : 1 (Si) + parameters loaded from : Si.xml + name : silicon + nuclear charge : -14.00000000 + electronic charge : 14.00000000 + atomic mass : 51196.73454000 + muffin-tin radius : 2.10000000 + # of radial points in muffin-tin : 300 + + atomic positions (lattice) : + 1 : 0.00000000 0.00000000 0.00000000 + 2 : 0.25000000 0.25000000 0.25000000 + + Total number of atoms per unit cell : 2 + + Spin treatment : spin-unpolarised + + Number of Bravais lattice symmetries : 48 + Number of crystal symmetries : 48 + + k-point grid : 8 8 8 + Total number of k-points : 29 + k-point set is reduced with crystal symmetries + + R^MT_min * |G+k|_max (rgkmax) : 12.00000000 + Species with R^MT_min : 1 (Si) + Maximum |G+k| for APW functions : 5.71428571 + Maximum |G| for potential and density : 22.00000000 + + G-vector grid sizes : 54 54 54 + Total number of G-vectors : 48671 + + Maximum angular momentum used for + APW functions : 12 + computing H and O matrix elements : 12 + potential and density : 12 + inner part of muffin-tin : 2 + + Total nuclear charge : -28.00000000 + Total electronic charge : 28.00000000 + Total core charge : 20.00000000 + Total valence charge : 8.00000000 + + Number of empty states : 5 + Total number of valence states : 10 + + Maximum Hamiltonian size : 893 + Maximum number of plane-waves : 877 + Total number of local-orbitals : 16 + + Exchange-correlation type : 3 + Perdew-Wang, Phys. Rev. B 45, 13244 (1992) + + Smearing scheme : Gaussian + Smearing width : 0.00100000 + + Using multisecant Broyden potential mixing + +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +| Ending initialization + +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + +******************************************************************************** +| Groundstate module started * +******************************************************************************** + Output level for this task is set to normal + +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +| Self-consistent loop started + +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + Density and potential initialised from atomic data + + +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +| SCF iteration number : 1 + +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + Total energy : -578.99539516 + _______________________________________________________________ + Fermi energy : 0.18580054 + Kinetic energy : 578.46435259 + Coulomb energy : -1117.73566961 + Exchange energy : -37.57679759 + Correlation energy : -2.14728054 + + DOS at Fermi energy (states/Ha/cell) : 0.00000000 + + Electron charges : + core : 20.00000000 + core leakage : 0.00463598 + valence : 8.00000000 + interstitial : 3.80904070 + charge in muffin-tin spheres : + atom 1 Si : 12.09547965 + atom 2 Si : 12.09547965 + total charge in muffin-tins : 24.19095930 + total charge : 28.00000000 + + Estimated fundamental gap : 0.03462909 + valence-band maximum at 1 0.0000 0.0000 0.0000 + conduction-band minimum at 18 0.3750 0.3750 0.0000 + + Wall time (seconds) : 3.63 + +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +| SCF iteration number : 2 + +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + Total energy : -578.60032358 + _______________________________________________________________ + Fermi energy : 0.18990164 + Kinetic energy : 578.72795867 + Coulomb energy : -1117.61887580 + Exchange energy : -37.56280618 + Correlation energy : -2.14660028 + + DOS at Fermi energy (states/Ha/cell) : 0.00000000 + + Electron charges : + core : 20.00000000 + core leakage : 0.00464369 + valence : 8.00000000 + interstitial : 3.84213670 + charge in muffin-tin spheres : + atom 1 Si : 12.07893165 + atom 2 Si : 12.07893165 + total charge in muffin-tins : 24.15786330 + total charge : 28.00000000 + + Estimated fundamental gap : 0.02953903 + valence-band maximum at 1 0.0000 0.0000 0.0000 + conduction-band minimum at 18 0.3750 0.3750 0.0000 + + Wall time (seconds) : 5.61 + + RMS change in effective potential (target) : 0.265221E-01 ( 0.100000E-05) + Absolute change in total energy (target) : 0.395072 ( 0.100000E-05) + Charge distance (target) : 0.304247E-02 ( 0.100000E-04) + +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +| SCF iteration number : 3 + +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + Total energy : -578.34251663 + _______________________________________________________________ + Fermi energy : 0.19281130 + Kinetic energy : 578.90508188 + Coulomb energy : -1117.54793205 + Exchange energy : -37.55354259 + Correlation energy : -2.14612387 + + DOS at Fermi energy (states/Ha/cell) : 0.00000000 + + Electron charges : + core : 20.00000000 + core leakage : 0.00464340 + valence : 8.00000000 + interstitial : 3.86637515 + charge in muffin-tin spheres : + atom 1 Si : 12.06681242 + atom 2 Si : 12.06681242 + total charge in muffin-tins : 24.13362485 + total charge : 28.00000000 + + Estimated fundamental gap : 0.02578522 + valence-band maximum at 1 0.0000 0.0000 0.0000 + conduction-band minimum at 18 0.3750 0.3750 0.0000 + + Wall time (seconds) : 7.63 + + RMS change in effective potential (target) : 0.181777E-01 ( 0.100000E-05) + Absolute change in total energy (target) : 0.257807 ( 0.100000E-05) + Charge distance (target) : 0.223963E-02 ( 0.100000E-04) + +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +| SCF iteration number : 4 + +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + Total energy : -578.21265139 + _______________________________________________________________ + Fermi energy : 0.19664897 + Kinetic energy : 579.02996575 + Coulomb energy : -1117.55023548 + Exchange energy : -37.54682191 + Correlation energy : -2.14555976 + + DOS at Fermi energy (states/Ha/cell) : 0.00000000 + + Electron charges : + core : 20.00000000 + core leakage : 0.00459227 + valence : 8.00000000 + interstitial : 3.90179540 + charge in muffin-tin spheres : + atom 1 Si : 12.04910230 + atom 2 Si : 12.04910230 + total charge in muffin-tins : 24.09820460 + total charge : 28.00000000 + + Estimated fundamental gap : 0.01972886 + valence-band maximum at 1 0.0000 0.0000 0.0000 + conduction-band minimum at 18 0.3750 0.3750 0.0000 + + Wall time (seconds) : 9.67 + + RMS change in effective potential (target) : 0.135591E-02 ( 0.100000E-05) + Absolute change in total energy (target) : 0.129865 ( 0.100000E-05) + Charge distance (target) : 0.355450E-02 ( 0.100000E-04) + +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +| SCF iteration number : 5 + +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + Total energy : -578.06620753 + _______________________________________________________________ + Fermi energy : 0.19731255 + Kinetic energy : 579.10108115 + Coulomb energy : -1117.48037932 + Exchange energy : -37.54151411 + Correlation energy : -2.14539525 + + DOS at Fermi energy (states/Ha/cell) : 0.00000000 + + Electron charges : + core : 20.00000000 + core leakage : 0.00460953 + valence : 8.00000000 + interstitial : 3.90717496 + charge in muffin-tin spheres : + atom 1 Si : 12.04641252 + atom 2 Si : 12.04641252 + total charge in muffin-tins : 24.09282504 + total charge : 28.00000000 + + Estimated fundamental gap : 0.01909953 + valence-band maximum at 1 0.0000 0.0000 0.0000 + conduction-band minimum at 18 0.3750 0.3750 0.0000 + + Wall time (seconds) : 11.70 + + RMS change in effective potential (target) : 0.188867E-03 ( 0.100000E-05) + Absolute change in total energy (target) : 0.146444 ( 0.100000E-05) + Charge distance (target) : 0.493571E-03 ( 0.100000E-04) + +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +| SCF iteration number : 6 + +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + Total energy : -578.08087905 + _______________________________________________________________ + Fermi energy : 0.19732964 + Kinetic energy : 579.10013069 + Coulomb energy : -1117.49333315 + Exchange energy : -37.54226716 + Correlation energy : -2.14540942 + + DOS at Fermi energy (states/Ha/cell) : 0.00000000 + + Electron charges : + core : 20.00000000 + core leakage : 0.00460715 + valence : 8.00000000 + interstitial : 3.90716015 + charge in muffin-tin spheres : + atom 1 Si : 12.04641992 + atom 2 Si : 12.04641992 + total charge in muffin-tins : 24.09283985 + total charge : 28.00000000 + + Estimated fundamental gap : 0.01908939 + valence-band maximum at 1 0.0000 0.0000 0.0000 + conduction-band minimum at 18 0.3750 0.3750 0.0000 + + Wall time (seconds) : 13.74 + + RMS change in effective potential (target) : 0.320569E-04 ( 0.100000E-05) + Absolute change in total energy (target) : 0.146715E-01 ( 0.100000E-05) + Charge distance (target) : 0.358766E-04 ( 0.100000E-04) + +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +| SCF iteration number : 7 + +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + Total energy : -578.08111835 + _______________________________________________________________ + Fermi energy : 0.19730998 + Kinetic energy : 579.09852175 + Coulomb energy : -1117.49200258 + Exchange energy : -37.54222693 + Correlation energy : -2.14541058 + + DOS at Fermi energy (states/Ha/cell) : 0.00000000 + + Electron charges : + core : 20.00000000 + core leakage : 0.00460730 + valence : 8.00000000 + interstitial : 3.90700479 + charge in muffin-tin spheres : + atom 1 Si : 12.04649760 + atom 2 Si : 12.04649760 + total charge in muffin-tins : 24.09299521 + total charge : 28.00000000 + + Estimated fundamental gap : 0.01911118 + valence-band maximum at 1 0.0000 0.0000 0.0000 + conduction-band minimum at 18 0.3750 0.3750 0.0000 + + Wall time (seconds) : 15.79 + + RMS change in effective potential (target) : 0.877025E-06 ( 0.100000E-05) + Absolute change in total energy (target) : 0.239306E-03 ( 0.100000E-05) + Charge distance (target) : 0.171280E-04 ( 0.100000E-04) + +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +| SCF iteration number : 8 + +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + Total energy : -578.08103103 + _______________________________________________________________ + Fermi energy : 0.19731007 + Kinetic energy : 579.09855880 + Coulomb energy : -1117.49195603 + Exchange energy : -37.54222333 + Correlation energy : -2.14541048 + + DOS at Fermi energy (states/Ha/cell) : 0.00000000 + + Electron charges : + core : 20.00000000 + core leakage : 0.00460731 + valence : 8.00000000 + interstitial : 3.90700812 + charge in muffin-tin spheres : + atom 1 Si : 12.04649594 + atom 2 Si : 12.04649594 + total charge in muffin-tins : 24.09299188 + total charge : 28.00000000 + + Estimated fundamental gap : 0.01911084 + valence-band maximum at 1 0.0000 0.0000 0.0000 + conduction-band minimum at 18 0.3750 0.3750 0.0000 + + Wall time (seconds) : 17.84 + + RMS change in effective potential (target) : 0.525574E-07 ( 0.100000E-05) + Absolute change in total energy (target) : 0.873253E-04 ( 0.100000E-05) + Charge distance (target) : 0.296918E-06 ( 0.100000E-04) + +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +| SCF iteration number : 9 + +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + Total energy : -578.08103675 + _______________________________________________________________ + Fermi energy : 0.19731007 + Kinetic energy : 579.09855651 + Coulomb energy : -1117.49195923 + Exchange energy : -37.54222355 + Correlation energy : -2.14541048 + + DOS at Fermi energy (states/Ha/cell) : 0.00000000 + + Electron charges : + core : 20.00000000 + core leakage : 0.00460731 + valence : 8.00000000 + interstitial : 3.90700801 + charge in muffin-tin spheres : + atom 1 Si : 12.04649599 + atom 2 Si : 12.04649599 + total charge in muffin-tins : 24.09299199 + total charge : 28.00000000 + + Estimated fundamental gap : 0.01911084 + valence-band maximum at 1 0.0000 0.0000 0.0000 + conduction-band minimum at 18 0.3750 0.3750 0.0000 + + Wall time (seconds) : 19.90 + + RMS change in effective potential (target) : 0.146207E-07 ( 0.100000E-05) + Absolute change in total energy (target) : 0.572545E-05 ( 0.100000E-05) + Charge distance (target) : 0.121193E-07 ( 0.100000E-04) + +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +| SCF iteration number : 10 + +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + Total energy : -578.08103658 + _______________________________________________________________ + Fermi energy : 0.19731007 + Kinetic energy : 579.09855658 + Coulomb energy : -1117.49195913 + Exchange energy : -37.54222355 + Correlation energy : -2.14541048 + + DOS at Fermi energy (states/Ha/cell) : 0.00000000 + + Electron charges : + core : 20.00000000 + core leakage : 0.00460731 + valence : 8.00000000 + interstitial : 3.90700802 + charge in muffin-tin spheres : + atom 1 Si : 12.04649599 + atom 2 Si : 12.04649599 + total charge in muffin-tins : 24.09299198 + total charge : 28.00000000 + + Estimated fundamental gap : 0.01911084 + valence-band maximum at 1 0.0000 0.0000 0.0000 + conduction-band minimum at 18 0.3750 0.3750 0.0000 + + Wall time (seconds) : 21.96 + + RMS change in effective potential (target) : 0.108050E-07 ( 0.100000E-05) + Absolute change in total energy (target) : 0.177496E-06 ( 0.100000E-05) + Charge distance (target) : 0.139620E-08 ( 0.100000E-04) + +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +| SCF iteration number : 11 + +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + Total energy : -578.08103658 + _______________________________________________________________ + Fermi energy : 0.19731007 + Kinetic energy : 579.09855654 + Coulomb energy : -1117.49195910 + Exchange energy : -37.54222355 + Correlation energy : -2.14541048 + + DOS at Fermi energy (states/Ha/cell) : 0.00000000 + + Electron charges : + core : 20.00000000 + core leakage : 0.00460731 + valence : 8.00000000 + interstitial : 3.90700802 + charge in muffin-tin spheres : + atom 1 Si : 12.04649599 + atom 2 Si : 12.04649599 + total charge in muffin-tins : 24.09299198 + total charge : 28.00000000 + + Estimated fundamental gap : 0.01911084 + valence-band maximum at 1 0.0000 0.0000 0.0000 + conduction-band minimum at 18 0.3750 0.3750 0.0000 + + Wall time (seconds) : 24.03 + + RMS change in effective potential (target) : 0.107049E-07 ( 0.100000E-05) + Absolute change in total energy (target) : 0.746672E-08 ( 0.100000E-05) + Charge distance (target) : 0.101315E-08 ( 0.100000E-04) + +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +| Convergency criteria checked for the last 2 iterations + +| Convergence targets achieved. Performing final SCF iteration + +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + Total energy : -578.08103637 + _______________________________________________________________ + Fermi energy : 0.19731007 + Kinetic energy : 579.09855665 + Coulomb energy : -1117.49195900 + Exchange energy : -37.54222354 + Correlation energy : -2.14541048 + + DOS at Fermi energy (states/Ha/cell) : 0.00000000 + + Electron charges : + core : 20.00000000 + core leakage : 0.00460731 + valence : 8.00000000 + interstitial : 3.90700802 + charge in muffin-tin spheres : + atom 1 Si : 12.04649599 + atom 2 Si : 12.04649599 + total charge in muffin-tins : 24.09299198 + total charge : 28.00000000 + + Estimated fundamental gap : 0.01911084 + valence-band maximum at 1 0.0000 0.0000 0.0000 + conduction-band minimum at 18 0.3750 0.3750 0.0000 + +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +| Self-consistent loop stopped + +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + STATE.OUT is written + +******************************************************************************** +| Groundstate module stopped * +******************************************************************************** + + Total time spent (seconds) : 26.21 + +================================================================================ +| EXCITING CARBON stopped = +================================================================================ diff --git a/tests/data/normalizers/dos/dos_si_exciting/dos.xml b/tests/data/normalizers/dos/dos_si_exciting/dos.xml new file mode 100644 index 0000000000000000000000000000000000000000..783539d458e1daef604ecd00ae6d9f229ef757c2 --- /dev/null +++ b/tests/data/normalizers/dos/dos_si_exciting/dos.xml @@ -0,0 +1,510 @@ +<?xml version="1.0" encoding="UTF-8"?> +<dos> + <title>Si</title> + <axis label="Energy" unit="Hartree"/> + <axis label="DOS" unit="states/Hartree/unit cell"/> + <totaldos> + <diagram type="totaldos" nspin="1"> + <point e="-0.5000000000" dos="0.000000000"/> + <point e="-0.4980000000" dos="0.000000000"/> + <point e="-0.4960000000" dos="0.000000000"/> + <point e="-0.4940000000" dos="0.000000000"/> + <point e="-0.4920000000" dos="0.000000000"/> + <point e="-0.4900000000" dos="0.000000000"/> + <point e="-0.4880000000" dos="0.000000000"/> + <point e="-0.4860000000" dos="0.000000000"/> + <point e="-0.4840000000" dos="0.000000000"/> + <point e="-0.4820000000" dos="0.000000000"/> + <point e="-0.4800000000" dos="0.000000000"/> + <point e="-0.4780000000" dos="0.000000000"/> + <point e="-0.4760000000" dos="0.000000000"/> + <point e="-0.4740000000" dos="0.000000000"/> + <point e="-0.4720000000" dos="0.000000000"/> + <point e="-0.4700000000" dos="0.000000000"/> + <point e="-0.4680000000" dos="0.000000000"/> + <point e="-0.4660000000" dos="0.000000000"/> + <point e="-0.4640000000" dos="0.000000000"/> + <point e="-0.4620000000" dos="0.000000000"/> + <point e="-0.4600000000" dos="0.000000000"/> + <point e="-0.4580000000" dos="0.000000000"/> + <point e="-0.4560000000" dos="0.000000000"/> + <point e="-0.4540000000" dos="0.000000000"/> + <point e="-0.4520000000" dos="0.000000000"/> + <point e="-0.4500000000" dos="0.1130280671E-02"/> + <point e="-0.4480000000" dos="0.7007740162E-01"/> + <point e="-0.4460000000" dos="0.4295066551"/> + <point e="-0.4440000000" dos="1.170970775"/> + <point e="-0.4420000000" dos="2.927426939"/> + <point e="-0.4400000000" dos="4.638671875"/> + <point e="-0.4380000000" dos="4.125524450"/> + <point e="-0.4360000000" dos="4.335756655"/> + <point e="-0.4340000000" dos="5.081741898"/> + <point e="-0.4320000000" dos="5.506727431"/> + <point e="-0.4300000000" dos="6.499113860"/> + <point e="-0.4280000000" dos="6.946705006"/> + <point e="-0.4260000000" dos="7.328739873"/> + <point e="-0.4240000000" dos="7.821542245"/> + <point e="-0.4220000000" dos="8.237485532"/> + <point e="-0.4200000000" dos="8.095070168"/> + <point e="-0.4180000000" dos="8.178710938"/> + <point e="-0.4160000000" dos="8.492928964"/> + <point e="-0.4140000000" dos="9.460449219"/> + <point e="-0.4120000000" dos="9.510181568"/> + <point e="-0.4100000000" dos="9.487575955"/> + <point e="-0.4080000000" dos="10.42570891"/> + <point e="-0.4060000000" dos="10.78513817"/> + <point e="-0.4040000000" dos="11.46104601"/> + <point e="-0.4020000000" dos="11.69388383"/> + <point e="-0.4000000000" dos="11.69388383"/> + <point e="-0.3980000000" dos="12.06461589"/> + <point e="-0.3960000000" dos="12.69757306"/> + <point e="-0.3940000000" dos="12.93493200"/> + <point e="-0.3920000000" dos="12.90780527"/> + <point e="-0.3900000000" dos="13.77586082"/> + <point e="-0.3880000000" dos="13.95218461"/> + <point e="-0.3860000000" dos="14.46081091"/> + <point e="-0.3840000000" dos="14.39073351"/> + <point e="-0.3820000000" dos="15.46450014"/> + <point e="-0.3800000000" dos="16.04546441"/> + <point e="-0.3780000000" dos="16.71911169"/> + <point e="-0.3760000000" dos="17.11244936"/> + <point e="-0.3740000000" dos="18.37158203"/> + <point e="-0.3720000000" dos="18.94350405"/> + <point e="-0.3700000000" dos="19.88615813"/> + <point e="-0.3680000000" dos="21.93422671"/> + <point e="-0.3660000000" dos="24.97920284"/> + <point e="-0.3640000000" dos="26.43726490"/> + <point e="-0.3620000000" dos="25.46296296"/> + <point e="-0.3600000000" dos="24.29199219"/> + <point e="-0.3580000000" dos="23.92578125"/> + <point e="-0.3560000000" dos="23.12554253"/> + <point e="-0.3540000000" dos="22.85427517"/> + <point e="-0.3520000000" dos="22.88818359"/> + <point e="-0.3500000000" dos="22.16254340"/> + <point e="-0.3480000000" dos="21.62000868"/> + <point e="-0.3460000000" dos="20.73838976"/> + <point e="-0.3440000000" dos="21.33517795"/> + <point e="-0.3420000000" dos="20.37896050"/> + <point e="-0.3400000000" dos="20.05343967"/> + <point e="-0.3380000000" dos="19.97205946"/> + <point e="-0.3360000000" dos="19.67366536"/> + <point e="-0.3340000000" dos="19.39561632"/> + <point e="-0.3320000000" dos="18.88699002"/> + <point e="-0.3300000000" dos="17.95111762"/> + <point e="-0.3280000000" dos="17.53743490"/> + <point e="-0.3260000000" dos="16.22178819"/> + <point e="-0.3240000000" dos="16.28282335"/> + <point e="-0.3220000000" dos="15.99121094"/> + <point e="-0.3200000000" dos="15.91661241"/> + <point e="-0.3180000000" dos="16.71006944"/> + <point e="-0.3160000000" dos="16.54730903"/> + <point e="-0.3140000000" dos="13.35313585"/> + <point e="-0.3120000000" dos="9.724934896"/> + <point e="-0.3100000000" dos="6.795247396"/> + <point e="-0.3080000000" dos="5.174424913"/> + <point e="-0.3060000000" dos="3.119574653"/> + <point e="-0.3040000000" dos="1.973470052"/> + <point e="-0.3020000000" dos="1.159667969"/> + <point e="-0.3000000000" dos="0.6578233507"/> + <point e="-0.2980000000" dos="0.3729926215"/> + <point e="-0.2960000000" dos="0.2034505208"/> + <point e="-0.2940000000" dos="0.8816189236E-01"/> + <point e="-0.2920000000" dos="0.1152886285"/> + <point e="-0.2900000000" dos="0.1763237847"/> + <point e="-0.2880000000" dos="0.3594292535"/> + <point e="-0.2860000000" dos="0.8477105035"/> + <point e="-0.2840000000" dos="1.559787326"/> + <point e="-0.2820000000" dos="2.651638455"/> + <point e="-0.2800000000" dos="3.906250000"/> + <point e="-0.2780000000" dos="6.740993924"/> + <point e="-0.2760000000" dos="9.528266059"/> + <point e="-0.2740000000" dos="11.67805990"/> + <point e="-0.2720000000" dos="16.08615451"/> + <point e="-0.2700000000" dos="17.65272352"/> + <point e="-0.2680000000" dos="17.08306207"/> + <point e="-0.2660000000" dos="17.69793475"/> + <point e="-0.2640000000" dos="19.29615162"/> + <point e="-0.2620000000" dos="22.41572627"/> + <point e="-0.2600000000" dos="27.86820023"/> + <point e="-0.2580000000" dos="34.83751085"/> + <point e="-0.2560000000" dos="35.15172888"/> + <point e="-0.2540000000" dos="37.78980396"/> + <point e="-0.2520000000" dos="39.45583767"/> + <point e="-0.2500000000" dos="37.85762080"/> + <point e="-0.2480000000" dos="29.68569155"/> + <point e="-0.2460000000" dos="26.11626519"/> + <point e="-0.2440000000" dos="23.81953487"/> + <point e="-0.2420000000" dos="22.19645182"/> + <point e="-0.2400000000" dos="20.29305917"/> + <point e="-0.2380000000" dos="19.29389106"/> + <point e="-0.2360000000" dos="18.13648365"/> + <point e="-0.2340000000" dos="17.26616753"/> + <point e="-0.2320000000" dos="16.48853443"/> + <point e="-0.2300000000" dos="15.62500000"/> + <point e="-0.2280000000" dos="14.91518374"/> + <point e="-0.2260000000" dos="14.05843099"/> + <point e="-0.2240000000" dos="14.10590278"/> + <point e="-0.2220000000" dos="13.42321325"/> + <point e="-0.2200000000" dos="12.48508030"/> + <point e="-0.2180000000" dos="12.24093967"/> + <point e="-0.2160000000" dos="11.87698929"/> + <point e="-0.2140000000" dos="11.18299696"/> + <point e="-0.2120000000" dos="11.22368707"/> + <point e="-0.2100000000" dos="10.52743417"/> + <point e="-0.2080000000" dos="10.53873698"/> + <point e="-0.2060000000" dos="9.914822049"/> + <point e="-0.2040000000" dos="9.700068721"/> + <point e="-0.2020000000" dos="9.101019965"/> + <point e="-0.2000000000" dos="9.039984809"/> + <point e="-0.1980000000" dos="8.587872541"/> + <point e="-0.1960000000" dos="8.456759983"/> + <point e="-0.1940000000" dos="8.015950521"/> + <point e="-0.1920000000" dos="7.984302662"/> + <point e="-0.1900000000" dos="7.683648003"/> + <point e="-0.1880000000" dos="7.541232639"/> + <point e="-0.1860000000" dos="7.312915943"/> + <point e="-0.1840000000" dos="7.025824653"/> + <point e="-0.1820000000" dos="7.012261285"/> + <point e="-0.1800000000" dos="6.560149016"/> + <point e="-0.1780000000" dos="6.618923611"/> + <point e="-0.1760000000" dos="6.144205729"/> + <point e="-0.1740000000" dos="6.044741030"/> + <point e="-0.1720000000" dos="6.198459201"/> + <point e="-0.1700000000" dos="5.920410156"/> + <point e="-0.1680000000" dos="5.712438513"/> + <point e="-0.1660000000" dos="6.469726562"/> + <point e="-0.1640000000" dos="11.25759549"/> + <point e="-0.1620000000" dos="24.93625217"/> + <point e="-0.1600000000" dos="29.42798756"/> + <point e="-0.1580000000" dos="31.66368273"/> + <point e="-0.1560000000" dos="34.34922960"/> + <point e="-0.1540000000" dos="35.93840422"/> + <point e="-0.1520000000" dos="32.19943576"/> + <point e="-0.1500000000" dos="30.76171875"/> + <point e="-0.1480000000" dos="31.20478877"/> + <point e="-0.1460000000" dos="30.72102865"/> + <point e="-0.1440000000" dos="31.46701389"/> + <point e="-0.1420000000" dos="30.84535952"/> + <point e="-0.1400000000" dos="31.54839410"/> + <point e="-0.1380000000" dos="31.29069010"/> + <point e="-0.1360000000" dos="31.05559172"/> + <point e="-0.1340000000" dos="30.49723307"/> + <point e="-0.1320000000" dos="28.90353733"/> + <point e="-0.1300000000" dos="29.79419850"/> + <point e="-0.1280000000" dos="30.78884549"/> + <point e="-0.1260000000" dos="31.94851345"/> + <point e="-0.1240000000" dos="31.52352792"/> + <point e="-0.1220000000" dos="32.30116102"/> + <point e="-0.1200000000" dos="33.75244141"/> + <point e="-0.1180000000" dos="34.96862341"/> + <point e="-0.1160000000" dos="37.15006510"/> + <point e="-0.1140000000" dos="39.86273872"/> + <point e="-0.1120000000" dos="43.41634115"/> + <point e="-0.1100000000" dos="46.23300058"/> + <point e="-0.1080000000" dos="48.06857639"/> + <point e="-0.1060000000" dos="44.41324870"/> + <point e="-0.1040000000" dos="42.42169416"/> + <point e="-0.1020000000" dos="40.51378038"/> + <point e="-0.1000000000" dos="39.72032335"/> + <point e="-0.9800000000E-01" dos="40.30354818"/> + <point e="-0.9600000000E-01" dos="39.77683738"/> + <point e="-0.9400000000E-01" dos="39.24560547"/> + <point e="-0.9200000000E-01" dos="39.29985894"/> + <point e="-0.9000000000E-01" dos="38.24869792"/> + <point e="-0.8800000000E-01" dos="38.88843678"/> + <point e="-0.8600000000E-01" dos="37.93900101"/> + <point e="-0.8400000000E-01" dos="39.14161965"/> + <point e="-0.8200000000E-01" dos="39.59599248"/> + <point e="-0.8000000000E-01" dos="38.30973307"/> + <point e="-0.7800000000E-01" dos="37.67903646"/> + <point e="-0.7600000000E-01" dos="37.14554398"/> + <point e="-0.7400000000E-01" dos="36.53067130"/> + <point e="-0.7200000000E-01" dos="35.28962312"/> + <point e="-0.7000000000E-01" dos="35.24215133"/> + <point e="-0.6800000000E-01" dos="34.05083550"/> + <point e="-0.6600000000E-01" dos="34.10961010"/> + <point e="-0.6400000000E-01" dos="33.78182870"/> + <point e="-0.6200000000E-01" dos="35.19241898"/> + <point e="-0.6000000000E-01" dos="36.97826244"/> + <point e="-0.5800000000E-01" dos="32.53399884"/> + <point e="-0.5600000000E-01" dos="28.81311487"/> + <point e="-0.5400000000E-01" dos="24.61751302"/> + <point e="-0.5200000000E-01" dos="21.69008608"/> + <point e="-0.5000000000E-01" dos="19.70757378"/> + <point e="-0.4800000000E-01" dos="18.53660301"/> + <point e="-0.4600000000E-01" dos="17.12149161"/> + <point e="-0.4400000000E-01" dos="15.32886646"/> + <point e="-0.4200000000E-01" dos="13.94992405"/> + <point e="-0.4000000000E-01" dos="12.01036241"/> + <point e="-0.3800000000E-01" dos="10.51387080"/> + <point e="-0.3600000000E-01" dos="9.428801360"/> + <point e="-0.3400000000E-01" dos="8.737069589"/> + <point e="-0.3200000000E-01" dos="8.142541956"/> + <point e="-0.3000000000E-01" dos="7.486979167"/> + <point e="-0.2800000000E-01" dos="7.468894676"/> + <point e="-0.2600000000E-01" dos="5.158600984"/> + <point e="-0.2400000000E-01" dos="4.419397425"/> + <point e="-0.2200000000E-01" dos="3.519694010"/> + <point e="-0.2000000000E-01" dos="2.617730035"/> + <point e="-0.1800000000E-01" dos="1.679597078"/> + <point e="-0.1600000000E-01" dos="0.8997034144"/> + <point e="-0.1400000000E-01" dos="0.4204644097"/> + <point e="-0.1200000000E-01" dos="0.1537181713"/> + <point e="-0.1000000000E-01" dos="0.1695421007E-01"/> + <point e="-0.8000000000E-02" dos="0.000000000"/> + <point e="-0.6000000000E-02" dos="0.000000000"/> + <point e="-0.4000000000E-02" dos="0.000000000"/> + <point e="-0.2000000000E-02" dos="0.000000000"/> + <point e="0.000000000" dos="0.000000000"/> + <point e="0.2000000000E-02" dos="0.000000000"/> + <point e="0.4000000000E-02" dos="0.000000000"/> + <point e="0.6000000000E-02" dos="0.000000000"/> + <point e="0.8000000000E-02" dos="0.000000000"/> + <point e="0.1000000000E-01" dos="0.2712673611E-01"/> + <point e="0.1200000000E-01" dos="0.2170138889"/> + <point e="0.1400000000E-01" dos="0.7052951389"/> + <point e="0.1600000000E-01" dos="2.014160156"/> + <point e="0.1800000000E-01" dos="3.085666233"/> + <point e="0.2000000000E-01" dos="4.001193576"/> + <point e="0.2200000000E-01" dos="4.191080729"/> + <point e="0.2400000000E-01" dos="5.174424913"/> + <point e="0.2600000000E-01" dos="5.669487847"/> + <point e="0.2800000000E-01" dos="6.429036458"/> + <point e="0.3000000000E-01" dos="7.337782118"/> + <point e="0.3200000000E-01" dos="8.368598090"/> + <point e="0.3400000000E-01" dos="9.446885851"/> + <point e="0.3600000000E-01" dos="10.10470920"/> + <point e="0.3800000000E-01" dos="10.86425781"/> + <point e="0.4000000000E-01" dos="12.03070747"/> + <point e="0.4200000000E-01" dos="12.94397425"/> + <point e="0.4400000000E-01" dos="13.91601562"/> + <point e="0.4600000000E-01" dos="15.49614800"/> + <point e="0.4800000000E-01" dos="17.34528718"/> + <point e="0.5000000000E-01" dos="19.07009549"/> + <point e="0.5200000000E-01" dos="20.95088252"/> + <point e="0.5400000000E-01" dos="22.90626808"/> + <point e="0.5600000000E-01" dos="25.46522352"/> + <point e="0.5800000000E-01" dos="28.17789714"/> + <point e="0.6000000000E-01" dos="29.89592376"/> + <point e="0.6200000000E-01" dos="32.32376664"/> + <point e="0.6400000000E-01" dos="38.02038122"/> + <point e="0.6600000000E-01" dos="46.04085286"/> + <point e="0.6800000000E-01" dos="52.36816406"/> + <point e="0.7000000000E-01" dos="59.58387587"/> + <point e="0.7200000000E-01" dos="62.36888744"/> + <point e="0.7400000000E-01" dos="61.08940972"/> + <point e="0.7600000000E-01" dos="59.86870660"/> + <point e="0.7800000000E-01" dos="59.43693938"/> + <point e="0.8000000000E-01" dos="64.20220269"/> + <point e="0.8200000000E-01" dos="70.30345775"/> + <point e="0.8400000000E-01" dos="60.67007559"/> + <point e="0.8600000000E-01" dos="41.00658275"/> + <point e="0.8800000000E-01" dos="32.54304109"/> + <point e="0.9000000000E-01" dos="25.94672309"/> + <point e="0.9200000000E-01" dos="19.49508102"/> + <point e="0.9400000000E-01" dos="15.25200738"/> + <point e="0.9600000000E-01" dos="12.72696036"/> + <point e="0.9800000000E-01" dos="12.44212963"/> + <point e="0.1000000000" dos="12.68174913"/> + <point e="0.1020000000" dos="14.36134621"/> + <point e="0.1040000000" dos="15.65664786"/> + <point e="0.1060000000" dos="17.95563874"/> + <point e="0.1080000000" dos="21.37021665"/> + <point e="0.1100000000" dos="25.72066696"/> + <point e="0.1120000000" dos="32.73518880"/> + <point e="0.1140000000" dos="45.61360677"/> + <point e="0.1160000000" dos="54.87060547"/> + <point e="0.1180000000" dos="74.42446108"/> + <point e="0.1200000000" dos="86.83042173"/> + <point e="0.1220000000" dos="84.35736762"/> + <point e="0.1240000000" dos="66.73629196"/> + <point e="0.1260000000" dos="52.18731916"/> + <point e="0.1280000000" dos="45.55483218"/> + <point e="0.1300000000" dos="42.29962384"/> + <point e="0.1320000000" dos="42.27475767"/> + <point e="0.1340000000" dos="44.66869213"/> + <point e="0.1360000000" dos="43.86619285"/> + <point e="0.1380000000" dos="41.23263889"/> + <point e="0.1400000000" dos="39.14614077"/> + <point e="0.1420000000" dos="39.52365451"/> + <point e="0.1440000000" dos="41.36375145"/> + <point e="0.1460000000" dos="37.39420573"/> + <point e="0.1480000000" dos="34.43965205"/> + <point e="0.1500000000" dos="32.80526620"/> + <point e="0.1520000000" dos="27.97896774"/> + <point e="0.1540000000" dos="27.42739077"/> + <point e="0.1560000000" dos="24.81644242"/> + <point e="0.1580000000" dos="24.63333695"/> + <point e="0.1600000000" dos="23.71554905"/> + <point e="0.1620000000" dos="23.18657769"/> + <point e="0.1640000000" dos="23.31769025"/> + <point e="0.1660000000" dos="22.95600043"/> + <point e="0.1680000000" dos="23.24083116"/> + <point e="0.1700000000" dos="23.14136646"/> + <point e="0.1720000000" dos="23.94612630"/> + <point e="0.1740000000" dos="25.75231481"/> + <point e="0.1760000000" dos="28.43108001"/> + <point e="0.1780000000" dos="32.49330874"/> + <point e="0.1800000000" dos="43.09082031"/> + <point e="0.1820000000" dos="44.79528356"/> + <point e="0.1840000000" dos="43.07725694"/> + <point e="0.1860000000" dos="40.75339988"/> + <point e="0.1880000000" dos="39.57790799"/> + <point e="0.1900000000" dos="34.97540509"/> + <point e="0.1920000000" dos="32.70806207"/> + <point e="0.1940000000" dos="28.92388238"/> + <point e="0.1960000000" dos="27.49972873"/> + <point e="0.1980000000" dos="26.76278573"/> + <point e="0.2000000000" dos="26.31293403"/> + <point e="0.2020000000" dos="26.12304688"/> + <point e="0.2040000000" dos="27.49972873"/> + <point e="0.2060000000" dos="27.89306641"/> + <point e="0.2080000000" dos="26.59324363"/> + <point e="0.2100000000" dos="29.44607205"/> + <point e="0.2120000000" dos="27.81168620"/> + <point e="0.2140000000" dos="25.03119575"/> + <point e="0.2160000000" dos="23.86926722"/> + <point e="0.2180000000" dos="23.64999277"/> + <point e="0.2200000000" dos="22.83619068"/> + <point e="0.2220000000" dos="23.15719039"/> + <point e="0.2240000000" dos="23.12780310"/> + <point e="0.2260000000" dos="24.58360460"/> + <point e="0.2280000000" dos="23.95064742"/> + <point e="0.2300000000" dos="26.12304688"/> + <point e="0.2320000000" dos="26.31971571"/> + <point e="0.2340000000" dos="28.69556568"/> + <point e="0.2360000000" dos="30.56504991"/> + <point e="0.2380000000" dos="32.32376664"/> + <point e="0.2400000000" dos="37.29474103"/> + <point e="0.2420000000" dos="45.54352937"/> + <point e="0.2440000000" dos="48.84847005"/> + <point e="0.2460000000" dos="48.84394893"/> + <point e="0.2480000000" dos="50.31783492"/> + <point e="0.2500000000" dos="48.88916016"/> + <point e="0.2520000000" dos="44.50141059"/> + <point e="0.2540000000" dos="39.93281612"/> + <point e="0.2560000000" dos="34.93923611"/> + <point e="0.2580000000" dos="33.04714627"/> + <point e="0.2600000000" dos="30.64416956"/> + <point e="0.2620000000" dos="29.88009983"/> + <point e="0.2640000000" dos="28.91936126"/> + <point e="0.2660000000" dos="32.50235098"/> + <point e="0.2680000000" dos="30.39550781"/> + <point e="0.2700000000" dos="30.69390191"/> + <point e="0.2720000000" dos="30.68598995"/> + <point e="0.2740000000" dos="28.93857603"/> + <point e="0.2760000000" dos="29.04143157"/> + <point e="0.2780000000" dos="32.58599175"/> + <point e="0.2800000000" dos="34.68605324"/> + <point e="0.2820000000" dos="35.55636936"/> + <point e="0.2840000000" dos="35.83441840"/> + <point e="0.2860000000" dos="37.53662109"/> + <point e="0.2880000000" dos="37.51853660"/> + <point e="0.2900000000" dos="34.80360243"/> + <point e="0.2920000000" dos="33.21894893"/> + <point e="0.2940000000" dos="32.93185764"/> + <point e="0.2960000000" dos="32.77135778"/> + <point e="0.2980000000" dos="33.35232205"/> + <point e="0.3000000000" dos="33.07879413"/> + <point e="0.3020000000" dos="31.93268953"/> + <point e="0.3040000000" dos="31.96433738"/> + <point e="0.3060000000" dos="30.08581091"/> + <point e="0.3080000000" dos="29.88462095"/> + <point e="0.3100000000" dos="29.26070602"/> + <point e="0.3120000000" dos="29.74672671"/> + <point e="0.3140000000" dos="28.88545284"/> + <point e="0.3160000000" dos="29.35564959"/> + <point e="0.3180000000" dos="29.25166377"/> + <point e="0.3200000000" dos="29.68569155"/> + <point e="0.3220000000" dos="30.40455006"/> + <point e="0.3240000000" dos="30.77076100"/> + <point e="0.3260000000" dos="30.66903573"/> + <point e="0.3280000000" dos="31.69759115"/> + <point e="0.3300000000" dos="31.66368273"/> + <point e="0.3320000000" dos="33.45630787"/> + <point e="0.3340000000" dos="35.00027127"/> + <point e="0.3360000000" dos="35.88189019"/> + <point e="0.3380000000" dos="38.05428964"/> + <point e="0.3400000000" dos="43.28974971"/> + <point e="0.3420000000" dos="41.28689236"/> + <point e="0.3440000000" dos="40.72401259"/> + <point e="0.3460000000" dos="40.62906901"/> + <point e="0.3480000000" dos="41.66892723"/> + <point e="0.3500000000" dos="42.66583478"/> + <point e="0.3520000000" dos="41.28011068"/> + <point e="0.3540000000" dos="38.94947193"/> + <point e="0.3560000000" dos="38.35720486"/> + <point e="0.3580000000" dos="37.23144531"/> + <point e="0.3600000000" dos="37.85536024"/> + <point e="0.3620000000" dos="35.75755932"/> + <point e="0.3640000000" dos="33.51508247"/> + <point e="0.3660000000" dos="33.59646267"/> + <point e="0.3680000000" dos="32.25594980"/> + <point e="0.3700000000" dos="31.49414062"/> + <point e="0.3720000000" dos="32.39836516"/> + <point e="0.3740000000" dos="29.05273438"/> + <point e="0.3760000000" dos="30.58765553"/> + <point e="0.3780000000" dos="34.75839120"/> + <point e="0.3800000000" dos="36.71603733"/> + <point e="0.3820000000" dos="27.51329210"/> + <point e="0.3840000000" dos="14.28900825"/> + <point e="0.3860000000" dos="8.199055990"/> + <point e="0.3880000000" dos="3.906250000"/> + <point e="0.3900000000" dos="1.322428385"/> + <point e="0.3920000000" dos="0.5493164062"/> + <point e="0.3940000000" dos="0.5425347222E-01"/> + <point e="0.3960000000" dos="0.000000000"/> + <point e="0.3980000000" dos="0.000000000"/> + <point e="0.4000000000" dos="0.000000000"/> + <point e="0.4020000000" dos="0.000000000"/> + <point e="0.4040000000" dos="0.000000000"/> + <point e="0.4060000000" dos="0.000000000"/> + <point e="0.4080000000" dos="0.000000000"/> + <point e="0.4100000000" dos="0.000000000"/> + <point e="0.4120000000" dos="0.000000000"/> + <point e="0.4140000000" dos="0.000000000"/> + <point e="0.4160000000" dos="0.000000000"/> + <point e="0.4180000000" dos="0.000000000"/> + <point e="0.4200000000" dos="0.000000000"/> + <point e="0.4220000000" dos="0.000000000"/> + <point e="0.4240000000" dos="0.000000000"/> + <point e="0.4260000000" dos="0.000000000"/> + <point e="0.4280000000" dos="0.000000000"/> + <point e="0.4300000000" dos="0.000000000"/> + <point e="0.4320000000" dos="0.000000000"/> + <point e="0.4340000000" dos="0.000000000"/> + <point e="0.4360000000" dos="0.000000000"/> + <point e="0.4380000000" dos="0.000000000"/> + <point e="0.4400000000" dos="0.000000000"/> + <point e="0.4420000000" dos="0.000000000"/> + <point e="0.4440000000" dos="0.000000000"/> + <point e="0.4460000000" dos="0.000000000"/> + <point e="0.4480000000" dos="0.000000000"/> + <point e="0.4500000000" dos="0.000000000"/> + <point e="0.4520000000" dos="0.000000000"/> + <point e="0.4540000000" dos="0.000000000"/> + <point e="0.4560000000" dos="0.000000000"/> + <point e="0.4580000000" dos="0.000000000"/> + <point e="0.4600000000" dos="0.000000000"/> + <point e="0.4620000000" dos="0.000000000"/> + <point e="0.4640000000" dos="0.000000000"/> + <point e="0.4660000000" dos="0.000000000"/> + <point e="0.4680000000" dos="0.000000000"/> + <point e="0.4700000000" dos="0.000000000"/> + <point e="0.4720000000" dos="0.000000000"/> + <point e="0.4740000000" dos="0.000000000"/> + <point e="0.4760000000" dos="0.000000000"/> + <point e="0.4780000000" dos="0.000000000"/> + <point e="0.4800000000" dos="0.000000000"/> + <point e="0.4820000000" dos="0.000000000"/> + <point e="0.4840000000" dos="0.000000000"/> + <point e="0.4860000000" dos="0.000000000"/> + <point e="0.4880000000" dos="0.000000000"/> + <point e="0.4900000000" dos="0.000000000"/> + <point e="0.4920000000" dos="0.000000000"/> + <point e="0.4940000000" dos="0.000000000"/> + <point e="0.4960000000" dos="0.000000000"/> + <point e="0.4980000000" dos="0.000000000"/> + </diagram> + </totaldos> +</dos> diff --git a/tests/data/normalizers/dos/dos_si_fhiaims/KS_DOS_total.dat b/tests/data/normalizers/dos/dos_si_fhiaims/KS_DOS_total.dat new file mode 100644 index 0000000000000000000000000000000000000000..eaf63fc59c32077774165e5d53ac7ecf121031ef --- /dev/null +++ b/tests/data/normalizers/dos/dos_si_fhiaims/KS_DOS_total.dat @@ -0,0 +1,10003 @@ +# total density of states output by FHI-aims +# The energy reference for this output is the average chemical potential, mu = -5.537231 eV +# Energy (eV) DOS + -14.46276874 0.00000000 + -14.45876834 0.00000000 + -14.45476794 0.00000000 + -14.45076754 0.00000000 + -14.44676714 0.00000000 + -14.44276674 0.00000000 + -14.43876634 0.00000000 + -14.43476594 0.00000000 + -14.43076554 0.00000000 + -14.42676514 0.00000000 + -14.42276474 0.00000000 + -14.41876434 0.00000000 + -14.41476394 0.00000000 + -14.41076354 0.00000000 + -14.40676314 0.00000000 + -14.40276274 0.00000000 + -14.39876234 0.00000000 + -14.39476194 0.00000000 + -14.39076154 0.00000000 + -14.38676114 0.00000000 + -14.38276074 0.00000000 + -14.37876034 0.00000000 + -14.37475994 0.00000000 + -14.37075954 0.00000000 + -14.36675914 0.00000000 + -14.36275874 0.00000000 + -14.35875834 0.00000000 + -14.35475794 0.00000000 + -14.35075754 0.00000000 + -14.34675714 0.00000000 + -14.34275674 0.00000000 + -14.33875634 0.00000000 + -14.33475594 0.00000000 + -14.33075554 0.00000000 + -14.32675514 0.00000000 + -14.32275474 0.00000000 + -14.31875434 0.00000000 + -14.31475394 0.00000000 + -14.31075354 0.00000000 + -14.30675314 0.00000000 + -14.30275274 0.00000000 + -14.29875234 0.00000000 + -14.29475194 0.00000000 + -14.29075154 0.00000000 + -14.28675114 0.00000000 + -14.28275074 0.00000000 + -14.27875034 0.00000000 + -14.27474994 0.00000000 + -14.27074954 0.00000000 + -14.26674914 0.00000000 + -14.26274874 0.00000000 + -14.25874834 0.00000000 + -14.25474794 0.00000000 + -14.25074754 0.00000000 + -14.24674714 0.00000000 + -14.24274674 0.00000000 + -14.23874634 0.00000000 + -14.23474594 0.00000000 + -14.23074554 0.00000000 + -14.22674514 0.00000000 + -14.22274474 0.00000000 + -14.21874434 0.00000000 + -14.21474394 0.00000000 + -14.21074354 0.00000000 + -14.20674314 0.00000000 + -14.20274274 0.00000000 + -14.19874234 0.00000000 + -14.19474194 0.00000000 + -14.19074154 0.00000000 + -14.18674114 0.00000000 + -14.18274074 0.00000000 + -14.17874034 0.00000000 + -14.17473994 0.00000000 + -14.17073954 0.00000000 + -14.16673914 0.00000000 + -14.16273874 0.00000000 + -14.15873834 0.00000000 + -14.15473794 0.00000000 + -14.15073754 0.00000000 + -14.14673714 0.00000000 + -14.14273674 0.00000000 + -14.13873634 0.00000000 + -14.13473594 0.00000000 + -14.13073554 0.00000000 + -14.12673514 0.00000000 + -14.12273474 0.00000000 + -14.11873434 0.00000000 + -14.11473394 0.00000000 + -14.11073354 0.00000000 + -14.10673314 0.00000000 + -14.10273274 0.00000000 + -14.09873234 0.00000000 + -14.09473194 0.00000000 + -14.09073154 0.00000000 + -14.08673114 0.00000000 + -14.08273074 0.00000000 + -14.07873034 0.00000000 + -14.07472994 0.00000000 + -14.07072954 0.00000000 + -14.06672914 0.00000000 + -14.06272874 0.00000000 + -14.05872834 0.00000000 + -14.05472794 0.00000000 + -14.05072754 0.00000000 + -14.04672714 0.00000000 + -14.04272674 0.00000000 + -14.03872634 0.00000000 + -14.03472594 0.00000000 + -14.03072554 0.00000000 + -14.02672514 0.00000000 + -14.02272474 0.00000000 + -14.01872434 0.00000000 + -14.01472394 0.00000000 + -14.01072354 0.00000000 + -14.00672314 0.00000000 + -14.00272274 0.00000000 + -13.99872234 0.00000000 + -13.99472194 0.00000000 + -13.99072154 0.00000000 + -13.98672114 0.00000000 + -13.98272074 0.00000000 + -13.97872034 0.00000000 + -13.97471994 0.00000000 + -13.97071954 0.00000000 + -13.96671914 0.00000000 + -13.96271874 0.00000000 + -13.95871834 0.00000000 + -13.95471794 0.00000000 + -13.95071754 0.00000000 + -13.94671714 0.00000000 + -13.94271674 0.00000000 + -13.93871634 0.00000000 + -13.93471594 0.00000000 + -13.93071554 0.00000000 + -13.92671514 0.00000000 + -13.92271474 0.00000000 + -13.91871434 0.00000000 + -13.91471394 0.00000000 + -13.91071354 0.00000000 + -13.90671314 0.00000000 + -13.90271274 0.00000000 + -13.89871234 0.00000000 + -13.89471194 0.00000000 + -13.89071154 0.00000000 + -13.88671114 0.00000000 + -13.88271074 0.00000000 + -13.87871034 0.00000000 + -13.87470994 0.00000000 + -13.87070954 0.00000000 + -13.86670914 0.00000000 + -13.86270874 0.00000000 + -13.85870834 0.00000000 + -13.85470794 0.00000000 + -13.85070754 0.00000000 + -13.84670714 0.00000000 + -13.84270674 0.00000000 + -13.83870634 0.00000000 + -13.83470594 0.00000000 + -13.83070554 0.00000000 + -13.82670514 0.00000000 + -13.82270474 0.00000000 + -13.81870434 0.00000000 + -13.81470394 0.00000000 + -13.81070354 0.00000000 + -13.80670314 0.00000000 + -13.80270274 0.00000000 + -13.79870234 0.00000000 + -13.79470194 0.00000000 + -13.79070154 0.00000000 + -13.78670114 0.00000000 + -13.78270074 0.00000000 + -13.77870034 0.00000000 + -13.77469994 0.00000000 + -13.77069954 0.00000000 + -13.76669914 0.00000000 + -13.76269874 0.00000000 + -13.75869834 0.00000000 + -13.75469794 0.00000000 + -13.75069754 0.00000000 + -13.74669714 0.00000000 + -13.74269674 0.00000000 + -13.73869634 0.00000000 + -13.73469594 0.00000000 + -13.73069554 0.00000000 + -13.72669514 0.00000000 + -13.72269474 0.00000000 + -13.71869434 0.00000000 + -13.71469394 0.00000000 + -13.71069354 0.00000000 + -13.70669314 0.00000000 + -13.70269274 0.00000000 + -13.69869234 0.00000000 + -13.69469194 0.00000000 + -13.69069154 0.00000000 + -13.68669114 0.00000000 + -13.68269074 0.00000000 + -13.67869033 0.00000000 + -13.67468993 0.00000000 + -13.67068953 0.00000000 + -13.66668913 0.00000000 + -13.66268873 0.00000000 + -13.65868833 0.00000000 + -13.65468793 0.00000000 + -13.65068753 0.00000000 + -13.64668713 0.00000000 + -13.64268673 0.00000000 + -13.63868633 0.00000000 + -13.63468593 0.00000000 + -13.63068553 0.00000000 + -13.62668513 0.00000000 + -13.62268473 0.00000000 + -13.61868433 0.00000000 + -13.61468393 0.00000000 + -13.61068353 0.00000000 + -13.60668313 0.00000000 + -13.60268273 0.00000000 + -13.59868233 0.00000000 + -13.59468193 0.00000000 + -13.59068153 0.00000000 + -13.58668113 0.00000000 + -13.58268073 0.00000000 + -13.57868033 0.00000000 + -13.57467993 0.00000000 + -13.57067953 0.00000000 + -13.56667913 0.00000000 + -13.56267873 0.00000000 + -13.55867833 0.00000000 + -13.55467793 0.00000000 + -13.55067753 0.00000000 + -13.54667713 0.00000000 + -13.54267673 0.00000000 + -13.53867633 0.00000000 + -13.53467593 0.00000000 + -13.53067553 0.00000000 + -13.52667513 0.00000000 + -13.52267473 0.00000000 + -13.51867433 0.00000000 + -13.51467393 0.00000000 + -13.51067353 0.00000000 + -13.50667313 0.00000000 + -13.50267273 0.00000000 + -13.49867233 0.00000000 + -13.49467193 0.00000000 + -13.49067153 0.00000000 + -13.48667113 0.00000000 + -13.48267073 0.00000000 + -13.47867033 0.00000000 + -13.47466993 0.00000000 + -13.47066953 0.00000000 + -13.46666913 0.00000000 + -13.46266873 0.00000000 + -13.45866833 0.00000000 + -13.45466793 0.00000000 + -13.45066753 0.00000000 + -13.44666713 0.00000000 + -13.44266673 0.00000000 + -13.43866633 0.00000000 + -13.43466593 0.00000000 + -13.43066553 0.00000000 + -13.42666513 0.00000000 + -13.42266473 0.00000000 + -13.41866433 0.00000000 + -13.41466393 0.00000000 + -13.41066353 0.00000000 + -13.40666313 0.00000000 + -13.40266273 0.00000000 + -13.39866233 0.00000000 + -13.39466193 0.00000000 + -13.39066153 0.00000000 + -13.38666113 0.00000000 + -13.38266073 0.00000000 + -13.37866033 0.00000000 + -13.37465993 0.00000000 + -13.37065953 0.00000000 + -13.36665913 0.00000000 + -13.36265873 0.00000000 + -13.35865833 0.00000000 + -13.35465793 0.00000000 + -13.35065753 0.00000000 + -13.34665713 0.00000000 + -13.34265673 0.00000000 + -13.33865633 0.00000000 + -13.33465593 0.00000000 + -13.33065553 0.00000000 + -13.32665513 0.00000000 + -13.32265473 0.00000000 + -13.31865433 0.00000000 + -13.31465393 0.00000000 + -13.31065353 0.00000000 + -13.30665313 0.00000000 + -13.30265273 0.00000000 + -13.29865233 0.00000000 + -13.29465193 0.00000000 + -13.29065153 0.00000000 + -13.28665113 0.00000000 + -13.28265073 0.00000000 + -13.27865033 0.00000000 + -13.27464993 0.00000000 + -13.27064953 0.00000000 + -13.26664913 0.00000000 + -13.26264873 0.00000000 + -13.25864833 0.00000000 + -13.25464793 0.00000000 + -13.25064753 0.00000000 + -13.24664713 0.00000000 + -13.24264673 0.00000000 + -13.23864633 0.00000000 + -13.23464593 0.00000000 + -13.23064553 0.00000000 + -13.22664513 0.00000000 + -13.22264473 0.00000000 + -13.21864433 0.00000000 + -13.21464393 0.00000000 + -13.21064353 0.00000000 + -13.20664313 0.00000000 + -13.20264273 0.00000000 + -13.19864233 0.00000000 + -13.19464193 0.00000000 + -13.19064153 0.00000000 + -13.18664113 0.00000000 + -13.18264073 0.00000000 + -13.17864033 0.00000000 + -13.17463993 0.00000000 + -13.17063953 0.00000000 + -13.16663913 0.00000000 + -13.16263873 0.00000000 + -13.15863833 0.00000000 + -13.15463793 0.00000000 + -13.15063753 0.00000000 + -13.14663713 0.00000000 + -13.14263673 0.00000000 + -13.13863633 0.00000000 + -13.13463593 0.00000000 + -13.13063553 0.00000000 + -13.12663513 0.00000000 + -13.12263473 0.00000000 + -13.11863433 0.00000000 + -13.11463393 0.00000000 + -13.11063353 0.00000000 + -13.10663313 0.00000000 + -13.10263273 0.00000000 + -13.09863233 0.00000000 + -13.09463193 0.00000000 + -13.09063153 0.00000000 + -13.08663113 0.00000000 + -13.08263073 0.00000000 + -13.07863033 0.00000000 + -13.07462993 0.00000000 + -13.07062953 0.00000000 + -13.06662913 0.00000000 + -13.06262873 0.00000000 + -13.05862833 0.00000000 + -13.05462793 0.00000000 + -13.05062753 0.00000000 + -13.04662713 0.00000000 + -13.04262673 0.00000000 + -13.03862633 0.00000000 + -13.03462593 0.00000000 + -13.03062553 0.00000000 + -13.02662513 0.00000000 + -13.02262473 0.00000000 + -13.01862433 0.00000000 + -13.01462393 0.00000000 + -13.01062353 0.00000000 + -13.00662313 0.00000000 + -13.00262273 0.00000000 + -12.99862233 0.00000000 + -12.99462193 0.00000000 + -12.99062153 0.00000001 + -12.98662113 0.00000001 + -12.98262073 0.00000001 + -12.97862033 0.00000001 + -12.97461993 0.00000001 + -12.97061953 0.00000002 + -12.96661913 0.00000002 + -12.96261873 0.00000002 + -12.95861833 0.00000003 + -12.95461793 0.00000004 + -12.95061753 0.00000004 + -12.94661713 0.00000005 + -12.94261673 0.00000007 + -12.93861633 0.00000008 + -12.93461593 0.00000010 + -12.93061553 0.00000012 + -12.92661513 0.00000014 + -12.92261473 0.00000017 + -12.91861433 0.00000021 + -12.91461393 0.00000025 + -12.91061353 0.00000031 + -12.90661313 0.00000037 + -12.90261273 0.00000044 + -12.89861233 0.00000053 + -12.89461193 0.00000064 + -12.89061153 0.00000076 + -12.88661113 0.00000091 + -12.88261073 0.00000109 + -12.87861033 0.00000129 + -12.87460993 0.00000154 + -12.87060953 0.00000183 + -12.86660913 0.00000217 + -12.86260873 0.00000257 + -12.85860833 0.00000304 + -12.85460793 0.00000358 + -12.85060753 0.00000423 + -12.84660713 0.00000498 + -12.84260673 0.00000585 + -12.83860633 0.00000686 + -12.83460593 0.00000805 + -12.83060553 0.00000942 + -12.82660513 0.00001100 + -12.82260473 0.00001284 + -12.81860433 0.00001496 + -12.81460393 0.00001740 + -12.81060353 0.00002022 + -12.80660313 0.00002346 + -12.80260273 0.00002717 + -12.79860233 0.00003142 + -12.79460193 0.00003629 + -12.79060153 0.00004186 + -12.78660113 0.00004820 + -12.78260073 0.00005543 + -12.77860033 0.00006365 + -12.77459993 0.00007298 + -12.77059953 0.00008356 + -12.76659913 0.00009553 + -12.76259873 0.00010906 + -12.75859833 0.00012433 + -12.75459793 0.00014154 + -12.75059753 0.00016089 + -12.74659713 0.00018264 + -12.74259673 0.00020702 + -12.73859633 0.00023433 + -12.73459593 0.00026486 + -12.73059553 0.00029895 + -12.72659513 0.00033695 + -12.72259473 0.00037925 + -12.71859433 0.00042625 + -12.71459393 0.00047841 + -12.71059353 0.00053621 + -12.70659313 0.00060014 + -12.70259273 0.00067077 + -12.69859233 0.00074867 + -12.69459193 0.00083447 + -12.69059153 0.00092881 + -12.68659113 0.00103240 + -12.68259073 0.00114597 + -12.67859032 0.00127030 + -12.67458992 0.00140620 + -12.67058952 0.00155453 + -12.66658912 0.00171618 + -12.66258872 0.00189208 + -12.65858832 0.00208322 + -12.65458792 0.00229059 + -12.65058752 0.00251526 + -12.64658712 0.00275829 + -12.64258672 0.00302081 + -12.63858632 0.00330396 + -12.63458592 0.00360890 + -12.63058552 0.00393685 + -12.62658512 0.00428902 + -12.62258472 0.00466664 + -12.61858432 0.00507097 + -12.61458392 0.00550328 + -12.61058352 0.00596482 + -12.60658312 0.00645687 + -12.60258272 0.00698068 + -12.59858232 0.00753751 + -12.59458192 0.00812860 + -12.59058152 0.00875516 + -12.58658112 0.00941838 + -12.58258072 0.01011941 + -12.57858032 0.01085936 + -12.57457992 0.01163930 + -12.57057952 0.01246024 + -12.56657912 0.01332313 + -12.56257872 0.01422887 + -12.55857832 0.01517827 + -12.55457792 0.01617208 + -12.55057752 0.01721093 + -12.54657712 0.01829541 + -12.54257672 0.01942599 + -12.53857632 0.02060305 + -12.53457592 0.02182686 + -12.53057552 0.02309758 + -12.52657512 0.02441528 + -12.52257472 0.02577989 + -12.51857432 0.02719127 + -12.51457392 0.02864911 + -12.51057352 0.03015302 + -12.50657312 0.03170248 + -12.50257272 0.03329686 + -12.49857232 0.03493540 + -12.49457192 0.03661724 + -12.49057152 0.03834141 + -12.48657112 0.04010682 + -12.48257072 0.04191228 + -12.47857032 0.04375650 + -12.47456992 0.04563810 + -12.47056952 0.04755559 + -12.46656912 0.04950742 + -12.46256872 0.05149195 + -12.45856832 0.05350747 + -12.45456792 0.05555219 + -12.45056752 0.05762430 + -12.44656712 0.05972190 + -12.44256672 0.06184308 + -12.43856632 0.06398588 + -12.43456592 0.06614832 + -12.43056552 0.06832841 + -12.42656512 0.07052414 + -12.42256472 0.07273350 + -12.41856432 0.07495451 + -12.41456392 0.07718517 + -12.41056352 0.07942353 + -12.40656312 0.08166766 + -12.40256272 0.08391567 + -12.39856232 0.08616571 + -12.39456192 0.08841598 + -12.39056152 0.09066475 + -12.38656112 0.09291033 + -12.38256072 0.09515110 + -12.37856032 0.09738552 + -12.37455992 0.09961210 + -12.37055952 0.10182946 + -12.36655912 0.10403628 + -12.36255872 0.10623130 + -12.35855832 0.10841338 + -12.35455792 0.11058145 + -12.35055752 0.11273450 + -12.34655712 0.11487163 + -12.34255672 0.11699202 + -12.33855632 0.11909493 + -12.33455592 0.12117969 + -12.33055552 0.12324572 + -12.32655512 0.12529251 + -12.32255472 0.12731964 + -12.31855432 0.12932674 + -12.31455392 0.13131353 + -12.31055352 0.13327978 + -12.30655312 0.13522534 + -12.30255272 0.13715010 + -12.29855232 0.13905402 + -12.29455192 0.14093710 + -12.29055152 0.14279942 + -12.28655112 0.14464106 + -12.28255072 0.14646218 + -12.27855032 0.14826296 + -12.27454992 0.15004361 + -12.27054952 0.15180439 + -12.26654912 0.15354558 + -12.26254872 0.15526748 + -12.25854832 0.15697040 + -12.25454792 0.15865470 + -12.25054752 0.16032073 + -12.24654712 0.16196886 + -12.24254672 0.16359948 + -12.23854632 0.16521298 + -12.23454592 0.16680974 + -12.23054552 0.16839018 + -12.22654512 0.16995468 + -12.22254472 0.17150367 + -12.21854432 0.17303752 + -12.21454392 0.17455665 + -12.21054352 0.17606145 + -12.20654312 0.17755231 + -12.20254272 0.17902960 + -12.19854232 0.18049371 + -12.19454192 0.18194500 + -12.19054152 0.18338384 + -12.18654112 0.18481057 + -12.18254072 0.18622554 + -12.17854032 0.18762909 + -12.17453992 0.18902153 + -12.17053952 0.19040318 + -12.16653912 0.19177434 + -12.16253872 0.19313531 + -12.15853832 0.19448637 + -12.15453792 0.19582779 + -12.15053752 0.19715985 + -12.14653712 0.19848279 + -12.14253672 0.19979687 + -12.13853632 0.20110231 + -12.13453592 0.20239935 + -12.13053552 0.20368821 + -12.12653512 0.20496909 + -12.12253472 0.20624221 + -12.11853432 0.20750775 + -12.11453392 0.20876591 + -12.11053352 0.21001686 + -12.10653312 0.21126078 + -12.10253272 0.21249784 + -12.09853232 0.21372820 + -12.09453192 0.21495201 + -12.09053152 0.21616942 + -12.08653112 0.21738057 + -12.08253072 0.21858562 + -12.07853032 0.21978468 + -12.07452992 0.22097788 + -12.07052952 0.22216536 + -12.06652912 0.22334723 + -12.06252872 0.22452360 + -12.05852832 0.22569460 + -12.05452792 0.22686031 + -12.05052752 0.22802086 + -12.04652712 0.22917635 + -12.04252672 0.23032686 + -12.03852632 0.23147249 + -12.03452592 0.23261335 + -12.03052552 0.23374951 + -12.02652512 0.23488106 + -12.02252472 0.23600808 + -12.01852432 0.23713067 + -12.01452392 0.23824889 + -12.01052352 0.23936282 + -12.00652312 0.24047254 + -12.00252272 0.24157813 + -11.99852232 0.24267964 + -11.99452192 0.24377716 + -11.99052152 0.24487074 + -11.98652112 0.24596046 + -11.98252072 0.24704638 + -11.97852032 0.24812855 + -11.97451992 0.24920705 + -11.97051952 0.25028192 + -11.96651912 0.25135324 + -11.96251872 0.25242104 + -11.95851832 0.25348540 + -11.95451792 0.25454636 + -11.95051752 0.25560398 + -11.94651712 0.25665831 + -11.94251672 0.25770939 + -11.93851632 0.25875729 + -11.93451592 0.25980204 + -11.93051552 0.26084370 + -11.92651512 0.26188231 + -11.92251472 0.26291791 + -11.91851432 0.26395056 + -11.91451392 0.26498029 + -11.91051352 0.26600715 + -11.90651312 0.26703117 + -11.90251272 0.26805241 + -11.89851232 0.26907091 + -11.89451192 0.27008669 + -11.89051152 0.27109981 + -11.88651112 0.27211029 + -11.88251072 0.27311818 + -11.87851032 0.27412352 + -11.87450992 0.27512633 + -11.87050952 0.27612667 + -11.86650912 0.27712455 + -11.86250872 0.27812002 + -11.85850832 0.27911310 + -11.85450792 0.28010385 + -11.85050752 0.28109227 + -11.84650712 0.28207842 + -11.84250672 0.28306231 + -11.83850632 0.28404399 + -11.83450592 0.28502348 + -11.83050552 0.28600081 + -11.82650512 0.28697601 + -11.82250472 0.28794912 + -11.81850432 0.28892015 + -11.81450392 0.28988915 + -11.81050352 0.29085613 + -11.80650312 0.29182113 + -11.80250272 0.29278417 + -11.79850232 0.29374528 + -11.79450192 0.29470449 + -11.79050152 0.29566182 + -11.78650112 0.29661730 + -11.78250072 0.29757095 + -11.77850032 0.29852280 + -11.77449992 0.29947288 + -11.77049952 0.30042120 + -11.76649912 0.30136780 + -11.76249872 0.30231269 + -11.75849832 0.30325590 + -11.75449792 0.30419746 + -11.75049752 0.30513739 + -11.74649712 0.30607570 + -11.74249672 0.30701243 + -11.73849632 0.30794759 + -11.73449592 0.30888120 + -11.73049552 0.30981330 + -11.72649512 0.31074389 + -11.72249472 0.31167300 + -11.71849432 0.31260066 + -11.71449392 0.31352688 + -11.71049352 0.31445168 + -11.70649312 0.31537508 + -11.70249272 0.31629711 + -11.69849232 0.31721778 + -11.69449192 0.31813712 + -11.69049152 0.31905513 + -11.68649112 0.31997185 + -11.68249072 0.32088729 + -11.67849031 0.32180147 + -11.67448991 0.32271441 + -11.67048951 0.32362613 + -11.66648911 0.32453664 + -11.66248871 0.32544596 + -11.65848831 0.32635412 + -11.65448791 0.32726112 + -11.65048751 0.32816700 + -11.64648711 0.32907176 + -11.64248671 0.32997542 + -11.63848631 0.33087800 + -11.63448591 0.33177952 + -11.63048551 0.33267999 + -11.62648511 0.33357943 + -11.62248471 0.33447787 + -11.61848431 0.33537530 + -11.61448391 0.33627176 + -11.61048351 0.33716725 + -11.60648311 0.33806180 + -11.60248271 0.33895541 + -11.59848231 0.33984811 + -11.59448191 0.34073992 + -11.59048151 0.34163084 + -11.58648111 0.34252089 + -11.58248071 0.34341009 + -11.57848031 0.34429846 + -11.57447991 0.34518600 + -11.57047951 0.34607274 + -11.56647911 0.34695869 + -11.56247871 0.34784387 + -11.55847831 0.34872828 + -11.55447791 0.34961195 + -11.55047751 0.35049489 + -11.54647711 0.35137712 + -11.54247671 0.35225864 + -11.53847631 0.35313948 + -11.53447591 0.35401964 + -11.53047551 0.35489915 + -11.52647511 0.35577802 + -11.52247471 0.35665626 + -11.51847431 0.35753388 + -11.51447391 0.35841090 + -11.51047351 0.35928734 + -11.50647311 0.36016321 + -11.50247271 0.36103852 + -11.49847231 0.36191328 + -11.49447191 0.36278752 + -11.49047151 0.36366124 + -11.48647111 0.36453445 + -11.48247071 0.36540718 + -11.47847031 0.36627944 + -11.47446991 0.36715123 + -11.47046951 0.36802258 + -11.46646911 0.36889349 + -11.46246871 0.36976398 + -11.45846831 0.37063407 + -11.45446791 0.37150376 + -11.45046751 0.37237308 + -11.44646711 0.37324203 + -11.44246671 0.37411062 + -11.43846631 0.37497888 + -11.43446591 0.37584681 + -11.43046551 0.37671442 + -11.42646511 0.37758174 + -11.42246471 0.37844878 + -11.41846431 0.37931554 + -11.41446391 0.38018204 + -11.41046351 0.38104829 + -11.40646311 0.38191431 + -11.40246271 0.38278011 + -11.39846231 0.38364571 + -11.39446191 0.38451111 + -11.39046151 0.38537633 + -11.38646111 0.38624138 + -11.38246071 0.38710629 + -11.37846031 0.38797105 + -11.37445991 0.38883568 + -11.37045951 0.38970020 + -11.36645911 0.39056461 + -11.36245871 0.39142894 + -11.35845831 0.39229320 + -11.35445791 0.39315739 + -11.35045751 0.39402154 + -11.34645711 0.39488564 + -11.34245671 0.39574973 + -11.33845631 0.39661381 + -11.33445591 0.39747790 + -11.33045551 0.39834200 + -11.32645511 0.39920613 + -11.32245471 0.40007031 + -11.31845431 0.40093455 + -11.31445391 0.40179885 + -11.31045351 0.40266324 + -11.30645311 0.40352773 + -11.30245271 0.40439234 + -11.29845231 0.40525706 + -11.29445191 0.40612193 + -11.29045151 0.40698694 + -11.28645111 0.40785213 + -11.28245071 0.40871749 + -11.27845031 0.40958305 + -11.27444991 0.41044881 + -11.27044951 0.41131479 + -11.26644911 0.41218101 + -11.26244871 0.41304747 + -11.25844831 0.41391420 + -11.25444791 0.41478120 + -11.25044751 0.41564850 + -11.24644711 0.41651609 + -11.24244671 0.41738401 + -11.23844631 0.41825225 + -11.23444591 0.41912085 + -11.23044551 0.41998980 + -11.22644511 0.42085913 + -11.22244471 0.42172885 + -11.21844431 0.42259897 + -11.21444391 0.42346951 + -11.21044351 0.42434049 + -11.20644311 0.42521191 + -11.20244271 0.42608379 + -11.19844231 0.42695616 + -11.19444191 0.42782901 + -11.19044151 0.42870237 + -11.18644111 0.42957625 + -11.18244071 0.43045068 + -11.17844031 0.43132565 + -11.17443991 0.43220119 + -11.17043951 0.43307732 + -11.16643911 0.43395404 + -11.16243871 0.43483138 + -11.15843831 0.43570935 + -11.15443791 0.43658797 + -11.15043751 0.43746725 + -11.14643711 0.43834720 + -11.14243671 0.43922786 + -11.13843631 0.44010922 + -11.13443591 0.44099131 + -11.13043551 0.44187414 + -11.12643511 0.44275773 + -11.12243471 0.44364210 + -11.11843431 0.44452726 + -11.11443391 0.44541324 + -11.11043351 0.44630004 + -11.10643311 0.44718769 + -11.10243271 0.44807620 + -11.09843231 0.44896559 + -11.09443191 0.44985588 + -11.09043151 0.45074708 + -11.08643111 0.45163922 + -11.08243071 0.45253230 + -11.07843031 0.45342636 + -11.07442991 0.45432141 + -11.07042951 0.45521746 + -11.06642911 0.45611454 + -11.06242871 0.45701267 + -11.05842831 0.45791185 + -11.05442791 0.45881213 + -11.05042751 0.45971350 + -11.04642711 0.46061599 + -11.04242671 0.46151963 + -11.03842631 0.46242443 + -11.03442591 0.46333041 + -11.03042551 0.46423760 + -11.02642511 0.46514601 + -11.02242471 0.46605566 + -11.01842431 0.46696658 + -11.01442391 0.46787878 + -11.01042351 0.46879229 + -11.00642311 0.46970713 + -11.00242271 0.47062333 + -10.99842231 0.47154089 + -10.99442191 0.47245986 + -10.99042151 0.47338024 + -10.98642111 0.47430206 + -10.98242071 0.47522535 + -10.97842031 0.47615013 + -10.97441991 0.47707642 + -10.97041951 0.47800424 + -10.96641911 0.47893363 + -10.96241871 0.47986460 + -10.95841831 0.48079718 + -10.95441791 0.48173139 + -10.95041751 0.48266727 + -10.94641711 0.48360483 + -10.94241671 0.48454410 + -10.93841631 0.48548511 + -10.93441591 0.48642789 + -10.93041551 0.48737246 + -10.92641511 0.48831885 + -10.92241471 0.48926709 + -10.91841431 0.49021720 + -10.91441391 0.49116922 + -10.91041351 0.49212317 + -10.90641311 0.49307908 + -10.90241271 0.49403699 + -10.89841231 0.49499691 + -10.89441191 0.49595889 + -10.89041151 0.49692295 + -10.88641111 0.49788913 + -10.88241071 0.49885746 + -10.87841031 0.49982796 + -10.87440991 0.50080067 + -10.87040951 0.50177563 + -10.86640911 0.50275287 + -10.86240871 0.50373242 + -10.85840831 0.50471432 + -10.85440791 0.50569859 + -10.85040751 0.50668529 + -10.84640711 0.50767444 + -10.84240671 0.50866609 + -10.83840631 0.50966026 + -10.83440591 0.51065699 + -10.83040551 0.51165634 + -10.82640511 0.51265832 + -10.82240471 0.51366299 + -10.81840431 0.51467039 + -10.81440391 0.51568055 + -10.81040351 0.51669352 + -10.80640311 0.51770934 + -10.80240271 0.51872805 + -10.79840231 0.51974970 + -10.79440191 0.52077434 + -10.79040151 0.52180200 + -10.78640111 0.52283273 + -10.78240071 0.52386658 + -10.77840031 0.52490361 + -10.77439991 0.52594385 + -10.77039951 0.52698736 + -10.76639911 0.52803419 + -10.76239871 0.52908438 + -10.75839831 0.53013800 + -10.75439791 0.53119510 + -10.75039751 0.53225572 + -10.74639711 0.53331993 + -10.74239671 0.53438779 + -10.73839631 0.53545934 + -10.73439591 0.53653465 + -10.73039551 0.53761379 + -10.72639511 0.53869680 + -10.72239471 0.53978375 + -10.71839431 0.54087472 + -10.71439391 0.54196975 + -10.71039351 0.54306892 + -10.70639311 0.54417230 + -10.70239271 0.54527996 + -10.69839231 0.54639196 + -10.69439191 0.54750838 + -10.69039151 0.54862929 + -10.68639111 0.54975478 + -10.68239071 0.55088491 + -10.67839030 0.55201976 + -10.67438990 0.55315942 + -10.67038950 0.55430398 + -10.66638910 0.55545350 + -10.66238870 0.55660809 + -10.65838830 0.55776783 + -10.65438790 0.55893281 + -10.65038750 0.56010313 + -10.64638710 0.56127887 + -10.64238670 0.56246015 + -10.63838630 0.56364706 + -10.63438590 0.56483971 + -10.63038550 0.56603819 + -10.62638510 0.56724263 + -10.62238470 0.56845313 + -10.61838430 0.56966981 + -10.61438390 0.57089279 + -10.61038350 0.57212219 + -10.60638310 0.57335813 + -10.60238270 0.57460075 + -10.59838230 0.57585018 + -10.59438190 0.57710656 + -10.59038150 0.57837003 + -10.58638110 0.57964073 + -10.58238070 0.58091882 + -10.57838030 0.58220446 + -10.57437990 0.58349780 + -10.57037950 0.58479902 + -10.56637910 0.58610828 + -10.56237870 0.58742577 + -10.55837830 0.58875166 + -10.55437790 0.59008616 + -10.55037750 0.59142946 + -10.54637710 0.59278176 + -10.54237670 0.59414329 + -10.53837630 0.59551426 + -10.53437590 0.59689490 + -10.53037550 0.59828546 + -10.52637510 0.59968618 + -10.52237470 0.60109732 + -10.51837430 0.60251915 + -10.51437390 0.60395195 + -10.51037350 0.60539602 + -10.50637310 0.60685165 + -10.50237270 0.60831916 + -10.49837230 0.60979888 + -10.49437190 0.61129115 + -10.49037150 0.61279632 + -10.48637110 0.61431477 + -10.48237070 0.61584688 + -10.47837030 0.61739305 + -10.47436990 0.61895370 + -10.47036950 0.62052926 + -10.46636910 0.62212017 + -10.46236870 0.62372691 + -10.45836830 0.62534996 + -10.45436790 0.62698981 + -10.45036750 0.62864699 + -10.44636710 0.63032203 + -10.44236670 0.63201548 + -10.43836630 0.63372792 + -10.43436590 0.63545994 + -10.43036550 0.63721214 + -10.42636510 0.63898514 + -10.42236470 0.64077958 + -10.41836430 0.64259612 + -10.41436390 0.64443541 + -10.41036350 0.64629814 + -10.40636310 0.64818498 + -10.40236270 0.65009665 + -10.39836230 0.65203385 + -10.39436190 0.65399728 + -10.39036150 0.65598765 + -10.38636110 0.65800567 + -10.38236070 0.66005206 + -10.37836030 0.66212750 + -10.37435990 0.66423269 + -10.37035950 0.66636829 + -10.36635910 0.66853496 + -10.36235870 0.67073333 + -10.35835830 0.67296399 + -10.35435790 0.67522751 + -10.35035750 0.67752441 + -10.34635710 0.67985518 + -10.34235670 0.68222023 + -10.33835630 0.68461993 + -10.33435590 0.68705459 + -10.33035550 0.68952444 + -10.32635510 0.69202964 + -10.32235470 0.69457025 + -10.31835430 0.69714626 + -10.31435390 0.69975755 + -10.31035350 0.70240389 + -10.30635310 0.70508496 + -10.30235270 0.70780031 + -10.29835230 0.71054936 + -10.29435190 0.71333140 + -10.29035150 0.71614562 + -10.28635110 0.71899103 + -10.28235070 0.72186651 + -10.27835030 0.72477080 + -10.27434990 0.72770249 + -10.27034950 0.73066001 + -10.26634910 0.73364164 + -10.26234870 0.73664550 + -10.25834830 0.73966956 + -10.25434790 0.74271164 + -10.25034750 0.74576940 + -10.24634710 0.74884034 + -10.24234670 0.75192184 + -10.23834630 0.75501112 + -10.23434590 0.75810526 + -10.23034550 0.76120123 + -10.22634510 0.76429586 + -10.22234470 0.76738588 + -10.21834430 0.77046791 + -10.21434390 0.77353848 + -10.21034350 0.77659403 + -10.20634310 0.77963094 + -10.20234270 0.78264554 + -10.19834230 0.78563411 + -10.19434190 0.78859289 + -10.19034150 0.79151812 + -10.18634110 0.79440604 + -10.18234070 0.79725290 + -10.17834030 0.80005499 + -10.17433990 0.80280864 + -10.17033950 0.80551025 + -10.16633910 0.80815628 + -10.16233870 0.81074331 + -10.15833830 0.81326801 + -10.15433790 0.81572716 + -10.15033750 0.81811771 + -10.14633710 0.82043672 + -10.14233670 0.82268145 + -10.13833630 0.82484930 + -10.13433590 0.82693786 + -10.13033550 0.82894492 + -10.12633510 0.83086847 + -10.12233470 0.83270668 + -10.11833430 0.83445796 + -10.11433390 0.83612094 + -10.11033350 0.83769444 + -10.10633310 0.83917754 + -10.10233270 0.84056951 + -10.09833230 0.84186986 + -10.09433190 0.84307832 + -10.09033150 0.84419483 + -10.08633110 0.84521955 + -10.08233070 0.84615284 + -10.07833030 0.84699529 + -10.07432990 0.84774765 + -10.07032950 0.84841088 + -10.06632910 0.84898611 + -10.06232870 0.84947464 + -10.05832830 0.84987793 + -10.05432790 0.85019760 + -10.05032750 0.85043538 + -10.04632710 0.85059314 + -10.04232670 0.85067288 + -10.03832630 0.85067667 + -10.03432590 0.85060670 + -10.03032550 0.85046521 + -10.02632510 0.85025453 + -10.02232470 0.84997702 + -10.01832430 0.84963510 + -10.01432390 0.84923120 + -10.01032350 0.84876781 + -10.00632310 0.84824738 + -10.00232270 0.84767239 + -9.99832230 0.84704531 + -9.99432190 0.84636857 + -9.99032150 0.84564458 + -9.98632110 0.84487574 + -9.98232070 0.84406437 + -9.97832030 0.84321278 + -9.97431990 0.84232318 + -9.97031950 0.84139776 + -9.96631910 0.84043864 + -9.96231870 0.83944785 + -9.95831830 0.83842737 + -9.95431790 0.83737910 + -9.95031750 0.83630488 + -9.94631710 0.83520644 + -9.94231670 0.83408547 + -9.93831630 0.83294355 + -9.93431590 0.83178220 + -9.93031550 0.83060287 + -9.92631510 0.82940691 + -9.92231470 0.82819561 + -9.91831430 0.82697019 + -9.91431390 0.82573178 + -9.91031350 0.82448145 + -9.90631310 0.82322020 + -9.90231270 0.82194898 + -9.89831230 0.82066864 + -9.89431190 0.81938001 + -9.89031150 0.81808383 + -9.88631110 0.81678080 + -9.88231070 0.81547157 + -9.87831030 0.81415673 + -9.87430990 0.81283682 + -9.87030950 0.81151235 + -9.86630910 0.81018378 + -9.86230870 0.80885152 + -9.85830830 0.80751597 + -9.85430790 0.80617747 + -9.85030750 0.80483634 + -9.84630710 0.80349287 + -9.84230670 0.80214731 + -9.83830630 0.80079991 + -9.83430590 0.79945087 + -9.83030550 0.79810039 + -9.82630510 0.79674864 + -9.82230470 0.79539576 + -9.81830430 0.79404190 + -9.81430390 0.79268718 + -9.81030350 0.79133170 + -9.80630310 0.78997557 + -9.80230270 0.78861885 + -9.79830230 0.78726164 + -9.79430190 0.78590399 + -9.79030150 0.78454596 + -9.78630110 0.78318760 + -9.78230070 0.78182895 + -9.77830030 0.78047005 + -9.77429990 0.77911093 + -9.77029950 0.77775162 + -9.76629910 0.77639213 + -9.76229870 0.77503250 + -9.75829830 0.77367273 + -9.75429790 0.77231285 + -9.75029750 0.77095285 + -9.74629710 0.76959274 + -9.74229670 0.76823254 + -9.73829630 0.76687225 + -9.73429590 0.76551186 + -9.73029550 0.76415139 + -9.72629510 0.76279082 + -9.72229470 0.76143017 + -9.71829430 0.76006943 + -9.71429390 0.75870859 + -9.71029350 0.75734766 + -9.70629310 0.75598662 + -9.70229270 0.75462549 + -9.69829230 0.75326424 + -9.69429190 0.75190288 + -9.69029150 0.75054140 + -9.68629110 0.74917979 + -9.68229070 0.74781806 + -9.67829029 0.74645618 + -9.67428989 0.74509417 + -9.67028949 0.74373200 + -9.66628909 0.74236968 + -9.66228869 0.74100719 + -9.65828829 0.73964453 + -9.65428789 0.73828169 + -9.65028749 0.73691867 + -9.64628709 0.73555546 + -9.64228669 0.73419205 + -9.63828629 0.73282843 + -9.63428589 0.73146460 + -9.63028549 0.73010055 + -9.62628509 0.72873627 + -9.62228469 0.72737175 + -9.61828429 0.72600698 + -9.61428389 0.72464197 + -9.61028349 0.72327669 + -9.60628309 0.72191115 + -9.60228269 0.72054532 + -9.59828229 0.71917922 + -9.59428189 0.71781282 + -9.59028149 0.71644612 + -9.58628109 0.71507912 + -9.58228069 0.71371180 + -9.57828029 0.71234415 + -9.57427989 0.71097617 + -9.57027949 0.70960784 + -9.56627909 0.70823917 + -9.56227869 0.70687014 + -9.55827829 0.70550074 + -9.55427789 0.70413096 + -9.55027749 0.70276080 + -9.54627709 0.70139025 + -9.54227669 0.70001929 + -9.53827629 0.69864793 + -9.53427589 0.69727614 + -9.53027549 0.69590392 + -9.52627509 0.69453127 + -9.52227469 0.69315817 + -9.51827429 0.69178461 + -9.51427389 0.69041058 + -9.51027349 0.68903608 + -9.50627309 0.68766110 + -9.50227269 0.68628562 + -9.49827229 0.68490964 + -9.49427189 0.68353315 + -9.49027149 0.68215613 + -9.48627109 0.68077858 + -9.48227069 0.67940049 + -9.47827029 0.67802184 + -9.47426989 0.67664263 + -9.47026949 0.67526285 + -9.46626909 0.67388249 + -9.46226869 0.67250154 + -9.45826829 0.67111998 + -9.45426789 0.66973780 + -9.45026749 0.66835501 + -9.44626709 0.66697158 + -9.44226669 0.66558750 + -9.43826629 0.66420277 + -9.43426589 0.66281737 + -9.43026549 0.66143129 + -9.42626509 0.66004453 + -9.42226469 0.65865706 + -9.41826429 0.65726889 + -9.41426389 0.65587999 + -9.41026349 0.65449036 + -9.40626309 0.65309998 + -9.40226269 0.65170884 + -9.39826229 0.65031694 + -9.39426189 0.64892426 + -9.39026149 0.64753078 + -9.38626109 0.64613650 + -9.38226069 0.64474140 + -9.37826029 0.64334548 + -9.37425989 0.64194871 + -9.37025949 0.64055110 + -9.36625909 0.63915261 + -9.36225869 0.63775325 + -9.35825829 0.63635299 + -9.35425789 0.63495184 + -9.35025749 0.63354976 + -9.34625709 0.63214675 + -9.34225669 0.63074280 + -9.33825629 0.62933790 + -9.33425589 0.62793202 + -9.33025549 0.62652516 + -9.32625509 0.62511730 + -9.32225469 0.62370843 + -9.31825429 0.62229853 + -9.31425389 0.62088760 + -9.31025349 0.61947560 + -9.30625309 0.61806254 + -9.30225269 0.61664840 + -9.29825229 0.61523316 + -9.29425189 0.61381680 + -9.29025149 0.61239932 + -9.28625109 0.61098069 + -9.28225069 0.60956090 + -9.27825029 0.60813994 + -9.27424989 0.60671779 + -9.27024949 0.60529443 + -9.26624909 0.60386985 + -9.26224869 0.60244404 + -9.25824829 0.60101697 + -9.25424789 0.59958862 + -9.25024749 0.59815899 + -9.24624709 0.59672806 + -9.24224669 0.59529580 + -9.23824629 0.59386220 + -9.23424589 0.59242725 + -9.23024549 0.59099092 + -9.22624509 0.58955320 + -9.22224469 0.58811407 + -9.21824429 0.58667351 + -9.21424389 0.58523150 + -9.21024349 0.58378803 + -9.20624309 0.58234307 + -9.20224269 0.58089661 + -9.19824229 0.57944863 + -9.19424189 0.57799911 + -9.19024149 0.57654802 + -9.18624109 0.57509535 + -9.18224069 0.57364107 + -9.17824029 0.57218518 + -9.17423989 0.57072764 + -9.17023949 0.56926843 + -9.16623909 0.56780754 + -9.16223869 0.56634494 + -9.15823829 0.56488061 + -9.15423789 0.56341453 + -9.15023749 0.56194668 + -9.14623709 0.56047703 + -9.14223669 0.55900556 + -9.13823629 0.55753225 + -9.13423589 0.55605707 + -9.13023549 0.55458000 + -9.12623509 0.55310102 + -9.12223469 0.55162010 + -9.11823429 0.55013721 + -9.11423389 0.54865234 + -9.11023349 0.54716546 + -9.10623309 0.54567653 + -9.10223269 0.54418554 + -9.09823229 0.54269246 + -9.09423189 0.54119726 + -9.09023149 0.53969992 + -9.08623109 0.53820040 + -9.08223069 0.53669868 + -9.07823029 0.53519473 + -9.07422989 0.53368853 + -9.07022949 0.53218004 + -9.06622909 0.53066923 + -9.06222869 0.52915607 + -9.05822829 0.52764054 + -9.05422789 0.52612260 + -9.05022749 0.52460223 + -9.04622709 0.52307938 + -9.04222669 0.52155403 + -9.03822629 0.52002615 + -9.03422589 0.51849569 + -9.03022549 0.51696264 + -9.02622509 0.51542695 + -9.02222469 0.51388859 + -9.01822429 0.51234753 + -9.01422389 0.51080372 + -9.01022349 0.50925714 + -9.00622309 0.50770774 + -9.00222269 0.50615549 + -8.99822229 0.50460035 + -8.99422189 0.50304228 + -8.99022149 0.50148125 + -8.98622109 0.49991721 + -8.98222069 0.49835012 + -8.97822029 0.49677994 + -8.97421989 0.49520663 + -8.97021949 0.49363015 + -8.96621909 0.49205045 + -8.96221869 0.49046750 + -8.95821829 0.48888123 + -8.95421789 0.48729162 + -8.95021749 0.48569861 + -8.94621709 0.48410215 + -8.94221669 0.48250220 + -8.93821629 0.48089871 + -8.93421589 0.47929163 + -8.93021549 0.47768091 + -8.92621509 0.47606650 + -8.92221469 0.47444834 + -8.91821429 0.47282638 + -8.91421389 0.47120057 + -8.91021349 0.46957085 + -8.90621309 0.46793716 + -8.90221269 0.46629945 + -8.89821229 0.46465766 + -8.89421189 0.46301173 + -8.89021149 0.46136160 + -8.88621109 0.45970720 + -8.88221069 0.45804847 + -8.87821029 0.45638535 + -8.87420989 0.45471777 + -8.87020949 0.45304566 + -8.86620909 0.45136896 + -8.86220869 0.44968759 + -8.85820829 0.44800148 + -8.85420789 0.44631056 + -8.85020749 0.44461476 + -8.84620709 0.44291399 + -8.84220669 0.44120817 + -8.83820629 0.43949724 + -8.83420589 0.43778110 + -8.83020549 0.43605967 + -8.82620509 0.43433287 + -8.82220469 0.43260060 + -8.81820429 0.43086278 + -8.81420389 0.42911932 + -8.81020349 0.42737012 + -8.80620309 0.42561507 + -8.80220269 0.42385410 + -8.79820229 0.42208708 + -8.79420189 0.42031393 + -8.79020149 0.41853452 + -8.78620109 0.41674875 + -8.78220069 0.41495651 + -8.77820029 0.41315768 + -8.77419989 0.41135214 + -8.77019949 0.40953977 + -8.76619909 0.40772043 + -8.76219869 0.40589401 + -8.75819829 0.40406037 + -8.75419789 0.40221937 + -8.75019749 0.40037086 + -8.74619709 0.39851471 + -8.74219669 0.39665076 + -8.73819629 0.39477885 + -8.73419589 0.39289883 + -8.73019549 0.39101053 + -8.72619509 0.38911378 + -8.72219469 0.38720840 + -8.71819429 0.38529422 + -8.71419389 0.38337104 + -8.71019349 0.38143866 + -8.70619309 0.37949690 + -8.70219269 0.37754554 + -8.69819229 0.37558436 + -8.69419189 0.37361316 + -8.69019149 0.37163168 + -8.68619109 0.36963972 + -8.68219069 0.36763700 + -8.67819028 0.36562329 + -8.67418988 0.36359833 + -8.67018948 0.36156184 + -8.66618908 0.35951354 + -8.66218868 0.35745315 + -8.65818828 0.35538037 + -8.65418788 0.35329489 + -8.65018748 0.35119641 + -8.64618708 0.34908459 + -8.64218668 0.34695910 + -8.63818628 0.34481960 + -8.63418588 0.34266574 + -8.63018548 0.34049715 + -8.62618508 0.33831347 + -8.62218468 0.33611431 + -8.61818428 0.33389929 + -8.61418388 0.33166802 + -8.61018348 0.32942009 + -8.60618308 0.32715510 + -8.60218268 0.32487263 + -8.59818228 0.32257227 + -8.59418188 0.32025360 + -8.59018148 0.31791620 + -8.58618108 0.31555965 + -8.58218068 0.31318352 + -8.57818028 0.31078739 + -8.57417988 0.30837086 + -8.57017948 0.30593352 + -8.56617908 0.30347498 + -8.56217868 0.30099484 + -8.55817828 0.29849274 + -8.55417788 0.29596833 + -8.55017748 0.29342127 + -8.54617708 0.29085127 + -8.54217668 0.28825803 + -8.53817628 0.28564131 + -8.53417588 0.28300091 + -8.53017548 0.28033663 + -8.52617508 0.27764835 + -8.52217468 0.27493599 + -8.51817428 0.27219952 + -8.51417388 0.26943895 + -8.51017348 0.26665437 + -8.50617308 0.26384594 + -8.50217268 0.26101386 + -8.49817228 0.25815845 + -8.49417188 0.25528006 + -8.49017148 0.25237915 + -8.48617108 0.24945629 + -8.48217068 0.24651209 + -8.47817028 0.24354729 + -8.47416988 0.24056274 + -8.47016948 0.23755937 + -8.46616908 0.23453822 + -8.46216868 0.23150045 + -8.45816828 0.22844734 + -8.45416788 0.22538026 + -8.45016748 0.22230072 + -8.44616708 0.21921034 + -8.44216668 0.21611086 + -8.43816628 0.21300413 + -8.43416588 0.20989214 + -8.43016548 0.20677697 + -8.42616508 0.20366085 + -8.42216468 0.20054608 + -8.41816428 0.19743512 + -8.41416388 0.19433051 + -8.41016348 0.19123489 + -8.40616308 0.18815101 + -8.40216268 0.18508171 + -8.39816228 0.18202992 + -8.39416188 0.17899864 + -8.39016148 0.17599097 + -8.38616108 0.17301003 + -8.38216068 0.17005905 + -8.37816028 0.16714126 + -8.37415988 0.16425997 + -8.37015948 0.16141848 + -8.36615908 0.15862014 + -8.36215868 0.15586829 + -8.35815828 0.15316628 + -8.35415788 0.15051744 + -8.35015748 0.14792507 + -8.34615708 0.14539245 + -8.34215668 0.14292280 + -8.33815628 0.14051928 + -8.33415588 0.13818501 + -8.33015548 0.13592301 + -8.32615508 0.13373619 + -8.32215468 0.13162741 + -8.31815428 0.12959938 + -8.31415388 0.12765472 + -8.31015348 0.12579590 + -8.30615308 0.12402527 + -8.30215268 0.12234504 + -8.29815228 0.12075727 + -8.29415188 0.11926384 + -8.29015148 0.11786651 + -8.28615108 0.11656684 + -8.28215068 0.11536624 + -8.27815028 0.11426594 + -8.27414988 0.11326699 + -8.27014948 0.11237026 + -8.26614908 0.11157646 + -8.26214868 0.11088608 + -8.25814828 0.11029948 + -8.25414788 0.10981681 + -8.25014748 0.10943805 + -8.24614708 0.10916300 + -8.24214668 0.10899131 + -8.23814628 0.10892244 + -8.23414588 0.10895569 + -8.23014548 0.10909021 + -8.22614508 0.10932499 + -8.22214468 0.10965889 + -8.21814428 0.11009060 + -8.21414388 0.11061870 + -8.21014348 0.11124162 + -8.20614308 0.11195770 + -8.20214268 0.11276514 + -8.19814228 0.11366205 + -8.19414188 0.11464643 + -8.19014148 0.11571621 + -8.18614108 0.11686923 + -8.18214068 0.11810325 + -8.17814028 0.11941597 + -8.17413988 0.12080504 + -8.17013948 0.12226806 + -8.16613908 0.12380257 + -8.16213868 0.12540611 + -8.15813828 0.12707616 + -8.15413788 0.12881022 + -8.15013748 0.13060575 + -8.14613708 0.13246022 + -8.14213668 0.13437109 + -8.13813628 0.13633585 + -8.13413588 0.13835199 + -8.13013548 0.14041703 + -8.12613508 0.14252850 + -8.12213468 0.14468400 + -8.11813428 0.14688113 + -8.11413388 0.14911754 + -8.11013348 0.15139094 + -8.10613308 0.15369909 + -8.10213268 0.15603978 + -8.09813228 0.15841088 + -8.09413188 0.16081030 + -8.09013148 0.16323605 + -8.08613108 0.16568615 + -8.08213068 0.16815873 + -8.07813028 0.17065196 + -8.07412988 0.17316410 + -8.07012948 0.17569346 + -8.06612908 0.17823844 + -8.06212868 0.18079749 + -8.05812828 0.18336915 + -8.05412788 0.18595201 + -8.05012748 0.18854476 + -8.04612708 0.19114613 + -8.04212668 0.19375493 + -8.03812628 0.19637004 + -8.03412588 0.19899041 + -8.03012548 0.20161505 + -8.02612508 0.20424303 + -8.02212468 0.20687350 + -8.01812428 0.20950564 + -8.01412388 0.21213872 + -8.01012348 0.21477205 + -8.00612308 0.21740501 + -8.00212268 0.22003701 + -7.99812228 0.22266753 + -7.99412188 0.22529610 + -7.99012148 0.22792229 + -7.98612108 0.23054571 + -7.98212068 0.23316603 + -7.97812028 0.23578293 + -7.97411988 0.23839618 + -7.97011948 0.24100554 + -7.96611908 0.24361081 + -7.96211868 0.24621186 + -7.95811828 0.24880856 + -7.95411788 0.25140080 + -7.95011748 0.25398853 + -7.94611708 0.25657171 + -7.94211668 0.25915032 + -7.93811628 0.26172436 + -7.93411588 0.26429387 + -7.93011548 0.26685889 + -7.92611508 0.26941950 + -7.92211468 0.27197578 + -7.91811428 0.27452783 + -7.91411388 0.27707577 + -7.91011348 0.27961974 + -7.90611308 0.28215988 + -7.90211268 0.28469634 + -7.89811228 0.28722931 + -7.89411188 0.28975896 + -7.89011148 0.29228550 + -7.88611108 0.29480913 + -7.88211068 0.29733007 + -7.87811028 0.29984855 + -7.87410988 0.30236480 + -7.87010948 0.30487908 + -7.86610908 0.30739164 + -7.86210868 0.30990277 + -7.85810828 0.31241274 + -7.85410788 0.31492185 + -7.85010748 0.31743041 + -7.84610708 0.31993874 + -7.84210668 0.32244718 + -7.83810628 0.32495609 + -7.83410588 0.32746582 + -7.83010548 0.32997677 + -7.82610508 0.33248934 + -7.82210468 0.33500397 + -7.81810428 0.33752110 + -7.81410388 0.34004121 + -7.81010348 0.34256481 + -7.80610308 0.34509242 + -7.80210268 0.34762463 + -7.79810228 0.35016202 + -7.79410188 0.35270524 + -7.79010148 0.35525499 + -7.78610108 0.35781197 + -7.78210068 0.36037698 + -7.77810028 0.36295085 + -7.77409988 0.36553447 + -7.77009948 0.36812879 + -7.76609908 0.37073483 + -7.76209868 0.37335370 + -7.75809828 0.37598655 + -7.75409788 0.37863466 + -7.75009748 0.38129936 + -7.74609708 0.38398209 + -7.74209668 0.38668440 + -7.73809628 0.38940795 + -7.73409588 0.39215448 + -7.73009548 0.39492590 + -7.72609508 0.39772422 + -7.72209468 0.40055158 + -7.71809428 0.40341028 + -7.71409388 0.40630276 + -7.71009348 0.40923161 + -7.70609308 0.41219959 + -7.70209268 0.41520963 + -7.69809228 0.41826483 + -7.69409188 0.42136846 + -7.69009148 0.42452400 + -7.68609108 0.42773509 + -7.68209068 0.43100560 + -7.67809027 0.43433957 + -7.67408987 0.43774127 + -7.67008947 0.44121514 + -7.66608907 0.44476586 + -7.66208867 0.44839831 + -7.65808827 0.45211756 + -7.65408787 0.45592892 + -7.65008747 0.45983787 + -7.64608707 0.46385012 + -7.64208667 0.46797156 + -7.63808627 0.47220827 + -7.63408587 0.47656652 + -7.63008547 0.48105275 + -7.62608507 0.48567356 + -7.62208467 0.49043570 + -7.61808427 0.49534606 + -7.61408387 0.50041164 + -7.61008347 0.50563956 + -7.60608307 0.51103700 + -7.60208267 0.51661122 + -7.59808227 0.52236951 + -7.59408187 0.52831917 + -7.59008147 0.53446749 + -7.58608107 0.54082171 + -7.58208067 0.54738899 + -7.57808027 0.55417641 + -7.57407987 0.56119088 + -7.57007947 0.56843913 + -7.56607907 0.57592770 + -7.56207867 0.58366286 + -7.55807827 0.59165057 + -7.55407787 0.59989646 + -7.55007747 0.60840580 + -7.54607707 0.61718339 + -7.54207667 0.62623360 + -7.53807627 0.63556025 + -7.53407587 0.64516660 + -7.53007547 0.65505532 + -7.52607507 0.66522838 + -7.52207467 0.67568707 + -7.51807427 0.68643192 + -7.51407387 0.69746265 + -7.51007347 0.70877815 + -7.50607307 0.72037640 + -7.50207267 0.73225445 + -7.49807227 0.74440840 + -7.49407187 0.75683331 + -7.49007147 0.76952321 + -7.48607107 0.78247105 + -7.48207067 0.79566867 + -7.47807027 0.80910677 + -7.47406987 0.82277492 + -7.47006947 0.83666150 + -7.46606907 0.85075372 + -7.46206867 0.86503760 + -7.45806827 0.87949797 + -7.45406787 0.89411850 + -7.45006747 0.90888168 + -7.44606707 0.92376885 + -7.44206667 0.93876024 + -7.43806627 0.95383498 + -7.43406587 0.96897116 + -7.43006547 0.98414587 + -7.42606507 0.99933526 + -7.42206467 1.01451459 + -7.41806427 1.02965833 + -7.41406387 1.04474019 + -7.41006347 1.05973325 + -7.40606307 1.07461003 + -7.40206267 1.08934258 + -7.39806227 1.10390263 + -7.39406187 1.11826162 + -7.39006147 1.13239088 + -7.38606107 1.14626175 + -7.38206067 1.15984566 + -7.37806027 1.17311427 + -7.37405987 1.18603962 + -7.37005947 1.19859426 + -7.36605907 1.21075133 + -7.36205867 1.22248476 + -7.35805827 1.23376934 + -7.35405787 1.24458089 + -7.35005747 1.25489634 + -7.34605707 1.26469390 + -7.34205667 1.27395311 + -7.33805627 1.28265499 + -7.33405587 1.29078216 + -7.33005547 1.29831885 + -7.32605507 1.30525107 + -7.32205467 1.31156663 + -7.31805427 1.31725524 + -7.31405387 1.32230853 + -7.31005347 1.32672009 + -7.30605307 1.33048554 + -7.30205267 1.33360250 + -7.29805227 1.33607064 + -7.29405187 1.33789164 + -7.29005147 1.33906917 + -7.28605107 1.33960889 + -7.28205067 1.33951839 + -7.27805027 1.33880711 + -7.27404987 1.33748635 + -7.27004947 1.33556910 + -7.26604907 1.33307003 + -7.26204867 1.33000536 + -7.25804827 1.32639278 + -7.25404787 1.32225133 + -7.25004747 1.31760126 + -7.24604707 1.31246397 + -7.24204667 1.30686184 + -7.23804627 1.30081811 + -7.23404587 1.29435676 + -7.23004547 1.28750236 + -7.22604507 1.28027997 + -7.22204467 1.27271499 + -7.21804427 1.26483302 + -7.21404387 1.25665977 + -7.21004347 1.24822089 + -7.20604307 1.23954191 + -7.20204267 1.23064807 + -7.19804227 1.22156425 + -7.19404187 1.21231485 + -7.19004147 1.20292373 + -7.18604107 1.19341408 + -7.18204067 1.18380836 + -7.17804027 1.17412825 + -7.17403987 1.16439455 + -7.17003947 1.15462716 + -7.16603907 1.14484502 + -7.16203867 1.13506607 + -7.15803827 1.12530722 + -7.15403787 1.11558434 + -7.15003747 1.10591225 + -7.14603707 1.09630467 + -7.14203667 1.08677430 + -7.13803627 1.07733275 + -7.13403587 1.06799058 + -7.13003547 1.05875734 + -7.12603507 1.04964157 + -7.12203467 1.04065083 + -7.11803427 1.03179176 + -7.11403387 1.02307005 + -7.11003347 1.01449056 + -7.10603307 1.00605731 + -7.10203267 0.99777353 + -7.09803227 0.98964172 + -7.09403187 0.98166370 + -7.09003147 0.97384062 + -7.08603107 0.96617304 + -7.08203067 0.95866098 + -7.07803027 0.95130394 + -7.07402987 0.94410097 + -7.07002947 0.93705070 + -7.06602907 0.93015139 + -7.06202867 0.92340097 + -7.05802827 0.91679707 + -7.05402787 0.91033709 + -7.05002747 0.90401818 + -7.04602707 0.89783734 + -7.04202667 0.89179140 + -7.03802627 0.88587707 + -7.03402587 0.88009097 + -7.03002547 0.87442966 + -7.02602507 0.86888963 + -7.02202467 0.86346738 + -7.01802427 0.85815937 + -7.01402387 0.85296210 + -7.01002347 0.84787208 + -7.00602307 0.84288587 + -7.00202267 0.83800006 + -6.99802227 0.83321134 + -6.99402187 0.82851644 + -6.99002147 0.82391218 + -6.98602107 0.81939545 + -6.98202067 0.81496325 + -6.97802027 0.81061265 + -6.97401987 0.80634082 + -6.97001947 0.80214504 + -6.96601907 0.79802267 + -6.96201867 0.79397117 + -6.95801827 0.78998810 + -6.95401787 0.78607111 + -6.95001747 0.78221795 + -6.94601707 0.77842645 + -6.94201667 0.77469455 + -6.93801627 0.77102027 + -6.93401587 0.76740170 + -6.93001547 0.76383703 + -6.92601507 0.76032452 + -6.92201467 0.75686251 + -6.91801427 0.75344941 + -6.91401387 0.75008371 + -6.91001347 0.74676396 + -6.90601307 0.74348877 + -6.90201267 0.74025682 + -6.89801227 0.73706684 + -6.89401187 0.73391762 + -6.89001147 0.73080801 + -6.88601107 0.72773690 + -6.88201067 0.72470323 + -6.87801027 0.72170598 + -6.87400987 0.71874419 + -6.87000947 0.71581693 + -6.86600907 0.71292329 + -6.86200867 0.71006244 + -6.85800827 0.70723354 + -6.85400787 0.70443581 + -6.85000747 0.70166850 + -6.84600707 0.69893087 + -6.84200667 0.69622223 + -6.83800627 0.69354190 + -6.83400587 0.69088923 + -6.83000547 0.68826361 + -6.82600507 0.68566443 + -6.82200467 0.68309110 + -6.81800427 0.68054308 + -6.81400387 0.67801982 + -6.81000347 0.67552079 + -6.80600307 0.67304551 + -6.80200267 0.67059346 + -6.79800227 0.66816419 + -6.79400187 0.66575725 + -6.79000147 0.66337218 + -6.78600107 0.66100855 + -6.78200067 0.65866597 + -6.77800027 0.65634402 + -6.77399987 0.65404231 + -6.76999947 0.65176046 + -6.76599907 0.64949811 + -6.76199867 0.64725491 + -6.75799827 0.64503050 + -6.75399787 0.64282454 + -6.74999747 0.64063672 + -6.74599707 0.63846671 + -6.74199667 0.63631421 + -6.73799627 0.63417891 + -6.73399587 0.63206052 + -6.72999547 0.62995876 + -6.72599507 0.62787334 + -6.72199467 0.62580401 + -6.71799427 0.62375048 + -6.71399387 0.62171252 + -6.70999347 0.61968986 + -6.70599307 0.61768226 + -6.70199267 0.61568949 + -6.69799227 0.61371131 + -6.69399187 0.61174750 + -6.68999147 0.60979783 + -6.68599107 0.60786209 + -6.68199067 0.60594007 + -6.67799026 0.60403157 + -6.67398986 0.60213637 + -6.66998946 0.60025429 + -6.66598906 0.59838513 + -6.66198866 0.59652871 + -6.65798826 0.59468484 + -6.65398786 0.59285335 + -6.64998746 0.59103405 + -6.64598706 0.58922678 + -6.64198666 0.58743136 + -6.63798626 0.58564764 + -6.63398586 0.58387545 + -6.62998546 0.58211464 + -6.62598506 0.58036505 + -6.62198466 0.57862654 + -6.61798426 0.57689894 + -6.61398386 0.57518213 + -6.60998346 0.57347595 + -6.60598306 0.57178027 + -6.60198266 0.57009496 + -6.59798226 0.56841987 + -6.59398186 0.56675489 + -6.58998146 0.56509987 + -6.58598106 0.56345470 + -6.58198066 0.56181926 + -6.57798026 0.56019341 + -6.57397986 0.55857705 + -6.56997946 0.55697006 + -6.56597906 0.55537233 + -6.56197866 0.55378373 + -6.55797826 0.55220417 + -6.55397786 0.55063353 + -6.54997746 0.54907171 + -6.54597706 0.54751861 + -6.54197666 0.54597412 + -6.53797626 0.54443815 + -6.53397586 0.54291059 + -6.52997546 0.54139135 + -6.52597506 0.53988034 + -6.52197466 0.53837746 + -6.51797426 0.53688262 + -6.51397386 0.53539573 + -6.50997346 0.53391671 + -6.50597306 0.53244546 + -6.50197266 0.53098190 + -6.49797226 0.52952595 + -6.49397186 0.52807752 + -6.48997146 0.52663654 + -6.48597106 0.52520292 + -6.48197066 0.52377659 + -6.47797026 0.52235747 + -6.47396986 0.52094549 + -6.46996946 0.51954056 + -6.46596906 0.51814262 + -6.46196866 0.51675160 + -6.45796826 0.51536741 + -6.45396786 0.51399001 + -6.44996746 0.51261930 + -6.44596706 0.51125524 + -6.44196666 0.50989775 + -6.43796626 0.50854676 + -6.43396586 0.50720221 + -6.42996546 0.50586405 + -6.42596506 0.50453219 + -6.42196466 0.50320660 + -6.41796426 0.50188720 + -6.41396386 0.50057393 + -6.40996346 0.49926673 + -6.40596306 0.49796556 + -6.40196266 0.49667035 + -6.39796226 0.49538104 + -6.39396186 0.49409758 + -6.38996146 0.49281991 + -6.38596106 0.49154799 + -6.38196066 0.49028176 + -6.37796026 0.48902116 + -6.37395986 0.48776615 + -6.36995946 0.48651667 + -6.36595906 0.48527268 + -6.36195866 0.48403413 + -6.35795826 0.48280096 + -6.35395786 0.48157313 + -6.34995746 0.48035059 + -6.34595706 0.47913330 + -6.34195666 0.47792121 + -6.33795626 0.47671428 + -6.33395586 0.47551245 + -6.32995546 0.47431570 + -6.32595506 0.47312396 + -6.32195466 0.47193721 + -6.31795426 0.47075539 + -6.31395386 0.46957848 + -6.30995346 0.46840641 + -6.30595306 0.46723917 + -6.30195266 0.46607669 + -6.29795226 0.46491896 + -6.29395186 0.46376592 + -6.28995146 0.46261754 + -6.28595106 0.46147378 + -6.28195066 0.46033460 + -6.27795026 0.45919997 + -6.27394986 0.45806985 + -6.26994946 0.45694421 + -6.26594906 0.45582300 + -6.26194866 0.45470619 + -6.25794826 0.45359376 + -6.25394786 0.45248565 + -6.24994746 0.45138185 + -6.24594706 0.45028232 + -6.24194666 0.44918702 + -6.23794626 0.44809592 + -6.23394586 0.44700899 + -6.22994546 0.44592620 + -6.22594506 0.44484752 + -6.22194466 0.44377291 + -6.21794426 0.44270235 + -6.21394386 0.44163581 + -6.20994346 0.44057325 + -6.20594306 0.43951464 + -6.20194266 0.43845996 + -6.19794226 0.43740918 + -6.19394186 0.43636227 + -6.18994146 0.43531919 + -6.18594106 0.43427994 + -6.18194066 0.43324446 + -6.17794026 0.43221275 + -6.17393986 0.43118477 + -6.16993946 0.43016049 + -6.16593906 0.42913989 + -6.16193866 0.42812295 + -6.15793826 0.42710963 + -6.15393786 0.42609991 + -6.14993746 0.42509377 + -6.14593706 0.42409118 + -6.14193666 0.42309212 + -6.13793626 0.42209657 + -6.13393586 0.42110449 + -6.12993546 0.42011587 + -6.12593506 0.41913068 + -6.12193466 0.41814890 + -6.11793426 0.41717050 + -6.11393386 0.41619548 + -6.10993346 0.41522379 + -6.10593306 0.41425542 + -6.10193266 0.41329035 + -6.09793226 0.41232855 + -6.09393186 0.41137001 + -6.08993146 0.41041470 + -6.08593106 0.40946260 + -6.08193066 0.40851369 + -6.07793026 0.40756795 + -6.07392986 0.40662537 + -6.06992946 0.40568591 + -6.06592906 0.40474956 + -6.06192866 0.40381630 + -6.05792826 0.40288611 + -6.05392786 0.40195898 + -6.04992746 0.40103487 + -6.04592706 0.40011378 + -6.04192666 0.39919568 + -6.03792626 0.39828055 + -6.03392586 0.39736839 + -6.02992546 0.39645916 + -6.02592506 0.39555285 + -6.02192466 0.39464945 + -6.01792426 0.39374893 + -6.01392386 0.39285128 + -6.00992346 0.39195648 + -6.00592306 0.39106451 + -6.00192266 0.39017536 + -5.99792226 0.38928902 + -5.99392186 0.38840545 + -5.98992146 0.38752465 + -5.98592106 0.38664661 + -5.98192066 0.38577129 + -5.97792026 0.38489870 + -5.97391986 0.38402881 + -5.96991946 0.38316161 + -5.96591906 0.38229707 + -5.96191866 0.38143520 + -5.95791826 0.38057596 + -5.95391786 0.37971935 + -5.94991746 0.37886535 + -5.94591706 0.37801394 + -5.94191666 0.37716512 + -5.93791626 0.37631886 + -5.93391586 0.37547515 + -5.92991546 0.37463398 + -5.92591506 0.37379534 + -5.92191466 0.37295920 + -5.91791426 0.37212556 + -5.91391386 0.37129440 + -5.90991346 0.37046570 + -5.90591306 0.36963946 + -5.90191266 0.36881567 + -5.89791226 0.36799430 + -5.89391186 0.36717534 + -5.88991146 0.36635879 + -5.88591106 0.36554463 + -5.88191066 0.36473284 + -5.87791026 0.36392342 + -5.87390986 0.36311634 + -5.86990946 0.36231161 + -5.86590906 0.36150920 + -5.86190866 0.36070911 + -5.85790826 0.35991132 + -5.85390786 0.35911582 + -5.84990746 0.35832259 + -5.84590706 0.35753163 + -5.84190666 0.35674293 + -5.83790626 0.35595647 + -5.83390586 0.35517223 + -5.82990546 0.35439022 + -5.82590506 0.35361041 + -5.82190466 0.35283280 + -5.81790426 0.35205738 + -5.81390386 0.35128413 + -5.80990346 0.35051304 + -5.80590306 0.34974410 + -5.80190266 0.34897731 + -5.79790226 0.34821264 + -5.79390186 0.34745009 + -5.78990146 0.34668966 + -5.78590106 0.34593132 + -5.78190066 0.34517507 + -5.77790026 0.34442090 + -5.77389986 0.34366880 + -5.76989946 0.34291875 + -5.76589906 0.34217076 + -5.76189866 0.34142480 + -5.75789826 0.34068088 + -5.75389786 0.33993897 + -5.74989746 0.33919907 + -5.74589706 0.33846117 + -5.74189666 0.33772527 + -5.73789626 0.33699134 + -5.73389586 0.33625939 + -5.72989546 0.33552940 + -5.72589506 0.33480136 + -5.72189466 0.33407526 + -5.71789426 0.33335110 + -5.71389386 0.33262886 + -5.70989346 0.33190854 + -5.70589306 0.33119013 + -5.70189266 0.33047361 + -5.69789226 0.32975898 + -5.69389186 0.32904624 + -5.68989146 0.32833536 + -5.68589106 0.32762634 + -5.68189066 0.32691918 + -5.67789025 0.32621387 + -5.67388985 0.32551039 + -5.66988945 0.32480874 + -5.66588905 0.32410891 + -5.66188865 0.32341089 + -5.65788825 0.32271468 + -5.65388785 0.32202027 + -5.64988745 0.32132765 + -5.64588705 0.32063680 + -5.64188665 0.31994773 + -5.63788625 0.31926043 + -5.63388585 0.31857489 + -5.62988545 0.31789110 + -5.62588505 0.31720905 + -5.62188465 0.31652874 + -5.61788425 0.31585015 + -5.61388385 0.31517329 + -5.60988345 0.31449814 + -5.60588305 0.31382470 + -5.60188265 0.31315295 + -5.59788225 0.31248290 + -5.59388185 0.31181452 + -5.58988145 0.31114783 + -5.58588105 0.31048280 + -5.58188065 0.30981944 + -5.57788025 0.30915772 + -5.57387985 0.30849766 + -5.56987945 0.30783923 + -5.56587905 0.30718243 + -5.56187865 0.30652726 + -5.55787825 0.30587371 + -5.55387785 0.30522177 + -5.54987745 0.30457144 + -5.54587705 0.30392270 + -5.54187665 0.30327555 + -5.53787625 0.30262999 + -5.53387585 0.30198601 + -5.52987545 0.30134361 + -5.52587505 0.30070277 + -5.52187465 0.30006349 + -5.51787425 0.29942577 + -5.51387385 0.29878959 + -5.50987345 0.29815496 + -5.50587305 0.29752187 + -5.50187265 0.29689031 + -5.49787225 0.29626028 + -5.49387185 0.29563176 + -5.48987145 0.29500476 + -5.48587105 0.29437927 + -5.48187065 0.29375527 + -5.47787025 0.29313278 + -5.47386985 0.29251177 + -5.46986945 0.29189224 + -5.46586905 0.29127419 + -5.46186865 0.29065762 + -5.45786825 0.29004250 + -5.45386785 0.28942885 + -5.44986745 0.28881664 + -5.44586705 0.28820588 + -5.44186665 0.28759657 + -5.43786625 0.28698868 + -5.43386585 0.28638223 + -5.42986545 0.28577720 + -5.42586505 0.28517359 + -5.42186465 0.28457139 + -5.41786425 0.28397061 + -5.41386385 0.28337123 + -5.40986345 0.28277324 + -5.40586305 0.28217666 + -5.40186265 0.28158147 + -5.39786225 0.28098767 + -5.39386185 0.28039526 + -5.38986145 0.27980423 + -5.38586105 0.27921459 + -5.38186065 0.27862632 + -5.37786025 0.27803943 + -5.37385985 0.27745393 + -5.36985945 0.27686980 + -5.36585905 0.27628705 + -5.36185865 0.27570567 + -5.35785825 0.27512568 + -5.35385785 0.27454708 + -5.34985745 0.27396986 + -5.34585705 0.27339404 + -5.34185665 0.27281963 + -5.33785625 0.27224663 + -5.33385585 0.27167505 + -5.32985545 0.27110492 + -5.32585505 0.27053624 + -5.32185465 0.26996905 + -5.31785425 0.26940337 + -5.31385385 0.26883924 + -5.30985345 0.26827668 + -5.30585305 0.26771575 + -5.30185265 0.26715649 + -5.29785225 0.26659897 + -5.29385185 0.26604325 + -5.28985145 0.26548941 + -5.28585105 0.26493755 + -5.28185065 0.26438776 + -5.27785025 0.26384016 + -5.27384985 0.26329490 + -5.26984945 0.26275211 + -5.26584905 0.26221197 + -5.26184865 0.26167468 + -5.25784825 0.26114044 + -5.25384785 0.26060951 + -5.24984745 0.26008215 + -5.24584705 0.25955868 + -5.24184665 0.25903942 + -5.23784625 0.25852476 + -5.23384585 0.25801511 + -5.22984545 0.25751095 + -5.22584505 0.25701278 + -5.22184465 0.25652117 + -5.21784425 0.25603675 + -5.21384385 0.25556021 + -5.20984345 0.25509230 + -5.20584305 0.25463385 + -5.20184265 0.25418577 + -5.19784225 0.25374905 + -5.19384185 0.25332476 + -5.18984145 0.25291407 + -5.18584105 0.25251826 + -5.18184065 0.25213870 + -5.17784025 0.25177687 + -5.17383985 0.25143439 + -5.16983945 0.25111297 + -5.16583905 0.25081448 + -5.16183865 0.25054089 + -5.15783825 0.25029433 + -5.15383785 0.25007707 + -5.14983745 0.24989152 + -5.14583705 0.24974025 + -5.14183665 0.24962598 + -5.13783625 0.24955158 + -5.13383585 0.24952010 + -5.12983545 0.24953472 + -5.12583505 0.24959882 + -5.12183465 0.24971590 + -5.11783425 0.24988967 + -5.11383385 0.25012394 + -5.10983345 0.25042273 + -5.10583305 0.25079019 + -5.10183265 0.25123061 + -5.09783225 0.25174843 + -5.09383185 0.25234822 + -5.08983145 0.25303468 + -5.08583105 0.25381262 + -5.08183065 0.25468696 + -5.07783025 0.25566269 + -5.07382985 0.25674491 + -5.06982945 0.25793876 + -5.06582905 0.25924943 + -5.06182865 0.26068214 + -5.05782825 0.26224214 + -5.05382785 0.26393463 + -5.04982745 0.26576482 + -5.04582705 0.26773786 + -5.04182665 0.26985884 + -5.03782625 0.27213272 + -5.03382585 0.27456440 + -5.02982545 0.27715860 + -5.02582505 0.27991989 + -5.02182465 0.28285269 + -5.01782425 0.28596117 + -5.01382385 0.28924929 + -5.00982345 0.29272078 + -5.00582305 0.29637908 + -5.00182265 0.30022735 + -4.99782225 0.30426845 + -4.99382185 0.30850491 + -4.98982145 0.31293892 + -4.98582105 0.31757232 + -4.98182065 0.32240659 + -4.97782025 0.32744284 + -4.97381985 0.33268177 + -4.96981945 0.33812373 + -4.96581905 0.34376864 + -4.96181865 0.34961605 + -4.95781825 0.35566511 + -4.95381785 0.36191456 + -4.94981745 0.36836278 + -4.94581705 0.37500775 + -4.94181665 0.38184710 + -4.93781625 0.38887807 + -4.93381585 0.39609757 + -4.92981545 0.40350220 + -4.92581505 0.41108820 + -4.92181465 0.41885155 + -4.91781425 0.42678794 + -4.91381385 0.43489281 + -4.90981345 0.44316135 + -4.90581305 0.45158856 + -4.90181265 0.46016922 + -4.89781225 0.46889798 + -4.89381185 0.47776932 + -4.88981145 0.48677760 + -4.88581105 0.49591709 + -4.88181065 0.50518199 + -4.87781025 0.51456642 + -4.87380985 0.52406447 + -4.86980945 0.53367024 + -4.86580905 0.54337778 + -4.86180865 0.55318118 + -4.85780825 0.56307456 + -4.85380785 0.57305206 + -4.84980745 0.58310787 + -4.84580705 0.59323625 + -4.84180665 0.60343149 + -4.83780625 0.61368797 + -4.83380585 0.62400012 + -4.82980545 0.63436244 + -4.82580505 0.64476947 + -4.82180465 0.65521583 + -4.81780425 0.66569616 + -4.81380385 0.67620518 + -4.80980345 0.68673760 + -4.80580305 0.69728818 + -4.80180265 0.70785167 + -4.79780225 0.71842283 + -4.79380185 0.72899639 + -4.78980145 0.73956706 + -4.78580105 0.75012951 + -4.78180065 0.76067834 + -4.77780025 0.77120809 + -4.77379985 0.78171320 + -4.76979945 0.79218805 + -4.76579905 0.80262688 + -4.76179865 0.81302385 + -4.75779825 0.82337296 + -4.75379785 0.83366812 + -4.74979745 0.84390309 + -4.74579705 0.85407151 + -4.74179665 0.86416687 + -4.73779625 0.87418254 + -4.73379585 0.88411177 + -4.72979545 0.89394769 + -4.72579505 0.90368332 + -4.72179465 0.91331158 + -4.71779425 0.92282531 + -4.71379385 0.93221729 + -4.70979345 0.94148026 + -4.70579305 0.95060691 + -4.70179265 0.95958996 + -4.69779225 0.96842211 + -4.69379185 0.97709615 + -4.68979145 0.98560491 + -4.68579105 0.99394136 + -4.68179065 1.00209856 + -4.67779024 1.01006975 + -4.67378984 1.01784838 + -4.66978944 1.02542809 + -4.66578904 1.03280279 + -4.66178864 1.03996667 + -4.65778824 1.04691422 + -4.65378784 1.05364027 + -4.64978744 1.06014001 + -4.64578704 1.06640902 + -4.64178664 1.07244330 + -4.63778624 1.07823925 + -4.63378584 1.08379374 + -4.62978544 1.08910411 + -4.62578504 1.09416816 + -4.62178464 1.09898420 + -4.61778424 1.10355100 + -4.61378384 1.10786788 + -4.60978344 1.11193463 + -4.60578304 1.11575156 + -4.60178264 1.11931949 + -4.59778224 1.12263972 + -4.59378184 1.12571405 + -4.58978144 1.12854476 + -4.58578104 1.13113459 + -4.58178064 1.13348672 + -4.57778024 1.13560480 + -4.57377984 1.13749284 + -4.56977944 1.13915528 + -4.56577904 1.14059692 + -4.56177864 1.14182289 + -4.55777824 1.14283867 + -4.55377784 1.14364999 + -4.54977744 1.14426289 + -4.54577704 1.14468363 + -4.54177664 1.14491866 + -4.53777624 1.14497464 + -4.53377584 1.14485837 + -4.52977544 1.14457680 + -4.52577504 1.14413695 + -4.52177464 1.14354594 + -4.51777424 1.14281092 + -4.51377384 1.14193908 + -4.50977344 1.14093759 + -4.50577304 1.13981363 + -4.50177264 1.13857431 + -4.49777224 1.13722668 + -4.49377184 1.13577773 + -4.48977144 1.13423434 + -4.48577104 1.13260326 + -4.48177064 1.13089115 + -4.47777024 1.12910449 + -4.47376984 1.12724963 + -4.46976944 1.12533277 + -4.46576904 1.12335991 + -4.46176864 1.12133690 + -4.45776824 1.11926939 + -4.45376784 1.11716284 + -4.44976744 1.11502254 + -4.44576704 1.11285356 + -4.44176664 1.11066079 + -4.43776624 1.10844891 + -4.43376584 1.10622242 + -4.42976544 1.10398561 + -4.42576504 1.10174257 + -4.42176464 1.09949721 + -4.41776424 1.09725324 + -4.41376384 1.09501419 + -4.40976344 1.09278340 + -4.40576304 1.09056403 + -4.40176264 1.08835906 + -4.39776224 1.08617131 + -4.39376184 1.08400341 + -4.38976144 1.08185785 + -4.38576104 1.07973695 + -4.38176064 1.07764287 + -4.37776024 1.07557763 + -4.37375984 1.07354311 + -4.36975944 1.07154103 + -4.36575904 1.06957299 + -4.36175864 1.06764046 + -4.35775824 1.06574479 + -4.35375784 1.06388719 + -4.34975744 1.06206877 + -4.34575704 1.06029052 + -4.34175664 1.05855333 + -4.33775624 1.05685798 + -4.33375584 1.05520515 + -4.32975544 1.05359544 + -4.32575504 1.05202933 + -4.32175464 1.05050725 + -4.31775424 1.04902951 + -4.31375384 1.04759637 + -4.30975344 1.04620800 + -4.30575304 1.04486449 + -4.30175264 1.04356588 + -4.29775224 1.04231214 + -4.29375184 1.04110317 + -4.28975144 1.03993882 + -4.28575104 1.03881887 + -4.28175064 1.03774306 + -4.27775024 1.03671109 + -4.27374984 1.03572260 + -4.26974944 1.03477719 + -4.26574904 1.03387441 + -4.26174864 1.03301381 + -4.25774824 1.03219486 + -4.25374784 1.03141704 + -4.24974744 1.03067977 + -4.24574704 1.02998245 + -4.24174664 1.02932449 + -4.23774624 1.02870524 + -4.23374584 1.02812405 + -4.22974544 1.02758027 + -4.22574504 1.02707321 + -4.22174464 1.02660219 + -4.21774424 1.02616653 + -4.21374384 1.02576551 + -4.20974344 1.02539846 + -4.20574304 1.02506467 + -4.20174264 1.02476345 + -4.19774224 1.02449410 + -4.19374184 1.02425594 + -4.18974144 1.02404829 + -4.18574104 1.02387049 + -4.18174064 1.02372187 + -4.17774024 1.02360178 + -4.17373984 1.02350960 + -4.16973944 1.02344470 + -4.16573904 1.02340648 + -4.16173864 1.02339433 + -4.15773824 1.02340769 + -4.15373784 1.02344599 + -4.14973744 1.02350870 + -4.14573704 1.02359527 + -4.14173664 1.02370520 + -4.13773624 1.02383799 + -4.13373584 1.02399317 + -4.12973544 1.02417026 + -4.12573504 1.02436883 + -4.12173464 1.02458845 + -4.11773424 1.02482868 + -4.11373384 1.02508914 + -4.10973344 1.02536944 + -4.10573304 1.02566920 + -4.10173264 1.02598807 + -4.09773224 1.02632570 + -4.09373184 1.02668175 + -4.08973144 1.02705591 + -4.08573104 1.02744788 + -4.08173064 1.02785735 + -4.07773024 1.02828405 + -4.07372984 1.02872770 + -4.06972944 1.02918804 + -4.06572904 1.02966482 + -4.06172864 1.03015782 + -4.05772824 1.03066679 + -4.05372784 1.03119153 + -4.04972744 1.03173182 + -4.04572704 1.03228749 + -4.04172664 1.03285833 + -4.03772624 1.03344419 + -4.03372584 1.03404489 + -4.02972544 1.03466029 + -4.02572504 1.03529023 + -4.02172464 1.03593459 + -4.01772424 1.03659324 + -4.01372384 1.03726608 + -4.00972344 1.03795298 + -4.00572304 1.03865386 + -4.00172264 1.03936863 + -3.99772224 1.04009720 + -3.99372184 1.04083951 + -3.98972144 1.04159549 + -3.98572104 1.04236508 + -3.98172064 1.04314822 + -3.97772024 1.04394487 + -3.97371984 1.04475499 + -3.96971944 1.04557855 + -3.96571904 1.04641551 + -3.96171864 1.04726584 + -3.95771824 1.04812953 + -3.95371784 1.04900655 + -3.94971744 1.04989690 + -3.94571704 1.05080056 + -3.94171664 1.05171752 + -3.93771624 1.05264778 + -3.93371584 1.05359134 + -3.92971544 1.05454820 + -3.92571504 1.05551837 + -3.92171464 1.05650185 + -3.91771424 1.05749867 + -3.91371384 1.05850884 + -3.90971344 1.05953238 + -3.90571304 1.06056932 + -3.90171264 1.06161969 + -3.89771224 1.06268352 + -3.89371184 1.06376087 + -3.88971144 1.06485177 + -3.88571104 1.06595627 + -3.88171064 1.06707445 + -3.87771024 1.06820637 + -3.87370984 1.06935209 + -3.86970944 1.07051170 + -3.86570904 1.07168529 + -3.86170864 1.07287295 + -3.85770824 1.07407478 + -3.85370784 1.07529088 + -3.84970744 1.07652139 + -3.84570704 1.07776641 + -3.84170664 1.07902608 + -3.83770624 1.08030054 + -3.83370584 1.08158993 + -3.82970544 1.08289439 + -3.82570504 1.08421410 + -3.82170464 1.08554921 + -3.81770424 1.08689989 + -3.81370384 1.08826633 + -3.80970344 1.08964870 + -3.80570304 1.09104719 + -3.80170264 1.09246202 + -3.79770224 1.09389337 + -3.79370184 1.09534146 + -3.78970144 1.09680651 + -3.78570104 1.09828875 + -3.78170064 1.09978840 + -3.77770024 1.10130573 + -3.77369984 1.10284097 + -3.76969944 1.10439439 + -3.76569904 1.10596627 + -3.76169864 1.10755689 + -3.75769824 1.10916655 + -3.75369784 1.11079555 + -3.74969744 1.11244423 + -3.74569704 1.11411292 + -3.74169664 1.11580198 + -3.73769624 1.11751178 + -3.73369584 1.11924272 + -3.72969544 1.12099519 + -3.72569504 1.12276964 + -3.72169464 1.12456650 + -3.71769424 1.12638626 + -3.71369384 1.12822940 + -3.70969344 1.13009645 + -3.70569304 1.13198795 + -3.70169264 1.13390445 + -3.69769224 1.13584656 + -3.69369184 1.13781489 + -3.68969144 1.13981008 + -3.68569104 1.14183280 + -3.68169064 1.14388375 + -3.67769023 1.14596366 + -3.67368983 1.14807327 + -3.66968943 1.15021337 + -3.66568903 1.15238475 + -3.66168863 1.15458825 + -3.65768823 1.15682473 + -3.65368783 1.15909506 + -3.64968743 1.16140017 + -3.64568703 1.16374097 + -3.64168663 1.16611842 + -3.63768623 1.16853350 + -3.63368583 1.17098720 + -3.62968543 1.17348054 + -3.62568503 1.17601454 + -3.62168463 1.17859024 + -3.61768423 1.18120870 + -3.61368383 1.18387098 + -3.60968343 1.18657815 + -3.60568303 1.18933125 + -3.60168263 1.19213137 + -3.59768223 1.19497954 + -3.59368183 1.19787681 + -3.58968143 1.20082420 + -3.58568103 1.20382270 + -3.58168063 1.20687327 + -3.57768023 1.20997685 + -3.57367983 1.21313430 + -3.56967943 1.21634647 + -3.56567903 1.21961411 + -3.56167863 1.22293793 + -3.55767823 1.22631854 + -3.55367783 1.22975647 + -3.54967743 1.23325216 + -3.54567703 1.23680595 + -3.54167663 1.24041804 + -3.53767623 1.24408852 + -3.53367583 1.24781734 + -3.52967543 1.25160432 + -3.52567503 1.25544911 + -3.52167463 1.25935119 + -3.51767423 1.26330989 + -3.51367383 1.26732433 + -3.50967343 1.27139347 + -3.50567303 1.27551605 + -3.50167263 1.27969061 + -3.49767223 1.28391550 + -3.49367183 1.28818882 + -3.48967143 1.29250849 + -3.48567103 1.29687218 + -3.48167063 1.30127735 + -3.47767023 1.30572122 + -3.47366983 1.31020082 + -3.46966943 1.31471292 + -3.46566903 1.31925409 + -3.46166863 1.32382069 + -3.45766823 1.32840887 + -3.45366783 1.33301459 + -3.44966743 1.33763359 + -3.44566703 1.34226148 + -3.44166663 1.34689365 + -3.43766623 1.35152538 + -3.43366583 1.35615179 + -3.42966543 1.36076789 + -3.42566503 1.36536857 + -3.42166463 1.36994864 + -3.41766423 1.37450285 + -3.41366383 1.37902590 + -3.40966343 1.38351244 + -3.40566303 1.38795715 + -3.40166263 1.39235471 + -3.39766223 1.39669983 + -3.39366183 1.40098728 + -3.38966143 1.40521194 + -3.38566103 1.40936874 + -3.38166063 1.41345279 + -3.37766023 1.41745931 + -3.37365983 1.42138370 + -3.36965943 1.42522153 + -3.36565903 1.42896859 + -3.36165863 1.43262087 + -3.35765823 1.43617460 + -3.35365783 1.43962628 + -3.34965743 1.44297265 + -3.34565703 1.44621073 + -3.34165663 1.44933781 + -3.33765623 1.45235149 + -3.33365583 1.45524967 + -3.32965543 1.45803054 + -3.32565503 1.46069260 + -3.32165463 1.46323465 + -3.31765423 1.46565581 + -3.31365383 1.46795550 + -3.30965343 1.47013343 + -3.30565303 1.47218963 + -3.30165263 1.47412439 + -3.29765223 1.47593831 + -3.29365183 1.47763223 + -3.28965143 1.47920728 + -3.28565103 1.48066482 + -3.28165063 1.48200646 + -3.27765023 1.48323403 + -3.27364983 1.48434956 + -3.26964943 1.48535527 + -3.26564903 1.48625359 + -3.26164863 1.48704708 + -3.25764823 1.48773845 + -3.25364783 1.48833056 + -3.24964743 1.48882637 + -3.24564703 1.48922894 + -3.24164663 1.48954141 + -3.23764623 1.48976698 + -3.23364583 1.48990892 + -3.22964543 1.48997052 + -3.22564503 1.48995510 + -3.22164463 1.48986597 + -3.21764423 1.48970645 + -3.21364383 1.48947984 + -3.20964343 1.48918940 + -3.20564303 1.48883837 + -3.20164263 1.48842991 + -3.19764223 1.48796714 + -3.19364183 1.48745310 + -3.18964143 1.48689075 + -3.18564103 1.48628298 + -3.18164063 1.48563257 + -3.17764023 1.48494223 + -3.17363983 1.48421456 + -3.16963943 1.48345204 + -3.16563903 1.48265707 + -3.16163863 1.48183193 + -3.15763823 1.48097879 + -3.15363783 1.48009973 + -3.14963743 1.47919670 + -3.14563703 1.47827156 + -3.14163663 1.47732605 + -3.13763623 1.47636181 + -3.13363583 1.47538039 + -3.12963543 1.47438323 + -3.12563503 1.47337168 + -3.12163463 1.47234700 + -3.11763423 1.47131036 + -3.11363383 1.47026284 + -3.10963343 1.46920545 + -3.10563303 1.46813912 + -3.10163263 1.46706472 + -3.09763223 1.46598304 + -3.09363183 1.46489481 + -3.08963143 1.46380070 + -3.08563103 1.46270134 + -3.08163063 1.46159729 + -3.07763023 1.46048908 + -3.07362983 1.45937719 + -3.06962943 1.45826205 + -3.06562903 1.45714407 + -3.06162863 1.45602363 + -3.05762823 1.45490106 + -3.05362783 1.45377667 + -3.04962743 1.45265074 + -3.04562703 1.45152354 + -3.04162663 1.45039531 + -3.03762623 1.44926626 + -3.03362583 1.44813659 + -3.02962543 1.44700648 + -3.02562503 1.44587608 + -3.02162463 1.44474555 + -3.01762423 1.44361501 + -3.01362383 1.44248458 + -3.00962343 1.44135436 + -3.00562303 1.44022443 + -3.00162263 1.43909488 + -2.99762223 1.43796577 + -2.99362183 1.43683714 + -2.98962143 1.43570905 + -2.98562103 1.43458152 + -2.98162063 1.43345458 + -2.97762023 1.43232824 + -2.97361983 1.43120252 + -2.96961943 1.43007741 + -2.96561903 1.42895291 + -2.96161863 1.42782902 + -2.95761823 1.42670572 + -2.95361783 1.42558300 + -2.94961743 1.42446085 + -2.94561703 1.42333924 + -2.94161663 1.42221816 + -2.93761623 1.42109761 + -2.93361583 1.41997755 + -2.92961543 1.41885798 + -2.92561503 1.41773890 + -2.92161463 1.41662029 + -2.91761423 1.41550215 + -2.91361383 1.41438448 + -2.90961343 1.41326728 + -2.90561303 1.41215057 + -2.90161263 1.41103435 + -2.89761223 1.40991864 + -2.89361183 1.40880346 + -2.88961143 1.40768882 + -2.88561103 1.40657474 + -2.88161063 1.40546125 + -2.87761023 1.40434838 + -2.87360983 1.40323615 + -2.86960943 1.40212458 + -2.86560903 1.40101369 + -2.86160863 1.39990352 + -2.85760823 1.39879407 + -2.85360783 1.39768537 + -2.84960743 1.39657744 + -2.84560703 1.39547027 + -2.84160663 1.39436389 + -2.83760623 1.39325830 + -2.83360583 1.39215349 + -2.82960543 1.39104947 + -2.82560503 1.38994623 + -2.82160463 1.38884375 + -2.81760423 1.38774203 + -2.81360383 1.38664105 + -2.80960343 1.38554079 + -2.80560303 1.38444122 + -2.80160263 1.38334233 + -2.79760223 1.38224409 + -2.79360183 1.38114647 + -2.78960143 1.38004946 + -2.78560103 1.37895303 + -2.78160063 1.37785715 + -2.77760023 1.37676182 + -2.77359983 1.37566700 + -2.76959943 1.37457268 + -2.76559903 1.37347885 + -2.76159863 1.37238550 + -2.75759823 1.37129262 + -2.75359783 1.37020022 + -2.74959743 1.36910828 + -2.74559703 1.36801682 + -2.74159663 1.36692584 + -2.73759623 1.36583536 + -2.73359583 1.36474538 + -2.72959543 1.36365592 + -2.72559503 1.36256700 + -2.72159463 1.36147864 + -2.71759423 1.36039086 + -2.71359383 1.35930368 + -2.70959343 1.35821712 + -2.70559303 1.35713120 + -2.70159263 1.35604595 + -2.69759223 1.35496137 + -2.69359183 1.35387750 + -2.68959143 1.35279434 + -2.68559103 1.35171190 + -2.68159063 1.35063020 + -2.67759022 1.34954924 + -2.67358982 1.34846903 + -2.66958942 1.34738957 + -2.66558902 1.34631086 + -2.66158862 1.34523288 + -2.65758822 1.34415564 + -2.65358782 1.34307912 + -2.64958742 1.34200331 + -2.64558702 1.34092819 + -2.64158662 1.33985375 + -2.63758622 1.33877997 + -2.63358582 1.33770683 + -2.62958542 1.33663432 + -2.62558502 1.33556240 + -2.62158462 1.33449106 + -2.61758422 1.33342029 + -2.61358382 1.33235006 + -2.60958342 1.33128036 + -2.60558302 1.33021118 + -2.60158262 1.32914250 + -2.59758222 1.32807431 + -2.59358182 1.32700661 + -2.58958142 1.32593940 + -2.58558102 1.32487266 + -2.58158062 1.32380641 + -2.57758022 1.32274064 + -2.57357982 1.32167536 + -2.56957942 1.32061059 + -2.56557902 1.31954632 + -2.56157862 1.31848259 + -2.55757822 1.31741939 + -2.55357782 1.31635675 + -2.54957742 1.31529469 + -2.54557702 1.31423321 + -2.54157662 1.31317235 + -2.53757622 1.31211212 + -2.53357582 1.31105254 + -2.52957542 1.30999362 + -2.52557502 1.30893538 + -2.52157462 1.30787784 + -2.51757422 1.30682100 + -2.51357382 1.30576489 + -2.50957342 1.30470949 + -2.50557302 1.30365484 + -2.50157262 1.30260091 + -2.49757222 1.30154773 + -2.49357182 1.30049528 + -2.48957142 1.29944355 + -2.48557102 1.29839256 + -2.48157062 1.29734227 + -2.47757022 1.29629269 + -2.47356982 1.29524379 + -2.46956942 1.29419557 + -2.46556902 1.29314801 + -2.46156862 1.29210108 + -2.45756822 1.29105478 + -2.45356782 1.29000908 + -2.44956742 1.28896397 + -2.44556702 1.28791942 + -2.44156662 1.28687543 + -2.43756622 1.28583197 + -2.43356582 1.28478904 + -2.42956542 1.28374662 + -2.42556502 1.28270470 + -2.42156462 1.28166328 + -2.41756422 1.28062236 + -2.41356382 1.27958192 + -2.40956342 1.27854198 + -2.40556302 1.27750253 + -2.40156262 1.27646359 + -2.39756222 1.27542516 + -2.39356182 1.27438726 + -2.38956142 1.27334990 + -2.38556102 1.27231310 + -2.38156062 1.27127688 + -2.37756022 1.27024125 + -2.37355982 1.26920623 + -2.36955942 1.26817185 + -2.36555902 1.26713813 + -2.36155862 1.26610509 + -2.35755822 1.26507274 + -2.35355782 1.26404110 + -2.34955742 1.26301019 + -2.34555702 1.26198003 + -2.34155662 1.26095062 + -2.33755622 1.25992198 + -2.33355582 1.25889411 + -2.32955542 1.25786701 + -2.32555502 1.25684068 + -2.32155462 1.25581512 + -2.31755422 1.25479033 + -2.31355382 1.25376630 + -2.30955342 1.25274300 + -2.30555302 1.25172044 + -2.30155262 1.25069859 + -2.29755222 1.24967744 + -2.29355182 1.24865696 + -2.28955142 1.24763714 + -2.28555102 1.24661796 + -2.28155062 1.24559939 + -2.27755022 1.24458142 + -2.27354982 1.24356403 + -2.26954942 1.24254721 + -2.26554902 1.24153093 + -2.26154862 1.24051518 + -2.25754822 1.23949997 + -2.25354782 1.23848527 + -2.24954742 1.23747109 + -2.24554702 1.23645742 + -2.24154662 1.23544427 + -2.23754622 1.23443165 + -2.23354582 1.23341956 + -2.22954542 1.23240803 + -2.22554502 1.23139705 + -2.22154462 1.23038665 + -2.21754422 1.22937686 + -2.21354382 1.22836769 + -2.20954342 1.22735915 + -2.20554302 1.22635129 + -2.20154262 1.22534412 + -2.19754222 1.22433765 + -2.19354182 1.22333192 + -2.18954142 1.22232695 + -2.18554102 1.22132274 + -2.18154062 1.22031933 + -2.17754022 1.21931671 + -2.17353982 1.21831491 + -2.16953942 1.21731392 + -2.16553902 1.21631375 + -2.16153862 1.21531441 + -2.15753822 1.21431588 + -2.15353782 1.21331815 + -2.14953742 1.21232123 + -2.14553702 1.21132509 + -2.14153662 1.21032971 + -2.13753622 1.20933508 + -2.13353582 1.20834117 + -2.12953542 1.20734796 + -2.12553502 1.20635541 + -2.12153462 1.20536350 + -2.11753422 1.20437220 + -2.11353382 1.20338147 + -2.10953342 1.20239129 + -2.10553302 1.20140161 + -2.10153262 1.20041240 + -2.09753222 1.19942363 + -2.09353182 1.19843526 + -2.08953142 1.19744726 + -2.08553102 1.19645958 + -2.08153062 1.19547217 + -2.07753022 1.19448501 + -2.07352982 1.19349804 + -2.06952942 1.19251120 + -2.06552902 1.19152445 + -2.06152862 1.19053772 + -2.05752822 1.18955093 + -2.05352782 1.18856401 + -2.04952742 1.18757686 + -2.04552702 1.18658939 + -2.04152662 1.18560146 + -2.03752622 1.18461295 + -2.03352582 1.18362370 + -2.02952542 1.18263352 + -2.02552502 1.18164223 + -2.02152462 1.18064959 + -2.01752422 1.17965535 + -2.01352382 1.17865922 + -2.00952342 1.17766089 + -2.00552302 1.17665998 + -2.00152262 1.17565610 + -1.99752222 1.17464881 + -1.99352182 1.17363763 + -1.98952142 1.17262201 + -1.98552102 1.17160136 + -1.98152062 1.17057504 + -1.97752022 1.16954235 + -1.97351982 1.16850253 + -1.96951942 1.16745473 + -1.96551902 1.16639806 + -1.96151862 1.16533156 + -1.95751822 1.16425418 + -1.95351782 1.16316481 + -1.94951742 1.16206223 + -1.94551702 1.16094518 + -1.94151662 1.15981228 + -1.93751622 1.15866209 + -1.93351582 1.15749305 + -1.92951542 1.15630353 + -1.92551502 1.15509182 + -1.92151462 1.15385608 + -1.91751422 1.15259441 + -1.91351382 1.15130479 + -1.90951342 1.14998512 + -1.90551302 1.14863320 + -1.90151262 1.14724674 + -1.89751222 1.14582335 + -1.89351182 1.14436057 + -1.88951142 1.14285582 + -1.88551102 1.14130649 + -1.88151062 1.13970984 + -1.87751022 1.13806308 + -1.87350982 1.13636337 + -1.86950942 1.13460778 + -1.86550902 1.13279336 + -1.86150862 1.13091710 + -1.85750822 1.12897595 + -1.85350782 1.12696687 + -1.84950742 1.12488677 + -1.84550702 1.12273259 + -1.84150662 1.12050128 + -1.83750622 1.11818981 + -1.83350582 1.11579519 + -1.82950542 1.11331450 + -1.82550502 1.11074488 + -1.82150462 1.10808356 + -1.81750422 1.10532789 + -1.81350382 1.10247531 + -1.80950342 1.09952342 + -1.80550302 1.09646996 + -1.80150262 1.09331284 + -1.79750222 1.09005014 + -1.79350182 1.08668017 + -1.78950142 1.08320142 + -1.78550102 1.07961262 + -1.78150062 1.07591273 + -1.77750022 1.07210097 + -1.77349982 1.06817682 + -1.76949942 1.06414002 + -1.76549902 1.05999059 + -1.76149862 1.05572886 + -1.75749822 1.05135541 + -1.75349782 1.04687115 + -1.74949742 1.04227726 + -1.74549702 1.03757523 + -1.74149662 1.03276685 + -1.73749622 1.02785417 + -1.73349582 1.02283957 + -1.72949542 1.01772568 + -1.72549502 1.01251541 + -1.72149462 1.00721194 + -1.71749422 1.00181869 + -1.71349382 0.99633932 + -1.70949342 0.99077771 + -1.70549302 0.98513796 + -1.70149262 0.97942435 + -1.69749222 0.97364134 + -1.69349182 0.96779353 + -1.68949142 0.96188567 + -1.68549102 0.95592262 + -1.68149062 0.94990934 + -1.67749021 0.94385085 + -1.67348981 0.93775223 + -1.66948941 0.93161860 + -1.66548901 0.92545508 + -1.66148861 0.91926678 + -1.65748821 0.91305878 + -1.65348781 0.90683613 + -1.64948741 0.90060378 + -1.64548701 0.89436662 + -1.64148661 0.88812943 + -1.63748621 0.88189686 + -1.63348581 0.87567344 + -1.62948541 0.86946355 + -1.62548501 0.86327141 + -1.62148461 0.85710106 + -1.61748421 0.85095637 + -1.61348381 0.84484101 + -1.60948341 0.83875848 + -1.60548301 0.83271203 + -1.60148261 0.82670475 + -1.59748221 0.82073949 + -1.59348181 0.81481890 + -1.58948141 0.80894542 + -1.58548101 0.80312125 + -1.58148061 0.79734842 + -1.57748021 0.79162872 + -1.57347981 0.78596375 + -1.56947941 0.78035489 + -1.56547901 0.77480336 + -1.56147861 0.76931015 + -1.55747821 0.76387608 + -1.55347781 0.75850182 + -1.54947741 0.75318783 + -1.54547701 0.74793444 + -1.54147661 0.74274182 + -1.53747621 0.73760998 + -1.53347581 0.73253882 + -1.52947541 0.72752810 + -1.52547501 0.72257748 + -1.52147461 0.71768648 + -1.51747421 0.71285457 + -1.51347381 0.70808108 + -1.50947341 0.70336530 + -1.50547301 0.69870642 + -1.50147261 0.69410359 + -1.49747221 0.68955589 + -1.49347181 0.68506236 + -1.48947141 0.68062199 + -1.48547101 0.67623375 + -1.48147061 0.67189657 + -1.47747021 0.66760936 + -1.47346981 0.66337104 + -1.46946941 0.65918049 + -1.46546901 0.65503660 + -1.46146861 0.65093825 + -1.45746821 0.64688436 + -1.45346781 0.64287381 + -1.44946741 0.63890553 + -1.44546701 0.63497844 + -1.44146661 0.63109150 + -1.43746621 0.62724366 + -1.43346581 0.62343393 + -1.42946541 0.61966131 + -1.42546501 0.61592485 + -1.42146461 0.61222361 + -1.41746421 0.60855668 + -1.41346381 0.60492318 + -1.40946341 0.60132225 + -1.40546301 0.59775308 + -1.40146261 0.59421485 + -1.39746221 0.59070680 + -1.39346181 0.58722817 + -1.38946141 0.58377826 + -1.38546101 0.58035636 + -1.38146061 0.57696181 + -1.37746021 0.57359395 + -1.37345981 0.57025217 + -1.36945941 0.56693586 + -1.36545901 0.56364445 + -1.36145861 0.56037736 + -1.35745821 0.55713406 + -1.35345781 0.55391403 + -1.34945741 0.55071677 + -1.34545701 0.54754178 + -1.34145661 0.54438859 + -1.33745621 0.54125675 + -1.33345581 0.53814582 + -1.32945541 0.53505537 + -1.32545501 0.53198498 + -1.32145461 0.52893425 + -1.31745421 0.52590281 + -1.31345381 0.52289026 + -1.30945341 0.51989625 + -1.30545301 0.51692043 + -1.30145261 0.51396244 + -1.29745221 0.51102197 + -1.29345181 0.50809869 + -1.28945141 0.50519229 + -1.28545101 0.50230247 + -1.28145061 0.49942893 + -1.27745021 0.49657140 + -1.27344981 0.49372960 + -1.26944941 0.49090326 + -1.26544901 0.48809212 + -1.26144861 0.48529595 + -1.25744821 0.48251448 + -1.25344781 0.47974750 + -1.24944741 0.47699476 + -1.24544701 0.47425605 + -1.24144661 0.47153115 + -1.23744621 0.46881985 + -1.23344581 0.46612195 + -1.22944541 0.46343724 + -1.22544501 0.46076553 + -1.22144461 0.45810662 + -1.21744421 0.45546033 + -1.21344381 0.45282647 + -1.20944341 0.45020487 + -1.20544301 0.44759534 + -1.20144261 0.44499771 + -1.19744221 0.44241181 + -1.19344181 0.43983747 + -1.18944141 0.43727451 + -1.18544101 0.43472278 + -1.18144061 0.43218210 + -1.17744021 0.42965233 + -1.17343981 0.42713330 + -1.16943941 0.42462484 + -1.16543901 0.42212682 + -1.16143861 0.41963906 + -1.15743821 0.41716143 + -1.15343781 0.41469376 + -1.14943741 0.41223592 + -1.14543701 0.40978775 + -1.14143661 0.40734912 + -1.13743621 0.40491987 + -1.13343581 0.40249988 + -1.12943541 0.40008899 + -1.12543501 0.39768709 + -1.12143461 0.39529402 + -1.11743421 0.39290967 + -1.11343381 0.39053390 + -1.10943341 0.38816658 + -1.10543301 0.38580759 + -1.10143261 0.38345679 + -1.09743221 0.38111408 + -1.09343181 0.37877933 + -1.08943141 0.37645242 + -1.08543101 0.37413322 + -1.08143061 0.37182163 + -1.07743021 0.36951753 + -1.07342981 0.36722079 + -1.06942941 0.36493131 + -1.06542901 0.36264897 + -1.06142861 0.36037366 + -1.05742821 0.35810526 + -1.05342781 0.35584367 + -1.04942741 0.35358876 + -1.04542701 0.35134042 + -1.04142661 0.34909854 + -1.03742621 0.34686301 + -1.03342581 0.34463371 + -1.02942541 0.34241053 + -1.02542501 0.34019335 + -1.02142461 0.33798206 + -1.01742421 0.33577655 + -1.01342381 0.33357669 + -1.00942341 0.33138238 + -1.00542301 0.32919349 + -1.00142261 0.32700991 + -0.99742221 0.32483152 + -0.99342181 0.32265820 + -0.98942141 0.32048984 + -0.98542101 0.31832631 + -0.98142061 0.31616750 + -0.97742021 0.31401328 + -0.97341981 0.31186354 + -0.96941941 0.30971814 + -0.96541901 0.30757698 + -0.96141861 0.30543992 + -0.95741821 0.30330684 + -0.95341781 0.30117761 + -0.94941741 0.29905211 + -0.94541701 0.29693021 + -0.94141661 0.29481177 + -0.93741621 0.29269666 + -0.93341581 0.29058475 + -0.92941541 0.28847590 + -0.92541501 0.28636997 + -0.92141461 0.28426682 + -0.91741421 0.28216630 + -0.91341381 0.28006827 + -0.90941341 0.27797256 + -0.90541301 0.27587904 + -0.90141261 0.27378753 + -0.89741221 0.27169788 + -0.89341181 0.26960992 + -0.88941141 0.26752346 + -0.88541101 0.26543835 + -0.88141061 0.26335439 + -0.87741021 0.26127140 + -0.87340981 0.25918918 + -0.86940941 0.25710754 + -0.86540901 0.25502626 + -0.86140861 0.25294515 + -0.85740821 0.25086397 + -0.85340781 0.24878250 + -0.84940741 0.24670052 + -0.84540701 0.24461777 + -0.84140661 0.24253401 + -0.83740621 0.24044899 + -0.83340581 0.23836243 + -0.82940541 0.23627407 + -0.82540501 0.23418362 + -0.82140461 0.23209079 + -0.81740421 0.22999529 + -0.81340381 0.22789679 + -0.80940341 0.22579499 + -0.80540301 0.22368956 + -0.80140261 0.22158015 + -0.79740221 0.21946642 + -0.79340181 0.21734802 + -0.78940141 0.21522457 + -0.78540101 0.21309572 + -0.78140061 0.21096108 + -0.77740021 0.20882025 + -0.77339981 0.20667285 + -0.76939941 0.20451848 + -0.76539901 0.20235672 + -0.76139861 0.20018717 + -0.75739821 0.19800942 + -0.75339781 0.19582305 + -0.74939741 0.19362764 + -0.74539701 0.19142279 + -0.74139661 0.18920808 + -0.73739621 0.18698311 + -0.73339581 0.18474748 + -0.72939541 0.18250080 + -0.72539501 0.18024270 + -0.72139461 0.17797281 + -0.71739421 0.17569080 + -0.71339381 0.17339634 + -0.70939341 0.17108913 + -0.70539301 0.16876890 + -0.70139261 0.16643541 + -0.69739221 0.16408844 + -0.69339181 0.16172783 + -0.68939141 0.15935345 + -0.68539101 0.15696520 + -0.68139061 0.15456305 + -0.67739020 0.15214701 + -0.67338980 0.14971715 + -0.66938940 0.14727359 + -0.66538900 0.14481652 + -0.66138860 0.14234620 + -0.65738820 0.13986293 + -0.65338780 0.13736713 + -0.64938740 0.13485924 + -0.64538700 0.13233982 + -0.64138660 0.12980948 + -0.63738620 0.12726892 + -0.63338580 0.12471894 + -0.62938540 0.12216039 + -0.62538500 0.11959422 + -0.62138460 0.11702147 + -0.61738420 0.11444326 + -0.61338380 0.11186077 + -0.60938340 0.10927529 + -0.60538300 0.10668818 + -0.60138260 0.10410087 + -0.59738220 0.10151488 + -0.59338180 0.09893178 + -0.58938140 0.09635322 + -0.58538100 0.09378091 + -0.58138060 0.09121661 + -0.57738020 0.08866214 + -0.57337980 0.08611936 + -0.56937940 0.08359017 + -0.56537900 0.08107651 + -0.56137860 0.07858032 + -0.55737820 0.07610359 + -0.55337780 0.07364829 + -0.54937740 0.07121641 + -0.54537700 0.06880993 + -0.54137660 0.06643081 + -0.53737620 0.06408099 + -0.53337580 0.06176238 + -0.52937540 0.05947683 + -0.52537500 0.05722617 + -0.52137460 0.05501215 + -0.51737420 0.05283648 + -0.51337380 0.05070078 + -0.50937340 0.04860658 + -0.50537300 0.04655535 + -0.50137260 0.04454846 + -0.49737220 0.04258718 + -0.49337180 0.04067266 + -0.48937140 0.03880599 + -0.48537100 0.03698809 + -0.48137060 0.03521980 + -0.47737020 0.03350185 + -0.47336980 0.03183483 + -0.46936940 0.03021922 + -0.46536900 0.02865537 + -0.46136860 0.02714352 + -0.45736820 0.02568378 + -0.45336780 0.02427616 + -0.44936740 0.02292053 + -0.44536700 0.02161667 + -0.44136660 0.02036421 + -0.43736620 0.01916273 + -0.43336580 0.01801166 + -0.42936540 0.01691035 + -0.42536500 0.01585806 + -0.42136460 0.01485396 + -0.41736420 0.01389713 + -0.41336380 0.01298659 + -0.40936340 0.01212129 + -0.40536300 0.01130011 + -0.40136260 0.01052186 + -0.39736220 0.00978533 + -0.39336180 0.00908926 + -0.38936140 0.00843233 + -0.38536100 0.00781323 + -0.38136060 0.00723058 + -0.37736020 0.00668303 + -0.37335980 0.00616919 + -0.36935940 0.00568767 + -0.36535900 0.00523709 + -0.36135860 0.00481606 + -0.35735820 0.00442322 + -0.35335780 0.00405720 + -0.34935740 0.00371667 + -0.34535700 0.00340033 + -0.34135660 0.00310688 + -0.33735620 0.00283508 + -0.33335580 0.00258369 + -0.32935540 0.00235154 + -0.32535500 0.00213748 + -0.32135460 0.00194040 + -0.31735420 0.00175923 + -0.31335380 0.00159296 + -0.30935340 0.00144060 + -0.30535300 0.00130121 + -0.30135260 0.00117392 + -0.29735220 0.00105786 + -0.29335180 0.00095226 + -0.28935140 0.00085634 + -0.28535100 0.00076940 + -0.28135060 0.00069077 + -0.27735020 0.00061984 + -0.27334980 0.00055602 + -0.26934940 0.00049877 + -0.26534900 0.00044760 + -0.26134860 0.00040205 + -0.25734820 0.00036170 + -0.25334780 0.00032618 + -0.24934740 0.00029515 + -0.24534700 0.00026829 + -0.24134660 0.00024534 + -0.23734620 0.00022608 + -0.23334580 0.00021029 + -0.22934540 0.00019781 + -0.22534500 0.00018851 + -0.22134460 0.00018229 + -0.21734420 0.00017908 + -0.21334380 0.00017885 + -0.20934340 0.00018158 + -0.20534300 0.00018732 + -0.20134260 0.00019611 + -0.19734220 0.00020806 + -0.19334180 0.00022327 + -0.18934140 0.00024193 + -0.18534100 0.00026420 + -0.18134060 0.00029033 + -0.17734020 0.00032056 + -0.17333980 0.00035520 + -0.16933940 0.00039457 + -0.16533900 0.00043904 + -0.16133860 0.00048903 + -0.15733820 0.00054497 + -0.15333780 0.00060736 + -0.14933740 0.00067672 + -0.14533700 0.00075362 + -0.14133660 0.00083868 + -0.13733620 0.00093255 + -0.13333580 0.00103593 + -0.12933540 0.00114958 + -0.12533500 0.00127428 + -0.12133460 0.00141088 + -0.11733420 0.00156027 + -0.11333380 0.00172338 + -0.10933340 0.00190119 + -0.10533300 0.00209473 + -0.10133260 0.00230508 + -0.09733220 0.00253336 + -0.09333180 0.00278074 + -0.08933140 0.00304843 + -0.08533100 0.00333768 + -0.08133060 0.00364979 + -0.07733020 0.00398609 + -0.07332980 0.00434794 + -0.06932940 0.00473676 + -0.06532900 0.00515397 + -0.06132860 0.00560104 + -0.05732820 0.00607945 + -0.05332780 0.00659070 + -0.04932740 0.00713631 + -0.04532700 0.00771782 + -0.04132660 0.00833677 + -0.03732620 0.00899468 + -0.03332580 0.00969311 + -0.02932540 0.01043357 + -0.02532500 0.01121759 + -0.02132460 0.01204665 + -0.01732420 0.01292223 + -0.01332380 0.01384576 + -0.00932340 0.01481864 + -0.00532300 0.01584224 + -0.00132260 0.01691787 + 0.00267780 0.01804677 + 0.00667820 0.01923015 + 0.01067860 0.02046915 + 0.01467900 0.02176481 + 0.01867940 0.02311814 + 0.02267980 0.02453004 + 0.02668020 0.02600133 + 0.03068060 0.02753276 + 0.03468100 0.02912496 + 0.03868140 0.03077848 + 0.04268180 0.03249379 + 0.04668220 0.03427122 + 0.05068260 0.03611104 + 0.05468300 0.03801338 + 0.05868340 0.03997828 + 0.06268380 0.04200569 + 0.06668420 0.04409541 + 0.07068460 0.04624719 + 0.07468500 0.04846063 + 0.07868540 0.05073525 + 0.08268580 0.05307044 + 0.08668620 0.05546553 + 0.09068660 0.05791971 + 0.09468700 0.06043209 + 0.09868740 0.06300171 + 0.10268780 0.06562747 + 0.10668820 0.06830823 + 0.11068860 0.07104274 + 0.11468900 0.07382967 + 0.11868940 0.07666764 + 0.12268980 0.07955518 + 0.12669020 0.08249075 + 0.13069060 0.08547276 + 0.13469100 0.08849956 + 0.13869140 0.09156946 + 0.14269180 0.09468070 + 0.14669220 0.09783150 + 0.15069260 0.10102003 + 0.15469300 0.10424443 + 0.15869340 0.10750282 + 0.16269380 0.11079330 + 0.16669420 0.11411394 + 0.17069460 0.11746280 + 0.17469500 0.12083794 + 0.17869540 0.12423741 + 0.18269580 0.12765926 + 0.18669620 0.13110154 + 0.19069660 0.13456233 + 0.19469700 0.13803970 + 0.19869740 0.14153175 + 0.20269780 0.14503658 + 0.20669820 0.14855233 + 0.21069860 0.15207718 + 0.21469900 0.15560931 + 0.21869940 0.15914696 + 0.22269980 0.16268838 + 0.22670020 0.16623188 + 0.23070060 0.16977581 + 0.23470100 0.17331855 + 0.23870140 0.17685854 + 0.24270180 0.18039427 + 0.24670220 0.18392426 + 0.25070260 0.18744712 + 0.25470300 0.19096147 + 0.25870340 0.19446603 + 0.26270380 0.19795953 + 0.26670420 0.20144081 + 0.27070460 0.20490872 + 0.27470500 0.20836220 + 0.27870540 0.21180025 + 0.28270580 0.21522192 + 0.28670620 0.21862633 + 0.29070660 0.22201266 + 0.29470700 0.22538014 + 0.29870740 0.22872808 + 0.30270780 0.23205585 + 0.30670820 0.23536286 + 0.31070860 0.23864859 + 0.31470900 0.24191260 + 0.31870940 0.24515447 + 0.32270981 0.24837387 + 0.32671021 0.25157050 + 0.33071061 0.25474412 + 0.33471101 0.25789456 + 0.33871141 0.26102168 + 0.34271181 0.26412539 + 0.34671221 0.26720565 + 0.35071261 0.27026246 + 0.35471301 0.27329588 + 0.35871341 0.27630597 + 0.36271381 0.27929288 + 0.36671421 0.28225674 + 0.37071461 0.28519776 + 0.37471501 0.28811615 + 0.37871541 0.29101217 + 0.38271581 0.29388608 + 0.38671621 0.29673819 + 0.39071661 0.29956881 + 0.39471701 0.30237829 + 0.39871741 0.30516697 + 0.40271781 0.30793523 + 0.40671821 0.31068345 + 0.41071861 0.31341202 + 0.41471901 0.31612136 + 0.41871941 0.31881185 + 0.42271981 0.32148393 + 0.42672021 0.32413801 + 0.43072061 0.32677451 + 0.43472101 0.32939385 + 0.43872141 0.33199645 + 0.44272181 0.33458273 + 0.44672221 0.33715311 + 0.45072261 0.33970801 + 0.45472301 0.34224782 + 0.45872341 0.34477295 + 0.46272381 0.34728381 + 0.46672421 0.34978076 + 0.47072461 0.35226421 + 0.47472501 0.35473451 + 0.47872541 0.35719204 + 0.48272581 0.35963716 + 0.48672621 0.36207020 + 0.49072661 0.36449151 + 0.49472701 0.36690143 + 0.49872741 0.36930026 + 0.50272781 0.37168832 + 0.50672821 0.37406592 + 0.51072861 0.37643334 + 0.51472901 0.37879088 + 0.51872941 0.38113881 + 0.52272981 0.38347740 + 0.52673021 0.38580691 + 0.53073061 0.38812760 + 0.53473101 0.39043970 + 0.53873141 0.39274345 + 0.54273181 0.39503910 + 0.54673221 0.39732685 + 0.55073261 0.39960693 + 0.55473301 0.40187955 + 0.55873341 0.40414492 + 0.56273381 0.40640322 + 0.56673421 0.40865466 + 0.57073461 0.41089941 + 0.57473501 0.41313767 + 0.57873541 0.41536959 + 0.58273581 0.41759536 + 0.58673621 0.41981514 + 0.59073661 0.42202908 + 0.59473701 0.42423734 + 0.59873741 0.42644006 + 0.60273781 0.42863739 + 0.60673821 0.43082946 + 0.61073861 0.43301641 + 0.61473901 0.43519836 + 0.61873941 0.43737544 + 0.62273981 0.43954776 + 0.62674021 0.44171545 + 0.63074061 0.44387860 + 0.63474101 0.44603734 + 0.63874141 0.44819175 + 0.64274181 0.45034196 + 0.64674221 0.45248804 + 0.65074261 0.45463011 + 0.65474301 0.45676826 + 0.65874341 0.45890258 + 0.66274381 0.46103318 + 0.66674421 0.46316013 + 0.67074461 0.46528355 + 0.67474501 0.46740353 + 0.67874541 0.46952016 + 0.68274581 0.47163356 + 0.68674621 0.47374383 + 0.69074661 0.47585107 + 0.69474701 0.47795539 + 0.69874741 0.48005693 + 0.70274781 0.48215579 + 0.70674821 0.48425210 + 0.71074861 0.48634600 + 0.71474901 0.48843763 + 0.71874941 0.49052712 + 0.72274981 0.49261464 + 0.72675021 0.49470033 + 0.73075061 0.49678437 + 0.73475101 0.49886692 + 0.73875141 0.50094815 + 0.74275181 0.50302827 + 0.74675221 0.50510746 + 0.75075261 0.50718591 + 0.75475301 0.50926385 + 0.75875341 0.51134148 + 0.76275381 0.51341903 + 0.76675421 0.51549675 + 0.77075461 0.51757487 + 0.77475501 0.51965366 + 0.77875541 0.52173337 + 0.78275581 0.52381430 + 0.78675621 0.52589673 + 0.79075661 0.52798098 + 0.79475701 0.53006737 + 0.79875741 0.53215623 + 0.80275781 0.53424793 + 0.80675821 0.53634284 + 0.81075861 0.53844136 + 0.81475901 0.54054391 + 0.81875941 0.54265092 + 0.82275981 0.54476286 + 0.82676021 0.54688023 + 0.83076061 0.54900354 + 0.83476101 0.55113332 + 0.83876141 0.55327015 + 0.84276181 0.55541463 + 0.84676221 0.55756739 + 0.85076261 0.55972907 + 0.85476301 0.56190035 + 0.85876341 0.56408196 + 0.86276381 0.56627462 + 0.86676421 0.56847910 + 0.87076461 0.57069617 + 0.87476501 0.57292666 + 0.87876541 0.57517138 + 0.88276581 0.57743117 + 0.88676621 0.57970690 + 0.89076661 0.58199944 + 0.89476701 0.58430966 + 0.89876741 0.58663845 + 0.90276781 0.58898668 + 0.90676821 0.59135523 + 0.91076861 0.59374497 + 0.91476901 0.59615676 + 0.91876941 0.59859142 + 0.92276981 0.60104979 + 0.92677021 0.60353264 + 0.93077061 0.60604074 + 0.93477101 0.60857479 + 0.93877141 0.61113550 + 0.94277181 0.61372348 + 0.94677221 0.61633933 + 0.95077261 0.61898358 + 0.95477301 0.62165673 + 0.95877341 0.62435919 + 0.96277381 0.62709132 + 0.96677421 0.62985344 + 0.97077461 0.63264577 + 0.97477501 0.63546850 + 0.97877541 0.63832173 + 0.98277581 0.64120551 + 0.98677621 0.64411980 + 0.99077661 0.64706453 + 0.99477701 0.65003955 + 0.99877741 0.65304463 + 1.00277781 0.65607951 + 1.00677821 0.65914385 + 1.01077861 0.66223727 + 1.01477901 0.66535932 + 1.01877941 0.66850951 + 1.02277981 0.67168730 + 1.02678021 0.67489211 + 1.03078061 0.67812332 + 1.03478101 0.68138028 + 1.03878141 0.68466229 + 1.04278181 0.68796862 + 1.04678221 0.69129855 + 1.05078261 0.69465129 + 1.05478301 0.69802607 + 1.05878341 0.70142207 + 1.06278381 0.70483850 + 1.06678421 0.70827451 + 1.07078461 0.71172930 + 1.07478501 0.71520201 + 1.07878541 0.71869182 + 1.08278581 0.72219790 + 1.08678621 0.72571941 + 1.09078661 0.72925553 + 1.09478701 0.73280544 + 1.09878741 0.73636834 + 1.10278781 0.73994343 + 1.10678821 0.74352992 + 1.11078861 0.74712705 + 1.11478901 0.75073406 + 1.11878941 0.75435021 + 1.12278981 0.75797478 + 1.12679021 0.76160708 + 1.13079061 0.76524643 + 1.13479101 0.76889218 + 1.13879141 0.77254370 + 1.14279181 0.77620038 + 1.14679221 0.77986166 + 1.15079261 0.78352700 + 1.15479301 0.78719589 + 1.15879341 0.79086785 + 1.16279381 0.79454244 + 1.16679421 0.79821927 + 1.17079461 0.80189797 + 1.17479501 0.80557824 + 1.17879541 0.80925979 + 1.18279581 0.81294239 + 1.18679621 0.81662588 + 1.19079661 0.82031011 + 1.19479701 0.82399500 + 1.19879741 0.82768052 + 1.20279781 0.83136669 + 1.20679821 0.83505358 + 1.21079861 0.83874131 + 1.21479901 0.84243006 + 1.21879941 0.84612005 + 1.22279981 0.84981156 + 1.22680021 0.85350492 + 1.23080061 0.85720048 + 1.23480101 0.86089868 + 1.23880141 0.86459996 + 1.24280181 0.86830483 + 1.24680221 0.87201383 + 1.25080261 0.87572751 + 1.25480301 0.87944649 + 1.25880341 0.88317140 + 1.26280381 0.88690288 + 1.26680421 0.89064160 + 1.27080461 0.89438825 + 1.27480501 0.89814353 + 1.27880541 0.90190814 + 1.28280581 0.90568279 + 1.28680621 0.90946820 + 1.29080661 0.91326507 + 1.29480701 0.91707411 + 1.29880741 0.92089600 + 1.30280781 0.92473144 + 1.30680821 0.92858109 + 1.31080861 0.93244562 + 1.31480901 0.93632568 + 1.31880941 0.94022189 + 1.32280982 0.94413487 + 1.32681022 0.94806523 + 1.33081062 0.95201356 + 1.33481102 0.95598044 + 1.33881142 0.95996646 + 1.34281182 0.96397218 + 1.34681222 0.96799817 + 1.35081262 0.97204500 + 1.35481302 0.97611326 + 1.35881342 0.98020354 + 1.36281382 0.98431644 + 1.36681422 0.98845260 + 1.37081462 0.99261265 + 1.37481502 0.99679729 + 1.37881542 1.00100723 + 1.38281582 1.00524324 + 1.38681622 1.00950611 + 1.39081662 1.01379669 + 1.39481702 1.01811589 + 1.39881742 1.02246467 + 1.40281782 1.02684403 + 1.40681822 1.03125507 + 1.41081862 1.03569891 + 1.41481902 1.04017676 + 1.41881942 1.04468988 + 1.42281982 1.04923959 + 1.42682022 1.05382728 + 1.43082062 1.05845440 + 1.43482102 1.06312242 + 1.43882142 1.06783291 + 1.44282182 1.07258744 + 1.44682222 1.07738763 + 1.45082262 1.08223515 + 1.45482302 1.08713166 + 1.45882342 1.09207885 + 1.46282382 1.09707842 + 1.46682422 1.10213203 + 1.47082462 1.10724137 + 1.47482502 1.11240804 + 1.47882542 1.11763366 + 1.48282582 1.12291974 + 1.48682622 1.12826775 + 1.49082662 1.13367907 + 1.49482702 1.13915497 + 1.49882742 1.14469665 + 1.50282782 1.15030513 + 1.50682822 1.15598132 + 1.51082862 1.16172599 + 1.51482902 1.16753972 + 1.51882942 1.17342291 + 1.52282982 1.17937580 + 1.52683022 1.18539838 + 1.53083062 1.19149047 + 1.53483102 1.19765161 + 1.53883142 1.20388116 + 1.54283182 1.21017820 + 1.54683222 1.21654156 + 1.55083262 1.22296981 + 1.55483302 1.22946124 + 1.55883342 1.23601390 + 1.56283382 1.24262554 + 1.56683422 1.24929361 + 1.57083462 1.25601532 + 1.57483502 1.26278757 + 1.57883542 1.26960700 + 1.58283582 1.27646994 + 1.58683622 1.28337249 + 1.59083662 1.29031045 + 1.59483702 1.29727937 + 1.59883742 1.30427454 + 1.60283782 1.31129102 + 1.60683822 1.31832362 + 1.61083862 1.32536694 + 1.61483902 1.33241538 + 1.61883942 1.33946313 + 1.62283982 1.34650421 + 1.62684022 1.35353249 + 1.63084062 1.36054169 + 1.63484102 1.36752539 + 1.63884142 1.37447709 + 1.64284182 1.38139019 + 1.64684222 1.38825805 + 1.65084262 1.39507396 + 1.65484302 1.40183120 + 1.65884342 1.40852306 + 1.66284382 1.41514285 + 1.66684422 1.42168391 + 1.67084462 1.42813969 + 1.67484502 1.43450367 + 1.67884542 1.44076951 + 1.68284582 1.44693094 + 1.68684622 1.45298189 + 1.69084662 1.45891644 + 1.69484702 1.46472887 + 1.69884742 1.47041366 + 1.70284782 1.47596555 + 1.70684822 1.48137948 + 1.71084862 1.48665067 + 1.71484902 1.49177463 + 1.71884942 1.49674712 + 1.72284982 1.50156421 + 1.72685022 1.50622229 + 1.73085062 1.51071804 + 1.73485102 1.51504846 + 1.73885142 1.51921090 + 1.74285182 1.52320300 + 1.74685222 1.52702276 + 1.75085262 1.53066848 + 1.75485302 1.53413881 + 1.75885342 1.53743272 + 1.76285382 1.54054949 + 1.76685422 1.54348872 + 1.77085462 1.54625033 + 1.77485502 1.54883451 + 1.77885542 1.55124177 + 1.78285582 1.55347288 + 1.78685622 1.55552888 + 1.79085662 1.55741108 + 1.79485702 1.55912101 + 1.79885742 1.56066043 + 1.80285782 1.56203132 + 1.80685822 1.56323586 + 1.81085862 1.56427639 + 1.81485902 1.56515542 + 1.81885942 1.56587563 + 1.82285982 1.56643980 + 1.82686022 1.56685082 + 1.83086062 1.56711169 + 1.83486102 1.56722550 + 1.83886142 1.56719535 + 1.84286182 1.56702444 + 1.84686222 1.56671597 + 1.85086262 1.56627315 + 1.85486302 1.56569918 + 1.85886342 1.56499727 + 1.86286382 1.56417055 + 1.86686422 1.56322215 + 1.87086462 1.56215511 + 1.87486502 1.56097241 + 1.87886542 1.55967694 + 1.88286582 1.55827151 + 1.88686622 1.55675881 + 1.89086662 1.55514144 + 1.89486702 1.55342187 + 1.89886742 1.55160245 + 1.90286782 1.54968541 + 1.90686822 1.54767285 + 1.91086862 1.54556673 + 1.91486902 1.54336889 + 1.91886942 1.54108102 + 1.92286982 1.53870471 + 1.92687022 1.53624140 + 1.93087062 1.53369239 + 1.93487102 1.53105892 + 1.93887142 1.52834205 + 1.94287182 1.52554279 + 1.94687222 1.52266202 + 1.95087262 1.51970055 + 1.95487302 1.51665912 + 1.95887342 1.51353840 + 1.96287382 1.51033899 + 1.96687422 1.50706148 + 1.97087462 1.50370641 + 1.97487502 1.50027433 + 1.97887542 1.49676577 + 1.98287582 1.49318130 + 1.98687622 1.48952149 + 1.99087662 1.48578699 + 1.99487702 1.48197847 + 1.99887742 1.47809671 + 2.00287782 1.47414255 + 2.00687822 1.47011694 + 2.01087862 1.46602095 + 2.01487902 1.46185575 + 2.01887942 1.45762268 + 2.02287982 1.45332318 + 2.02688022 1.44895887 + 2.03088062 1.44453154 + 2.03488102 1.44004310 + 2.03888142 1.43549567 + 2.04288182 1.43089153 + 2.04688222 1.42623312 + 2.05088262 1.42152308 + 2.05488302 1.41676419 + 2.05888342 1.41195942 + 2.06288382 1.40711190 + 2.06688422 1.40222491 + 2.07088462 1.39730187 + 2.07488502 1.39234635 + 2.07888542 1.38736205 + 2.08288582 1.38235278 + 2.08688622 1.37732244 + 2.09088662 1.37227504 + 2.09488702 1.36721465 + 2.09888742 1.36214537 + 2.10288782 1.35707137 + 2.10688822 1.35199684 + 2.11088862 1.34692594 + 2.11488902 1.34186284 + 2.11888942 1.33681167 + 2.12288982 1.33177649 + 2.12689022 1.32676131 + 2.13089062 1.32177003 + 2.13489102 1.31680646 + 2.13889142 1.31187428 + 2.14289182 1.30697704 + 2.14689222 1.30211811 + 2.15089262 1.29730074 + 2.15489302 1.29252797 + 2.15889342 1.28780267 + 2.16289382 1.28312750 + 2.16689422 1.27850492 + 2.17089462 1.27393720 + 2.17489502 1.26942638 + 2.17889542 1.26497429 + 2.18289582 1.26058254 + 2.18689622 1.25625252 + 2.19089662 1.25198543 + 2.19489702 1.24778224 + 2.19889742 1.24364371 + 2.20289782 1.23957042 + 2.20689822 1.23556276 + 2.21089862 1.23162092 + 2.21489902 1.22774493 + 2.21889942 1.22393466 + 2.22289982 1.22018983 + 2.22690022 1.21651001 + 2.23090062 1.21289467 + 2.23490102 1.20934315 + 2.23890142 1.20585468 + 2.24290182 1.20242843 + 2.24690222 1.19906347 + 2.25090262 1.19575883 + 2.25490302 1.19251347 + 2.25890342 1.18932634 + 2.26290382 1.18619634 + 2.26690422 1.18312237 + 2.27090462 1.18010331 + 2.27490502 1.17713807 + 2.27890542 1.17422553 + 2.28290582 1.17136464 + 2.28690622 1.16855434 + 2.29090662 1.16579361 + 2.29490702 1.16308148 + 2.29890742 1.16041702 + 2.30290782 1.15779932 + 2.30690822 1.15522754 + 2.31090862 1.15270089 + 2.31490902 1.15021861 + 2.31890942 1.14778002 + 2.32290983 1.14538445 + 2.32691023 1.14303132 + 2.33091063 1.14072008 + 2.33491103 1.13845022 + 2.33891143 1.13622130 + 2.34291183 1.13403292 + 2.34691223 1.13188470 + 2.35091263 1.12977636 + 2.35491303 1.12770763 + 2.35891343 1.12567829 + 2.36291383 1.12368819 + 2.36691423 1.12173722 + 2.37091463 1.11982533 + 2.37491503 1.11795254 + 2.37891543 1.11611892 + 2.38291583 1.11432463 + 2.38691623 1.11256990 + 2.39091663 1.11085507 + 2.39491703 1.10918056 + 2.39891743 1.10754690 + 2.40291783 1.10595478 + 2.40691823 1.10440499 + 2.41091863 1.10289849 + 2.41491903 1.10143641 + 2.41891943 1.10002007 + 2.42291983 1.09865098 + 2.42692023 1.09733090 + 2.43092063 1.09606182 + 2.43492103 1.09484597 + 2.43892143 1.09368588 + 2.44292183 1.09258439 + 2.44692223 1.09154466 + 2.45092263 1.09057016 + 2.45492303 1.08966474 + 2.45892343 1.08883264 + 2.46292383 1.08807848 + 2.46692423 1.08740727 + 2.47092463 1.08682448 + 2.47492503 1.08633600 + 2.47892543 1.08594814 + 2.48292583 1.08566772 + 2.48692623 1.08550197 + 2.49092663 1.08545861 + 2.49492703 1.08554582 + 2.49892743 1.08577225 + 2.50292783 1.08614699 + 2.50692823 1.08667960 + 2.51092863 1.08738006 + 2.51492903 1.08825878 + 2.51892943 1.08932657 + 2.52292983 1.09059461 + 2.52693023 1.09207445 + 2.53093063 1.09377794 + 2.53493103 1.09571723 + 2.53893143 1.09790472 + 2.54293183 1.10035301 + 2.54693223 1.10307486 + 2.55093263 1.10608314 + 2.55493303 1.10939079 + 2.55893343 1.11301075 + 2.56293383 1.11695590 + 2.56693423 1.12123898 + 2.57093463 1.12587259 + 2.57493503 1.13086903 + 2.57893543 1.13624033 + 2.58293583 1.14199808 + 2.58693623 1.14815343 + 2.59093663 1.15471698 + 2.59493703 1.16169870 + 2.59893743 1.16910790 + 2.60293783 1.17695307 + 2.60693823 1.18524190 + 2.61093863 1.19398111 + 2.61493903 1.20317646 + 2.61893943 1.21283261 + 2.62293983 1.22295307 + 2.62694023 1.23354016 + 2.63094063 1.24459489 + 2.63494103 1.25611694 + 2.63894143 1.26810457 + 2.64294183 1.28055460 + 2.64694223 1.29346231 + 2.65094263 1.30682145 + 2.65494303 1.32062416 + 2.65894343 1.33486095 + 2.66294383 1.34952068 + 2.66694423 1.36459054 + 2.67094463 1.38005601 + 2.67494503 1.39590092 + 2.67894543 1.41210739 + 2.68294583 1.42865588 + 2.68694623 1.44552519 + 2.69094663 1.46269253 + 2.69494703 1.48013352 + 2.69894743 1.49782225 + 2.70294783 1.51573137 + 2.70694823 1.53383211 + 2.71094863 1.55209441 + 2.71494903 1.57048697 + 2.71894943 1.58897736 + 2.72294983 1.60753213 + 2.72695023 1.62611691 + 2.73095063 1.64469655 + 2.73495103 1.66323524 + 2.73895143 1.68169663 + 2.74295183 1.70004399 + 2.74695223 1.71824035 + 2.75095263 1.73624864 + 2.75495303 1.75403186 + 2.75895343 1.77155322 + 2.76295383 1.78877629 + 2.76695423 1.80566518 + 2.77095463 1.82218469 + 2.77495503 1.83830045 + 2.77895543 1.85397908 + 2.78295583 1.86918832 + 2.78695623 1.88389723 + 2.79095663 1.89807624 + 2.79495703 1.91169736 + 2.79895743 1.92473426 + 2.80295783 1.93716239 + 2.80695823 1.94895908 + 2.81095863 1.96010367 + 2.81495903 1.97057755 + 2.81895943 1.98036422 + 2.82295983 1.98944944 + 2.82696023 1.99782117 + 2.83096063 2.00546968 + 2.83496103 2.01238753 + 2.83896143 2.01856963 + 2.84296183 2.02401318 + 2.84696223 2.02871771 + 2.85096263 2.03268502 + 2.85496303 2.03591917 + 2.85896343 2.03842639 + 2.86296383 2.04021508 + 2.86696423 2.04129568 + 2.87096463 2.04168064 + 2.87496503 2.04138431 + 2.87896543 2.04042283 + 2.88296583 2.03881407 + 2.88696623 2.03657748 + 2.89096663 2.03373399 + 2.89496703 2.03030588 + 2.89896743 2.02631670 + 2.90296783 2.02179108 + 2.90696823 2.01675464 + 2.91096863 2.01123388 + 2.91496903 2.00525599 + 2.91896943 1.99884877 + 2.92296983 1.99204051 + 2.92697023 1.98485982 + 2.93097063 1.97733555 + 2.93497103 1.96949663 + 2.93897143 1.96137202 + 2.94297183 1.95299051 + 2.94697223 1.94438070 + 2.95097263 1.93557085 + 2.95497303 1.92658879 + 2.95897343 1.91746185 + 2.96297383 1.90821676 + 2.96697423 1.89887957 + 2.97097463 1.88947561 + 2.97497503 1.88002939 + 2.97897543 1.87056454 + 2.98297583 1.86110382 + 2.98697623 1.85166898 + 2.99097663 1.84228081 + 2.99497703 1.83295905 + 2.99897743 1.82372237 + 3.00297783 1.81458839 + 3.00697823 1.80557360 + 3.01097863 1.79669340 + 3.01497903 1.78796206 + 3.01897943 1.77939276 + 3.02297983 1.77099755 + 3.02698023 1.76278735 + 3.03098063 1.75477203 + 3.03498103 1.74696035 + 3.03898143 1.73936000 + 3.04298183 1.73197764 + 3.04698223 1.72481892 + 3.05098263 1.71788847 + 3.05498303 1.71118997 + 3.05898343 1.70472617 + 3.06298383 1.69849891 + 3.06698423 1.69250918 + 3.07098463 1.68675711 + 3.07498503 1.68124206 + 3.07898543 1.67596264 + 3.08298583 1.67091673 + 3.08698623 1.66610154 + 3.09098663 1.66151365 + 3.09498703 1.65714905 + 3.09898743 1.65300320 + 3.10298783 1.64907103 + 3.10698823 1.64534701 + 3.11098863 1.64182520 + 3.11498903 1.63849930 + 3.11898943 1.63536264 + 3.12298983 1.63240829 + 3.12699023 1.62962906 + 3.13099063 1.62701755 + 3.13499103 1.62456620 + 3.13899143 1.62226729 + 3.14299183 1.62011306 + 3.14699223 1.61809566 + 3.15099263 1.61620724 + 3.15499303 1.61443994 + 3.15899343 1.61278599 + 3.16299383 1.61123766 + 3.16699423 1.60978736 + 3.17099463 1.60842762 + 3.17499503 1.60715114 + 3.17899543 1.60595079 + 3.18299583 1.60481967 + 3.18699623 1.60375109 + 3.19099663 1.60273859 + 3.19499703 1.60177599 + 3.19899743 1.60085736 + 3.20299783 1.59997704 + 3.20699823 1.59912968 + 3.21099863 1.59831018 + 3.21499903 1.59751374 + 3.21899943 1.59673585 + 3.22299983 1.59597229 + 3.22700023 1.59521910 + 3.23100063 1.59447260 + 3.23500103 1.59372936 + 3.23900143 1.59298621 + 3.24300183 1.59224019 + 3.24700223 1.59148859 + 3.25100263 1.59072888 + 3.25500303 1.58995870 + 3.25900343 1.58917588 + 3.26300383 1.58837838 + 3.26700423 1.58756426 + 3.27100463 1.58673170 + 3.27500503 1.58587896 + 3.27900543 1.58500433 + 3.28300583 1.58410614 + 3.28700623 1.58318273 + 3.29100663 1.58223244 + 3.29500703 1.58125354 + 3.29900743 1.58024427 + 3.30300783 1.57920281 + 3.30700823 1.57812723 + 3.31100863 1.57701550 + 3.31500903 1.57586548 + 3.31900943 1.57467490 + 3.32300984 1.57344135 + 3.32701024 1.57216228 + 3.33101064 1.57083499 + 3.33501104 1.56945663 + 3.33901144 1.56802420 + 3.34301184 1.56653456 + 3.34701224 1.56498444 + 3.35101264 1.56337041 + 3.35501304 1.56168895 + 3.35901344 1.55993643 + 3.36301384 1.55810911 + 3.36701424 1.55620322 + 3.37101464 1.55421491 + 3.37501504 1.55214031 + 3.37901544 1.54997556 + 3.38301584 1.54771681 + 3.38701624 1.54536029 + 3.39101664 1.54290229 + 3.39501704 1.54033921 + 3.39901744 1.53766761 + 3.40301784 1.53488421 + 3.40701824 1.53198596 + 3.41101864 1.52897000 + 3.41501904 1.52583378 + 3.41901944 1.52257501 + 3.42301984 1.51919176 + 3.42702024 1.51568241 + 3.43102064 1.51204574 + 3.43502104 1.50828091 + 3.43902144 1.50438751 + 3.44302184 1.50036554 + 3.44702224 1.49621549 + 3.45102264 1.49193827 + 3.45502304 1.48753528 + 3.45902344 1.48300840 + 3.46302384 1.47835998 + 3.46702424 1.47359286 + 3.47102464 1.46871034 + 3.47502504 1.46371620 + 3.47902544 1.45861467 + 3.48302584 1.45341044 + 3.48702624 1.44810860 + 3.49102664 1.44271468 + 3.49502704 1.43723456 + 3.49902744 1.43167451 + 3.50302784 1.42604111 + 3.50702824 1.42034125 + 3.51102864 1.41458210 + 3.51502904 1.40877104 + 3.51902944 1.40291567 + 3.52302984 1.39702376 + 3.52703024 1.39110319 + 3.53103064 1.38516194 + 3.53503104 1.37920805 + 3.53903144 1.37324954 + 3.54303184 1.36729446 + 3.54703224 1.36135075 + 3.55103264 1.35542628 + 3.55503304 1.34952880 + 3.55903344 1.34366585 + 3.56303384 1.33784483 + 3.56703424 1.33207287 + 3.57103464 1.32635687 + 3.57503504 1.32070343 + 3.57903544 1.31511888 + 3.58303584 1.30960917 + 3.58703624 1.30417996 + 3.59103664 1.29883652 + 3.59503704 1.29358375 + 3.59903744 1.28842617 + 3.60303784 1.28336789 + 3.60703824 1.27841264 + 3.61103864 1.27356373 + 3.61503904 1.26882408 + 3.61903944 1.26419620 + 3.62303984 1.25968219 + 3.62704024 1.25528377 + 3.63104064 1.25100228 + 3.63504104 1.24683867 + 3.63904144 1.24279352 + 3.64304184 1.23886709 + 3.64704224 1.23505929 + 3.65104264 1.23136970 + 3.65504304 1.22779762 + 3.65904344 1.22434205 + 3.66304384 1.22100176 + 3.66704424 1.21777526 + 3.67104464 1.21466085 + 3.67504504 1.21165662 + 3.67904544 1.20876052 + 3.68304584 1.20597032 + 3.68704624 1.20328369 + 3.69104664 1.20069819 + 3.69504704 1.19821130 + 3.69904744 1.19582044 + 3.70304784 1.19352302 + 3.70704824 1.19131643 + 3.71104864 1.18919805 + 3.71504904 1.18716532 + 3.71904944 1.18521574 + 3.72304984 1.18334686 + 3.72705024 1.18155632 + 3.73105064 1.17984189 + 3.73505104 1.17820145 + 3.73905144 1.17663301 + 3.74305184 1.17513476 + 3.74705224 1.17370501 + 3.75105264 1.17234227 + 3.75505304 1.17104522 + 3.75905344 1.16981273 + 3.76305384 1.16864386 + 3.76705424 1.16753786 + 3.77105464 1.16649417 + 3.77505504 1.16551242 + 3.77905544 1.16459243 + 3.78305584 1.16373422 + 3.78705624 1.16293796 + 3.79105664 1.16220401 + 3.79505704 1.16153287 + 3.79905744 1.16092519 + 3.80305784 1.16038177 + 3.80705824 1.15990349 + 3.81105864 1.15949138 + 3.81505904 1.15914650 + 3.81905944 1.15887003 + 3.82305984 1.15866315 + 3.82706024 1.15852710 + 3.83106064 1.15846311 + 3.83506104 1.15847241 + 3.83906144 1.15855619 + 3.84306184 1.15871559 + 3.84706224 1.15895169 + 3.85106264 1.15926547 + 3.85506304 1.15965781 + 3.85906344 1.16012946 + 3.86306384 1.16068105 + 3.86706424 1.16131305 + 3.87106464 1.16202577 + 3.87506504 1.16281935 + 3.87906544 1.16369374 + 3.88306584 1.16464871 + 3.88706624 1.16568384 + 3.89106664 1.16679852 + 3.89506704 1.16799193 + 3.89906744 1.16926307 + 3.90306784 1.17061075 + 3.90706824 1.17203359 + 3.91106864 1.17353002 + 3.91506904 1.17509832 + 3.91906944 1.17673658 + 3.92306984 1.17844276 + 3.92707024 1.18021468 + 3.93107064 1.18205002 + 3.93507104 1.18394635 + 3.93907144 1.18590114 + 3.94307184 1.18791175 + 3.94707224 1.18997551 + 3.95107264 1.19208963 + 3.95507304 1.19425133 + 3.95907344 1.19645773 + 3.96307384 1.19870597 + 3.96707424 1.20099315 + 3.97107464 1.20331637 + 3.97507504 1.20567271 + 3.97907544 1.20805929 + 3.98307584 1.21047320 + 3.98707624 1.21291157 + 3.99107664 1.21537154 + 3.99507704 1.21785026 + 3.99907744 1.22034489 + 4.00307784 1.22285262 + 4.00707824 1.22537063 + 4.01107864 1.22789613 + 4.01507904 1.23042629 + 4.01907944 1.23295831 + 4.02307984 1.23548936 + 4.02708024 1.23801661 + 4.03108064 1.24053716 + 4.03508104 1.24304813 + 4.03908144 1.24554655 + 4.04308184 1.24802944 + 4.04708224 1.25049375 + 4.05108264 1.25293635 + 4.05508304 1.25535409 + 4.05908344 1.25774373 + 4.06308384 1.26010196 + 4.06708424 1.26242540 + 4.07108464 1.26471062 + 4.07508504 1.26695412 + 4.07908544 1.26915232 + 4.08308584 1.27130161 + 4.08708624 1.27339834 + 4.09108664 1.27543880 + 4.09508704 1.27741927 + 4.09908744 1.27933603 + 4.10308784 1.28118533 + 4.10708824 1.28296348 + 4.11108864 1.28466680 + 4.11508904 1.28629168 + 4.11908944 1.28783456 + 4.12308984 1.28929201 + 4.12709024 1.29066069 + 4.13109064 1.29193740 + 4.13509104 1.29311911 + 4.13909144 1.29420296 + 4.14309184 1.29518629 + 4.14709224 1.29606667 + 4.15109264 1.29684190 + 4.15509304 1.29751006 + 4.15909344 1.29806950 + 4.16309384 1.29851886 + 4.16709424 1.29885710 + 4.17109464 1.29908350 + 4.17509504 1.29919770 + 4.17909544 1.29919968 + 4.18309584 1.29908975 + 4.18709624 1.29886863 + 4.19109664 1.29853739 + 4.19509704 1.29809746 + 4.19909744 1.29755066 + 4.20309784 1.29689917 + 4.20709824 1.29614553 + 4.21109864 1.29529263 + 4.21509904 1.29434372 + 4.21909944 1.29330237 + 4.22309984 1.29217248 + 4.22710024 1.29095823 + 4.23110064 1.28966411 + 4.23510104 1.28829486 + 4.23910144 1.28685543 + 4.24310184 1.28535103 + 4.24710224 1.28378702 + 4.25110264 1.28216893 + 4.25510304 1.28050242 + 4.25910344 1.27879326 + 4.26310384 1.27704727 + 4.26710424 1.27527031 + 4.27110464 1.27346826 + 4.27510504 1.27164694 + 4.27910544 1.26981214 + 4.28310584 1.26796955 + 4.28710624 1.26612473 + 4.29110664 1.26428308 + 4.29510704 1.26244984 + 4.29910744 1.26063001 + 4.30310784 1.25882837 + 4.30710824 1.25704944 + 4.31110864 1.25529742 + 4.31510904 1.25357624 + 4.31910944 1.25188949 + 4.32310985 1.25024041 + 4.32711025 1.24863190 + 4.33111065 1.24706646 + 4.33511105 1.24554626 + 4.33911145 1.24407305 + 4.34311185 1.24264823 + 4.34711225 1.24127279 + 4.35111265 1.23994736 + 4.35511305 1.23867220 + 4.35911345 1.23744719 + 4.36311385 1.23627188 + 4.36711425 1.23514548 + 4.37111465 1.23406690 + 4.37511505 1.23303471 + 4.37911545 1.23204726 + 4.38311585 1.23110261 + 4.38711625 1.23019860 + 4.39111665 1.22933290 + 4.39511705 1.22850299 + 4.39911745 1.22770619 + 4.40311785 1.22693975 + 4.40711825 1.22620081 + 4.41111865 1.22548646 + 4.41511905 1.22479377 + 4.41911945 1.22411982 + 4.42311985 1.22346173 + 4.42712025 1.22281666 + 4.43112065 1.22218186 + 4.43512105 1.22155471 + 4.43912145 1.22093268 + 4.44312185 1.22031342 + 4.44712225 1.21969474 + 4.45112265 1.21907461 + 4.45512305 1.21845123 + 4.45912345 1.21782296 + 4.46312385 1.21718841 + 4.46712425 1.21654637 + 4.47112465 1.21589586 + 4.47512505 1.21523613 + 4.47912545 1.21456662 + 4.48312585 1.21388700 + 4.48712625 1.21319712 + 4.49112665 1.21249704 + 4.49512705 1.21178699 + 4.49912745 1.21106739 + 4.50312785 1.21033880 + 4.50712825 1.20960193 + 4.51112865 1.20885760 + 4.51512905 1.20810676 + 4.51912945 1.20735045 + 4.52312985 1.20658979 + 4.52713025 1.20582594 + 4.53113065 1.20506014 + 4.53513105 1.20429362 + 4.53913145 1.20352766 + 4.54313185 1.20276350 + 4.54713225 1.20200240 + 4.55113265 1.20124556 + 4.55513305 1.20049415 + 4.55913345 1.19974930 + 4.56313385 1.19901206 + 4.56713425 1.19828343 + 4.57113465 1.19756430 + 4.57513505 1.19685552 + 4.57913545 1.19615782 + 4.58313585 1.19547184 + 4.58713625 1.19479815 + 4.59113665 1.19413719 + 4.59513705 1.19348933 + 4.59913745 1.19285484 + 4.60313785 1.19223387 + 4.60713825 1.19162652 + 4.61113865 1.19103275 + 4.61513905 1.19045245 + 4.61913945 1.18988545 + 4.62313985 1.18933145 + 4.62714025 1.18879010 + 4.63114065 1.18826097 + 4.63514105 1.18774355 + 4.63914145 1.18723727 + 4.64314185 1.18674148 + 4.64714225 1.18625549 + 4.65114265 1.18577855 + 4.65514305 1.18530984 + 4.65914345 1.18484853 + 4.66314385 1.18439370 + 4.66714425 1.18394444 + 4.67114465 1.18349976 + 4.67514505 1.18305868 + 4.67914545 1.18262019 + 4.68314585 1.18218324 + 4.68714625 1.18174678 + 4.69114665 1.18130978 + 4.69514705 1.18087118 + 4.69914745 1.18042993 + 4.70314785 1.17998501 + 4.70714825 1.17953542 + 4.71114865 1.17908018 + 4.71514905 1.17861836 + 4.71914945 1.17814907 + 4.72314985 1.17767147 + 4.72715025 1.17718481 + 4.73115065 1.17668837 + 4.73515105 1.17618156 + 4.73915145 1.17566383 + 4.74315185 1.17513476 + 4.74715225 1.17459403 + 4.75115265 1.17404140 + 4.75515305 1.17347680 + 4.75915345 1.17290023 + 4.76315385 1.17231184 + 4.76715425 1.17171191 + 4.77115465 1.17110083 + 4.77515505 1.17047916 + 4.77915545 1.16984753 + 4.78315585 1.16920676 + 4.78715625 1.16855774 + 4.79115665 1.16790151 + 4.79515705 1.16723920 + 4.79915745 1.16657206 + 4.80315785 1.16590140 + 4.80715825 1.16522865 + 4.81115865 1.16455526 + 4.81515905 1.16388277 + 4.81915945 1.16321273 + 4.82315985 1.16254673 + 4.82716025 1.16188634 + 4.83116065 1.16123312 + 4.83516105 1.16058862 + 4.83916145 1.15995429 + 4.84316185 1.15933157 + 4.84716225 1.15872175 + 4.85116265 1.15812605 + 4.85516305 1.15754557 + 4.85916345 1.15698126 + 4.86316385 1.15643392 + 4.86716425 1.15590418 + 4.87116465 1.15539250 + 4.87516505 1.15489917 + 4.87916545 1.15442426 + 4.88316585 1.15396766 + 4.88716625 1.15352906 + 4.89116665 1.15310796 + 4.89516705 1.15270364 + 4.89916745 1.15231521 + 4.90316785 1.15194159 + 4.90716825 1.15158153 + 4.91116865 1.15123359 + 4.91516905 1.15089623 + 4.91916945 1.15056774 + 4.92316985 1.15024632 + 4.92717025 1.14993005 + 4.93117065 1.14961697 + 4.93517105 1.14930506 + 4.93917145 1.14899225 + 4.94317185 1.14867650 + 4.94717225 1.14835578 + 4.95117265 1.14802811 + 4.95517305 1.14769158 + 4.95917345 1.14734437 + 4.96317385 1.14698479 + 4.96717425 1.14661127 + 4.97117465 1.14622241 + 4.97517505 1.14581699 + 4.97917545 1.14539398 + 4.98317585 1.14495255 + 4.98717625 1.14449209 + 4.99117665 1.14401222 + 4.99517705 1.14351278 + 4.99917745 1.14299387 + 5.00317785 1.14245580 + 5.00717825 1.14189911 + 5.01117865 1.14132460 + 5.01517905 1.14073324 + 5.01917945 1.14012625 + 5.02317985 1.13950501 + 5.02718025 1.13887109 + 5.03118065 1.13822622 + 5.03518105 1.13757226 + 5.03918145 1.13691117 + 5.04318185 1.13624502 + 5.04718225 1.13557592 + 5.05118265 1.13490605 + 5.05518305 1.13423756 + 5.05918345 1.13357259 + 5.06318385 1.13291326 + 5.06718425 1.13226158 + 5.07118465 1.13161948 + 5.07518505 1.13098875 + 5.07918545 1.13037104 + 5.08318585 1.12976783 + 5.08718625 1.12918040 + 5.09118665 1.12860980 + 5.09518705 1.12805689 + 5.09918745 1.12752226 + 5.10318785 1.12700626 + 5.10718825 1.12650896 + 5.11118865 1.12603018 + 5.11518905 1.12556949 + 5.11918945 1.12512616 + 5.12318985 1.12469923 + 5.12719025 1.12428746 + 5.13119065 1.12388939 + 5.13519105 1.12350333 + 5.13919145 1.12312736 + 5.14319185 1.12275938 + 5.14719225 1.12239711 + 5.15119265 1.12203814 + 5.15519305 1.12167991 + 5.15919345 1.12131978 + 5.16319385 1.12095504 + 5.16719425 1.12058292 + 5.17119465 1.12020067 + 5.17519505 1.11980554 + 5.17919545 1.11939481 + 5.18319585 1.11896588 + 5.18719625 1.11851623 + 5.19119665 1.11804345 + 5.19519705 1.11754533 + 5.19919745 1.11701982 + 5.20319785 1.11646508 + 5.20719825 1.11587947 + 5.21119865 1.11526163 + 5.21519905 1.11461041 + 5.21919945 1.11392496 + 5.22319985 1.11320469 + 5.22720025 1.11244929 + 5.23120065 1.11165873 + 5.23520105 1.11083326 + 5.23920145 1.10997341 + 5.24320185 1.10907997 + 5.24720225 1.10815400 + 5.25120265 1.10719679 + 5.25520305 1.10620986 + 5.25920345 1.10519495 + 5.26320385 1.10415398 + 5.26720425 1.10308904 + 5.27120465 1.10200234 + 5.27520505 1.10089624 + 5.27920545 1.09977315 + 5.28320585 1.09863555 + 5.28720625 1.09748597 + 5.29120665 1.09632691 + 5.29520705 1.09516086 + 5.29920745 1.09399024 + 5.30320785 1.09281739 + 5.30720825 1.09164455 + 5.31120865 1.09047382 + 5.31520905 1.08930715 + 5.31920945 1.08814631 + 5.32320986 1.08699287 + 5.32721026 1.08584820 + 5.33121066 1.08471345 + 5.33521106 1.08358954 + 5.33921146 1.08247715 + 5.34321186 1.08137674 + 5.34721226 1.08028850 + 5.35121266 1.07921242 + 5.35521306 1.07814822 + 5.35921346 1.07709545 + 5.36321386 1.07605341 + 5.36721426 1.07502123 + 5.37121466 1.07399786 + 5.37521506 1.07298208 + 5.37921546 1.07197255 + 5.38321586 1.07096783 + 5.38721626 1.06996635 + 5.39121666 1.06896652 + 5.39521706 1.06796668 + 5.39921746 1.06696519 + 5.40321786 1.06596040 + 5.40721826 1.06495071 + 5.41121866 1.06393458 + 5.41521906 1.06291058 + 5.41921946 1.06187735 + 5.42321986 1.06083372 + 5.42722026 1.05977862 + 5.43122066 1.05871118 + 5.43522106 1.05763070 + 5.43922146 1.05653670 + 5.44322186 1.05542886 + 5.44722226 1.05430713 + 5.45122266 1.05317162 + 5.45522306 1.05202270 + 5.45922346 1.05086094 + 5.46322386 1.04968712 + 5.46722426 1.04850222 + 5.47122466 1.04730742 + 5.47522506 1.04610409 + 5.47922546 1.04489375 + 5.48322586 1.04367807 + 5.48722626 1.04245888 + 5.49122666 1.04123810 + 5.49522706 1.04001772 + 5.49922746 1.03879985 + 5.50322786 1.03758660 + 5.50722826 1.03638012 + 5.51122866 1.03518255 + 5.51522906 1.03399602 + 5.51922946 1.03282259 + 5.52322986 1.03166426 + 5.52723026 1.03052294 + 5.53123066 1.02940041 + 5.53523106 1.02829834 + 5.53923146 1.02721824 + 5.54323186 1.02616146 + 5.54723226 1.02512917 + 5.55123266 1.02412235 + 5.55523306 1.02314181 + 5.55923346 1.02218813 + 5.56323386 1.02126170 + 5.56723426 1.02036270 + 5.57123466 1.01949112 + 5.57523506 1.01864675 + 5.57923546 1.01782917 + 5.58323586 1.01703780 + 5.58723626 1.01627187 + 5.59123666 1.01553048 + 5.59523706 1.01481257 + 5.59923746 1.01411693 + 5.60323786 1.01344229 + 5.60723826 1.01278726 + 5.61123866 1.01215039 + 5.61523906 1.01153018 + 5.61923946 1.01092510 + 5.62323986 1.01033363 + 5.62724026 1.00975425 + 5.63124066 1.00918549 + 5.63524106 1.00862592 + 5.63924146 1.00807422 + 5.64324186 1.00752912 + 5.64724226 1.00698951 + 5.65124266 1.00645437 + 5.65524306 1.00592285 + 5.65924346 1.00539424 + 5.66324386 1.00486800 + 5.66724426 1.00434375 + 5.67124466 1.00382129 + 5.67524506 1.00330063 + 5.67924546 1.00278192 + 5.68324586 1.00226550 + 5.68724626 1.00175191 + 5.69124666 1.00124184 + 5.69524706 1.00073614 + 5.69924746 1.00023582 + 5.70324786 0.99974202 + 5.70724826 0.99925602 + 5.71124866 0.99877920 + 5.71524906 0.99831303 + 5.71924946 0.99785907 + 5.72324986 0.99741891 + 5.72725026 0.99699421 + 5.73125066 0.99658661 + 5.73525106 0.99619776 + 5.73925146 0.99582929 + 5.74325186 0.99548278 + 5.74725226 0.99515974 + 5.75125266 0.99486160 + 5.75525306 0.99458967 + 5.75925346 0.99434515 + 5.76325386 0.99412912 + 5.76725426 0.99394248 + 5.77125466 0.99378598 + 5.77525506 0.99366022 + 5.77925546 0.99356557 + 5.78325586 0.99350225 + 5.78725626 0.99347029 + 5.79125666 0.99346950 + 5.79525706 0.99349951 + 5.79925746 0.99355978 + 5.80325786 0.99364956 + 5.80725826 0.99376794 + 5.81125866 0.99391381 + 5.81525906 0.99408596 + 5.81925946 0.99428297 + 5.82325986 0.99450335 + 5.82726026 0.99474546 + 5.83126066 0.99500758 + 5.83526106 0.99528791 + 5.83926146 0.99558459 + 5.84326186 0.99589573 + 5.84726226 0.99621942 + 5.85126266 0.99655376 + 5.85526306 0.99689687 + 5.85926346 0.99724692 + 5.86326386 0.99760213 + 5.86726426 0.99796084 + 5.87126466 0.99832146 + 5.87526506 0.99868254 + 5.87926546 0.99904277 + 5.88326586 0.99940097 + 5.88726626 0.99975614 + 5.89126666 1.00010745 + 5.89526706 1.00045427 + 5.89926746 1.00079614 + 5.90326786 1.00113281 + 5.90726826 1.00146424 + 5.91126866 1.00179056 + 5.91526906 1.00211215 + 5.91926946 1.00242954 + 5.92326986 1.00274351 + 5.92727026 1.00305498 + 5.93127066 1.00336508 + 5.93527106 1.00367513 + 5.93927146 1.00398657 + 5.94327186 1.00430105 + 5.94727226 1.00462030 + 5.95127266 1.00494623 + 5.95527306 1.00528084 + 5.95927346 1.00562624 + 5.96327386 1.00598460 + 5.96727426 1.00635820 + 5.97127466 1.00674935 + 5.97527506 1.00716040 + 5.97927546 1.00759374 + 5.98327586 1.00805178 + 5.98727626 1.00853689 + 5.99127666 1.00905148 + 5.99527706 1.00959790 + 5.99927746 1.01017847 + 6.00327786 1.01079547 + 6.00727826 1.01145112 + 6.01127866 1.01214757 + 6.01527906 1.01288693 + 6.01927946 1.01367118 + 6.02327986 1.01450226 + 6.02728026 1.01538201 + 6.03128066 1.01631215 + 6.03528106 1.01729435 + 6.03928146 1.01833014 + 6.04328186 1.01942096 + 6.04728226 1.02056817 + 6.05128266 1.02177300 + 6.05528306 1.02303657 + 6.05928346 1.02435991 + 6.06328386 1.02574394 + 6.06728426 1.02718947 + 6.07128466 1.02869720 + 6.07528506 1.03026771 + 6.07928546 1.03190150 + 6.08328586 1.03359892 + 6.08728626 1.03536024 + 6.09128666 1.03718559 + 6.09528706 1.03907501 + 6.09928746 1.04102841 + 6.10328786 1.04304557 + 6.10728826 1.04512617 + 6.11128866 1.04726975 + 6.11528906 1.04947573 + 6.11928946 1.05174340 + 6.12328986 1.05407191 + 6.12729026 1.05646029 + 6.13129066 1.05890743 + 6.13529106 1.06141207 + 6.13929146 1.06397283 + 6.14329186 1.06658816 + 6.14729226 1.06925639 + 6.15129266 1.07197569 + 6.15529306 1.07474410 + 6.15929346 1.07755951 + 6.16329386 1.08041966 + 6.16729426 1.08332215 + 6.17129466 1.08626446 + 6.17529506 1.08924390 + 6.17929546 1.09225767 + 6.18329586 1.09530284 + 6.18729626 1.09837635 + 6.19129666 1.10147503 + 6.19529706 1.10459560 + 6.19929746 1.10773466 + 6.20329786 1.11088873 + 6.20729826 1.11405425 + 6.21129866 1.11722756 + 6.21529906 1.12040494 + 6.21929946 1.12358261 + 6.22329986 1.12675674 + 6.22730026 1.12992347 + 6.23130066 1.13307888 + 6.23530106 1.13621907 + 6.23930146 1.13934009 + 6.24330186 1.14243803 + 6.24730226 1.14550895 + 6.25130266 1.14854897 + 6.25530306 1.15155422 + 6.25930346 1.15452086 + 6.26330386 1.15744511 + 6.26730426 1.16032325 + 6.27130466 1.16315162 + 6.27530506 1.16592663 + 6.27930546 1.16864476 + 6.28330586 1.17130261 + 6.28730626 1.17389682 + 6.29130666 1.17642418 + 6.29530706 1.17888155 + 6.29930746 1.18126591 + 6.30330786 1.18357435 + 6.30730826 1.18580408 + 6.31130866 1.18795243 + 6.31530906 1.19001687 + 6.31930946 1.19199497 + 6.32330987 1.19388445 + 6.32731027 1.19568317 + 6.33131067 1.19738914 + 6.33531107 1.19900049 + 6.33931147 1.20051551 + 6.34331187 1.20193265 + 6.34731227 1.20325050 + 6.35131267 1.20446783 + 6.35531307 1.20558356 + 6.35931347 1.20659680 + 6.36331387 1.20750681 + 6.36731427 1.20831305 + 6.37131467 1.20901517 + 6.37531507 1.20961299 + 6.37931547 1.21010655 + 6.38331587 1.21049609 + 6.38731627 1.21078206 + 6.39131667 1.21096510 + 6.39531707 1.21104612 + 6.39931747 1.21102622 + 6.40331787 1.21090673 + 6.40731827 1.21068923 + 6.41131867 1.21037554 + 6.41531907 1.20996771 + 6.41931947 1.20946804 + 6.42331987 1.20887906 + 6.42732027 1.20820355 + 6.43132067 1.20744455 + 6.43532107 1.20660531 + 6.43932147 1.20568931 + 6.44332187 1.20470028 + 6.44732227 1.20364216 + 6.45132267 1.20251908 + 6.45532307 1.20133537 + 6.45932347 1.20009557 + 6.46332387 1.19880434 + 6.46732427 1.19746651 + 6.47132467 1.19608705 + 6.47532507 1.19467101 + 6.47932547 1.19322354 + 6.48332587 1.19174984 + 6.48732627 1.19025514 + 6.49132667 1.18874467 + 6.49532707 1.18722365 + 6.49932747 1.18569722 + 6.50332787 1.18417046 + 6.50732827 1.18264830 + 6.51132867 1.18113554 + 6.51532907 1.17963679 + 6.51932947 1.17815645 + 6.52332987 1.17669868 + 6.52733027 1.17526737 + 6.53133067 1.17386608 + 6.53533107 1.17249807 + 6.53933147 1.17116623 + 6.54333187 1.16987309 + 6.54733227 1.16862077 + 6.55133267 1.16741098 + 6.55533307 1.16624500 + 6.55933347 1.16512368 + 6.56333387 1.16404742 + 6.56733427 1.16301617 + 6.57133467 1.16202944 + 6.57533507 1.16108628 + 6.57933547 1.16018532 + 6.58333587 1.15932478 + 6.58733627 1.15850245 + 6.59133667 1.15771576 + 6.59533707 1.15696177 + 6.59933747 1.15623723 + 6.60333787 1.15553856 + 6.60733827 1.15486197 + 6.61133867 1.15420340 + 6.61533907 1.15355866 + 6.61933947 1.15292338 + 6.62333987 1.15229315 + 6.62734027 1.15166348 + 6.63134067 1.15102992 + 6.63534107 1.15038805 + 6.63934147 1.14973358 + 6.64334187 1.14906237 + 6.64734227 1.14837048 + 6.65134267 1.14765422 + 6.65534307 1.14691020 + 6.65934347 1.14613535 + 6.66334387 1.14532699 + 6.66734427 1.14448283 + 6.67134467 1.14360103 + 6.67534507 1.14268021 + 6.67934547 1.14171946 + 6.68334587 1.14071839 + 6.68734627 1.13967710 + 6.69134667 1.13859623 + 6.69534707 1.13747692 + 6.69934747 1.13632081 + 6.70334787 1.13513005 + 6.70734827 1.13390727 + 6.71134867 1.13265555 + 6.71534907 1.13137841 + 6.71934947 1.13007973 + 6.72334987 1.12876380 + 6.72735027 1.12743517 + 6.73135067 1.12609870 + 6.73535107 1.12475944 + 6.73935147 1.12342262 + 6.74335187 1.12209359 + 6.74735227 1.12077772 + 6.75135267 1.11948041 + 6.75535307 1.11820699 + 6.75935347 1.11696266 + 6.76335387 1.11575246 + 6.76735427 1.11458118 + 6.77135467 1.11345334 + 6.77535507 1.11237312 + 6.77935547 1.11134433 + 6.78335587 1.11037033 + 6.78735627 1.10945403 + 6.79135667 1.10859785 + 6.79535707 1.10780368 + 6.79935747 1.10707287 + 6.80335787 1.10640618 + 6.80735827 1.10580383 + 6.81135867 1.10526544 + 6.81535907 1.10479007 + 6.81935947 1.10437620 + 6.82335987 1.10402179 + 6.82736027 1.10372423 + 6.83136067 1.10348045 + 6.83536107 1.10328691 + 6.83936147 1.10313962 + 6.84336187 1.10303423 + 6.84736227 1.10296608 + 6.85136267 1.10293020 + 6.85536307 1.10292141 + 6.85936347 1.10293437 + 6.86336387 1.10296367 + 6.86736427 1.10300383 + 6.87136467 1.10304942 + 6.87536507 1.10309510 + 6.87936547 1.10313569 + 6.88336587 1.10316624 + 6.88736627 1.10318207 + 6.89136667 1.10317884 + 6.89536707 1.10315263 + 6.89936747 1.10309993 + 6.90336787 1.10301775 + 6.90736827 1.10290360 + 6.91136867 1.10275559 + 6.91536907 1.10257240 + 6.91936947 1.10235333 + 6.92336987 1.10209832 + 6.92737027 1.10180794 + 6.93137067 1.10148341 + 6.93537107 1.10112659 + 6.93937147 1.10073994 + 6.94337187 1.10032656 + 6.94737227 1.09989009 + 6.95137267 1.09943474 + 6.95537307 1.09896521 + 6.95937347 1.09848667 + 6.96337387 1.09800471 + 6.96737427 1.09752524 + 6.97137467 1.09705452 + 6.97537507 1.09659899 + 6.97937547 1.09616529 + 6.98337587 1.09576016 + 6.98737627 1.09539036 + 6.99137667 1.09506264 + 6.99537707 1.09478360 + 6.99937747 1.09455971 + 7.00337787 1.09439716 + 7.00737827 1.09430188 + 7.01137867 1.09427938 + 7.01537907 1.09433478 + 7.01937947 1.09447272 + 7.02337987 1.09469728 + 7.02738027 1.09501202 + 7.03138067 1.09541984 + 7.03538107 1.09592305 + 7.03938147 1.09652325 + 7.04338187 1.09722140 + 7.04738227 1.09801773 + 7.05138267 1.09891182 + 7.05538307 1.09990251 + 7.05938347 1.10098800 + 7.06338387 1.10216581 + 7.06738427 1.10343283 + 7.07138467 1.10478535 + 7.07538507 1.10621907 + 7.07938547 1.10772920 + 7.08338587 1.10931044 + 7.08738627 1.11095710 + 7.09138667 1.11266311 + 7.09538707 1.11442209 + 7.09938747 1.11622744 + 7.10338787 1.11807237 + 7.10738827 1.11995000 + 7.11138867 1.12185340 + 7.11538907 1.12377568 + 7.11938947 1.12571004 + 7.12338987 1.12764985 + 7.12739027 1.12958871 + 7.13139067 1.13152050 + 7.13539107 1.13343944 + 7.13939147 1.13534016 + 7.14339187 1.13721774 + 7.14739227 1.13906772 + 7.15139267 1.14088618 + 7.15539307 1.14266976 + 7.15939347 1.14441565 + 7.16339387 1.14612167 + 7.16739427 1.14778622 + 7.17139467 1.14940831 + 7.17539507 1.15098754 + 7.17939547 1.15252413 + 7.18339587 1.15401885 + 7.18739627 1.15547302 + 7.19139667 1.15688848 + 7.19539707 1.15826755 + 7.19939747 1.15961298 + 7.20339787 1.16092790 + 7.20739827 1.16221580 + 7.21139867 1.16348044 + 7.21539907 1.16472578 + 7.21939947 1.16595596 + 7.22339987 1.16717521 + 7.22740027 1.16838778 + 7.23140067 1.16959788 + 7.23540107 1.17080964 + 7.23940147 1.17202700 + 7.24340187 1.17325369 + 7.24740227 1.17449314 + 7.25140267 1.17574843 + 7.25540307 1.17702227 + 7.25940347 1.17831692 + 7.26340387 1.17963412 + 7.26740427 1.18097514 + 7.27140467 1.18234067 + 7.27540507 1.18373081 + 7.27940547 1.18514509 + 7.28340587 1.18658242 + 7.28740627 1.18804112 + 7.29140667 1.18951887 + 7.29540707 1.19101279 + 7.29940747 1.19251940 + 7.30340787 1.19403467 + 7.30740827 1.19555407 + 7.31140867 1.19707256 + 7.31540907 1.19858466 + 7.31940947 1.20008453 + 7.32340988 1.20156594 + 7.32741028 1.20302243 + 7.33141068 1.20444730 + 7.33541108 1.20583368 + 7.33941148 1.20717465 + 7.34341188 1.20846324 + 7.34741228 1.20969255 + 7.35141268 1.21085580 + 7.35541308 1.21194641 + 7.35941348 1.21295805 + 7.36341388 1.21388471 + 7.36741428 1.21472080 + 7.37141468 1.21546114 + 7.37541508 1.21610109 + 7.37941548 1.21663656 + 7.38341588 1.21706407 + 7.38741628 1.21738076 + 7.39141668 1.21758448 + 7.39541708 1.21767378 + 7.39941748 1.21764794 + 7.40341788 1.21750697 + 7.40741828 1.21725166 + 7.41141868 1.21688354 + 7.41541908 1.21640487 + 7.41941948 1.21581866 + 7.42341988 1.21512864 + 7.42742028 1.21433919 + 7.43142068 1.21345537 + 7.43542108 1.21248283 + 7.43942148 1.21142778 + 7.44342188 1.21029697 + 7.44742228 1.20909755 + 7.45142268 1.20783712 + 7.45542308 1.20652359 + 7.45942348 1.20516511 + 7.46342388 1.20377006 + 7.46742428 1.20234692 + 7.47142468 1.20090425 + 7.47542508 1.19945056 + 7.47942548 1.19799430 + 7.48342588 1.19654373 + 7.48742628 1.19510691 + 7.49142668 1.19369161 + 7.49542708 1.19230522 + 7.49942748 1.19095475 + 7.50342788 1.18964673 + 7.50742828 1.18838717 + 7.51142868 1.18718154 + 7.51542908 1.18603470 + 7.51942948 1.18495089 + 7.52342988 1.18393371 + 7.52743028 1.18298608 + 7.53143068 1.18211023 + 7.53543108 1.18130771 + 7.53943148 1.18057939 + 7.54343188 1.17992544 + 7.54743228 1.17934540 + 7.55143268 1.17883814 + 7.55543308 1.17840191 + 7.55943348 1.17803440 + 7.56343388 1.17773274 + 7.56743428 1.17749355 + 7.57143468 1.17731301 + 7.57543508 1.17718688 + 7.57943548 1.17711058 + 7.58343588 1.17707923 + 7.58743628 1.17708772 + 7.59143668 1.17713078 + 7.59543708 1.17720300 + 7.59943748 1.17729896 + 7.60343788 1.17741322 + 7.60743828 1.17754043 + 7.61143868 1.17767538 + 7.61543908 1.17781305 + 7.61943948 1.17794867 + 7.62343988 1.17807774 + 7.62744028 1.17819614 + 7.63144068 1.17830013 + 7.63544108 1.17838640 + 7.63944148 1.17845210 + 7.64344188 1.17849486 + 7.64744228 1.17851286 + 7.65144268 1.17850478 + 7.65544308 1.17846987 + 7.65944348 1.17840791 + 7.66344388 1.17831928 + 7.66744428 1.17820486 + 7.67144468 1.17806612 + 7.67544508 1.17790501 + 7.67944548 1.17772403 + 7.68344588 1.17752613 + 7.68744628 1.17731474 + 7.69144668 1.17709368 + 7.69544708 1.17686717 + 7.69944748 1.17663977 + 7.70344788 1.17641634 + 7.70744828 1.17620197 + 7.71144868 1.17600197 + 7.71544908 1.17582180 + 7.71944948 1.17566701 + 7.72344988 1.17554321 + 7.72745028 1.17545600 + 7.73145068 1.17541092 + 7.73545108 1.17541341 + 7.73945148 1.17546875 + 7.74345188 1.17558201 + 7.74745228 1.17575801 + 7.75145268 1.17600128 + 7.75545308 1.17631599 + 7.75945348 1.17670594 + 7.76345388 1.17717453 + 7.76745428 1.17772469 + 7.77145468 1.17835889 + 7.77545508 1.17907907 + 7.77945548 1.17988667 + 7.78345588 1.18078257 + 7.78745628 1.18176711 + 7.79145668 1.18284004 + 7.79545708 1.18400055 + 7.79945748 1.18524726 + 7.80345788 1.18657820 + 7.80745828 1.18799083 + 7.81145868 1.18948207 + 7.81545908 1.19104828 + 7.81945948 1.19268528 + 7.82345988 1.19438839 + 7.82746028 1.19615246 + 7.83146068 1.19797185 + 7.83546108 1.19984049 + 7.83946148 1.20175193 + 7.84346188 1.20369932 + 7.84746228 1.20567551 + 7.85146268 1.20767301 + 7.85546308 1.20968412 + 7.85946348 1.21170089 + 7.86346388 1.21371519 + 7.86746428 1.21571878 + 7.87146468 1.21770331 + 7.87546508 1.21966037 + 7.87946548 1.22158157 + 7.88346588 1.22345853 + 7.88746628 1.22528294 + 7.89146668 1.22704664 + 7.89546708 1.22874160 + 7.89946748 1.23035999 + 7.90346788 1.23189424 + 7.90746828 1.23333701 + 7.91146868 1.23468130 + 7.91546908 1.23592044 + 7.91946948 1.23704812 + 7.92346988 1.23805845 + 7.92747028 1.23894594 + 7.93147068 1.23970556 + 7.93547108 1.24033277 + 7.93947148 1.24082350 + 7.94347188 1.24117419 + 7.94747228 1.24138181 + 7.95147268 1.24144385 + 7.95547308 1.24135835 + 7.95947348 1.24112391 + 7.96347388 1.24073966 + 7.96747428 1.24020528 + 7.97147468 1.23952101 + 7.97547508 1.23868763 + 7.97947548 1.23770646 + 7.98347588 1.23657934 + 7.98747628 1.23530862 + 7.99147668 1.23389717 + 7.99547708 1.23234831 + 7.99947748 1.23066586 + 8.00347788 1.22885406 + 8.00747828 1.22691756 + 8.01147868 1.22486144 + 8.01547908 1.22269112 + 8.01947948 1.22041237 + 8.02347988 1.21803129 + 8.02748028 1.21555423 + 8.03148068 1.21298783 + 8.03548108 1.21033892 + 8.03948148 1.20761454 + 8.04348188 1.20482189 + 8.04748228 1.20196827 + 8.05148268 1.19906110 + 8.05548308 1.19610784 + 8.05948348 1.19311598 + 8.06348388 1.19009302 + 8.06748428 1.18704639 + 8.07148468 1.18398348 + 8.07548508 1.18091158 + 8.07948548 1.17783785 + 8.08348588 1.17476927 + 8.08748628 1.17171269 + 8.09148668 1.16867470 + 8.09548708 1.16566171 + 8.09948748 1.16267984 + 8.10348788 1.15973496 + 8.10748828 1.15683264 + 8.11148868 1.15397817 + 8.11548908 1.15117648 + 8.11948948 1.14843221 + 8.12348988 1.14574963 + 8.12749028 1.14313266 + 8.13149068 1.14058489 + 8.13549108 1.13810952 + 8.13949148 1.13570942 + 8.14349188 1.13338706 + 8.14749228 1.13114459 + 8.15149268 1.12898379 + 8.15549308 1.12690608 + 8.15949348 1.12491257 + 8.16349388 1.12300400 + 8.16749428 1.12118084 + 8.17149468 1.11944320 + 8.17549508 1.11779095 + 8.17949548 1.11622365 + 8.18349588 1.11474061 + 8.18749628 1.11334090 + 8.19149668 1.11202337 + 8.19549708 1.11078667 + 8.19949748 1.10962925 + 8.20349788 1.10854941 + 8.20749828 1.10754530 + 8.21149868 1.10661496 + 8.21549908 1.10575631 + 8.21949948 1.10496720 + 8.22349988 1.10424541 + 8.22750028 1.10358868 + 8.23150068 1.10299472 + 8.23550108 1.10246126 + 8.23950148 1.10198601 + 8.24350188 1.10156671 + 8.24750228 1.10120116 + 8.25150268 1.10088721 + 8.25550308 1.10062277 + 8.25950348 1.10040582 + 8.26350388 1.10023447 + 8.26750428 1.10010688 + 8.27150468 1.10002135 + 8.27550508 1.09997628 + 8.27950548 1.09997017 + 8.28350588 1.10000166 + 8.28750628 1.10006950 + 8.29150668 1.10017255 + 8.29550708 1.10030981 + 8.29950748 1.10048037 + 8.30350788 1.10068345 + 8.30750828 1.10091835 + 8.31150868 1.10118448 + 8.31550908 1.10148137 + 8.31950948 1.10180857 + 8.32350989 1.10216577 + 8.32751029 1.10255267 + 8.33151069 1.10296904 + 8.33551109 1.10341472 + 8.33951149 1.10388953 + 8.34351189 1.10439334 + 8.34751229 1.10492603 + 8.35151269 1.10548747 + 8.35551309 1.10607751 + 8.35951349 1.10669597 + 8.36351389 1.10734267 + 8.36751429 1.10801734 + 8.37151469 1.10871969 + 8.37551509 1.10944935 + 8.37951549 1.11020591 + 8.38351589 1.11098886 + 8.38751629 1.11179763 + 8.39151669 1.11263158 + 8.39551709 1.11348996 + 8.39951749 1.11437198 + 8.40351789 1.11527675 + 8.40751829 1.11620330 + 8.41151869 1.11715059 + 8.41551909 1.11811755 + 8.41951949 1.11910299 + 8.42351989 1.12010573 + 8.42752029 1.12112450 + 8.43152069 1.12215804 + 8.43552109 1.12320504 + 8.43952149 1.12426419 + 8.44352189 1.12533420 + 8.44752229 1.12641378 + 8.45152269 1.12750168 + 8.45552309 1.12859668 + 8.45952349 1.12969764 + 8.46352389 1.13080347 + 8.46752429 1.13191317 + 8.47152469 1.13302585 + 8.47552509 1.13414069 + 8.47952549 1.13525701 + 8.48352589 1.13637426 + 8.48752629 1.13749199 + 8.49152669 1.13860990 + 8.49552709 1.13972785 + 8.49952749 1.14084580 + 8.50352789 1.14196390 + 8.50752829 1.14308239 + 8.51152869 1.14420167 + 8.51552909 1.14532229 + 8.51952949 1.14644489 + 8.52352989 1.14757025 + 8.52753029 1.14869923 + 8.53153069 1.14983279 + 8.53553109 1.15097198 + 8.53953149 1.15211790 + 8.54353189 1.15327168 + 8.54753229 1.15443450 + 8.55153269 1.15560753 + 8.55553309 1.15679194 + 8.55953349 1.15798886 + 8.56353389 1.15919937 + 8.56753429 1.16042448 + 8.57153469 1.16166511 + 8.57553509 1.16292206 + 8.57953549 1.16419603 + 8.58353589 1.16548754 + 8.58753629 1.16679698 + 8.59153669 1.16812455 + 8.59553709 1.16947026 + 8.59953749 1.17083395 + 8.60353789 1.17221523 + 8.60753829 1.17361349 + 8.61153869 1.17502795 + 8.61553909 1.17645756 + 8.61953949 1.17790108 + 8.62353989 1.17935706 + 8.62754029 1.18082384 + 8.63154069 1.18229954 + 8.63554109 1.18378210 + 8.63954149 1.18526930 + 8.64354189 1.18675873 + 8.64754229 1.18824783 + 8.65154269 1.18973391 + 8.65554309 1.19121418 + 8.65954349 1.19268572 + 8.66354389 1.19414558 + 8.66754429 1.19559071 + 8.67154469 1.19701807 + 8.67554509 1.19842458 + 8.67954549 1.19980719 + 8.68354589 1.20116287 + 8.68754629 1.20248867 + 8.69154669 1.20378170 + 8.69554709 1.20503916 + 8.69954749 1.20625839 + 8.70354789 1.20743685 + 8.70754829 1.20857214 + 8.71154869 1.20966206 + 8.71554909 1.21070454 + 8.71954949 1.21169774 + 8.72354989 1.21264001 + 8.72755029 1.21352990 + 8.73155069 1.21436617 + 8.73555109 1.21514782 + 8.73955149 1.21587404 + 8.74355189 1.21654426 + 8.74755229 1.21715814 + 8.75155269 1.21771553 + 8.75555309 1.21821651 + 8.75955349 1.21866138 + 8.76355389 1.21905062 + 8.76755429 1.21938492 + 8.77155469 1.21966515 + 8.77555509 1.21989237 + 8.77955549 1.22006780 + 8.78355589 1.22019281 + 8.78755629 1.22026896 + 8.79155669 1.22029790 + 8.79555709 1.22028146 + 8.79955749 1.22022156 + 8.80355789 1.22012025 + 8.80755829 1.21997968 + 8.81155869 1.21980211 + 8.81555909 1.21958987 + 8.81955949 1.21934541 + 8.82355989 1.21907124 + 8.82756029 1.21876994 + 8.83156069 1.21844418 + 8.83556109 1.21809670 + 8.83956149 1.21773029 + 8.84356189 1.21734782 + 8.84756229 1.21695223 + 8.85156269 1.21654651 + 8.85556309 1.21613372 + 8.85956349 1.21571697 + 8.86356389 1.21529947 + 8.86756429 1.21488444 + 8.87156469 1.21447520 + 8.87556509 1.21407511 + 8.87956549 1.21368759 + 8.88356589 1.21331613 + 8.88756629 1.21296426 + 8.89156669 1.21263554 + 8.89556709 1.21233360 + 8.89956749 1.21206210 + 8.90356789 1.21182472 + 8.90756829 1.21162516 + 8.91156869 1.21146712 + 8.91556909 1.21135432 + 8.91956949 1.21129045 + 8.92356989 1.21127917 + 8.92757029 1.21132410 + 8.93157069 1.21142878 + 8.93557109 1.21159669 + 8.93957149 1.21183121 + 8.94357189 1.21213561 + 8.94757229 1.21251299 + 8.95157269 1.21296633 + 8.95557309 1.21349842 + 8.95957349 1.21411184 + 8.96357389 1.21480897 + 8.96757429 1.21559195 + 8.97157469 1.21646264 + 8.97557509 1.21742267 + 8.97957549 1.21847333 + 8.98357589 1.21961562 + 8.98757629 1.22085024 + 8.99157669 1.22217753 + 8.99557709 1.22359749 + 8.99957749 1.22510977 + 9.00357789 1.22671365 + 9.00757829 1.22840807 + 9.01157869 1.23019160 + 9.01557909 1.23206242 + 9.01957949 1.23401839 + 9.02357989 1.23605700 + 9.02758029 1.23817539 + 9.03158069 1.24037040 + 9.03558109 1.24263853 + 9.03958149 1.24497600 + 9.04358189 1.24737873 + 9.04758229 1.24984241 + 9.05158269 1.25236250 + 9.05558309 1.25493424 + 9.05958349 1.25755270 + 9.06358389 1.26021281 + 9.06758429 1.26290937 + 9.07158469 1.26563711 + 9.07558509 1.26839070 + 9.07958549 1.27116478 + 9.08358589 1.27395402 + 9.08758629 1.27675311 + 9.09158669 1.27955683 + 9.09558709 1.28236006 + 9.09958749 1.28515781 + 9.10358789 1.28794525 + 9.10758829 1.29071774 + 9.11158869 1.29347084 + 9.11558909 1.29620036 + 9.11958949 1.29890235 + 9.12358989 1.30157311 + 9.12759029 1.30420924 + 9.13159069 1.30680763 + 9.13559109 1.30936546 + 9.13959149 1.31188022 + 9.14359189 1.31434969 + 9.14759229 1.31677197 + 9.15159269 1.31914545 + 9.15559309 1.32146882 + 9.15959349 1.32374104 + 9.16359389 1.32596134 + 9.16759429 1.32812920 + 9.17159469 1.33024435 + 9.17559509 1.33230672 + 9.17959549 1.33431645 + 9.18359589 1.33627383 + 9.18759629 1.33817932 + 9.19159669 1.34003350 + 9.19559709 1.34183703 + 9.19959749 1.34359067 + 9.20359789 1.34529520 + 9.20759829 1.34695144 + 9.21159869 1.34856020 + 9.21559909 1.35012228 + 9.21959949 1.35163840 + 9.22359989 1.35310924 + 9.22760029 1.35453540 + 9.23160069 1.35591734 + 9.23560109 1.35725545 + 9.23960149 1.35854996 + 9.24360189 1.35980097 + 9.24760229 1.36100846 + 9.25160269 1.36217223 + 9.25560309 1.36329196 + 9.25960349 1.36436718 + 9.26360389 1.36539728 + 9.26760429 1.36638153 + 9.27160469 1.36731907 + 9.27560509 1.36820894 + 9.27960549 1.36905010 + 9.28360589 1.36984142 + 9.28760629 1.37058175 + 9.29160669 1.37126988 + 9.29560709 1.37190461 + 9.29960749 1.37248475 + 9.30360789 1.37300917 + 9.30760829 1.37347678 + 9.31160869 1.37388659 + 9.31560909 1.37423775 + 9.31960949 1.37452951 + 9.32360990 1.37476132 + 9.32761030 1.37493280 + 9.33161070 1.37504376 + 9.33561110 1.37509426 + 9.33961150 1.37508458 + 9.34361190 1.37501525 + 9.34761230 1.37488707 + 9.35161270 1.37470111 + 9.35561310 1.37445872 + 9.35961350 1.37416151 + 9.36361390 1.37381137 + 9.36761430 1.37341048 + 9.37161470 1.37296125 + 9.37561510 1.37246637 + 9.37961550 1.37192875 + 9.38361590 1.37135153 + 9.38761630 1.37073807 + 9.39161670 1.37009186 + 9.39561710 1.36941661 + 9.39961750 1.36871610 + 9.40361790 1.36799426 + 9.40761830 1.36725507 + 9.41161870 1.36650255 + 9.41561910 1.36574075 + 9.41961950 1.36497369 + 9.42361990 1.36420533 + 9.42762030 1.36343956 + 9.43162070 1.36268016 + 9.43562110 1.36193077 + 9.43962150 1.36119484 + 9.44362190 1.36047565 + 9.44762230 1.35977623 + 9.45162270 1.35909939 + 9.45562310 1.35844766 + 9.45962350 1.35782331 + 9.46362390 1.35722828 + 9.46762430 1.35666422 + 9.47162470 1.35613246 + 9.47562510 1.35563400 + 9.47962550 1.35516953 + 9.48362590 1.35473937 + 9.48762630 1.35434356 + 9.49162670 1.35398181 + 9.49562710 1.35365349 + 9.49962750 1.35335772 + 9.50362790 1.35309329 + 9.50762830 1.35285876 + 9.51162870 1.35265241 + 9.51562910 1.35247233 + 9.51962950 1.35231638 + 9.52362990 1.35218223 + 9.52763030 1.35206744 + 9.53163070 1.35196940 + 9.53563110 1.35188542 + 9.53963150 1.35181275 + 9.54363190 1.35174857 + 9.54763230 1.35169006 + 9.55163270 1.35163442 + 9.55563310 1.35157889 + 9.55963350 1.35152075 + 9.56363390 1.35145740 + 9.56763430 1.35138636 + 9.57163470 1.35130525 + 9.57563510 1.35121189 + 9.57963550 1.35110425 + 9.58363590 1.35098050 + 9.58763630 1.35083902 + 9.59163670 1.35067841 + 9.59563710 1.35049749 + 9.59963750 1.35029532 + 9.60363790 1.35007120 + 9.60763830 1.34982467 + 9.61163870 1.34955552 + 9.61563910 1.34926378 + 9.61963950 1.34894968 + 9.62363990 1.34861373 + 9.62764030 1.34825661 + 9.63164070 1.34787923 + 9.63564110 1.34748267 + 9.63964150 1.34706821 + 9.64364190 1.34663727 + 9.64764230 1.34619142 + 9.65164270 1.34573232 + 9.65564310 1.34526176 + 9.65964350 1.34478160 + 9.66364390 1.34429374 + 9.66764430 1.34380011 + 9.67164470 1.34330267 + 9.67564510 1.34280333 + 9.67964550 1.34230399 + 9.68364590 1.34180647 + 9.68764630 1.34131252 + 9.69164670 1.34082377 + 9.69564710 1.34034176 + 9.69964750 1.33986784 + 9.70364790 1.33940325 + 9.70764830 1.33894902 + 9.71164870 1.33850601 + 9.71564910 1.33807489 + 9.71964950 1.33765610 + 9.72364990 1.33724987 + 9.72765030 1.33685623 + 9.73165070 1.33647495 + 9.73565110 1.33610562 + 9.73965150 1.33574756 + 9.74365190 1.33539990 + 9.74765230 1.33506156 + 9.75165270 1.33473122 + 9.75565310 1.33440739 + 9.75965350 1.33408841 + 9.76365390 1.33377242 + 9.76765430 1.33345742 + 9.77165470 1.33314128 + 9.77565510 1.33282175 + 9.77965550 1.33249648 + 9.78365590 1.33216305 + 9.78765630 1.33181900 + 9.79165670 1.33146181 + 9.79565710 1.33108899 + 9.79965750 1.33069806 + 9.80365790 1.33028658 + 9.80765830 1.32985218 + 9.81165870 1.32939260 + 9.81565910 1.32890569 + 9.81965950 1.32838943 + 9.82365990 1.32784196 + 9.82766030 1.32726164 + 9.83166070 1.32664698 + 9.83566110 1.32599675 + 9.83966150 1.32530995 + 9.84366190 1.32458580 + 9.84766230 1.32382383 + 9.85166270 1.32302379 + 9.85566310 1.32218574 + 9.85966350 1.32131001 + 9.86366390 1.32039723 + 9.86766430 1.31944828 + 9.87166470 1.31846436 + 9.87566510 1.31744690 + 9.87966550 1.31639765 + 9.88366590 1.31531856 + 9.88766630 1.31421186 + 9.89166670 1.31307998 + 9.89566710 1.31192558 + 9.89966750 1.31075148 + 9.90366790 1.30956070 + 9.90766830 1.30835637 + 9.91166870 1.30714174 + 9.91566910 1.30592017 + 9.91966950 1.30469506 + 9.92366990 1.30346986 + 9.92767030 1.30224802 + 9.93167070 1.30103296 + 9.93567110 1.29982805 + 9.93967150 1.29863659 + 9.94367190 1.29746176 + 9.94767230 1.29630661 + 9.95167270 1.29517403 + 9.95567310 1.29406672 + 9.95967350 1.29298719 + 9.96367390 1.29193771 + 9.96767430 1.29092030 + 9.97167470 1.28993673 + 9.97567510 1.28898850 + 9.97967550 1.28807681 + 9.98367590 1.28720259 + 9.98767630 1.28636646 + 9.99167670 1.28556874 + 9.99567710 1.28480947 + 9.99967750 1.28408836 + 10.00367790 1.28340488 + 10.00767830 1.28275820 + 10.01167870 1.28214721 + 10.01567910 1.28157058 + 10.01967950 1.28102673 + 10.02367990 1.28051386 + 10.02768030 1.28003000 + 10.03168070 1.27957298 + 10.03568110 1.27914052 + 10.03968150 1.27873018 + 10.04368190 1.27833945 + 10.04768230 1.27796576 + 10.05168270 1.27760648 + 10.05568310 1.27725897 + 10.05968350 1.27692062 + 10.06368390 1.27658883 + 10.06768430 1.27626111 + 10.07168470 1.27593501 + 10.07568510 1.27560823 + 10.07968550 1.27527857 + 10.08368590 1.27494401 + 10.08768630 1.27460270 + 10.09168670 1.27425294 + 10.09568710 1.27389326 + 10.09968750 1.27352238 + 10.10368790 1.27313925 + 10.10768830 1.27274303 + 10.11168870 1.27233308 + 10.11568910 1.27190902 + 10.11968950 1.27147067 + 10.12368990 1.27101805 + 10.12769030 1.27055142 + 10.13169070 1.27007120 + 10.13569110 1.26957801 + 10.13969150 1.26907266 + 10.14369190 1.26855608 + 10.14769230 1.26802937 + 10.15169270 1.26749373 + 10.15569310 1.26695047 + 10.15969350 1.26640098 + 10.16369390 1.26584673 + 10.16769430 1.26528920 + 10.17169470 1.26472991 + 10.17569510 1.26417039 + 10.17969550 1.26361212 + 10.18369590 1.26305658 + 10.18769630 1.26250515 + 10.19169670 1.26195917 + 10.19569710 1.26141987 + 10.19969750 1.26088839 + 10.20369790 1.26036573 + 10.20769830 1.25985277 + 10.21169870 1.25935025 + 10.21569910 1.25885875 + 10.21969950 1.25837872 + 10.22369990 1.25791040 + 10.22770030 1.25745391 + 10.23170070 1.25700919 + 10.23570110 1.25657600 + 10.23970150 1.25615394 + 10.24370190 1.25574247 + 10.24770230 1.25534087 + 10.25170270 1.25494828 + 10.25570310 1.25456369 + 10.25970350 1.25418597 + 10.26370390 1.25381386 + 10.26770430 1.25344599 + 10.27170470 1.25308086 + 10.27570510 1.25271693 + 10.27970550 1.25235253 + 10.28370590 1.25198596 + 10.28770630 1.25161544 + 10.29170670 1.25123918 + 10.29570710 1.25085532 + 10.29970750 1.25046202 + 10.30370790 1.25005741 + 10.30770830 1.24963964 + 10.31170870 1.24920686 + 10.31570910 1.24875726 + 10.31970950 1.24828907 + 10.32370991 1.24780056 + 10.32771031 1.24729003 + 10.33171071 1.24675588 + 10.33571111 1.24619654 + 10.33971151 1.24561053 + 10.34371191 1.24499645 + 10.34771231 1.24435297 + 10.35171271 1.24367883 + 10.35571311 1.24297290 + 10.35971351 1.24223409 + 10.36371391 1.24146142 + 10.36771431 1.24065401 + 10.37171471 1.23981104 + 10.37571511 1.23893181 + 10.37971551 1.23801569 + 10.38371591 1.23706213 + 10.38771631 1.23607068 + 10.39171671 1.23504097 + 10.39571711 1.23397270 + 10.39971751 1.23286566 + 10.40371791 1.23171969 + 10.40771831 1.23053474 + 10.41171871 1.22931079 + 10.41571911 1.22804790 + 10.41971951 1.22674620 + 10.42371991 1.22540588 + 10.42772031 1.22402716 + 10.43172071 1.22261034 + 10.43572111 1.22115575 + 10.43972151 1.21966377 + 10.44372191 1.21813484 + 10.44772231 1.21656940 + 10.45172271 1.21496796 + 10.45572311 1.21333105 + 10.45972351 1.21165922 + 10.46372391 1.20995304 + 10.46772431 1.20821311 + 10.47172471 1.20644006 + 10.47572511 1.20463449 + 10.47972551 1.20279704 + 10.48372591 1.20092835 + 10.48772631 1.19902905 + 10.49172671 1.19709974 + 10.49572711 1.19514106 + 10.49972751 1.19315357 + 10.50372791 1.19113786 + 10.50772831 1.18909446 + 10.51172871 1.18702387 + 10.51572911 1.18492654 + 10.51972951 1.18280289 + 10.52372991 1.18065329 + 10.52773031 1.17847802 + 10.53173071 1.17627732 + 10.53573111 1.17405135 + 10.53973151 1.17180020 + 10.54373191 1.16952386 + 10.54773231 1.16722227 + 10.55173271 1.16489524 + 10.55573311 1.16254252 + 10.55973351 1.16016372 + 10.56373391 1.15775840 + 10.56773431 1.15532599 + 10.57173471 1.15286583 + 10.57573511 1.15037716 + 10.57973551 1.14785912 + 10.58373591 1.14531076 + 10.58773631 1.14273105 + 10.59173671 1.14011885 + 10.59573711 1.13747297 + 10.59973751 1.13479214 + 10.60373791 1.13207505 + 10.60773831 1.12932032 + 10.61173871 1.12652654 + 10.61573911 1.12369231 + 10.61973951 1.12081619 + 10.62373991 1.11789677 + 10.62774031 1.11493267 + 10.63174071 1.11192255 + 10.63574111 1.10886515 + 10.63974151 1.10575928 + 10.64374191 1.10260388 + 10.64774231 1.09939799 + 10.65174271 1.09614082 + 10.65574311 1.09283175 + 10.65974351 1.08947032 + 10.66374391 1.08605632 + 10.66774431 1.08258973 + 10.67174471 1.07907080 + 10.67574511 1.07550002 + 10.67974551 1.07187818 + 10.68374591 1.06820633 + 10.68774631 1.06448585 + 10.69174671 1.06071840 + 10.69574711 1.05690599 + 10.69974751 1.05305093 + 10.70374791 1.04915586 + 10.70774831 1.04522374 + 10.71174871 1.04125784 + 10.71574911 1.03726178 + 10.71974951 1.03323946 + 10.72374991 1.02919507 + 10.72775031 1.02513309 + 10.73175071 1.02105828 + 10.73575111 1.01697563 + 10.73975151 1.01289035 + 10.74375191 1.00880787 + 10.74775231 1.00473377 + 10.75175271 1.00067382 + 10.75575311 0.99663386 + 10.75975351 0.99261985 + 10.76375391 0.98863782 + 10.76775431 0.98469379 + 10.77175471 0.98079381 + 10.77575511 0.97694388 + 10.77975551 0.97314991 + 10.78375591 0.96941775 + 10.78775631 0.96575308 + 10.79175671 0.96216143 + 10.79575711 0.95864815 + 10.79975751 0.95521835 + 10.80375791 0.95187691 + 10.80775831 0.94862844 + 10.81175871 0.94547726 + 10.81575911 0.94242739 + 10.81975951 0.93948252 + 10.82375991 0.93664599 + 10.82776031 0.93392082 + 10.83176071 0.93130965 + 10.83576111 0.92881478 + 10.83976151 0.92643813 + 10.84376191 0.92418127 + 10.84776231 0.92204540 + 10.85176271 0.92003138 + 10.85576311 0.91813970 + 10.85976351 0.91637053 + 10.86376391 0.91472372 + 10.86776431 0.91319881 + 10.87176471 0.91179503 + 10.87576511 0.91051136 + 10.87976551 0.90934649 + 10.88376591 0.90829891 + 10.88776631 0.90736686 + 10.89176671 0.90654841 + 10.89576711 0.90584144 + 10.89976751 0.90524367 + 10.90376791 0.90475272 + 10.90776831 0.90436607 + 10.91176871 0.90408111 + 10.91576911 0.90389517 + 10.91976951 0.90380554 + 10.92376991 0.90380944 + 10.92777031 0.90390411 + 10.93177071 0.90408677 + 10.93577111 0.90435464 + 10.93977151 0.90470498 + 10.94377191 0.90513508 + 10.94777231 0.90564228 + 10.95177271 0.90622397 + 10.95577311 0.90687758 + 10.95977351 0.90760063 + 10.96377391 0.90839070 + 10.96777431 0.90924542 + 10.97177471 0.91016252 + 10.97577511 0.91113978 + 10.97977551 0.91217505 + 10.98377591 0.91326627 + 10.98777631 0.91441141 + 10.99177671 0.91560852 + 10.99577711 0.91685571 + 10.99977751 0.91815113 + 11.00377791 0.91949299 + 11.00777831 0.92087952 + 11.01177871 0.92230901 + 11.01577911 0.92377977 + 11.01977951 0.92529014 + 11.02377991 0.92683848 + 11.02778031 0.92842317 + 11.03178071 0.93004259 + 11.03578111 0.93169515 + 11.03978151 0.93337927 + 11.04378191 0.93509336 + 11.04778231 0.93683585 + 11.05178271 0.93860517 + 11.05578311 0.94039977 + 11.05978351 0.94221809 + 11.06378391 0.94405860 + 11.06778431 0.94591977 + 11.07178471 0.94780010 + 11.07578511 0.94969813 + 11.07978551 0.95161241 + 11.08378591 0.95354152 + 11.08778631 0.95548413 + 11.09178671 0.95743892 + 11.09578711 0.95940466 + 11.09978751 0.96138018 + 11.10378791 0.96336439 + 11.10778831 0.96535632 + 11.11178871 0.96735506 + 11.11578911 0.96935983 + 11.11978951 0.97136997 + 11.12378991 0.97338496 + 11.12779031 0.97540438 + 11.13179071 0.97742798 + 11.13579111 0.97945567 + 11.13979151 0.98148748 + 11.14379191 0.98352364 + 11.14779231 0.98556451 + 11.15179271 0.98761064 + 11.15579311 0.98966272 + 11.15979351 0.99172162 + 11.16379391 0.99378838 + 11.16779431 0.99586419 + 11.17179471 0.99795037 + 11.17579511 1.00004842 + 11.17979551 1.00215996 + 11.18379591 1.00428672 + 11.18779631 1.00643055 + 11.19179671 1.00859340 + 11.19579711 1.01077731 + 11.19979751 1.01298437 + 11.20379791 1.01521671 + 11.20779831 1.01747650 + 11.21179871 1.01976591 + 11.21579911 1.02208710 + 11.21979951 1.02444220 + 11.22379991 1.02683326 + 11.22780031 1.02926228 + 11.23180071 1.03173113 + 11.23580111 1.03424159 + 11.23980151 1.03679528 + 11.24380191 1.03939365 + 11.24780231 1.04203800 + 11.25180271 1.04472939 + 11.25580311 1.04746871 + 11.25980351 1.05025659 + 11.26380391 1.05309344 + 11.26780431 1.05597942 + 11.27180471 1.05891442 + 11.27580511 1.06189807 + 11.27980551 1.06492974 + 11.28380591 1.06800853 + 11.28780631 1.07113326 + 11.29180671 1.07430252 + 11.29580711 1.07751459 + 11.29980751 1.08076756 + 11.30380791 1.08405923 + 11.30780831 1.08738720 + 11.31180871 1.09074887 + 11.31580911 1.09414141 + 11.31980951 1.09756184 + 11.32380992 1.10100702 + 11.32781032 1.10447365 + 11.33181072 1.10795834 + 11.33581112 1.11145759 + 11.33981152 1.11496784 + 11.34381192 1.11848546 + 11.34781232 1.12200681 + 11.35181272 1.12552824 + 11.35581312 1.12904612 + 11.35981352 1.13255683 + 11.36381392 1.13605685 + 11.36781432 1.13954270 + 11.37181472 1.14301100 + 11.37581512 1.14645847 + 11.37981552 1.14988197 + 11.38381592 1.15327845 + 11.38781632 1.15664504 + 11.39181672 1.15997899 + 11.39581712 1.16327772 + 11.39981752 1.16653879 + 11.40381792 1.16975992 + 11.40781832 1.17293900 + 11.41181872 1.17607406 + 11.41581912 1.17916328 + 11.41981952 1.18220501 + 11.42381992 1.18519770 + 11.42782032 1.18813996 + 11.43182072 1.19103051 + 11.43582112 1.19386819 + 11.43982152 1.19665195 + 11.44382192 1.19938080 + 11.44782232 1.20205389 + 11.45182272 1.20467039 + 11.45582312 1.20722956 + 11.45982352 1.20973071 + 11.46382392 1.21217321 + 11.46782432 1.21455646 + 11.47182472 1.21687989 + 11.47582512 1.21914297 + 11.47982552 1.22134521 + 11.48382592 1.22348613 + 11.48782632 1.22556529 + 11.49182672 1.22758227 + 11.49582712 1.22953669 + 11.49982752 1.23142821 + 11.50382792 1.23325655 + 11.50782832 1.23502145 + 11.51182872 1.23672274 + 11.51582912 1.23836033 + 11.51982952 1.23993419 + 11.52382992 1.24144442 + 11.52783032 1.24289119 + 11.53183072 1.24427484 + 11.53583112 1.24559582 + 11.53983152 1.24685474 + 11.54383192 1.24805237 + 11.54783232 1.24918965 + 11.55183272 1.25026771 + 11.55583312 1.25128789 + 11.55983352 1.25225171 + 11.56383392 1.25316092 + 11.56783432 1.25401748 + 11.57183472 1.25482357 + 11.57583512 1.25558157 + 11.57983552 1.25629411 + 11.58383592 1.25696401 + 11.58783632 1.25759430 + 11.59183672 1.25818822 + 11.59583712 1.25874917 + 11.59983752 1.25928075 + 11.60383792 1.25978669 + 11.60783832 1.26027088 + 11.61183872 1.26073731 + 11.61583912 1.26119005 + 11.61983952 1.26163326 + 11.62383992 1.26207113 + 11.62784032 1.26250786 + 11.63184072 1.26294764 + 11.63584112 1.26339459 + 11.63984152 1.26385278 + 11.64384192 1.26432617 + 11.64784232 1.26481855 + 11.65184272 1.26533360 + 11.65584312 1.26587474 + 11.65984352 1.26644520 + 11.66384392 1.26704796 + 11.66784432 1.26768571 + 11.67184472 1.26836084 + 11.67584512 1.26907545 + 11.67984552 1.26983125 + 11.68384592 1.27062966 + 11.68784632 1.27147168 + 11.69184672 1.27235798 + 11.69584712 1.27328882 + 11.69984752 1.27426411 + 11.70384792 1.27528336 + 11.70784832 1.27634571 + 11.71184872 1.27744994 + 11.71584912 1.27859448 + 11.71984952 1.27977742 + 11.72384992 1.28099652 + 11.72785032 1.28224926 + 11.73185072 1.28353284 + 11.73585112 1.28484420 + 11.73985152 1.28618009 + 11.74385192 1.28753705 + 11.74785232 1.28891149 + 11.75185272 1.29029970 + 11.75585312 1.29169787 + 11.75985352 1.29310216 + 11.76385392 1.29450874 + 11.76785432 1.29591378 + 11.77185472 1.29731353 + 11.77585512 1.29870436 + 11.77985552 1.30008275 + 11.78385592 1.30144536 + 11.78785632 1.30278907 + 11.79185672 1.30411096 + 11.79585712 1.30540841 + 11.79985752 1.30667903 + 11.80385792 1.30792079 + 11.80785832 1.30913194 + 11.81185872 1.31031109 + 11.81585912 1.31145717 + 11.81985952 1.31256951 + 11.82385992 1.31364774 + 11.82786032 1.31469190 + 11.83186072 1.31570235 + 11.83586112 1.31667983 + 11.83986152 1.31762537 + 11.84386192 1.31854038 + 11.84786232 1.31942654 + 11.85186272 1.32028581 + 11.85586312 1.32112045 + 11.85986352 1.32193293 + 11.86386392 1.32272594 + 11.86786432 1.32350236 + 11.87186472 1.32426521 + 11.87586512 1.32501765 + 11.87986552 1.32576292 + 11.88386592 1.32650432 + 11.88786632 1.32724518 + 11.89186672 1.32798883 + 11.89586712 1.32873857 + 11.89986752 1.32949761 + 11.90386792 1.33026909 + 11.90786832 1.33105602 + 11.91186872 1.33186128 + 11.91586912 1.33268758 + 11.91986952 1.33353742 + 11.92386992 1.33441314 + 11.92787032 1.33531683 + 11.93187072 1.33625036 + 11.93587112 1.33721536 + 11.93987152 1.33821322 + 11.94387192 1.33924508 + 11.94787232 1.34031183 + 11.95187272 1.34141412 + 11.95587312 1.34255233 + 11.95987352 1.34372665 + 11.96387392 1.34493702 + 11.96787432 1.34618315 + 11.97187472 1.34746459 + 11.97587512 1.34878066 + 11.97987552 1.35013053 + 11.98387592 1.35151322 + 11.98787632 1.35292761 + 11.99187672 1.35437243 + 11.99587712 1.35584635 + 11.99987752 1.35734794 + 12.00387792 1.35887568 + 12.00787832 1.36042803 + 12.01187872 1.36200340 + 12.01587912 1.36360018 + 12.01987952 1.36521674 + 12.02387992 1.36685148 + 12.02788032 1.36850278 + 12.03188072 1.37016907 + 12.03588112 1.37184880 + 12.03988152 1.37354045 + 12.04388192 1.37524253 + 12.04788232 1.37695361 + 12.05188272 1.37867229 + 12.05588312 1.38039720 + 12.05988352 1.38212702 + 12.06388392 1.38386044 + 12.06788432 1.38559622 + 12.07188472 1.38733309 + 12.07588512 1.38906982 + 12.07988552 1.39080520 + 12.08388592 1.39253798 + 12.08788632 1.39426695 + 12.09188672 1.39599084 + 12.09588712 1.39770838 + 12.09988752 1.39941828 + 12.10388792 1.40111919 + 12.10788832 1.40280973 + 12.11188872 1.40448848 + 12.11588912 1.40615396 + 12.11988952 1.40780464 + 12.12388992 1.40943894 + 12.12789032 1.41105523 + 12.13189072 1.41265182 + 12.13589112 1.41422699 + 12.13989152 1.41577896 + 12.14389192 1.41730590 + 12.14789232 1.41880598 + 12.15189272 1.42027733 + 12.15589312 1.42171805 + 12.15989352 1.42312626 + 12.16389392 1.42450005 + 12.16789432 1.42583756 + 12.17189472 1.42713693 + 12.17589512 1.42839635 + 12.17989552 1.42961403 + 12.18389592 1.43078827 + 12.18789632 1.43191741 + 12.19189672 1.43299988 + 12.19589712 1.43403420 + 12.19989752 1.43501896 + 12.20389792 1.43595287 + 12.20789832 1.43683474 + 12.21189872 1.43766349 + 12.21589912 1.43843815 + 12.21989952 1.43915786 + 12.22389992 1.43982188 + 12.22790032 1.44042957 + 12.23190072 1.44098043 + 12.23590112 1.44147404 + 12.23990152 1.44191008 + 12.24390192 1.44228832 + 12.24790232 1.44260864 + 12.25190272 1.44287096 + 12.25590312 1.44307529 + 12.25990352 1.44322168 + 12.26390392 1.44331022 + 12.26790432 1.44334104 + 12.27190472 1.44331428 + 12.27590512 1.44323007 + 12.27990552 1.44308855 + 12.28390592 1.44288983 + 12.28790632 1.44263398 + 12.29190672 1.44232103 + 12.29590712 1.44195095 + 12.29990752 1.44152365 + 12.30390792 1.44103895 + 12.30790832 1.44049659 + 12.31190872 1.43989624 + 12.31590912 1.43923745 + 12.31990952 1.43851970 + 12.32390993 1.43774235 + 12.32791033 1.43690467 + 12.33191073 1.43600583 + 12.33591113 1.43504494 + 12.33991153 1.43402098 + 12.34391193 1.43293288 + 12.34791233 1.43177950 + 12.35191273 1.43055964 + 12.35591313 1.42927206 + 12.35991353 1.42791547 + 12.36391393 1.42648858 + 12.36791433 1.42499011 + 12.37191473 1.42341879 + 12.37591513 1.42177337 + 12.37991553 1.42005266 + 12.38391593 1.41825557 + 12.38791633 1.41638106 + 12.39191673 1.41442823 + 12.39591713 1.41239628 + 12.39991753 1.41028459 + 12.40391793 1.40809269 + 12.40791833 1.40582027 + 12.41191873 1.40346723 + 12.41591913 1.40103370 + 12.41991953 1.39851999 + 12.42391993 1.39592667 + 12.42792033 1.39325454 + 12.43192073 1.39050465 + 12.43592113 1.38767830 + 12.43992153 1.38477704 + 12.44392193 1.38180270 + 12.44792233 1.37875733 + 12.45192273 1.37564325 + 12.45592313 1.37246301 + 12.45992353 1.36921942 + 12.46392393 1.36591550 + 12.46792433 1.36255447 + 12.47192473 1.35913978 + 12.47592513 1.35567504 + 12.47992553 1.35216403 + 12.48392593 1.34861067 + 12.48792633 1.34501903 + 12.49192673 1.34139326 + 12.49592713 1.33773760 + 12.49992753 1.33405635 + 12.50392793 1.33035384 + 12.50792833 1.32663442 + 12.51192873 1.32290241 + 12.51592913 1.31916212 + 12.51992953 1.31541778 + 12.52392993 1.31167353 + 12.52793033 1.30793342 + 12.53193073 1.30420138 + 12.53593113 1.30048117 + 12.53993153 1.29677642 + 12.54393193 1.29309053 + 12.54793233 1.28942675 + 12.55193273 1.28578809 + 12.55593313 1.28217734 + 12.55993353 1.27859708 + 12.56393393 1.27504961 + 12.56793433 1.27153702 + 12.57193473 1.26806111 + 12.57593513 1.26462346 + 12.57993553 1.26122537 + 12.58393593 1.25786789 + 12.58793633 1.25455184 + 12.59193673 1.25127776 + 12.59593713 1.24804598 + 12.59993753 1.24485658 + 12.60393793 1.24170943 + 12.60793833 1.23860418 + 12.61193873 1.23554029 + 12.61593913 1.23251704 + 12.61993953 1.22953352 + 12.62393993 1.22658868 + 12.62794033 1.22368133 + 12.63194073 1.22081014 + 12.63594113 1.21797370 + 12.63994153 1.21517049 + 12.64394193 1.21239892 + 12.64794233 1.20965734 + 12.65194273 1.20694407 + 12.65594313 1.20425740 + 12.65994353 1.20159561 + 12.66394393 1.19895698 + 12.66794433 1.19633983 + 12.67194473 1.19374250 + 12.67594513 1.19116338 + 12.67994553 1.18860094 + 12.68394593 1.18605368 + 12.68794633 1.18352022 + 12.69194673 1.18099925 + 12.69594713 1.17848957 + 12.69994753 1.17599008 + 12.70394793 1.17349977 + 12.70794833 1.17101779 + 12.71194873 1.16854335 + 12.71594913 1.16607584 + 12.71994953 1.16361472 + 12.72394993 1.16115960 + 12.72795033 1.15871019 + 12.73195073 1.15626633 + 12.73595113 1.15382797 + 12.73995153 1.15139515 + 12.74395193 1.14896804 + 12.74795233 1.14654690 + 12.75195273 1.14413206 + 12.75595313 1.14172395 + 12.75995353 1.13932308 + 12.76395393 1.13693001 + 12.76795433 1.13454535 + 12.77195473 1.13216979 + 12.77595513 1.12980402 + 12.77995553 1.12744878 + 12.78395593 1.12510481 + 12.78795633 1.12277289 + 12.79195673 1.12045375 + 12.79595713 1.11814816 + 12.79995753 1.11585682 + 12.80395793 1.11358044 + 12.80795833 1.11131966 + 12.81195873 1.10907510 + 12.81595913 1.10684730 + 12.81995953 1.10463676 + 12.82395993 1.10244390 + 12.82796033 1.10026907 + 12.83196073 1.09811254 + 12.83596113 1.09597450 + 12.83996153 1.09385506 + 12.84396193 1.09175423 + 12.84796233 1.08967194 + 12.85196273 1.08760803 + 12.85596313 1.08556223 + 12.85996353 1.08353421 + 12.86396393 1.08152353 + 12.86796433 1.07952967 + 12.87196473 1.07755202 + 12.87596513 1.07558990 + 12.87996553 1.07364254 + 12.88396593 1.07170911 + 12.88796633 1.06978870 + 12.89196673 1.06788036 + 12.89596713 1.06598304 + 12.89996753 1.06409569 + 12.90396793 1.06221716 + 12.90796833 1.06034631 + 12.91196873 1.05848194 + 12.91596913 1.05662282 + 12.91996953 1.05476770 + 12.92396993 1.05291532 + 12.92797033 1.05106439 + 12.93197073 1.04921364 + 12.93597113 1.04736178 + 12.93997153 1.04550752 + 12.94397193 1.04364958 + 12.94797233 1.04178669 + 12.95197273 1.03991759 + 12.95597313 1.03804103 + 12.95997353 1.03615578 + 12.96397393 1.03426063 + 12.96797433 1.03235438 + 12.97197473 1.03043585 + 12.97597513 1.02850389 + 12.97997553 1.02655735 + 12.98397593 1.02459512 + 12.98797633 1.02261609 + 12.99197673 1.02061915 + 12.99597713 1.01860325 + 12.99997753 1.01656730 + 13.00397793 1.01451026 + 13.00797833 1.01243108 + 13.01197873 1.01032871 + 13.01597913 1.00820211 + 13.01997953 1.00605025 + 13.02397993 1.00387210 + 13.02798033 1.00166661 + 13.03198073 0.99943275 + 13.03598113 0.99716948 + 13.03998153 0.99487575 + 13.04398193 0.99255051 + 13.04798233 0.99019272 + 13.05198273 0.98780132 + 13.05598313 0.98537525 + 13.05998353 0.98291346 + 13.06398393 0.98041490 + 13.06798433 0.97787852 + 13.07198473 0.97530329 + 13.07598513 0.97268816 + 13.07998553 0.97003214 + 13.08398593 0.96733422 + 13.08798633 0.96459343 + 13.09198673 0.96180883 + 13.09598713 0.95897952 + 13.09998753 0.95610463 + 13.10398793 0.95318332 + 13.10798833 0.95021483 + 13.11198873 0.94719843 + 13.11598913 0.94413347 + 13.11998953 0.94101935 + 13.12398993 0.93785556 + 13.12799033 0.93464165 + 13.13199073 0.93137726 + 13.13599113 0.92806212 + 13.13999153 0.92469605 + 13.14399193 0.92127895 + 13.14799233 0.91781086 + 13.15199273 0.91429188 + 13.15599313 0.91072223 + 13.15999353 0.90710224 + 13.16399393 0.90343236 + 13.16799433 0.89971314 + 13.17199473 0.89594523 + 13.17599513 0.89212941 + 13.17999553 0.88826657 + 13.18399593 0.88435770 + 13.18799633 0.88040391 + 13.19199673 0.87640641 + 13.19599713 0.87236653 + 13.19999753 0.86828569 + 13.20399793 0.86416541 + 13.20799833 0.86000731 + 13.21199873 0.85581310 + 13.21599913 0.85158459 + 13.21999953 0.84732367 + 13.22399993 0.84303229 + 13.22800033 0.83871252 + 13.23200073 0.83436645 + 13.23600113 0.82999628 + 13.24000153 0.82560424 + 13.24400193 0.82119263 + 13.24800233 0.81676379 + 13.25200273 0.81232014 + 13.25600313 0.80786409 + 13.26000353 0.80339811 + 13.26400393 0.79892473 + 13.26800433 0.79444644 + 13.27200473 0.78996582 + 13.27600513 0.78548542 + 13.28000553 0.78100782 + 13.28400593 0.77653560 + 13.28800633 0.77207135 + 13.29200673 0.76761765 + 13.29600713 0.76317707 + 13.30000753 0.75875218 + 13.30400793 0.75434553 + 13.30800833 0.74995965 + 13.31200873 0.74559703 + 13.31600913 0.74126015 + 13.32000953 0.73695144 + 13.32400994 0.73267331 + 13.32801034 0.72842811 + 13.33201074 0.72421815 + 13.33601114 0.72004567 + 13.34001154 0.71591289 + 13.34401194 0.71182192 + 13.34801234 0.70777483 + 13.35201274 0.70377362 + 13.35601314 0.69982020 + 13.36001354 0.69591641 + 13.36401394 0.69206399 + 13.36801434 0.68826459 + 13.37201474 0.68451978 + 13.37601514 0.68083102 + 13.38001554 0.67719965 + 13.38401594 0.67362694 + 13.38801634 0.67011401 + 13.39201674 0.66666190 + 13.39601714 0.66327150 + 13.40001754 0.65994360 + 13.40401794 0.65667887 + 13.40801834 0.65347786 + 13.41201874 0.65034098 + 13.41601914 0.64726852 + 13.42001954 0.64426067 + 13.42401994 0.64131747 + 13.42802034 0.63843885 + 13.43202074 0.63562463 + 13.43602114 0.63287449 + 13.44002154 0.63018802 + 13.44402194 0.62756468 + 13.44802234 0.62500384 + 13.45202274 0.62250477 + 13.45602314 0.62006662 + 13.46002354 0.61768848 + 13.46402394 0.61536934 + 13.46802434 0.61310812 + 13.47202474 0.61090365 + 13.47602514 0.60875472 + 13.48002554 0.60666004 + 13.48402594 0.60461829 + 13.48802634 0.60262810 + 13.49202674 0.60068805 + 13.49602714 0.59879671 + 13.50002754 0.59695262 + 13.50402794 0.59515430 + 13.50802834 0.59340028 + 13.51202874 0.59168906 + 13.51602914 0.59001917 + 13.52002954 0.58838913 + 13.52402994 0.58679749 + 13.52803034 0.58524282 + 13.53203074 0.58372369 + 13.53603114 0.58223874 + 13.54003154 0.58078661 + 13.54403194 0.57936598 + 13.54803234 0.57797558 + 13.55203274 0.57661417 + 13.55603314 0.57528055 + 13.56003354 0.57397357 + 13.56403394 0.57269212 + 13.56803434 0.57143513 + 13.57203474 0.57020158 + 13.57603514 0.56899049 + 13.58003554 0.56780091 + 13.58403594 0.56663196 + 13.58803634 0.56548276 + 13.59203674 0.56435250 + 13.59603714 0.56324040 + 13.60003754 0.56214569 + 13.60403794 0.56106766 + 13.60803834 0.56000562 + 13.61203874 0.55895890 + 13.61603914 0.55792686 + 13.62003954 0.55690889 + 13.62403994 0.55590438 + 13.62804034 0.55491276 + 13.63204074 0.55393347 + 13.63604114 0.55296595 + 13.64004154 0.55200969 + 13.64404194 0.55106415 + 13.64804234 0.55012883 + 13.65204274 0.54920324 + 13.65604314 0.54828689 + 13.66004354 0.54737931 + 13.66404394 0.54648004 + 13.66804434 0.54558863 + 13.67204474 0.54470465 + 13.67604514 0.54382767 + 13.68004554 0.54295730 + 13.68404594 0.54209316 + 13.68804634 0.54123487 + 13.69204674 0.54038210 + 13.69604714 0.53953454 + 13.70004754 0.53869189 + 13.70404794 0.53785391 + 13.70804834 0.53702036 + 13.71204874 0.53619105 + 13.71604914 0.53536584 + 13.72004954 0.53454461 + 13.72404994 0.53372729 + 13.72805034 0.53291384 + 13.73205074 0.53210428 + 13.73605114 0.53129867 + 13.74005154 0.53049711 + 13.74405194 0.52969975 + 13.74805234 0.52890679 + 13.75205274 0.52811844 + 13.75605314 0.52733500 + 13.76005354 0.52655677 + 13.76405394 0.52578411 + 13.76805434 0.52501740 + 13.77205474 0.52425705 + 13.77605514 0.52350350 + 13.78005554 0.52275720 + 13.78405594 0.52201862 + 13.78805634 0.52128823 + 13.79205674 0.52056652 + 13.79605714 0.51985395 + 13.80005754 0.51915098 + 13.80405794 0.51845806 + 13.80805834 0.51777559 + 13.81205874 0.51710397 + 13.81605914 0.51644354 + 13.82005954 0.51579460 + 13.82405994 0.51515741 + 13.82806034 0.51453214 + 13.83206074 0.51391895 + 13.83606114 0.51331790 + 13.84006154 0.51272899 + 13.84406194 0.51215216 + 13.84806234 0.51158725 + 13.85206274 0.51103407 + 13.85606314 0.51049232 + 13.86006354 0.50996165 + 13.86406394 0.50944162 + 13.86806434 0.50893176 + 13.87206474 0.50843149 + 13.87606514 0.50794021 + 13.88006554 0.50745727 + 13.88406594 0.50698195 + 13.88806634 0.50651350 + 13.89206674 0.50605118 + 13.89606714 0.50559418 + 13.90006754 0.50514171 + 13.90406794 0.50469298 + 13.90806834 0.50424721 + 13.91206874 0.50380363 + 13.91606914 0.50336151 + 13.92006954 0.50292018 + 13.92406994 0.50247900 + 13.92807034 0.50203739 + 13.93207074 0.50159487 + 13.93607114 0.50115100 + 13.94007154 0.50070547 + 13.94407194 0.50025803 + 13.94807234 0.49980855 + 13.95207274 0.49935699 + 13.95607314 0.49890343 + 13.96007354 0.49844807 + 13.96407394 0.49799119 + 13.96807434 0.49753321 + 13.97207474 0.49707465 + 13.97607514 0.49661613 + 13.98007554 0.49615838 + 13.98407594 0.49570222 + 13.98807634 0.49524857 + 13.99207674 0.49479842 + 13.99607714 0.49435283 + 14.00007754 0.49391293 + 14.00407794 0.49347990 + 14.00807834 0.49305494 + 14.01207874 0.49263930 + 14.01607914 0.49223422 + 14.02007954 0.49184096 + 14.02407994 0.49146075 + 14.02808034 0.49109478 + 14.03208074 0.49074421 + 14.03608114 0.49041015 + 14.04008154 0.49009362 + 14.04408194 0.48979557 + 14.04808234 0.48951684 + 14.05208274 0.48925818 + 14.05608314 0.48902021 + 14.06008354 0.48880343 + 14.06408394 0.48860820 + 14.06808434 0.48843474 + 14.07208474 0.48828312 + 14.07608514 0.48815327 + 14.08008554 0.48804496 + 14.08408594 0.48795781 + 14.08808634 0.48789127 + 14.09208674 0.48784467 + 14.09608714 0.48781716 + 14.10008754 0.48780776 + 14.10408794 0.48781536 + 14.10808834 0.48783871 + 14.11208874 0.48787644 + 14.11608914 0.48792708 + 14.12008954 0.48798905 + 14.12408994 0.48806068 + 14.12809034 0.48814023 + 14.13209074 0.48822588 + 14.13609114 0.48831578 + 14.14009154 0.48840802 + 14.14409194 0.48850067 + 14.14809234 0.48859180 + 14.15209274 0.48867945 + 14.15609314 0.48876169 + 14.16009354 0.48883661 + 14.16409394 0.48890232 + 14.16809434 0.48895697 + 14.17209474 0.48899875 + 14.17609514 0.48902593 + 14.18009554 0.48903679 + 14.18409594 0.48902973 + 14.18809634 0.48900316 + 14.19209674 0.48895559 + 14.19609714 0.48888557 + 14.20009754 0.48879175 + 14.20409794 0.48867279 + 14.20809834 0.48852744 + 14.21209874 0.48835449 + 14.21609914 0.48815276 + 14.22009954 0.48792113 + 14.22409994 0.48765849 + 14.22810034 0.48736375 + 14.23210074 0.48703583 + 14.23610114 0.48667363 + 14.24010154 0.48627608 + 14.24410194 0.48584204 + 14.24810234 0.48537038 + 14.25210274 0.48485991 + 14.25610314 0.48430939 + 14.26010354 0.48371753 + 14.26410394 0.48308297 + 14.26810434 0.48240431 + 14.27210474 0.48168004 + 14.27610514 0.48090861 + 14.28010554 0.48008837 + 14.28410594 0.47921762 + 14.28810634 0.47829457 + 14.29210674 0.47731738 + 14.29610714 0.47628412 + 14.30010754 0.47519285 + 14.30410794 0.47404155 + 14.30810834 0.47282817 + 14.31210874 0.47155066 + 14.31610914 0.47020694 + 14.32010955 0.46879494 + 14.32410995 0.46731262 + 14.32811035 0.46575798 + 14.33211075 0.46412906 + 14.33611115 0.46242398 + 14.34011155 0.46064097 + 14.34411195 0.45877834 + 14.34811235 0.45683454 + 14.35211275 0.45480818 + 14.35611315 0.45269800 + 14.36011355 0.45050295 + 14.36411395 0.44822214 + 14.36811435 0.44585492 + 14.37211475 0.44340083 + 14.37611515 0.44085966 + 14.38011555 0.43823143 + 14.38411595 0.43551640 + 14.38811635 0.43271509 + 14.39211675 0.42982828 + 14.39611715 0.42685700 + 14.40011755 0.42380255 + 14.40411795 0.42066646 + 14.40811835 0.41745053 + 14.41211875 0.41415680 + 14.41611915 0.41078756 + 14.42011955 0.40734530 + 14.42411995 0.40383276 + 14.42812035 0.40025284 + 14.43212075 0.39660866 + 14.43612115 0.39290352 + 14.44012155 0.38914085 + 14.44412195 0.38532423 + 14.44812235 0.38145736 + 14.45212275 0.37754405 + 14.45612315 0.37358819 + 14.46012355 0.36959373 + 14.46412395 0.36556466 + 14.46812435 0.36150501 + 14.47212475 0.35741880 + 14.47612515 0.35331007 + 14.48012555 0.34918279 + 14.48412595 0.34504092 + 14.48812635 0.34088835 + 14.49212675 0.33672888 + 14.49612715 0.33256624 + 14.50012755 0.32840405 + 14.50412795 0.32424583 + 14.50812835 0.32009496 + 14.51212875 0.31595470 + 14.51612915 0.31182817 + 14.52012955 0.30771835 + 14.52412995 0.30362807 + 14.52813035 0.29955999 + 14.53213075 0.29551665 + 14.53613115 0.29150040 + 14.54013155 0.28751346 + 14.54413195 0.28355789 + 14.54813235 0.27963557 + 14.55213275 0.27574828 + 14.55613315 0.27189760 + 14.56013355 0.26808499 + 14.56413395 0.26431179 + 14.56813435 0.26057918 + 14.57213475 0.25688822 + 14.57613515 0.25323984 + 14.58013555 0.24963488 + 14.58413595 0.24607403 + 14.58813635 0.24255791 + 14.59213675 0.23908703 + 14.59613715 0.23566180 + 14.60013755 0.23228256 + 14.60413795 0.22894955 + 14.60813835 0.22566294 + 14.61213875 0.22242286 + 14.61613915 0.21922934 + 14.62013955 0.21608235 + 14.62413995 0.21298184 + 14.62814035 0.20992767 + 14.63214075 0.20691968 + 14.63614115 0.20395765 + 14.64014155 0.20104133 + 14.64414195 0.19817044 + 14.64814235 0.19534463 + 14.65214275 0.19256356 + 14.65614315 0.18982684 + 14.66014355 0.18713405 + 14.66414395 0.18448475 + 14.66814435 0.18187847 + 14.67214475 0.17931473 + 14.67614515 0.17679301 + 14.68014555 0.17431277 + 14.68414595 0.17187347 + 14.68814635 0.16947453 + 14.69214675 0.16711535 + 14.69614715 0.16479534 + 14.70014755 0.16251385 + 14.70414795 0.16027025 + 14.70814835 0.15806389 + 14.71214875 0.15589408 + 14.71614915 0.15376014 + 14.72014955 0.15166136 + 14.72414995 0.14959704 + 14.72815035 0.14756645 + 14.73215075 0.14556884 + 14.73615115 0.14360347 + 14.74015155 0.14166958 + 14.74415195 0.13976640 + 14.74815235 0.13789316 + 14.75215275 0.13604908 + 14.75615315 0.13423335 + 14.76015355 0.13244520 + 14.76415395 0.13068381 + 14.76815435 0.12894839 + 14.77215475 0.12723812 + 14.77615515 0.12555222 + 14.78015555 0.12388986 + 14.78415595 0.12225025 + 14.78815635 0.12063259 + 14.79215675 0.11903607 + 14.79615715 0.11745990 + 14.80015755 0.11590331 + 14.80415795 0.11436551 + 14.80815835 0.11284574 + 14.81215875 0.11134323 + 14.81615915 0.10985726 + 14.82015955 0.10838709 + 14.82415995 0.10693200 + 14.82816035 0.10549131 + 14.83216075 0.10406434 + 14.83616115 0.10265043 + 14.84016155 0.10124894 + 14.84416195 0.09985928 + 14.84816235 0.09848085 + 14.85216275 0.09711310 + 14.85616315 0.09575549 + 14.86016355 0.09440753 + 14.86416395 0.09306874 + 14.86816435 0.09173868 + 14.87216475 0.09041694 + 14.87616515 0.08910314 + 14.88016555 0.08779694 + 14.88416595 0.08649803 + 14.88816635 0.08520613 + 14.89216675 0.08392099 + 14.89616715 0.08264241 + 14.90016755 0.08137021 + 14.90416795 0.08010425 + 14.90816835 0.07884440 + 14.91216875 0.07759061 + 14.91616915 0.07634280 + 14.92016955 0.07510097 + 14.92416995 0.07386513 + 14.92817035 0.07263530 + 14.93217075 0.07141155 + 14.93617115 0.07019397 + 14.94017155 0.06898266 + 14.94417195 0.06777774 + 14.94817235 0.06657936 + 14.95217275 0.06538769 + 14.95617315 0.06420289 + 14.96017355 0.06302516 + 14.96417395 0.06185468 + 14.96817435 0.06069167 + 14.97217475 0.05953635 + 14.97617515 0.05838891 + 14.98017555 0.05724958 + 14.98417595 0.05611859 + 14.98817635 0.05499615 + 14.99217675 0.05388246 + 14.99617715 0.05277776 + 15.00017755 0.05168224 + 15.00417795 0.05059610 + 15.00817835 0.04951954 + 15.01217875 0.04845274 + 15.01617915 0.04739588 + 15.02017955 0.04634912 + 15.02417995 0.04531264 + 15.02818035 0.04428656 + 15.03218075 0.04327105 + 15.03618115 0.04226622 + 15.04018155 0.04127219 + 15.04418195 0.04028909 + 15.04818235 0.03931701 + 15.05218275 0.03835605 + 15.05618315 0.03740630 + 15.06018355 0.03646784 + 15.06418395 0.03554076 + 15.06818435 0.03462512 + 15.07218475 0.03372100 + 15.07618515 0.03282846 + 15.08018555 0.03194757 + 15.08418595 0.03107839 + 15.08818635 0.03022098 + 15.09218675 0.02937541 + 15.09618715 0.02854174 + 15.10018755 0.02772003 + 15.10418795 0.02691035 + 15.10818835 0.02611277 + 15.11218875 0.02532735 + 15.11618915 0.02455418 + 15.12018955 0.02379333 + 15.12418995 0.02304487 + 15.12819035 0.02230888 + 15.13219075 0.02158546 + 15.13619115 0.02087467 + 15.14019155 0.02017662 + 15.14419195 0.01949138 + 15.14819235 0.01881904 + 15.15219275 0.01815969 + 15.15619315 0.01751340 + 15.16019355 0.01688027 + 15.16419395 0.01626038 + 15.16819435 0.01565379 + 15.17219475 0.01506057 + 15.17619515 0.01448080 + 15.18019555 0.01391452 + 15.18419595 0.01336179 + 15.18819635 0.01282265 + 15.19219675 0.01229713 + 15.19619715 0.01178524 + 15.20019755 0.01128701 + 15.20419795 0.01080242 + 15.20819835 0.01033146 + 15.21219875 0.00987411 + 15.21619915 0.00943032 + 15.22019955 0.00900004 + 15.22419995 0.00858319 + 15.22820035 0.00817970 + 15.23220075 0.00778946 + 15.23620115 0.00741237 + 15.24020155 0.00704829 + 15.24420195 0.00669708 + 15.24820235 0.00635859 + 15.25220275 0.00603264 + 15.25620315 0.00571906 + 15.26020355 0.00541764 + 15.26420395 0.00512818 + 15.26820435 0.00485046 + 15.27220475 0.00458425 + 15.27620515 0.00432931 + 15.28020555 0.00408538 + 15.28420595 0.00385221 + 15.28820635 0.00362953 + 15.29220675 0.00341707 + 15.29620715 0.00321454 + 15.30020755 0.00302167 + 15.30420795 0.00283816 + 15.30820835 0.00266373 + 15.31220875 0.00249807 + 15.31620915 0.00234090 + 15.32020956 0.00219192 + 15.32420996 0.00205082 + 15.32821036 0.00191733 + 15.33221076 0.00179113 + 15.33621116 0.00167195 + 15.34021156 0.00155950 + 15.34421196 0.00145349 + 15.34821236 0.00135364 + 15.35221276 0.00125968 + 15.35621316 0.00117134 + 15.36021356 0.00108837 + 15.36421396 0.00101049 + 15.36821436 0.00093747 + 15.37221476 0.00086905 + 15.37621516 0.00080502 + 15.38021556 0.00074512 + 15.38421596 0.00068916 + 15.38821636 0.00063691 + 15.39221676 0.00058816 + 15.39621716 0.00054273 + 15.40021756 0.00050042 + 15.40421796 0.00046105 + 15.40821836 0.00042445 + 15.41221876 0.00039045 + 15.41621916 0.00035889 + 15.42021956 0.00032962 + 15.42421996 0.00030250 + 15.42822036 0.00027739 + 15.43222076 0.00025416 + 15.43622116 0.00023268 + 15.44022156 0.00021285 + 15.44422196 0.00019455 + 15.44822236 0.00017767 + 15.45222276 0.00016212 + 15.45622316 0.00014781 + 15.46022356 0.00013465 + 15.46422396 0.00012255 + 15.46822436 0.00011145 + 15.47222476 0.00010126 + 15.47622516 0.00009192 + 15.48022556 0.00008337 + 15.48422596 0.00007554 + 15.48822636 0.00006839 + 15.49222676 0.00006185 + 15.49622716 0.00005589 + 15.50022756 0.00005045 + 15.50422796 0.00004550 + 15.50822836 0.00004100 + 15.51222876 0.00003690 + 15.51622916 0.00003318 + 15.52022956 0.00002981 + 15.52422996 0.00002675 + 15.52823036 0.00002398 + 15.53223076 0.00002147 + 15.53623116 0.00001921 + 15.54023156 0.00001717 + 15.54423196 0.00001532 + 15.54823236 0.00001366 + 15.55223276 0.00001217 + 15.55623316 0.00001083 + 15.56023356 0.00000962 + 15.56423396 0.00000854 + 15.56823436 0.00000757 + 15.57223476 0.00000670 + 15.57623516 0.00000593 + 15.58023556 0.00000524 + 15.58423596 0.00000462 + 15.58823636 0.00000407 + 15.59223676 0.00000359 + 15.59623716 0.00000315 + 15.60023756 0.00000277 + 15.60423796 0.00000243 + 15.60823836 0.00000213 + 15.61223876 0.00000186 + 15.61623916 0.00000162 + 15.62023956 0.00000142 + 15.62423996 0.00000124 + 15.62824036 0.00000107 + 15.63224076 0.00000093 + 15.63624116 0.00000081 + 15.64024156 0.00000070 + 15.64424196 0.00000061 + 15.64824236 0.00000053 + 15.65224276 0.00000045 + 15.65624316 0.00000039 + 15.66024356 0.00000034 + 15.66424396 0.00000029 + 15.66824436 0.00000025 + 15.67224476 0.00000021 + 15.67624516 0.00000018 + 15.68024556 0.00000016 + 15.68424596 0.00000013 + 15.68824636 0.00000011 + 15.69224676 0.00000010 + 15.69624716 0.00000008 + 15.70024756 0.00000007 + 15.70424796 0.00000006 + 15.70824836 0.00000005 + 15.71224876 0.00000004 + 15.71624916 0.00000004 + 15.72024956 0.00000003 + 15.72424996 0.00000003 + 15.72825036 0.00000002 + 15.73225076 0.00000002 + 15.73625116 0.00000001 + 15.74025156 0.00000001 + 15.74425196 0.00000001 + 15.74825236 0.00000001 + 15.75225276 0.00000001 + 15.75625316 0.00000001 + 15.76025356 0.00000000 + 15.76425396 0.00000000 + 15.76825436 0.00000000 + 15.77225476 0.00000000 + 15.77625516 0.00000000 + 15.78025556 0.00000000 + 15.78425596 0.00000000 + 15.78825636 0.00000000 + 15.79225676 0.00000000 + 15.79625716 0.00000000 + 15.80025756 0.00000000 + 15.80425796 0.00000000 + 15.80825836 0.00000000 + 15.81225876 0.00000000 + 15.81625916 0.00000000 + 15.82025956 0.00000000 + 15.82425996 0.00000000 + 15.82826036 0.00000000 + 15.83226076 0.00000000 + 15.83626116 0.00000000 + 15.84026156 0.00000000 + 15.84426196 0.00000000 + 15.84826236 0.00000000 + 15.85226276 0.00000000 + 15.85626316 0.00000000 + 15.86026356 0.00000000 + 15.86426396 0.00000000 + 15.86826436 0.00000000 + 15.87226476 0.00000000 + 15.87626516 0.00000000 + 15.88026556 0.00000000 + 15.88426596 0.00000000 + 15.88826636 0.00000000 + 15.89226676 0.00000000 + 15.89626716 0.00000000 + 15.90026756 0.00000000 + 15.90426796 0.00000000 + 15.90826836 0.00000000 + 15.91226876 0.00000000 + 15.91626916 0.00000000 + 15.92026956 0.00000000 + 15.92426996 0.00000000 + 15.92827036 0.00000000 + 15.93227076 0.00000000 + 15.93627116 0.00000000 + 15.94027156 0.00000000 + 15.94427196 0.00000000 + 15.94827236 0.00000000 + 15.95227276 0.00000000 + 15.95627316 0.00000000 + 15.96027356 0.00000000 + 15.96427396 0.00000000 + 15.96827436 0.00000000 + 15.97227476 0.00000000 + 15.97627516 0.00000000 + 15.98027556 0.00000000 + 15.98427596 0.00000000 + 15.98827636 0.00000000 + 15.99227676 0.00000000 + 15.99627716 0.00000000 + 16.00027756 0.00000000 + 16.00427796 0.00000000 + 16.00827836 0.00000000 + 16.01227876 0.00000000 + 16.01627916 0.00000000 + 16.02027956 0.00000000 + 16.02427996 0.00000000 + 16.02828036 0.00000000 + 16.03228076 0.00000000 + 16.03628116 0.00000000 + 16.04028156 0.00000000 + 16.04428196 0.00000000 + 16.04828236 0.00000000 + 16.05228276 0.00000000 + 16.05628316 0.00000000 + 16.06028356 0.00000000 + 16.06428396 0.00000000 + 16.06828436 0.00000000 + 16.07228476 0.00000000 + 16.07628516 0.00000000 + 16.08028556 0.00000000 + 16.08428596 0.00000000 + 16.08828636 0.00000000 + 16.09228676 0.00000000 + 16.09628716 0.00000000 + 16.10028756 0.00000000 + 16.10428796 0.00000000 + 16.10828836 0.00000000 + 16.11228876 0.00000000 + 16.11628916 0.00000000 + 16.12028956 0.00000000 + 16.12428996 0.00000000 + 16.12829036 0.00000000 + 16.13229076 0.00000000 + 16.13629116 0.00000000 + 16.14029156 0.00000000 + 16.14429196 0.00000000 + 16.14829236 0.00000000 + 16.15229276 0.00000000 + 16.15629316 0.00000000 + 16.16029356 0.00000000 + 16.16429396 0.00000000 + 16.16829436 0.00000000 + 16.17229476 0.00000000 + 16.17629516 0.00000000 + 16.18029556 0.00000000 + 16.18429596 0.00000000 + 16.18829636 0.00000000 + 16.19229676 0.00000000 + 16.19629716 0.00000000 + 16.20029756 0.00000000 + 16.20429796 0.00000000 + 16.20829836 0.00000000 + 16.21229876 0.00000000 + 16.21629916 0.00000000 + 16.22029956 0.00000000 + 16.22429996 0.00000000 + 16.22830036 0.00000000 + 16.23230076 0.00000000 + 16.23630116 0.00000000 + 16.24030156 0.00000000 + 16.24430196 0.00000000 + 16.24830236 0.00000000 + 16.25230276 0.00000000 + 16.25630316 0.00000000 + 16.26030356 0.00000000 + 16.26430396 0.00000000 + 16.26830436 0.00000000 + 16.27230476 0.00000000 + 16.27630516 0.00000000 + 16.28030556 0.00000000 + 16.28430596 0.00000000 + 16.28830636 0.00000000 + 16.29230676 0.00000000 + 16.29630716 0.00000000 + 16.30030756 0.00000000 + 16.30430796 0.00000000 + 16.30830836 0.00000000 + 16.31230876 0.00000000 + 16.31630916 0.00000000 + 16.32030957 0.00000000 + 16.32430997 0.00000000 + 16.32831037 0.00000000 + 16.33231077 0.00000000 + 16.33631117 0.00000000 + 16.34031157 0.00000000 + 16.34431197 0.00000000 + 16.34831237 0.00000000 + 16.35231277 0.00000000 + 16.35631317 0.00000000 + 16.36031357 0.00000000 + 16.36431397 0.00000000 + 16.36831437 0.00000000 + 16.37231477 0.00000000 + 16.37631517 0.00000000 + 16.38031557 0.00000000 + 16.38431597 0.00000000 + 16.38831637 0.00000000 + 16.39231677 0.00000000 + 16.39631717 0.00000000 + 16.40031757 0.00000000 + 16.40431797 0.00000000 + 16.40831837 0.00000000 + 16.41231877 0.00000000 + 16.41631917 0.00000000 + 16.42031957 0.00000000 + 16.42431997 0.00000000 + 16.42832037 0.00000000 + 16.43232077 0.00000000 + 16.43632117 0.00000000 + 16.44032157 0.00000000 + 16.44432197 0.00000000 + 16.44832237 0.00000000 + 16.45232277 0.00000000 + 16.45632317 0.00000000 + 16.46032357 0.00000000 + 16.46432397 0.00000000 + 16.46832437 0.00000000 + 16.47232477 0.00000000 + 16.47632517 0.00000000 + 16.48032557 0.00000000 + 16.48432597 0.00000000 + 16.48832637 0.00000000 + 16.49232677 0.00000000 + 16.49632717 0.00000000 + 16.50032757 0.00000000 + 16.50432797 0.00000000 + 16.50832837 0.00000000 + 16.51232877 0.00000000 + 16.51632917 0.00000000 + 16.52032957 0.00000000 + 16.52432997 0.00000000 + 16.52833037 0.00000000 + 16.53233077 0.00000000 + 16.53633117 0.00000000 + 16.54033157 0.00000000 + 16.54433197 0.00000000 + 16.54833237 0.00000000 + 16.55233277 0.00000000 + 16.55633317 0.00000000 + 16.56033357 0.00000000 + 16.56433397 0.00000000 + 16.56833437 0.00000000 + 16.57233477 0.00000000 + 16.57633517 0.00000000 + 16.58033557 0.00000000 + 16.58433597 0.00000000 + 16.58833637 0.00000000 + 16.59233677 0.00000000 + 16.59633717 0.00000000 + 16.60033757 0.00000000 + 16.60433797 0.00000000 + 16.60833837 0.00000000 + 16.61233877 0.00000000 + 16.61633917 0.00000000 + 16.62033957 0.00000000 + 16.62433997 0.00000000 + 16.62834037 0.00000000 + 16.63234077 0.00000000 + 16.63634117 0.00000000 + 16.64034157 0.00000000 + 16.64434197 0.00000000 + 16.64834237 0.00000000 + 16.65234277 0.00000000 + 16.65634317 0.00000000 + 16.66034357 0.00000000 + 16.66434397 0.00000000 + 16.66834437 0.00000000 + 16.67234477 0.00000000 + 16.67634517 0.00000000 + 16.68034557 0.00000000 + 16.68434597 0.00000000 + 16.68834637 0.00000000 + 16.69234677 0.00000000 + 16.69634717 0.00000000 + 16.70034757 0.00000000 + 16.70434797 0.00000000 + 16.70834837 0.00000000 + 16.71234877 0.00000000 + 16.71634917 0.00000000 + 16.72034957 0.00000000 + 16.72434997 0.00000000 + 16.72835037 0.00000000 + 16.73235077 0.00000000 + 16.73635117 0.00000000 + 16.74035157 0.00000000 + 16.74435197 0.00000000 + 16.74835237 0.00000000 + 16.75235277 0.00000000 + 16.75635317 0.00000000 + 16.76035357 0.00000000 + 16.76435397 0.00000000 + 16.76835437 0.00000000 + 16.77235477 0.00000000 + 16.77635517 0.00000000 + 16.78035557 0.00000000 + 16.78435597 0.00000000 + 16.78835637 0.00000000 + 16.79235677 0.00000000 + 16.79635717 0.00000000 + 16.80035757 0.00000000 + 16.80435797 0.00000000 + 16.80835837 0.00000000 + 16.81235877 0.00000000 + 16.81635917 0.00000000 + 16.82035957 0.00000000 + 16.82435997 0.00000000 + 16.82836037 0.00000000 + 16.83236077 0.00000000 + 16.83636117 0.00000000 + 16.84036157 0.00000000 + 16.84436197 0.00000000 + 16.84836237 0.00000000 + 16.85236277 0.00000000 + 16.85636317 0.00000000 + 16.86036357 0.00000000 + 16.86436397 0.00000000 + 16.86836437 0.00000000 + 16.87236477 0.00000000 + 16.87636517 0.00000000 + 16.88036557 0.00000000 + 16.88436597 0.00000000 + 16.88836637 0.00000000 + 16.89236677 0.00000000 + 16.89636717 0.00000000 + 16.90036757 0.00000000 + 16.90436797 0.00000000 + 16.90836837 0.00000000 + 16.91236877 0.00000000 + 16.91636917 0.00000000 + 16.92036957 0.00000000 + 16.92436997 0.00000000 + 16.92837037 0.00000000 + 16.93237077 0.00000000 + 16.93637117 0.00000000 + 16.94037157 0.00000000 + 16.94437197 0.00000000 + 16.94837237 0.00000000 + 16.95237277 0.00000000 + 16.95637317 0.00000000 + 16.96037357 0.00000000 + 16.96437397 0.00000000 + 16.96837437 0.00000000 + 16.97237477 0.00000000 + 16.97637517 0.00000000 + 16.98037557 0.00000000 + 16.98437597 0.00000000 + 16.98837637 0.00000000 + 16.99237677 0.00000000 + 16.99637717 0.00000000 + 17.00037757 0.00000000 + 17.00437797 0.00000000 + 17.00837837 0.00000000 + 17.01237877 0.00000000 + 17.01637917 0.00000000 + 17.02037957 0.00000000 + 17.02437997 0.00000000 + 17.02838037 0.00000000 + 17.03238077 0.00000000 + 17.03638117 0.00000000 + 17.04038157 0.00000000 + 17.04438197 0.00000000 + 17.04838237 0.00000000 + 17.05238277 0.00000000 + 17.05638317 0.00000000 + 17.06038357 0.00000000 + 17.06438397 0.00000000 + 17.06838437 0.00000000 + 17.07238477 0.00000000 + 17.07638517 0.00000000 + 17.08038557 0.00000000 + 17.08438597 0.00000000 + 17.08838637 0.00000000 + 17.09238677 0.00000000 + 17.09638717 0.00000000 + 17.10038757 0.00000000 + 17.10438797 0.00000000 + 17.10838837 0.00000000 + 17.11238877 0.00000000 + 17.11638917 0.00000000 + 17.12038957 0.00000000 + 17.12438997 0.00000000 + 17.12839037 0.00000000 + 17.13239077 0.00000000 + 17.13639117 0.00000000 + 17.14039157 0.00000000 + 17.14439197 0.00000000 + 17.14839237 0.00000000 + 17.15239277 0.00000000 + 17.15639317 0.00000000 + 17.16039357 0.00000000 + 17.16439397 0.00000000 + 17.16839437 0.00000000 + 17.17239477 0.00000000 + 17.17639517 0.00000000 + 17.18039557 0.00000000 + 17.18439597 0.00000000 + 17.18839637 0.00000000 + 17.19239677 0.00000000 + 17.19639717 0.00000000 + 17.20039757 0.00000000 + 17.20439797 0.00000000 + 17.20839837 0.00000000 + 17.21239877 0.00000000 + 17.21639917 0.00000000 + 17.22039957 0.00000000 + 17.22439997 0.00000000 + 17.22840037 0.00000000 + 17.23240077 0.00000000 + 17.23640117 0.00000000 + 17.24040157 0.00000000 + 17.24440197 0.00000000 + 17.24840237 0.00000000 + 17.25240277 0.00000000 + 17.25640317 0.00000000 + 17.26040357 0.00000000 + 17.26440397 0.00000000 + 17.26840437 0.00000000 + 17.27240477 0.00000000 + 17.27640517 0.00000000 + 17.28040557 0.00000000 + 17.28440597 0.00000000 + 17.28840637 0.00000000 + 17.29240677 0.00000000 + 17.29640717 0.00000000 + 17.30040757 0.00000000 + 17.30440797 0.00000000 + 17.30840837 0.00000000 + 17.31240877 0.00000000 + 17.31640917 0.00000000 + 17.32040958 0.00000000 + 17.32440998 0.00000000 + 17.32841038 0.00000000 + 17.33241078 0.00000000 + 17.33641118 0.00000000 + 17.34041158 0.00000000 + 17.34441198 0.00000000 + 17.34841238 0.00000000 + 17.35241278 0.00000000 + 17.35641318 0.00000000 + 17.36041358 0.00000000 + 17.36441398 0.00000000 + 17.36841438 0.00000000 + 17.37241478 0.00000000 + 17.37641518 0.00000000 + 17.38041558 0.00000000 + 17.38441598 0.00000000 + 17.38841638 0.00000000 + 17.39241678 0.00000000 + 17.39641718 0.00000000 + 17.40041758 0.00000000 + 17.40441798 0.00000000 + 17.40841838 0.00000000 + 17.41241878 0.00000000 + 17.41641918 0.00000000 + 17.42041958 0.00000000 + 17.42441998 0.00000000 + 17.42842038 0.00000000 + 17.43242078 0.00000000 + 17.43642118 0.00000000 + 17.44042158 0.00000000 + 17.44442198 0.00000000 + 17.44842238 0.00000000 + 17.45242278 0.00000000 + 17.45642318 0.00000000 + 17.46042358 0.00000000 + 17.46442398 0.00000000 + 17.46842438 0.00000000 + 17.47242478 0.00000000 + 17.47642518 0.00000000 + 17.48042558 0.00000000 + 17.48442598 0.00000000 + 17.48842638 0.00000000 + 17.49242678 0.00000000 + 17.49642718 0.00000000 + 17.50042758 0.00000000 + 17.50442798 0.00000000 + 17.50842838 0.00000000 + 17.51242878 0.00000000 + 17.51642918 0.00000000 + 17.52042958 0.00000000 + 17.52442998 0.00000000 + 17.52843038 0.00000000 + 17.53243078 0.00000000 + 17.53643118 0.00000000 + 17.54043158 0.00000000 + 17.54443198 0.00000000 + 17.54843238 0.00000000 + 17.55243278 0.00000000 + 17.55643318 0.00000000 + 17.56043358 0.00000000 + 17.56443398 0.00000000 + 17.56843438 0.00000000 + 17.57243478 0.00000000 + 17.57643518 0.00000000 + 17.58043558 0.00000000 + 17.58443598 0.00000000 + 17.58843638 0.00000000 + 17.59243678 0.00000000 + 17.59643718 0.00000000 + 17.60043758 0.00000000 + 17.60443798 0.00000000 + 17.60843838 0.00000000 + 17.61243878 0.00000000 + 17.61643918 0.00000000 + 17.62043958 0.00000000 + 17.62443998 0.00000000 + 17.62844038 0.00000000 + 17.63244078 0.00000000 + 17.63644118 0.00000000 + 17.64044158 0.00000000 + 17.64444198 0.00000000 + 17.64844238 0.00000000 + 17.65244278 0.00000000 + 17.65644318 0.00000000 + 17.66044358 0.00000000 + 17.66444398 0.00000000 + 17.66844438 0.00000000 + 17.67244478 0.00000000 + 17.67644518 0.00000000 + 17.68044558 0.00000000 + 17.68444598 0.00000000 + 17.68844638 0.00000000 + 17.69244678 0.00000000 + 17.69644718 0.00000000 + 17.70044758 0.00000000 + 17.70444798 0.00000000 + 17.70844838 0.00000000 + 17.71244878 0.00000000 + 17.71644918 0.00000000 + 17.72044958 0.00000000 + 17.72444998 0.00000000 + 17.72845038 0.00000000 + 17.73245078 0.00000000 + 17.73645118 0.00000000 + 17.74045158 0.00000000 + 17.74445198 0.00000000 + 17.74845238 0.00000000 + 17.75245278 0.00000000 + 17.75645318 0.00000000 + 17.76045358 0.00000000 + 17.76445398 0.00000000 + 17.76845438 0.00000000 + 17.77245478 0.00000000 + 17.77645518 0.00000000 + 17.78045558 0.00000000 + 17.78445598 0.00000000 + 17.78845638 0.00000000 + 17.79245678 0.00000000 + 17.79645718 0.00000000 + 17.80045758 0.00000000 + 17.80445798 0.00000000 + 17.80845838 0.00000000 + 17.81245878 0.00000000 + 17.81645918 0.00000000 + 17.82045958 0.00000000 + 17.82445998 0.00000000 + 17.82846038 0.00000000 + 17.83246078 0.00000000 + 17.83646118 0.00000000 + 17.84046158 0.00000000 + 17.84446198 0.00000000 + 17.84846238 0.00000000 + 17.85246278 0.00000000 + 17.85646318 0.00000000 + 17.86046358 0.00000000 + 17.86446398 0.00000000 + 17.86846438 0.00000000 + 17.87246478 0.00000000 + 17.87646518 0.00000000 + 17.88046558 0.00000000 + 17.88446598 0.00000000 + 17.88846638 0.00000000 + 17.89246678 0.00000000 + 17.89646718 0.00000000 + 17.90046758 0.00000000 + 17.90446798 0.00000000 + 17.90846838 0.00000000 + 17.91246878 0.00000000 + 17.91646918 0.00000000 + 17.92046958 0.00000000 + 17.92446998 0.00000000 + 17.92847038 0.00000000 + 17.93247078 0.00000000 + 17.93647118 0.00000000 + 17.94047158 0.00000000 + 17.94447198 0.00000000 + 17.94847238 0.00000000 + 17.95247278 0.00000000 + 17.95647318 0.00000000 + 17.96047358 0.00000000 + 17.96447398 0.00000000 + 17.96847438 0.00000000 + 17.97247478 0.00000000 + 17.97647518 0.00000000 + 17.98047558 0.00000000 + 17.98447598 0.00000000 + 17.98847638 0.00000000 + 17.99247678 0.00000000 + 17.99647718 0.00000000 + 18.00047758 0.00000000 + 18.00447798 0.00000000 + 18.00847838 0.00000000 + 18.01247878 0.00000000 + 18.01647918 0.00000000 + 18.02047958 0.00000000 + 18.02447998 0.00000000 + 18.02848038 0.00000000 + 18.03248078 0.00000000 + 18.03648118 0.00000000 + 18.04048158 0.00000000 + 18.04448198 0.00000000 + 18.04848238 0.00000000 + 18.05248278 0.00000000 + 18.05648318 0.00000000 + 18.06048358 0.00000000 + 18.06448398 0.00000000 + 18.06848438 0.00000000 + 18.07248478 0.00000000 + 18.07648518 0.00000000 + 18.08048558 0.00000000 + 18.08448598 0.00000000 + 18.08848638 0.00000000 + 18.09248678 0.00000000 + 18.09648718 0.00000000 + 18.10048758 0.00000000 + 18.10448798 0.00000000 + 18.10848838 0.00000000 + 18.11248878 0.00000000 + 18.11648918 0.00000000 + 18.12048958 0.00000000 + 18.12448998 0.00000000 + 18.12849038 0.00000000 + 18.13249078 0.00000000 + 18.13649118 0.00000000 + 18.14049158 0.00000000 + 18.14449198 0.00000000 + 18.14849238 0.00000000 + 18.15249278 0.00000000 + 18.15649318 0.00000000 + 18.16049358 0.00000000 + 18.16449398 0.00000000 + 18.16849438 0.00000000 + 18.17249478 0.00000000 + 18.17649518 0.00000000 + 18.18049558 0.00000000 + 18.18449598 0.00000000 + 18.18849638 0.00000000 + 18.19249678 0.00000000 + 18.19649718 0.00000000 + 18.20049758 0.00000000 + 18.20449798 0.00000000 + 18.20849838 0.00000000 + 18.21249878 0.00000000 + 18.21649918 0.00000000 + 18.22049958 0.00000000 + 18.22449998 0.00000000 + 18.22850038 0.00000000 + 18.23250078 0.00000000 + 18.23650118 0.00000000 + 18.24050158 0.00000000 + 18.24450198 0.00000000 + 18.24850238 0.00000000 + 18.25250278 0.00000000 + 18.25650318 0.00000000 + 18.26050358 0.00000000 + 18.26450398 0.00000000 + 18.26850438 0.00000000 + 18.27250478 0.00000000 + 18.27650518 0.00000000 + 18.28050558 0.00000000 + 18.28450598 0.00000000 + 18.28850638 0.00000000 + 18.29250678 0.00000000 + 18.29650718 0.00000000 + 18.30050758 0.00000000 + 18.30450798 0.00000000 + 18.30850838 0.00000000 + 18.31250878 0.00000000 + 18.31650918 0.00000000 + 18.32050959 0.00000000 + 18.32450999 0.00000000 + 18.32851039 0.00000000 + 18.33251079 0.00000000 + 18.33651119 0.00000000 + 18.34051159 0.00000000 + 18.34451199 0.00000000 + 18.34851239 0.00000000 + 18.35251279 0.00000000 + 18.35651319 0.00000000 + 18.36051359 0.00000000 + 18.36451399 0.00000000 + 18.36851439 0.00000000 + 18.37251479 0.00000000 + 18.37651519 0.00000000 + 18.38051559 0.00000000 + 18.38451599 0.00000000 + 18.38851639 0.00000000 + 18.39251679 0.00000000 + 18.39651719 0.00000000 + 18.40051759 0.00000000 + 18.40451799 0.00000000 + 18.40851839 0.00000000 + 18.41251879 0.00000000 + 18.41651919 0.00000000 + 18.42051959 0.00000000 + 18.42451999 0.00000000 + 18.42852039 0.00000000 + 18.43252079 0.00000000 + 18.43652119 0.00000000 + 18.44052159 0.00000000 + 18.44452199 0.00000000 + 18.44852239 0.00000000 + 18.45252279 0.00000000 + 18.45652319 0.00000000 + 18.46052359 0.00000000 + 18.46452399 0.00000000 + 18.46852439 0.00000000 + 18.47252479 0.00000000 + 18.47652519 0.00000000 + 18.48052559 0.00000000 + 18.48452599 0.00000000 + 18.48852639 0.00000000 + 18.49252679 0.00000000 + 18.49652719 0.00000000 + 18.50052759 0.00000000 + 18.50452799 0.00000000 + 18.50852839 0.00000000 + 18.51252879 0.00000000 + 18.51652919 0.00000000 + 18.52052959 0.00000000 + 18.52452999 0.00000000 + 18.52853039 0.00000000 + 18.53253079 0.00000000 + 18.53653119 0.00000000 + 18.54053159 0.00000000 + 18.54453199 0.00000000 + 18.54853239 0.00000000 + 18.55253279 0.00000000 + 18.55653319 0.00000000 + 18.56053359 0.00000000 + 18.56453399 0.00000000 + 18.56853439 0.00000000 + 18.57253479 0.00000000 + 18.57653519 0.00000000 + 18.58053559 0.00000000 + 18.58453599 0.00000000 + 18.58853639 0.00000000 + 18.59253679 0.00000000 + 18.59653719 0.00000000 + 18.60053759 0.00000000 + 18.60453799 0.00000000 + 18.60853839 0.00000000 + 18.61253879 0.00000000 + 18.61653919 0.00000000 + 18.62053959 0.00000000 + 18.62453999 0.00000000 + 18.62854039 0.00000000 + 18.63254079 0.00000000 + 18.63654119 0.00000000 + 18.64054159 0.00000000 + 18.64454199 0.00000000 + 18.64854239 0.00000000 + 18.65254279 0.00000000 + 18.65654319 0.00000000 + 18.66054359 0.00000000 + 18.66454399 0.00000000 + 18.66854439 0.00000000 + 18.67254479 0.00000000 + 18.67654519 0.00000000 + 18.68054559 0.00000000 + 18.68454599 0.00000000 + 18.68854639 0.00000000 + 18.69254679 0.00000000 + 18.69654719 0.00000000 + 18.70054759 0.00000000 + 18.70454799 0.00000000 + 18.70854839 0.00000000 + 18.71254879 0.00000000 + 18.71654919 0.00000000 + 18.72054959 0.00000000 + 18.72454999 0.00000000 + 18.72855039 0.00000000 + 18.73255079 0.00000000 + 18.73655119 0.00000000 + 18.74055159 0.00000000 + 18.74455199 0.00000000 + 18.74855239 0.00000000 + 18.75255279 0.00000000 + 18.75655319 0.00000000 + 18.76055359 0.00000000 + 18.76455399 0.00000000 + 18.76855439 0.00000000 + 18.77255479 0.00000000 + 18.77655519 0.00000000 + 18.78055559 0.00000000 + 18.78455599 0.00000000 + 18.78855639 0.00000000 + 18.79255679 0.00000000 + 18.79655719 0.00000000 + 18.80055759 0.00000000 + 18.80455799 0.00000000 + 18.80855839 0.00000000 + 18.81255879 0.00000000 + 18.81655919 0.00000000 + 18.82055959 0.00000000 + 18.82455999 0.00000000 + 18.82856039 0.00000000 + 18.83256079 0.00000000 + 18.83656119 0.00000000 + 18.84056159 0.00000000 + 18.84456199 0.00000000 + 18.84856239 0.00000000 + 18.85256279 0.00000000 + 18.85656319 0.00000000 + 18.86056359 0.00000000 + 18.86456399 0.00000000 + 18.86856439 0.00000000 + 18.87256479 0.00000000 + 18.87656519 0.00000000 + 18.88056559 0.00000000 + 18.88456599 0.00000000 + 18.88856639 0.00000000 + 18.89256679 0.00000000 + 18.89656719 0.00000000 + 18.90056759 0.00000000 + 18.90456799 0.00000000 + 18.90856839 0.00000000 + 18.91256879 0.00000000 + 18.91656919 0.00000000 + 18.92056959 0.00000000 + 18.92456999 0.00000000 + 18.92857039 0.00000000 + 18.93257079 0.00000000 + 18.93657119 0.00000000 + 18.94057159 0.00000000 + 18.94457199 0.00000000 + 18.94857239 0.00000000 + 18.95257279 0.00000000 + 18.95657319 0.00000000 + 18.96057359 0.00000000 + 18.96457399 0.00000000 + 18.96857439 0.00000000 + 18.97257479 0.00000000 + 18.97657519 0.00000000 + 18.98057559 0.00000000 + 18.98457599 0.00000000 + 18.98857639 0.00000000 + 18.99257679 0.00000000 + 18.99657719 0.00000000 + 19.00057759 0.00000000 + 19.00457799 0.00000000 + 19.00857839 0.00000000 + 19.01257879 0.00000000 + 19.01657919 0.00000000 + 19.02057959 0.00000000 + 19.02457999 0.00000000 + 19.02858039 0.00000000 + 19.03258079 0.00000000 + 19.03658119 0.00000000 + 19.04058159 0.00000000 + 19.04458199 0.00000000 + 19.04858239 0.00000000 + 19.05258279 0.00000000 + 19.05658319 0.00000000 + 19.06058359 0.00000000 + 19.06458399 0.00000000 + 19.06858439 0.00000000 + 19.07258479 0.00000000 + 19.07658519 0.00000000 + 19.08058559 0.00000000 + 19.08458599 0.00000000 + 19.08858639 0.00000000 + 19.09258679 0.00000000 + 19.09658719 0.00000000 + 19.10058759 0.00000000 + 19.10458799 0.00000000 + 19.10858839 0.00000000 + 19.11258879 0.00000000 + 19.11658919 0.00000000 + 19.12058959 0.00000000 + 19.12458999 0.00000000 + 19.12859039 0.00000000 + 19.13259079 0.00000000 + 19.13659119 0.00000000 + 19.14059159 0.00000000 + 19.14459199 0.00000000 + 19.14859239 0.00000000 + 19.15259279 0.00000000 + 19.15659319 0.00000000 + 19.16059359 0.00000000 + 19.16459399 0.00000000 + 19.16859439 0.00000000 + 19.17259479 0.00000000 + 19.17659519 0.00000000 + 19.18059559 0.00000000 + 19.18459599 0.00000000 + 19.18859639 0.00000000 + 19.19259679 0.00000000 + 19.19659719 0.00000000 + 19.20059759 0.00000000 + 19.20459799 0.00000000 + 19.20859839 0.00000000 + 19.21259879 0.00000000 + 19.21659919 0.00000000 + 19.22059959 0.00000000 + 19.22459999 0.00000000 + 19.22860039 0.00000000 + 19.23260079 0.00000000 + 19.23660119 0.00000000 + 19.24060159 0.00000000 + 19.24460199 0.00000000 + 19.24860239 0.00000000 + 19.25260279 0.00000000 + 19.25660319 0.00000000 + 19.26060359 0.00000000 + 19.26460399 0.00000000 + 19.26860439 0.00000000 + 19.27260479 0.00000000 + 19.27660519 0.00000000 + 19.28060559 0.00000000 + 19.28460599 0.00000000 + 19.28860639 0.00000000 + 19.29260679 0.00000000 + 19.29660719 0.00000000 + 19.30060759 0.00000000 + 19.30460799 0.00000000 + 19.30860839 0.00000000 + 19.31260879 0.00000000 + 19.31660919 0.00000000 + 19.32060960 0.00000000 + 19.32461000 0.00000000 + 19.32861040 0.00000000 + 19.33261080 0.00000000 + 19.33661120 0.00000000 + 19.34061160 0.00000000 + 19.34461200 0.00000000 + 19.34861240 0.00000000 + 19.35261280 0.00000000 + 19.35661320 0.00000000 + 19.36061360 0.00000000 + 19.36461400 0.00000000 + 19.36861440 0.00000000 + 19.37261480 0.00000000 + 19.37661520 0.00000000 + 19.38061560 0.00000000 + 19.38461600 0.00000000 + 19.38861640 0.00000000 + 19.39261680 0.00000000 + 19.39661720 0.00000000 + 19.40061760 0.00000000 + 19.40461800 0.00000000 + 19.40861840 0.00000000 + 19.41261880 0.00000000 + 19.41661920 0.00000000 + 19.42061960 0.00000000 + 19.42462000 0.00000000 + 19.42862040 0.00000000 + 19.43262080 0.00000000 + 19.43662120 0.00000000 + 19.44062160 0.00000000 + 19.44462200 0.00000000 + 19.44862240 0.00000000 + 19.45262280 0.00000000 + 19.45662320 0.00000000 + 19.46062360 0.00000000 + 19.46462400 0.00000000 + 19.46862440 0.00000000 + 19.47262480 0.00000000 + 19.47662520 0.00000000 + 19.48062560 0.00000000 + 19.48462600 0.00000000 + 19.48862640 0.00000000 + 19.49262680 0.00000000 + 19.49662720 0.00000000 + 19.50062760 0.00000000 + 19.50462800 0.00000000 + 19.50862840 0.00000000 + 19.51262880 0.00000000 + 19.51662920 0.00000000 + 19.52062960 0.00000000 + 19.52463000 0.00000000 + 19.52863040 0.00000000 + 19.53263080 0.00000000 + 19.53663120 0.00000000 + 19.54063160 0.00000000 + 19.54463200 0.00000000 + 19.54863240 0.00000000 + 19.55263280 0.00000000 + 19.55663320 0.00000000 + 19.56063360 0.00000000 + 19.56463400 0.00000000 + 19.56863440 0.00000000 + 19.57263480 0.00000000 + 19.57663520 0.00000000 + 19.58063560 0.00000000 + 19.58463600 0.00000000 + 19.58863640 0.00000000 + 19.59263680 0.00000000 + 19.59663720 0.00000000 + 19.60063760 0.00000000 + 19.60463800 0.00000000 + 19.60863840 0.00000000 + 19.61263880 0.00000000 + 19.61663920 0.00000000 + 19.62063960 0.00000000 + 19.62464000 0.00000000 + 19.62864040 0.00000000 + 19.63264080 0.00000000 + 19.63664120 0.00000000 + 19.64064160 0.00000000 + 19.64464200 0.00000000 + 19.64864240 0.00000000 + 19.65264280 0.00000000 + 19.65664320 0.00000000 + 19.66064360 0.00000000 + 19.66464400 0.00000000 + 19.66864440 0.00000000 + 19.67264480 0.00000000 + 19.67664520 0.00000000 + 19.68064560 0.00000000 + 19.68464600 0.00000000 + 19.68864640 0.00000000 + 19.69264680 0.00000000 + 19.69664720 0.00000000 + 19.70064760 0.00000000 + 19.70464800 0.00000000 + 19.70864840 0.00000000 + 19.71264880 0.00000000 + 19.71664920 0.00000000 + 19.72064960 0.00000000 + 19.72465000 0.00000000 + 19.72865040 0.00000000 + 19.73265080 0.00000000 + 19.73665120 0.00000000 + 19.74065160 0.00000000 + 19.74465200 0.00000000 + 19.74865240 0.00000000 + 19.75265280 0.00000000 + 19.75665320 0.00000000 + 19.76065360 0.00000000 + 19.76465400 0.00000000 + 19.76865440 0.00000000 + 19.77265480 0.00000000 + 19.77665520 0.00000000 + 19.78065560 0.00000000 + 19.78465600 0.00000000 + 19.78865640 0.00000000 + 19.79265680 0.00000000 + 19.79665720 0.00000000 + 19.80065760 0.00000000 + 19.80465800 0.00000000 + 19.80865840 0.00000000 + 19.81265880 0.00000000 + 19.81665920 0.00000000 + 19.82065960 0.00000000 + 19.82466000 0.00000000 + 19.82866040 0.00000000 + 19.83266080 0.00000000 + 19.83666120 0.00000000 + 19.84066160 0.00000000 + 19.84466200 0.00000000 + 19.84866240 0.00000000 + 19.85266280 0.00000000 + 19.85666320 0.00000000 + 19.86066360 0.00000000 + 19.86466400 0.00000000 + 19.86866440 0.00000000 + 19.87266480 0.00000000 + 19.87666520 0.00000000 + 19.88066560 0.00000000 + 19.88466600 0.00000000 + 19.88866640 0.00000000 + 19.89266680 0.00000000 + 19.89666720 0.00000000 + 19.90066760 0.00000000 + 19.90466800 0.00000000 + 19.90866840 0.00000000 + 19.91266880 0.00000000 + 19.91666920 0.00000000 + 19.92066960 0.00000000 + 19.92467000 0.00000000 + 19.92867040 0.00000000 + 19.93267080 0.00000000 + 19.93667120 0.00000000 + 19.94067160 0.00000000 + 19.94467200 0.00000000 + 19.94867240 0.00000000 + 19.95267280 0.00000000 + 19.95667320 0.00000000 + 19.96067360 0.00000000 + 19.96467400 0.00000000 + 19.96867440 0.00000000 + 19.97267480 0.00000000 + 19.97667520 0.00000000 + 19.98067560 0.00000000 + 19.98467600 0.00000000 + 19.98867640 0.00000000 + 19.99267680 0.00000000 + 19.99667720 0.00000000 + 20.00067760 0.00000000 + 20.00467800 0.00000000 + 20.00867840 0.00000000 + 20.01267880 0.00000000 + 20.01667920 0.00000000 + 20.02067960 0.00000000 + 20.02468000 0.00000000 + 20.02868040 0.00000000 + 20.03268080 0.00000000 + 20.03668120 0.00000000 + 20.04068160 0.00000000 + 20.04468200 0.00000000 + 20.04868240 0.00000000 + 20.05268280 0.00000000 + 20.05668320 0.00000000 + 20.06068360 0.00000000 + 20.06468400 0.00000000 + 20.06868440 0.00000000 + 20.07268480 0.00000000 + 20.07668520 0.00000000 + 20.08068560 0.00000000 + 20.08468600 0.00000000 + 20.08868640 0.00000000 + 20.09268680 0.00000000 + 20.09668720 0.00000000 + 20.10068760 0.00000000 + 20.10468800 0.00000000 + 20.10868840 0.00000000 + 20.11268880 0.00000000 + 20.11668920 0.00000000 + 20.12068960 0.00000000 + 20.12469000 0.00000000 + 20.12869040 0.00000000 + 20.13269080 0.00000000 + 20.13669120 0.00000000 + 20.14069160 0.00000000 + 20.14469200 0.00000000 + 20.14869240 0.00000000 + 20.15269280 0.00000000 + 20.15669320 0.00000000 + 20.16069360 0.00000000 + 20.16469400 0.00000000 + 20.16869440 0.00000000 + 20.17269480 0.00000000 + 20.17669520 0.00000000 + 20.18069560 0.00000000 + 20.18469600 0.00000000 + 20.18869640 0.00000000 + 20.19269680 0.00000000 + 20.19669720 0.00000000 + 20.20069760 0.00000000 + 20.20469800 0.00000000 + 20.20869840 0.00000000 + 20.21269880 0.00000000 + 20.21669920 0.00000000 + 20.22069960 0.00000000 + 20.22470000 0.00000000 + 20.22870040 0.00000000 + 20.23270080 0.00000000 + 20.23670120 0.00000000 + 20.24070160 0.00000000 + 20.24470200 0.00000000 + 20.24870240 0.00000000 + 20.25270280 0.00000000 + 20.25670320 0.00000000 + 20.26070360 0.00000000 + 20.26470400 0.00000000 + 20.26870440 0.00000000 + 20.27270480 0.00000000 + 20.27670520 0.00000000 + 20.28070560 0.00000000 + 20.28470600 0.00000000 + 20.28870640 0.00000000 + 20.29270680 0.00000000 + 20.29670720 0.00000000 + 20.30070760 0.00000000 + 20.30470800 0.00000000 + 20.30870840 0.00000000 + 20.31270880 0.00000000 + 20.31670920 0.00000000 + 20.32070961 0.00000000 + 20.32471001 0.00000000 + 20.32871041 0.00000000 + 20.33271081 0.00000000 + 20.33671121 0.00000000 + 20.34071161 0.00000000 + 20.34471201 0.00000000 + 20.34871241 0.00000000 + 20.35271281 0.00000000 + 20.35671321 0.00000000 + 20.36071361 0.00000000 + 20.36471401 0.00000000 + 20.36871441 0.00000000 + 20.37271481 0.00000000 + 20.37671521 0.00000000 + 20.38071561 0.00000000 + 20.38471601 0.00000000 + 20.38871641 0.00000000 + 20.39271681 0.00000000 + 20.39671721 0.00000000 + 20.40071761 0.00000000 + 20.40471801 0.00000000 + 20.40871841 0.00000000 + 20.41271881 0.00000000 + 20.41671921 0.00000000 + 20.42071961 0.00000000 + 20.42472001 0.00000000 + 20.42872041 0.00000000 + 20.43272081 0.00000000 + 20.43672121 0.00000000 + 20.44072161 0.00000000 + 20.44472201 0.00000000 + 20.44872241 0.00000000 + 20.45272281 0.00000000 + 20.45672321 0.00000000 + 20.46072361 0.00000000 + 20.46472401 0.00000000 + 20.46872441 0.00000000 + 20.47272481 0.00000000 + 20.47672521 0.00000000 + 20.48072561 0.00000000 + 20.48472601 0.00000000 + 20.48872641 0.00000000 + 20.49272681 0.00000000 + 20.49672721 0.00000000 + 20.50072761 0.00000000 + 20.50472801 0.00000000 + 20.50872841 0.00000000 + 20.51272881 0.00000000 + 20.51672921 0.00000000 + 20.52072961 0.00000000 + 20.52473001 0.00000000 + 20.52873041 0.00000000 + 20.53273081 0.00000000 + 20.53673121 0.00000000 + 20.54073161 0.00000000 + 20.54473201 0.00000000 + 20.54873241 0.00000000 + 20.55273281 0.00000000 + 20.55673321 0.00000000 + 20.56073361 0.00000000 + 20.56473401 0.00000000 + 20.56873441 0.00000000 + 20.57273481 0.00000000 + 20.57673521 0.00000000 + 20.58073561 0.00000000 + 20.58473601 0.00000000 + 20.58873641 0.00000000 + 20.59273681 0.00000000 + 20.59673721 0.00000000 + 20.60073761 0.00000000 + 20.60473801 0.00000000 + 20.60873841 0.00000000 + 20.61273881 0.00000000 + 20.61673921 0.00000000 + 20.62073961 0.00000000 + 20.62474001 0.00000000 + 20.62874041 0.00000000 + 20.63274081 0.00000000 + 20.63674121 0.00000000 + 20.64074161 0.00000000 + 20.64474201 0.00000000 + 20.64874241 0.00000000 + 20.65274281 0.00000000 + 20.65674321 0.00000000 + 20.66074361 0.00000000 + 20.66474401 0.00000000 + 20.66874441 0.00000000 + 20.67274481 0.00000000 + 20.67674521 0.00000000 + 20.68074561 0.00000000 + 20.68474601 0.00000000 + 20.68874641 0.00000000 + 20.69274681 0.00000000 + 20.69674721 0.00000000 + 20.70074761 0.00000000 + 20.70474801 0.00000000 + 20.70874841 0.00000000 + 20.71274881 0.00000000 + 20.71674921 0.00000000 + 20.72074961 0.00000000 + 20.72475001 0.00000000 + 20.72875041 0.00000000 + 20.73275081 0.00000000 + 20.73675121 0.00000000 + 20.74075161 0.00000000 + 20.74475201 0.00000000 + 20.74875241 0.00000000 + 20.75275281 0.00000000 + 20.75675321 0.00000000 + 20.76075361 0.00000000 + 20.76475401 0.00000000 + 20.76875441 0.00000000 + 20.77275481 0.00000000 + 20.77675521 0.00000000 + 20.78075561 0.00000000 + 20.78475601 0.00000000 + 20.78875641 0.00000000 + 20.79275681 0.00000000 + 20.79675721 0.00000000 + 20.80075761 0.00000000 + 20.80475801 0.00000000 + 20.80875841 0.00000000 + 20.81275881 0.00000000 + 20.81675921 0.00000000 + 20.82075961 0.00000000 + 20.82476001 0.00000000 + 20.82876041 0.00000000 + 20.83276081 0.00000000 + 20.83676121 0.00000000 + 20.84076161 0.00000000 + 20.84476201 0.00000000 + 20.84876241 0.00000000 + 20.85276281 0.00000000 + 20.85676321 0.00000000 + 20.86076361 0.00000000 + 20.86476401 0.00000000 + 20.86876441 0.00000000 + 20.87276481 0.00000000 + 20.87676521 0.00000000 + 20.88076561 0.00000000 + 20.88476601 0.00000000 + 20.88876641 0.00000000 + 20.89276681 0.00000000 + 20.89676721 0.00000000 + 20.90076761 0.00000000 + 20.90476801 0.00000000 + 20.90876841 0.00000000 + 20.91276881 0.00000000 + 20.91676921 0.00000000 + 20.92076961 0.00000000 + 20.92477001 0.00000000 + 20.92877041 0.00000000 + 20.93277081 0.00000000 + 20.93677121 0.00000000 + 20.94077161 0.00000000 + 20.94477201 0.00000000 + 20.94877241 0.00000000 + 20.95277281 0.00000000 + 20.95677321 0.00000000 + 20.96077361 0.00000000 + 20.96477401 0.00000000 + 20.96877441 0.00000000 + 20.97277481 0.00000000 + 20.97677521 0.00000000 + 20.98077561 0.00000000 + 20.98477601 0.00000000 + 20.98877641 0.00000000 + 20.99277681 0.00000000 + 20.99677721 0.00000000 + 21.00077761 0.00000000 + 21.00477801 0.00000000 + 21.00877841 0.00000000 + 21.01277881 0.00000000 + 21.01677921 0.00000000 + 21.02077961 0.00000000 + 21.02478001 0.00000000 + 21.02878041 0.00000000 + 21.03278081 0.00000000 + 21.03678121 0.00000000 + 21.04078161 0.00000000 + 21.04478201 0.00000000 + 21.04878241 0.00000000 + 21.05278281 0.00000000 + 21.05678321 0.00000000 + 21.06078361 0.00000000 + 21.06478401 0.00000000 + 21.06878441 0.00000000 + 21.07278481 0.00000000 + 21.07678521 0.00000000 + 21.08078561 0.00000000 + 21.08478601 0.00000000 + 21.08878641 0.00000000 + 21.09278681 0.00000000 + 21.09678721 0.00000000 + 21.10078761 0.00000000 + 21.10478801 0.00000000 + 21.10878841 0.00000000 + 21.11278881 0.00000000 + 21.11678921 0.00000000 + 21.12078961 0.00000000 + 21.12479001 0.00000000 + 21.12879041 0.00000000 + 21.13279081 0.00000000 + 21.13679121 0.00000000 + 21.14079161 0.00000000 + 21.14479201 0.00000000 + 21.14879241 0.00000000 + 21.15279281 0.00000000 + 21.15679321 0.00000000 + 21.16079361 0.00000000 + 21.16479401 0.00000000 + 21.16879441 0.00000000 + 21.17279481 0.00000000 + 21.17679521 0.00000000 + 21.18079561 0.00000000 + 21.18479601 0.00000000 + 21.18879641 0.00000000 + 21.19279681 0.00000000 + 21.19679721 0.00000000 + 21.20079761 0.00000000 + 21.20479801 0.00000000 + 21.20879841 0.00000000 + 21.21279881 0.00000000 + 21.21679921 0.00000000 + 21.22079961 0.00000000 + 21.22480001 0.00000000 + 21.22880041 0.00000000 + 21.23280081 0.00000000 + 21.23680121 0.00000000 + 21.24080161 0.00000000 + 21.24480201 0.00000000 + 21.24880241 0.00000000 + 21.25280281 0.00000000 + 21.25680321 0.00000000 + 21.26080361 0.00000000 + 21.26480401 0.00000000 + 21.26880441 0.00000000 + 21.27280481 0.00000000 + 21.27680521 0.00000000 + 21.28080561 0.00000000 + 21.28480601 0.00000000 + 21.28880641 0.00000000 + 21.29280681 0.00000000 + 21.29680721 0.00000000 + 21.30080761 0.00000000 + 21.30480801 0.00000000 + 21.30880841 0.00000000 + 21.31280881 0.00000000 + 21.31680921 0.00000000 + 21.32080962 0.00000000 + 21.32481002 0.00000000 + 21.32881042 0.00000000 + 21.33281082 0.00000000 + 21.33681122 0.00000000 + 21.34081162 0.00000000 + 21.34481202 0.00000000 + 21.34881242 0.00000000 + 21.35281282 0.00000000 + 21.35681322 0.00000000 + 21.36081362 0.00000000 + 21.36481402 0.00000000 + 21.36881442 0.00000000 + 21.37281482 0.00000000 + 21.37681522 0.00000000 + 21.38081562 0.00000000 + 21.38481602 0.00000000 + 21.38881642 0.00000000 + 21.39281682 0.00000000 + 21.39681722 0.00000000 + 21.40081762 0.00000000 + 21.40481802 0.00000000 + 21.40881842 0.00000000 + 21.41281882 0.00000000 + 21.41681922 0.00000000 + 21.42081962 0.00000000 + 21.42482002 0.00000000 + 21.42882042 0.00000000 + 21.43282082 0.00000000 + 21.43682122 0.00000000 + 21.44082162 0.00000000 + 21.44482202 0.00000000 + 21.44882242 0.00000000 + 21.45282282 0.00000000 + 21.45682322 0.00000000 + 21.46082362 0.00000000 + 21.46482402 0.00000000 + 21.46882442 0.00000000 + 21.47282482 0.00000000 + 21.47682522 0.00000000 + 21.48082562 0.00000000 + 21.48482602 0.00000000 + 21.48882642 0.00000000 + 21.49282682 0.00000000 + 21.49682722 0.00000000 + 21.50082762 0.00000000 + 21.50482802 0.00000000 + 21.50882842 0.00000000 + 21.51282882 0.00000000 + 21.51682922 0.00000000 + 21.52082962 0.00000000 + 21.52483002 0.00000000 + 21.52883042 0.00000000 + 21.53283082 0.00000000 + 21.53683122 0.00000000 + 21.54083162 0.00000000 + 21.54483202 0.00000000 + 21.54883242 0.00000000 + 21.55283282 0.00000000 + 21.55683322 0.00000000 + 21.56083362 0.00000000 + 21.56483402 0.00000000 + 21.56883442 0.00000000 + 21.57283482 0.00000000 + 21.57683522 0.00000000 + 21.58083562 0.00000000 + 21.58483602 0.00000000 + 21.58883642 0.00000000 + 21.59283682 0.00000000 + 21.59683722 0.00000000 + 21.60083762 0.00000000 + 21.60483802 0.00000000 + 21.60883842 0.00000000 + 21.61283882 0.00000000 + 21.61683922 0.00000000 + 21.62083962 0.00000000 + 21.62484002 0.00000000 + 21.62884042 0.00000000 + 21.63284082 0.00000000 + 21.63684122 0.00000000 + 21.64084162 0.00000000 + 21.64484202 0.00000000 + 21.64884242 0.00000000 + 21.65284282 0.00000000 + 21.65684322 0.00000000 + 21.66084362 0.00000000 + 21.66484402 0.00000000 + 21.66884442 0.00000000 + 21.67284482 0.00000000 + 21.67684522 0.00000000 + 21.68084562 0.00000000 + 21.68484602 0.00000000 + 21.68884642 0.00000000 + 21.69284682 0.00000000 + 21.69684722 0.00000000 + 21.70084762 0.00000000 + 21.70484802 0.00000000 + 21.70884842 0.00000000 + 21.71284882 0.00000000 + 21.71684922 0.00000000 + 21.72084962 0.00000000 + 21.72485002 0.00000000 + 21.72885042 0.00000000 + 21.73285082 0.00000000 + 21.73685122 0.00000000 + 21.74085162 0.00000000 + 21.74485202 0.00000000 + 21.74885242 0.00000000 + 21.75285282 0.00000000 + 21.75685322 0.00000000 + 21.76085362 0.00000000 + 21.76485402 0.00000000 + 21.76885442 0.00000000 + 21.77285482 0.00000000 + 21.77685522 0.00000000 + 21.78085562 0.00000000 + 21.78485602 0.00000000 + 21.78885642 0.00000000 + 21.79285682 0.00000000 + 21.79685722 0.00000000 + 21.80085762 0.00000000 + 21.80485802 0.00000000 + 21.80885842 0.00000000 + 21.81285882 0.00000000 + 21.81685922 0.00000000 + 21.82085962 0.00000000 + 21.82486002 0.00000000 + 21.82886042 0.00000000 + 21.83286082 0.00000000 + 21.83686122 0.00000000 + 21.84086162 0.00000000 + 21.84486202 0.00000000 + 21.84886242 0.00000000 + 21.85286282 0.00000000 + 21.85686322 0.00000000 + 21.86086362 0.00000000 + 21.86486402 0.00000000 + 21.86886442 0.00000000 + 21.87286482 0.00000000 + 21.87686522 0.00000000 + 21.88086562 0.00000000 + 21.88486602 0.00000000 + 21.88886642 0.00000000 + 21.89286682 0.00000000 + 21.89686722 0.00000000 + 21.90086762 0.00000000 + 21.90486802 0.00000000 + 21.90886842 0.00000000 + 21.91286882 0.00000000 + 21.91686922 0.00000000 + 21.92086962 0.00000000 + 21.92487002 0.00000000 + 21.92887042 0.00000000 + 21.93287082 0.00000000 + 21.93687122 0.00000000 + 21.94087162 0.00000000 + 21.94487202 0.00000000 + 21.94887242 0.00000000 + 21.95287282 0.00000000 + 21.95687322 0.00000000 + 21.96087362 0.00000000 + 21.96487402 0.00000000 + 21.96887442 0.00000000 + 21.97287482 0.00000000 + 21.97687522 0.00000000 + 21.98087562 0.00000000 + 21.98487602 0.00000000 + 21.98887642 0.00000000 + 21.99287682 0.00000000 + 21.99687722 0.00000000 + 22.00087762 0.00000000 + 22.00487802 0.00000000 + 22.00887842 0.00000000 + 22.01287882 0.00000000 + 22.01687922 0.00000000 + 22.02087962 0.00000000 + 22.02488002 0.00000000 + 22.02888042 0.00000000 + 22.03288082 0.00000000 + 22.03688122 0.00000000 + 22.04088162 0.00000000 + 22.04488202 0.00000000 + 22.04888242 0.00000000 + 22.05288282 0.00000000 + 22.05688322 0.00000000 + 22.06088362 0.00000000 + 22.06488402 0.00000000 + 22.06888442 0.00000000 + 22.07288482 0.00000000 + 22.07688522 0.00000000 + 22.08088562 0.00000000 + 22.08488602 0.00000000 + 22.08888642 0.00000000 + 22.09288682 0.00000000 + 22.09688722 0.00000000 + 22.10088762 0.00000000 + 22.10488802 0.00000000 + 22.10888842 0.00000000 + 22.11288882 0.00000000 + 22.11688922 0.00000000 + 22.12088962 0.00000000 + 22.12489002 0.00000000 + 22.12889042 0.00000000 + 22.13289082 0.00000000 + 22.13689122 0.00000000 + 22.14089162 0.00000000 + 22.14489202 0.00000000 + 22.14889242 0.00000000 + 22.15289282 0.00000000 + 22.15689322 0.00000000 + 22.16089362 0.00000000 + 22.16489402 0.00000000 + 22.16889442 0.00000000 + 22.17289482 0.00000000 + 22.17689522 0.00000000 + 22.18089562 0.00000000 + 22.18489602 0.00000000 + 22.18889642 0.00000000 + 22.19289682 0.00000000 + 22.19689722 0.00000000 + 22.20089762 0.00000000 + 22.20489802 0.00000000 + 22.20889842 0.00000000 + 22.21289882 0.00000000 + 22.21689922 0.00000000 + 22.22089962 0.00000000 + 22.22490002 0.00000000 + 22.22890042 0.00000000 + 22.23290082 0.00000000 + 22.23690122 0.00000000 + 22.24090162 0.00000000 + 22.24490202 0.00000000 + 22.24890242 0.00000000 + 22.25290282 0.00000000 + 22.25690322 0.00000000 + 22.26090362 0.00000000 + 22.26490402 0.00000000 + 22.26890442 0.00000000 + 22.27290482 0.00000000 + 22.27690522 0.00000000 + 22.28090562 0.00000000 + 22.28490602 0.00000000 + 22.28890642 0.00000000 + 22.29290682 0.00000000 + 22.29690722 0.00000000 + 22.30090762 0.00000000 + 22.30490802 0.00000000 + 22.30890842 0.00000000 + 22.31290882 0.00000000 + 22.31690922 0.00000000 + 22.32090963 0.00000000 + 22.32491003 0.00000000 + 22.32891043 0.00000000 + 22.33291083 0.00000000 + 22.33691123 0.00000000 + 22.34091163 0.00000000 + 22.34491203 0.00000000 + 22.34891243 0.00000000 + 22.35291283 0.00000000 + 22.35691323 0.00000000 + 22.36091363 0.00000000 + 22.36491403 0.00000000 + 22.36891443 0.00000000 + 22.37291483 0.00000000 + 22.37691523 0.00000000 + 22.38091563 0.00000000 + 22.38491603 0.00000000 + 22.38891643 0.00000000 + 22.39291683 0.00000000 + 22.39691723 0.00000000 + 22.40091763 0.00000000 + 22.40491803 0.00000000 + 22.40891843 0.00000000 + 22.41291883 0.00000000 + 22.41691923 0.00000000 + 22.42091963 0.00000000 + 22.42492003 0.00000000 + 22.42892043 0.00000000 + 22.43292083 0.00000000 + 22.43692123 0.00000000 + 22.44092163 0.00000000 + 22.44492203 0.00000000 + 22.44892243 0.00000000 + 22.45292283 0.00000000 + 22.45692323 0.00000000 + 22.46092363 0.00000000 + 22.46492403 0.00000000 + 22.46892443 0.00000000 + 22.47292483 0.00000000 + 22.47692523 0.00000000 + 22.48092563 0.00000000 + 22.48492603 0.00000000 + 22.48892643 0.00000000 + 22.49292683 0.00000000 + 22.49692723 0.00000000 + 22.50092763 0.00000000 + 22.50492803 0.00000000 + 22.50892843 0.00000000 + 22.51292883 0.00000000 + 22.51692923 0.00000000 + 22.52092963 0.00000000 + 22.52493003 0.00000000 + 22.52893043 0.00000000 + 22.53293083 0.00000000 + 22.53693123 0.00000000 + 22.54093163 0.00000000 + 22.54493203 0.00000000 + 22.54893243 0.00000000 + 22.55293283 0.00000000 + 22.55693323 0.00000000 + 22.56093363 0.00000000 + 22.56493403 0.00000000 + 22.56893443 0.00000000 + 22.57293483 0.00000000 + 22.57693523 0.00000000 + 22.58093563 0.00000000 + 22.58493603 0.00000000 + 22.58893643 0.00000000 + 22.59293683 0.00000000 + 22.59693723 0.00000000 + 22.60093763 0.00000000 + 22.60493803 0.00000000 + 22.60893843 0.00000000 + 22.61293883 0.00000000 + 22.61693923 0.00000000 + 22.62093963 0.00000000 + 22.62494003 0.00000000 + 22.62894043 0.00000000 + 22.63294083 0.00000000 + 22.63694123 0.00000000 + 22.64094163 0.00000000 + 22.64494203 0.00000000 + 22.64894243 0.00000000 + 22.65294283 0.00000000 + 22.65694323 0.00000000 + 22.66094363 0.00000000 + 22.66494403 0.00000000 + 22.66894443 0.00000000 + 22.67294483 0.00000000 + 22.67694523 0.00000000 + 22.68094563 0.00000000 + 22.68494603 0.00000000 + 22.68894643 0.00000000 + 22.69294683 0.00000000 + 22.69694723 0.00000000 + 22.70094763 0.00000000 + 22.70494803 0.00000000 + 22.70894843 0.00000000 + 22.71294883 0.00000000 + 22.71694923 0.00000000 + 22.72094963 0.00000000 + 22.72495003 0.00000000 + 22.72895043 0.00000000 + 22.73295083 0.00000000 + 22.73695123 0.00000000 + 22.74095163 0.00000000 + 22.74495203 0.00000000 + 22.74895243 0.00000000 + 22.75295283 0.00000000 + 22.75695323 0.00000000 + 22.76095363 0.00000000 + 22.76495403 0.00000000 + 22.76895443 0.00000000 + 22.77295483 0.00000000 + 22.77695523 0.00000000 + 22.78095563 0.00000000 + 22.78495603 0.00000000 + 22.78895643 0.00000000 + 22.79295683 0.00000000 + 22.79695723 0.00000000 + 22.80095763 0.00000000 + 22.80495803 0.00000000 + 22.80895843 0.00000000 + 22.81295883 0.00000000 + 22.81695923 0.00000000 + 22.82095963 0.00000000 + 22.82496003 0.00000000 + 22.82896043 0.00000000 + 22.83296083 0.00000000 + 22.83696123 0.00000000 + 22.84096163 0.00000000 + 22.84496203 0.00000000 + 22.84896243 0.00000000 + 22.85296283 0.00000000 + 22.85696323 0.00000000 + 22.86096363 0.00000000 + 22.86496403 0.00000000 + 22.86896443 0.00000000 + 22.87296483 0.00000000 + 22.87696523 0.00000000 + 22.88096563 0.00000000 + 22.88496603 0.00000000 + 22.88896643 0.00000000 + 22.89296683 0.00000000 + 22.89696723 0.00000000 + 22.90096763 0.00000000 + 22.90496803 0.00000000 + 22.90896843 0.00000000 + 22.91296883 0.00000000 + 22.91696923 0.00000000 + 22.92096963 0.00000000 + 22.92497003 0.00000000 + 22.92897043 0.00000000 + 22.93297083 0.00000000 + 22.93697123 0.00000000 + 22.94097163 0.00000000 + 22.94497203 0.00000000 + 22.94897243 0.00000000 + 22.95297283 0.00000000 + 22.95697323 0.00000000 + 22.96097363 0.00000000 + 22.96497403 0.00000000 + 22.96897443 0.00000000 + 22.97297483 0.00000000 + 22.97697523 0.00000000 + 22.98097563 0.00000000 + 22.98497603 0.00000000 + 22.98897643 0.00000000 + 22.99297683 0.00000000 + 22.99697723 0.00000000 + 23.00097763 0.00000000 + 23.00497803 0.00000000 + 23.00897843 0.00000000 + 23.01297883 0.00000000 + 23.01697923 0.00000000 + 23.02097963 0.00000000 + 23.02498003 0.00000000 + 23.02898043 0.00000000 + 23.03298083 0.00000000 + 23.03698123 0.00000000 + 23.04098163 0.00000000 + 23.04498203 0.00000000 + 23.04898243 0.00000000 + 23.05298283 0.00000000 + 23.05698323 0.00000000 + 23.06098363 0.00000000 + 23.06498403 0.00000000 + 23.06898443 0.00000000 + 23.07298483 0.00000000 + 23.07698523 0.00000000 + 23.08098563 0.00000000 + 23.08498603 0.00000000 + 23.08898643 0.00000000 + 23.09298683 0.00000000 + 23.09698723 0.00000000 + 23.10098763 0.00000000 + 23.10498803 0.00000000 + 23.10898843 0.00000000 + 23.11298883 0.00000000 + 23.11698923 0.00000000 + 23.12098963 0.00000000 + 23.12499003 0.00000000 + 23.12899043 0.00000000 + 23.13299083 0.00000000 + 23.13699123 0.00000000 + 23.14099163 0.00000000 + 23.14499203 0.00000000 + 23.14899243 0.00000000 + 23.15299283 0.00000000 + 23.15699323 0.00000000 + 23.16099363 0.00000000 + 23.16499403 0.00000000 + 23.16899443 0.00000000 + 23.17299483 0.00000000 + 23.17699523 0.00000000 + 23.18099563 0.00000000 + 23.18499603 0.00000000 + 23.18899643 0.00000000 + 23.19299683 0.00000000 + 23.19699723 0.00000000 + 23.20099763 0.00000000 + 23.20499803 0.00000000 + 23.20899843 0.00000000 + 23.21299883 0.00000000 + 23.21699923 0.00000000 + 23.22099963 0.00000000 + 23.22500003 0.00000000 + 23.22900043 0.00000000 + 23.23300083 0.00000000 + 23.23700123 0.00000000 + 23.24100163 0.00000000 + 23.24500203 0.00000000 + 23.24900243 0.00000000 + 23.25300283 0.00000000 + 23.25700323 0.00000000 + 23.26100363 0.00000000 + 23.26500403 0.00000000 + 23.26900443 0.00000000 + 23.27300483 0.00000000 + 23.27700523 0.00000000 + 23.28100563 0.00000000 + 23.28500603 0.00000000 + 23.28900643 0.00000000 + 23.29300683 0.00000000 + 23.29700723 0.00000000 + 23.30100763 0.00000000 + 23.30500803 0.00000000 + 23.30900843 0.00000000 + 23.31300883 0.00000000 + 23.31700923 0.00000000 + 23.32100964 0.00000000 + 23.32501004 0.00000000 + 23.32901044 0.00000000 + 23.33301084 0.00000000 + 23.33701124 0.00000000 + 23.34101164 0.00000000 + 23.34501204 0.00000000 + 23.34901244 0.00000000 + 23.35301284 0.00000000 + 23.35701324 0.00000000 + 23.36101364 0.00000000 + 23.36501404 0.00000000 + 23.36901444 0.00000000 + 23.37301484 0.00000000 + 23.37701524 0.00000000 + 23.38101564 0.00000000 + 23.38501604 0.00000000 + 23.38901644 0.00000000 + 23.39301684 0.00000000 + 23.39701724 0.00000000 + 23.40101764 0.00000000 + 23.40501804 0.00000000 + 23.40901844 0.00000000 + 23.41301884 0.00000000 + 23.41701924 0.00000000 + 23.42101964 0.00000000 + 23.42502004 0.00000000 + 23.42902044 0.00000000 + 23.43302084 0.00000000 + 23.43702124 0.00000000 + 23.44102164 0.00000000 + 23.44502204 0.00000000 + 23.44902244 0.00000000 + 23.45302284 0.00000000 + 23.45702324 0.00000000 + 23.46102364 0.00000000 + 23.46502404 0.00000000 + 23.46902444 0.00000000 + 23.47302484 0.00000000 + 23.47702524 0.00000000 + 23.48102564 0.00000000 + 23.48502604 0.00000000 + 23.48902644 0.00000000 + 23.49302684 0.00000000 + 23.49702724 0.00000000 + 23.50102764 0.00000000 + 23.50502804 0.00000000 + 23.50902844 0.00000000 + 23.51302884 0.00000000 + 23.51702924 0.00000000 + 23.52102964 0.00000000 + 23.52503004 0.00000000 + 23.52903044 0.00000000 + 23.53303084 0.00000000 + 23.53703124 0.00000000 + 23.54103164 0.00000000 + 23.54503204 0.00000000 + 23.54903244 0.00000000 + 23.55303284 0.00000000 + 23.55703324 0.00000000 + 23.56103364 0.00000000 + 23.56503404 0.00000000 + 23.56903444 0.00000000 + 23.57303484 0.00000000 + 23.57703524 0.00000000 + 23.58103564 0.00000000 + 23.58503604 0.00000000 + 23.58903644 0.00000000 + 23.59303684 0.00000000 + 23.59703724 0.00000000 + 23.60103764 0.00000000 + 23.60503804 0.00000000 + 23.60903844 0.00000000 + 23.61303884 0.00000000 + 23.61703924 0.00000000 + 23.62103964 0.00000000 + 23.62504004 0.00000000 + 23.62904044 0.00000000 + 23.63304084 0.00000000 + 23.63704124 0.00000000 + 23.64104164 0.00000000 + 23.64504204 0.00000000 + 23.64904244 0.00000000 + 23.65304284 0.00000000 + 23.65704324 0.00000000 + 23.66104364 0.00000000 + 23.66504404 0.00000000 + 23.66904444 0.00000000 + 23.67304484 0.00000000 + 23.67704524 0.00000000 + 23.68104564 0.00000000 + 23.68504604 0.00000000 + 23.68904644 0.00000000 + 23.69304684 0.00000000 + 23.69704724 0.00000000 + 23.70104764 0.00000000 + 23.70504804 0.00000000 + 23.70904844 0.00000000 + 23.71304884 0.00000000 + 23.71704924 0.00000000 + 23.72104964 0.00000000 + 23.72505004 0.00000000 + 23.72905044 0.00000000 + 23.73305084 0.00000000 + 23.73705124 0.00000000 + 23.74105164 0.00000000 + 23.74505204 0.00000000 + 23.74905244 0.00000000 + 23.75305284 0.00000000 + 23.75705324 0.00000000 + 23.76105364 0.00000000 + 23.76505404 0.00000000 + 23.76905444 0.00000000 + 23.77305484 0.00000000 + 23.77705524 0.00000000 + 23.78105564 0.00000000 + 23.78505604 0.00000000 + 23.78905644 0.00000000 + 23.79305684 0.00000000 + 23.79705724 0.00000000 + 23.80105764 0.00000000 + 23.80505804 0.00000000 + 23.80905844 0.00000000 + 23.81305884 0.00000000 + 23.81705924 0.00000000 + 23.82105964 0.00000000 + 23.82506004 0.00000000 + 23.82906044 0.00000000 + 23.83306084 0.00000000 + 23.83706124 0.00000000 + 23.84106164 0.00000000 + 23.84506204 0.00000000 + 23.84906244 0.00000000 + 23.85306284 0.00000000 + 23.85706324 0.00000000 + 23.86106364 0.00000000 + 23.86506404 0.00000000 + 23.86906444 0.00000000 + 23.87306484 0.00000000 + 23.87706524 0.00000000 + 23.88106564 0.00000000 + 23.88506604 0.00000000 + 23.88906644 0.00000000 + 23.89306684 0.00000000 + 23.89706724 0.00000000 + 23.90106764 0.00000000 + 23.90506804 0.00000000 + 23.90906844 0.00000000 + 23.91306884 0.00000000 + 23.91706924 0.00000000 + 23.92106964 0.00000000 + 23.92507004 0.00000000 + 23.92907044 0.00000000 + 23.93307084 0.00000000 + 23.93707124 0.00000000 + 23.94107164 0.00000000 + 23.94507204 0.00000000 + 23.94907244 0.00000000 + 23.95307284 0.00000000 + 23.95707324 0.00000000 + 23.96107364 0.00000000 + 23.96507404 0.00000000 + 23.96907444 0.00000000 + 23.97307484 0.00000000 + 23.97707524 0.00000000 + 23.98107564 0.00000000 + 23.98507604 0.00000000 + 23.98907644 0.00000000 + 23.99307684 0.00000000 + 23.99707724 0.00000000 + 24.00107764 0.00000000 + 24.00507804 0.00000000 + 24.00907844 0.00000000 + 24.01307884 0.00000000 + 24.01707924 0.00000000 + 24.02107964 0.00000000 + 24.02508004 0.00000000 + 24.02908044 0.00000000 + 24.03308084 0.00000000 + 24.03708124 0.00000000 + 24.04108164 0.00000000 + 24.04508204 0.00000000 + 24.04908244 0.00000000 + 24.05308284 0.00000000 + 24.05708324 0.00000000 + 24.06108364 0.00000000 + 24.06508404 0.00000000 + 24.06908444 0.00000000 + 24.07308484 0.00000000 + 24.07708524 0.00000000 + 24.08108564 0.00000000 + 24.08508604 0.00000000 + 24.08908644 0.00000000 + 24.09308684 0.00000000 + 24.09708724 0.00000000 + 24.10108764 0.00000000 + 24.10508804 0.00000000 + 24.10908844 0.00000000 + 24.11308884 0.00000000 + 24.11708924 0.00000000 + 24.12108964 0.00000000 + 24.12509004 0.00000000 + 24.12909044 0.00000000 + 24.13309084 0.00000000 + 24.13709124 0.00000000 + 24.14109164 0.00000000 + 24.14509204 0.00000000 + 24.14909244 0.00000000 + 24.15309284 0.00000000 + 24.15709324 0.00000000 + 24.16109364 0.00000000 + 24.16509404 0.00000000 + 24.16909444 0.00000000 + 24.17309484 0.00000000 + 24.17709524 0.00000000 + 24.18109564 0.00000000 + 24.18509604 0.00000000 + 24.18909644 0.00000000 + 24.19309684 0.00000000 + 24.19709724 0.00000000 + 24.20109764 0.00000000 + 24.20509804 0.00000000 + 24.20909844 0.00000000 + 24.21309884 0.00000000 + 24.21709924 0.00000000 + 24.22109964 0.00000000 + 24.22510004 0.00000000 + 24.22910044 0.00000000 + 24.23310084 0.00000000 + 24.23710124 0.00000000 + 24.24110164 0.00000000 + 24.24510204 0.00000000 + 24.24910244 0.00000000 + 24.25310284 0.00000000 + 24.25710324 0.00000000 + 24.26110364 0.00000000 + 24.26510404 0.00000000 + 24.26910444 0.00000000 + 24.27310484 0.00000000 + 24.27710524 0.00000000 + 24.28110564 0.00000000 + 24.28510604 0.00000000 + 24.28910644 0.00000000 + 24.29310684 0.00000000 + 24.29710724 0.00000000 + 24.30110764 0.00000000 + 24.30510804 0.00000000 + 24.30910844 0.00000000 + 24.31310884 0.00000000 + 24.31710924 0.00000000 + 24.32110965 0.00000000 + 24.32511005 0.00000000 + 24.32911045 0.00000000 + 24.33311085 0.00000000 + 24.33711125 0.00000000 + 24.34111165 0.00000000 + 24.34511205 0.00000000 + 24.34911245 0.00000000 + 24.35311285 0.00000000 + 24.35711325 0.00000000 + 24.36111365 0.00000000 + 24.36511405 0.00000000 + 24.36911445 0.00000000 + 24.37311485 0.00000000 + 24.37711525 0.00000000 + 24.38111565 0.00000000 + 24.38511605 0.00000000 + 24.38911645 0.00000000 + 24.39311685 0.00000000 + 24.39711725 0.00000000 + 24.40111765 0.00000000 + 24.40511805 0.00000000 + 24.40911845 0.00000000 + 24.41311885 0.00000000 + 24.41711925 0.00000000 + 24.42111965 0.00000000 + 24.42512005 0.00000000 + 24.42912045 0.00000000 + 24.43312085 0.00000000 + 24.43712125 0.00000000 + 24.44112165 0.00000000 + 24.44512205 0.00000000 + 24.44912245 0.00000000 + 24.45312285 0.00000000 + 24.45712325 0.00000000 + 24.46112365 0.00000000 + 24.46512405 0.00000000 + 24.46912445 0.00000000 + 24.47312485 0.00000000 + 24.47712525 0.00000000 + 24.48112565 0.00000000 + 24.48512605 0.00000000 + 24.48912645 0.00000000 + 24.49312685 0.00000000 + 24.49712725 0.00000000 + 24.50112765 0.00000000 + 24.50512805 0.00000000 + 24.50912845 0.00000000 + 24.51312885 0.00000000 + 24.51712925 0.00000000 + 24.52112965 0.00000000 + 24.52513005 0.00000000 + 24.52913045 0.00000000 + 24.53313085 0.00000000 + 24.53713125 0.00000000 + 24.54113165 0.00000000 + 24.54513205 0.00000000 + 24.54913245 0.00000000 + 24.55313285 0.00000000 + 24.55713325 0.00000000 + 24.56113365 0.00000000 + 24.56513405 0.00000000 + 24.56913445 0.00000000 + 24.57313485 0.00000000 + 24.57713525 0.00000000 + 24.58113565 0.00000000 + 24.58513605 0.00000000 + 24.58913645 0.00000000 + 24.59313685 0.00000000 + 24.59713725 0.00000000 + 24.60113765 0.00000000 + 24.60513805 0.00000000 + 24.60913845 0.00000000 + 24.61313885 0.00000000 + 24.61713925 0.00000000 + 24.62113965 0.00000000 + 24.62514005 0.00000000 + 24.62914045 0.00000000 + 24.63314085 0.00000000 + 24.63714125 0.00000000 + 24.64114165 0.00000000 + 24.64514205 0.00000000 + 24.64914245 0.00000000 + 24.65314285 0.00000000 + 24.65714325 0.00000000 + 24.66114365 0.00000000 + 24.66514405 0.00000000 + 24.66914445 0.00000000 + 24.67314485 0.00000000 + 24.67714525 0.00000000 + 24.68114565 0.00000000 + 24.68514605 0.00000000 + 24.68914645 0.00000000 + 24.69314685 0.00000000 + 24.69714725 0.00000000 + 24.70114765 0.00000000 + 24.70514805 0.00000000 + 24.70914845 0.00000000 + 24.71314885 0.00000000 + 24.71714925 0.00000000 + 24.72114965 0.00000000 + 24.72515005 0.00000000 + 24.72915045 0.00000000 + 24.73315085 0.00000000 + 24.73715125 0.00000000 + 24.74115165 0.00000000 + 24.74515205 0.00000000 + 24.74915245 0.00000000 + 24.75315285 0.00000000 + 24.75715325 0.00000000 + 24.76115365 0.00000000 + 24.76515405 0.00000000 + 24.76915445 0.00000000 + 24.77315485 0.00000000 + 24.77715525 0.00000000 + 24.78115565 0.00000000 + 24.78515605 0.00000000 + 24.78915645 0.00000000 + 24.79315685 0.00000000 + 24.79715725 0.00000000 + 24.80115765 0.00000000 + 24.80515805 0.00000000 + 24.80915845 0.00000000 + 24.81315885 0.00000000 + 24.81715925 0.00000000 + 24.82115965 0.00000000 + 24.82516005 0.00000000 + 24.82916045 0.00000000 + 24.83316085 0.00000000 + 24.83716125 0.00000000 + 24.84116165 0.00000000 + 24.84516205 0.00000000 + 24.84916245 0.00000000 + 24.85316285 0.00000000 + 24.85716325 0.00000000 + 24.86116365 0.00000000 + 24.86516405 0.00000000 + 24.86916445 0.00000000 + 24.87316485 0.00000000 + 24.87716525 0.00000000 + 24.88116565 0.00000000 + 24.88516605 0.00000000 + 24.88916645 0.00000000 + 24.89316685 0.00000000 + 24.89716725 0.00000000 + 24.90116765 0.00000000 + 24.90516805 0.00000000 + 24.90916845 0.00000000 + 24.91316885 0.00000000 + 24.91716925 0.00000000 + 24.92116965 0.00000000 + 24.92517005 0.00000000 + 24.92917045 0.00000000 + 24.93317085 0.00000000 + 24.93717125 0.00000000 + 24.94117165 0.00000000 + 24.94517205 0.00000000 + 24.94917245 0.00000000 + 24.95317285 0.00000000 + 24.95717325 0.00000000 + 24.96117365 0.00000000 + 24.96517405 0.00000000 + 24.96917445 0.00000000 + 24.97317485 0.00000000 + 24.97717525 0.00000000 + 24.98117565 0.00000000 + 24.98517605 0.00000000 + 24.98917645 0.00000000 + 24.99317685 0.00000000 + 24.99717725 0.00000000 + 25.00117765 0.00000000 + 25.00517805 0.00000000 + 25.00917845 0.00000000 + 25.01317885 0.00000000 + 25.01717925 0.00000000 + 25.02117965 0.00000000 + 25.02518005 0.00000000 + 25.02918045 0.00000000 + 25.03318085 0.00000000 + 25.03718125 0.00000000 + 25.04118165 0.00000000 + 25.04518205 0.00000000 + 25.04918245 0.00000000 + 25.05318285 0.00000000 + 25.05718325 0.00000000 + 25.06118365 0.00000000 + 25.06518405 0.00000000 + 25.06918445 0.00000000 + 25.07318485 0.00000000 + 25.07718525 0.00000000 + 25.08118565 0.00000000 + 25.08518605 0.00000000 + 25.08918645 0.00000000 + 25.09318685 0.00000000 + 25.09718725 0.00000000 + 25.10118765 0.00000000 + 25.10518805 0.00000000 + 25.10918845 0.00000000 + 25.11318885 0.00000000 + 25.11718925 0.00000000 + 25.12118965 0.00000000 + 25.12519005 0.00000000 + 25.12919045 0.00000000 + 25.13319085 0.00000000 + 25.13719125 0.00000000 + 25.14119165 0.00000000 + 25.14519205 0.00000000 + 25.14919245 0.00000000 + 25.15319285 0.00000000 + 25.15719325 0.00000000 + 25.16119365 0.00000000 + 25.16519405 0.00000000 + 25.16919445 0.00000000 + 25.17319485 0.00000000 + 25.17719525 0.00000000 + 25.18119565 0.00000000 + 25.18519605 0.00000000 + 25.18919645 0.00000000 + 25.19319685 0.00000000 + 25.19719725 0.00000000 + 25.20119765 0.00000000 + 25.20519805 0.00000000 + 25.20919845 0.00000000 + 25.21319885 0.00000000 + 25.21719925 0.00000000 + 25.22119965 0.00000000 + 25.22520005 0.00000000 + 25.22920045 0.00000000 + 25.23320085 0.00000000 + 25.23720125 0.00000000 + 25.24120165 0.00000000 + 25.24520205 0.00000000 + 25.24920245 0.00000000 + 25.25320285 0.00000000 + 25.25720325 0.00000000 + 25.26120365 0.00000000 + 25.26520405 0.00000000 + 25.26920445 0.00000000 + 25.27320485 0.00000000 + 25.27720525 0.00000000 + 25.28120565 0.00000000 + 25.28520605 0.00000000 + 25.28920645 0.00000000 + 25.29320685 0.00000000 + 25.29720725 0.00000000 + 25.30120765 0.00000000 + 25.30520805 0.00000000 + 25.30920845 0.00000000 + 25.31320885 0.00000000 + 25.31720925 0.00000000 + 25.32120966 0.00000000 + 25.32521006 0.00000000 + 25.32921046 0.00000000 + 25.33321086 0.00000000 + 25.33721126 0.00000000 + 25.34121166 0.00000000 + 25.34521206 0.00000000 + 25.34921246 0.00000000 + 25.35321286 0.00000000 + 25.35721326 0.00000000 + 25.36121366 0.00000000 + 25.36521406 0.00000000 + 25.36921446 0.00000000 + 25.37321486 0.00000000 + 25.37721526 0.00000000 + 25.38121566 0.00000000 + 25.38521606 0.00000000 + 25.38921646 0.00000000 + 25.39321686 0.00000000 + 25.39721726 0.00000000 + 25.40121766 0.00000000 + 25.40521806 0.00000000 + 25.40921846 0.00000000 + 25.41321886 0.00000000 + 25.41721926 0.00000000 + 25.42121966 0.00000000 + 25.42522006 0.00000000 + 25.42922046 0.00000000 + 25.43322086 0.00000000 + 25.43722126 0.00000000 + 25.44122166 0.00000000 + 25.44522206 0.00000000 + 25.44922246 0.00000000 + 25.45322286 0.00000000 + 25.45722326 0.00000000 + 25.46122366 0.00000000 + 25.46522406 0.00000000 + 25.46922446 0.00000000 + 25.47322486 0.00000000 + 25.47722526 0.00000000 + 25.48122566 0.00000000 + 25.48522606 0.00000000 + 25.48922646 0.00000000 + 25.49322686 0.00000000 + 25.49722726 0.00000000 + 25.50122766 0.00000000 + 25.50522806 0.00000000 + 25.50922846 0.00000000 + 25.51322886 0.00000000 + 25.51722926 0.00000000 + 25.52122966 0.00000000 + 25.52523006 0.00000000 + 25.52923046 0.00000000 + 25.53323086 0.00000000 + 25.53723126 0.00000000 diff --git a/tests/data/normalizers/dos/dos_si_fhiaims/KS_DOS_total_raw.dat b/tests/data/normalizers/dos/dos_si_fhiaims/KS_DOS_total_raw.dat new file mode 100644 index 0000000000000000000000000000000000000000..dfe963d69e17a473c80eb0beb5ea675d72591c76 --- /dev/null +++ b/tests/data/normalizers/dos/dos_si_fhiaims/KS_DOS_total_raw.dat @@ -0,0 +1,10003 @@ +# total density of states output by FHI-aims +# The energy reference for this output is the vacuum level +# Energy (eV) DOS + -20.00000000 0.00000000 + -19.99599960 0.00000000 + -19.99199920 0.00000000 + -19.98799880 0.00000000 + -19.98399840 0.00000000 + -19.97999800 0.00000000 + -19.97599760 0.00000000 + -19.97199720 0.00000000 + -19.96799680 0.00000000 + -19.96399640 0.00000000 + -19.95999600 0.00000000 + -19.95599560 0.00000000 + -19.95199520 0.00000000 + -19.94799480 0.00000000 + -19.94399440 0.00000000 + -19.93999400 0.00000000 + -19.93599360 0.00000000 + -19.93199320 0.00000000 + -19.92799280 0.00000000 + -19.92399240 0.00000000 + -19.91999200 0.00000000 + -19.91599160 0.00000000 + -19.91199120 0.00000000 + -19.90799080 0.00000000 + -19.90399040 0.00000000 + -19.89999000 0.00000000 + -19.89598960 0.00000000 + -19.89198920 0.00000000 + -19.88798880 0.00000000 + -19.88398840 0.00000000 + -19.87998800 0.00000000 + -19.87598760 0.00000000 + -19.87198720 0.00000000 + -19.86798680 0.00000000 + -19.86398640 0.00000000 + -19.85998600 0.00000000 + -19.85598560 0.00000000 + -19.85198520 0.00000000 + -19.84798480 0.00000000 + -19.84398440 0.00000000 + -19.83998400 0.00000000 + -19.83598360 0.00000000 + -19.83198320 0.00000000 + -19.82798280 0.00000000 + -19.82398240 0.00000000 + -19.81998200 0.00000000 + -19.81598160 0.00000000 + -19.81198120 0.00000000 + -19.80798080 0.00000000 + -19.80398040 0.00000000 + -19.79998000 0.00000000 + -19.79597960 0.00000000 + -19.79197920 0.00000000 + -19.78797880 0.00000000 + -19.78397840 0.00000000 + -19.77997800 0.00000000 + -19.77597760 0.00000000 + -19.77197720 0.00000000 + -19.76797680 0.00000000 + -19.76397640 0.00000000 + -19.75997600 0.00000000 + -19.75597560 0.00000000 + -19.75197520 0.00000000 + -19.74797480 0.00000000 + -19.74397440 0.00000000 + -19.73997400 0.00000000 + -19.73597360 0.00000000 + -19.73197320 0.00000000 + -19.72797280 0.00000000 + -19.72397240 0.00000000 + -19.71997200 0.00000000 + -19.71597160 0.00000000 + -19.71197120 0.00000000 + -19.70797080 0.00000000 + -19.70397040 0.00000000 + -19.69997000 0.00000000 + -19.69596960 0.00000000 + -19.69196920 0.00000000 + -19.68796880 0.00000000 + -19.68396840 0.00000000 + -19.67996800 0.00000000 + -19.67596760 0.00000000 + -19.67196720 0.00000000 + -19.66796680 0.00000000 + -19.66396640 0.00000000 + -19.65996600 0.00000000 + -19.65596560 0.00000000 + -19.65196520 0.00000000 + -19.64796480 0.00000000 + -19.64396440 0.00000000 + -19.63996400 0.00000000 + -19.63596360 0.00000000 + -19.63196320 0.00000000 + -19.62796280 0.00000000 + -19.62396240 0.00000000 + -19.61996200 0.00000000 + -19.61596160 0.00000000 + -19.61196120 0.00000000 + -19.60796080 0.00000000 + -19.60396040 0.00000000 + -19.59996000 0.00000000 + -19.59595960 0.00000000 + -19.59195920 0.00000000 + -19.58795880 0.00000000 + -19.58395840 0.00000000 + -19.57995800 0.00000000 + -19.57595760 0.00000000 + -19.57195720 0.00000000 + -19.56795680 0.00000000 + -19.56395640 0.00000000 + -19.55995600 0.00000000 + -19.55595560 0.00000000 + -19.55195520 0.00000000 + -19.54795480 0.00000000 + -19.54395440 0.00000000 + -19.53995400 0.00000000 + -19.53595360 0.00000000 + -19.53195320 0.00000000 + -19.52795280 0.00000000 + -19.52395240 0.00000000 + -19.51995200 0.00000000 + -19.51595160 0.00000000 + -19.51195120 0.00000000 + -19.50795080 0.00000000 + -19.50395040 0.00000000 + -19.49994999 0.00000000 + -19.49594959 0.00000000 + -19.49194919 0.00000000 + -19.48794879 0.00000000 + -19.48394839 0.00000000 + -19.47994799 0.00000000 + -19.47594759 0.00000000 + -19.47194719 0.00000000 + -19.46794679 0.00000000 + -19.46394639 0.00000000 + -19.45994599 0.00000000 + -19.45594559 0.00000000 + -19.45194519 0.00000000 + -19.44794479 0.00000000 + -19.44394439 0.00000000 + -19.43994399 0.00000000 + -19.43594359 0.00000000 + -19.43194319 0.00000000 + -19.42794279 0.00000000 + -19.42394239 0.00000000 + -19.41994199 0.00000000 + -19.41594159 0.00000000 + -19.41194119 0.00000000 + -19.40794079 0.00000000 + -19.40394039 0.00000000 + -19.39993999 0.00000000 + -19.39593959 0.00000000 + -19.39193919 0.00000000 + -19.38793879 0.00000000 + -19.38393839 0.00000000 + -19.37993799 0.00000000 + -19.37593759 0.00000000 + -19.37193719 0.00000000 + -19.36793679 0.00000000 + -19.36393639 0.00000000 + -19.35993599 0.00000000 + -19.35593559 0.00000000 + -19.35193519 0.00000000 + -19.34793479 0.00000000 + -19.34393439 0.00000000 + -19.33993399 0.00000000 + -19.33593359 0.00000000 + -19.33193319 0.00000000 + -19.32793279 0.00000000 + -19.32393239 0.00000000 + -19.31993199 0.00000000 + -19.31593159 0.00000000 + -19.31193119 0.00000000 + -19.30793079 0.00000000 + -19.30393039 0.00000000 + -19.29992999 0.00000000 + -19.29592959 0.00000000 + -19.29192919 0.00000000 + -19.28792879 0.00000000 + -19.28392839 0.00000000 + -19.27992799 0.00000000 + -19.27592759 0.00000000 + -19.27192719 0.00000000 + -19.26792679 0.00000000 + -19.26392639 0.00000000 + -19.25992599 0.00000000 + -19.25592559 0.00000000 + -19.25192519 0.00000000 + -19.24792479 0.00000000 + -19.24392439 0.00000000 + -19.23992399 0.00000000 + -19.23592359 0.00000000 + -19.23192319 0.00000000 + -19.22792279 0.00000000 + -19.22392239 0.00000000 + -19.21992199 0.00000000 + -19.21592159 0.00000000 + -19.21192119 0.00000000 + -19.20792079 0.00000000 + -19.20392039 0.00000000 + -19.19991999 0.00000000 + -19.19591959 0.00000000 + -19.19191919 0.00000000 + -19.18791879 0.00000000 + -19.18391839 0.00000000 + -19.17991799 0.00000000 + -19.17591759 0.00000000 + -19.17191719 0.00000000 + -19.16791679 0.00000000 + -19.16391639 0.00000000 + -19.15991599 0.00000000 + -19.15591559 0.00000000 + -19.15191519 0.00000000 + -19.14791479 0.00000000 + -19.14391439 0.00000000 + -19.13991399 0.00000000 + -19.13591359 0.00000000 + -19.13191319 0.00000000 + -19.12791279 0.00000000 + -19.12391239 0.00000000 + -19.11991199 0.00000000 + -19.11591159 0.00000000 + -19.11191119 0.00000000 + -19.10791079 0.00000000 + -19.10391039 0.00000000 + -19.09990999 0.00000000 + -19.09590959 0.00000000 + -19.09190919 0.00000000 + -19.08790879 0.00000000 + -19.08390839 0.00000000 + -19.07990799 0.00000000 + -19.07590759 0.00000000 + -19.07190719 0.00000000 + -19.06790679 0.00000000 + -19.06390639 0.00000000 + -19.05990599 0.00000000 + -19.05590559 0.00000000 + -19.05190519 0.00000000 + -19.04790479 0.00000000 + -19.04390439 0.00000000 + -19.03990399 0.00000000 + -19.03590359 0.00000000 + -19.03190319 0.00000000 + -19.02790279 0.00000000 + -19.02390239 0.00000000 + -19.01990199 0.00000000 + -19.01590159 0.00000000 + -19.01190119 0.00000000 + -19.00790079 0.00000000 + -19.00390039 0.00000000 + -18.99989999 0.00000000 + -18.99589959 0.00000000 + -18.99189919 0.00000000 + -18.98789879 0.00000000 + -18.98389839 0.00000000 + -18.97989799 0.00000000 + -18.97589759 0.00000000 + -18.97189719 0.00000000 + -18.96789679 0.00000000 + -18.96389639 0.00000000 + -18.95989599 0.00000000 + -18.95589559 0.00000000 + -18.95189519 0.00000000 + -18.94789479 0.00000000 + -18.94389439 0.00000000 + -18.93989399 0.00000000 + -18.93589359 0.00000000 + -18.93189319 0.00000000 + -18.92789279 0.00000000 + -18.92389239 0.00000000 + -18.91989199 0.00000000 + -18.91589159 0.00000000 + -18.91189119 0.00000000 + -18.90789079 0.00000000 + -18.90389039 0.00000000 + -18.89988999 0.00000000 + -18.89588959 0.00000000 + -18.89188919 0.00000000 + -18.88788879 0.00000000 + -18.88388839 0.00000000 + -18.87988799 0.00000000 + -18.87588759 0.00000000 + -18.87188719 0.00000000 + -18.86788679 0.00000000 + -18.86388639 0.00000000 + -18.85988599 0.00000000 + -18.85588559 0.00000000 + -18.85188519 0.00000000 + -18.84788479 0.00000000 + -18.84388439 0.00000000 + -18.83988399 0.00000000 + -18.83588359 0.00000000 + -18.83188319 0.00000000 + -18.82788279 0.00000000 + -18.82388239 0.00000000 + -18.81988199 0.00000000 + -18.81588159 0.00000000 + -18.81188119 0.00000000 + -18.80788079 0.00000000 + -18.80388039 0.00000000 + -18.79987999 0.00000000 + -18.79587959 0.00000000 + -18.79187919 0.00000000 + -18.78787879 0.00000000 + -18.78387839 0.00000000 + -18.77987799 0.00000000 + -18.77587759 0.00000000 + -18.77187719 0.00000000 + -18.76787679 0.00000000 + -18.76387639 0.00000000 + -18.75987599 0.00000000 + -18.75587559 0.00000000 + -18.75187519 0.00000000 + -18.74787479 0.00000000 + -18.74387439 0.00000000 + -18.73987399 0.00000000 + -18.73587359 0.00000000 + -18.73187319 0.00000000 + -18.72787279 0.00000000 + -18.72387239 0.00000000 + -18.71987199 0.00000000 + -18.71587159 0.00000000 + -18.71187119 0.00000000 + -18.70787079 0.00000000 + -18.70387039 0.00000000 + -18.69986999 0.00000000 + -18.69586959 0.00000000 + -18.69186919 0.00000000 + -18.68786879 0.00000000 + -18.68386839 0.00000000 + -18.67986799 0.00000000 + -18.67586759 0.00000000 + -18.67186719 0.00000000 + -18.66786679 0.00000000 + -18.66386639 0.00000000 + -18.65986599 0.00000000 + -18.65586559 0.00000000 + -18.65186519 0.00000000 + -18.64786479 0.00000000 + -18.64386439 0.00000000 + -18.63986399 0.00000000 + -18.63586359 0.00000000 + -18.63186319 0.00000000 + -18.62786279 0.00000000 + -18.62386239 0.00000000 + -18.61986199 0.00000000 + -18.61586159 0.00000000 + -18.61186119 0.00000000 + -18.60786079 0.00000000 + -18.60386039 0.00000000 + -18.59985999 0.00000000 + -18.59585959 0.00000000 + -18.59185919 0.00000000 + -18.58785879 0.00000000 + -18.58385839 0.00000000 + -18.57985799 0.00000000 + -18.57585759 0.00000000 + -18.57185719 0.00000000 + -18.56785679 0.00000000 + -18.56385639 0.00000000 + -18.55985599 0.00000000 + -18.55585559 0.00000000 + -18.55185519 0.00000000 + -18.54785479 0.00000000 + -18.54385439 0.00000000 + -18.53985399 0.00000000 + -18.53585359 0.00000000 + -18.53185319 0.00000000 + -18.52785279 0.00000001 + -18.52385239 0.00000001 + -18.51985199 0.00000001 + -18.51585159 0.00000001 + -18.51185119 0.00000001 + -18.50785079 0.00000002 + -18.50385039 0.00000002 + -18.49984998 0.00000002 + -18.49584958 0.00000003 + -18.49184918 0.00000004 + -18.48784878 0.00000004 + -18.48384838 0.00000005 + -18.47984798 0.00000007 + -18.47584758 0.00000008 + -18.47184718 0.00000010 + -18.46784678 0.00000012 + -18.46384638 0.00000014 + -18.45984598 0.00000017 + -18.45584558 0.00000021 + -18.45184518 0.00000025 + -18.44784478 0.00000031 + -18.44384438 0.00000037 + -18.43984398 0.00000044 + -18.43584358 0.00000053 + -18.43184318 0.00000064 + -18.42784278 0.00000076 + -18.42384238 0.00000091 + -18.41984198 0.00000109 + -18.41584158 0.00000129 + -18.41184118 0.00000154 + -18.40784078 0.00000183 + -18.40384038 0.00000217 + -18.39983998 0.00000257 + -18.39583958 0.00000304 + -18.39183918 0.00000358 + -18.38783878 0.00000423 + -18.38383838 0.00000498 + -18.37983798 0.00000585 + -18.37583758 0.00000686 + -18.37183718 0.00000805 + -18.36783678 0.00000942 + -18.36383638 0.00001100 + -18.35983598 0.00001284 + -18.35583558 0.00001496 + -18.35183518 0.00001740 + -18.34783478 0.00002022 + -18.34383438 0.00002346 + -18.33983398 0.00002717 + -18.33583358 0.00003142 + -18.33183318 0.00003629 + -18.32783278 0.00004186 + -18.32383238 0.00004820 + -18.31983198 0.00005543 + -18.31583158 0.00006365 + -18.31183118 0.00007298 + -18.30783078 0.00008356 + -18.30383038 0.00009553 + -18.29982998 0.00010906 + -18.29582958 0.00012433 + -18.29182918 0.00014154 + -18.28782878 0.00016089 + -18.28382838 0.00018264 + -18.27982798 0.00020702 + -18.27582758 0.00023433 + -18.27182718 0.00026486 + -18.26782678 0.00029895 + -18.26382638 0.00033695 + -18.25982598 0.00037925 + -18.25582558 0.00042625 + -18.25182518 0.00047841 + -18.24782478 0.00053621 + -18.24382438 0.00060014 + -18.23982398 0.00067077 + -18.23582358 0.00074867 + -18.23182318 0.00083447 + -18.22782278 0.00092881 + -18.22382238 0.00103240 + -18.21982198 0.00114597 + -18.21582158 0.00127030 + -18.21182118 0.00140620 + -18.20782078 0.00155453 + -18.20382038 0.00171618 + -18.19981998 0.00189208 + -18.19581958 0.00208322 + -18.19181918 0.00229059 + -18.18781878 0.00251526 + -18.18381838 0.00275829 + -18.17981798 0.00302081 + -18.17581758 0.00330396 + -18.17181718 0.00360890 + -18.16781678 0.00393685 + -18.16381638 0.00428902 + -18.15981598 0.00466664 + -18.15581558 0.00507097 + -18.15181518 0.00550328 + -18.14781478 0.00596482 + -18.14381438 0.00645687 + -18.13981398 0.00698068 + -18.13581358 0.00753751 + -18.13181318 0.00812860 + -18.12781278 0.00875516 + -18.12381238 0.00941838 + -18.11981198 0.01011941 + -18.11581158 0.01085936 + -18.11181118 0.01163930 + -18.10781078 0.01246024 + -18.10381038 0.01332313 + -18.09980998 0.01422887 + -18.09580958 0.01517827 + -18.09180918 0.01617208 + -18.08780878 0.01721093 + -18.08380838 0.01829541 + -18.07980798 0.01942599 + -18.07580758 0.02060305 + -18.07180718 0.02182686 + -18.06780678 0.02309758 + -18.06380638 0.02441528 + -18.05980598 0.02577989 + -18.05580558 0.02719127 + -18.05180518 0.02864911 + -18.04780478 0.03015302 + -18.04380438 0.03170248 + -18.03980398 0.03329686 + -18.03580358 0.03493540 + -18.03180318 0.03661724 + -18.02780278 0.03834141 + -18.02380238 0.04010682 + -18.01980198 0.04191228 + -18.01580158 0.04375650 + -18.01180118 0.04563810 + -18.00780078 0.04755559 + -18.00380038 0.04950742 + -17.99979998 0.05149195 + -17.99579958 0.05350747 + -17.99179918 0.05555219 + -17.98779878 0.05762430 + -17.98379838 0.05972190 + -17.97979798 0.06184308 + -17.97579758 0.06398588 + -17.97179718 0.06614832 + -17.96779678 0.06832841 + -17.96379638 0.07052414 + -17.95979598 0.07273350 + -17.95579558 0.07495451 + -17.95179518 0.07718517 + -17.94779478 0.07942353 + -17.94379438 0.08166766 + -17.93979398 0.08391567 + -17.93579358 0.08616571 + -17.93179318 0.08841598 + -17.92779278 0.09066475 + -17.92379238 0.09291033 + -17.91979198 0.09515110 + -17.91579158 0.09738552 + -17.91179118 0.09961210 + -17.90779078 0.10182946 + -17.90379038 0.10403628 + -17.89978998 0.10623130 + -17.89578958 0.10841338 + -17.89178918 0.11058145 + -17.88778878 0.11273450 + -17.88378838 0.11487163 + -17.87978798 0.11699202 + -17.87578758 0.11909493 + -17.87178718 0.12117969 + -17.86778678 0.12324572 + -17.86378638 0.12529251 + -17.85978598 0.12731964 + -17.85578558 0.12932674 + -17.85178518 0.13131353 + -17.84778478 0.13327978 + -17.84378438 0.13522534 + -17.83978398 0.13715010 + -17.83578358 0.13905402 + -17.83178318 0.14093710 + -17.82778278 0.14279942 + -17.82378238 0.14464106 + -17.81978198 0.14646218 + -17.81578158 0.14826296 + -17.81178118 0.15004361 + -17.80778078 0.15180439 + -17.80378038 0.15354558 + -17.79977998 0.15526748 + -17.79577958 0.15697040 + -17.79177918 0.15865470 + -17.78777878 0.16032073 + -17.78377838 0.16196886 + -17.77977798 0.16359948 + -17.77577758 0.16521298 + -17.77177718 0.16680974 + -17.76777678 0.16839018 + -17.76377638 0.16995468 + -17.75977598 0.17150367 + -17.75577558 0.17303752 + -17.75177518 0.17455665 + -17.74777478 0.17606145 + -17.74377438 0.17755231 + -17.73977398 0.17902960 + -17.73577358 0.18049371 + -17.73177318 0.18194500 + -17.72777278 0.18338384 + -17.72377238 0.18481057 + -17.71977198 0.18622554 + -17.71577158 0.18762909 + -17.71177118 0.18902153 + -17.70777078 0.19040318 + -17.70377038 0.19177434 + -17.69976998 0.19313531 + -17.69576958 0.19448637 + -17.69176918 0.19582779 + -17.68776878 0.19715985 + -17.68376838 0.19848279 + -17.67976798 0.19979687 + -17.67576758 0.20110231 + -17.67176718 0.20239935 + -17.66776678 0.20368821 + -17.66376638 0.20496909 + -17.65976598 0.20624221 + -17.65576558 0.20750775 + -17.65176518 0.20876591 + -17.64776478 0.21001686 + -17.64376438 0.21126078 + -17.63976398 0.21249784 + -17.63576358 0.21372820 + -17.63176318 0.21495201 + -17.62776278 0.21616942 + -17.62376238 0.21738057 + -17.61976198 0.21858562 + -17.61576158 0.21978468 + -17.61176118 0.22097788 + -17.60776078 0.22216536 + -17.60376038 0.22334723 + -17.59975998 0.22452360 + -17.59575958 0.22569460 + -17.59175918 0.22686031 + -17.58775878 0.22802086 + -17.58375838 0.22917635 + -17.57975798 0.23032686 + -17.57575758 0.23147249 + -17.57175718 0.23261335 + -17.56775678 0.23374951 + -17.56375638 0.23488106 + -17.55975598 0.23600808 + -17.55575558 0.23713067 + -17.55175518 0.23824889 + -17.54775478 0.23936282 + -17.54375438 0.24047254 + -17.53975398 0.24157813 + -17.53575358 0.24267964 + -17.53175318 0.24377716 + -17.52775278 0.24487074 + -17.52375238 0.24596046 + -17.51975198 0.24704638 + -17.51575158 0.24812855 + -17.51175118 0.24920705 + -17.50775078 0.25028192 + -17.50375038 0.25135324 + -17.49974997 0.25242104 + -17.49574957 0.25348540 + -17.49174917 0.25454636 + -17.48774877 0.25560398 + -17.48374837 0.25665831 + -17.47974797 0.25770939 + -17.47574757 0.25875729 + -17.47174717 0.25980204 + -17.46774677 0.26084370 + -17.46374637 0.26188231 + -17.45974597 0.26291791 + -17.45574557 0.26395056 + -17.45174517 0.26498029 + -17.44774477 0.26600715 + -17.44374437 0.26703117 + -17.43974397 0.26805241 + -17.43574357 0.26907091 + -17.43174317 0.27008669 + -17.42774277 0.27109981 + -17.42374237 0.27211029 + -17.41974197 0.27311818 + -17.41574157 0.27412352 + -17.41174117 0.27512633 + -17.40774077 0.27612667 + -17.40374037 0.27712455 + -17.39973997 0.27812002 + -17.39573957 0.27911310 + -17.39173917 0.28010385 + -17.38773877 0.28109227 + -17.38373837 0.28207842 + -17.37973797 0.28306231 + -17.37573757 0.28404399 + -17.37173717 0.28502348 + -17.36773677 0.28600081 + -17.36373637 0.28697601 + -17.35973597 0.28794912 + -17.35573557 0.28892015 + -17.35173517 0.28988915 + -17.34773477 0.29085613 + -17.34373437 0.29182113 + -17.33973397 0.29278417 + -17.33573357 0.29374528 + -17.33173317 0.29470449 + -17.32773277 0.29566182 + -17.32373237 0.29661730 + -17.31973197 0.29757095 + -17.31573157 0.29852280 + -17.31173117 0.29947288 + -17.30773077 0.30042120 + -17.30373037 0.30136780 + -17.29972997 0.30231269 + -17.29572957 0.30325590 + -17.29172917 0.30419746 + -17.28772877 0.30513739 + -17.28372837 0.30607570 + -17.27972797 0.30701243 + -17.27572757 0.30794759 + -17.27172717 0.30888120 + -17.26772677 0.30981330 + -17.26372637 0.31074389 + -17.25972597 0.31167300 + -17.25572557 0.31260066 + -17.25172517 0.31352688 + -17.24772477 0.31445168 + -17.24372437 0.31537508 + -17.23972397 0.31629711 + -17.23572357 0.31721778 + -17.23172317 0.31813712 + -17.22772277 0.31905513 + -17.22372237 0.31997185 + -17.21972197 0.32088729 + -17.21572157 0.32180147 + -17.21172117 0.32271441 + -17.20772077 0.32362613 + -17.20372037 0.32453664 + -17.19971997 0.32544596 + -17.19571957 0.32635412 + -17.19171917 0.32726112 + -17.18771877 0.32816700 + -17.18371837 0.32907176 + -17.17971797 0.32997542 + -17.17571757 0.33087800 + -17.17171717 0.33177952 + -17.16771677 0.33267999 + -17.16371637 0.33357943 + -17.15971597 0.33447787 + -17.15571557 0.33537530 + -17.15171517 0.33627176 + -17.14771477 0.33716725 + -17.14371437 0.33806180 + -17.13971397 0.33895541 + -17.13571357 0.33984811 + -17.13171317 0.34073992 + -17.12771277 0.34163084 + -17.12371237 0.34252089 + -17.11971197 0.34341009 + -17.11571157 0.34429846 + -17.11171117 0.34518600 + -17.10771077 0.34607274 + -17.10371037 0.34695869 + -17.09970997 0.34784387 + -17.09570957 0.34872828 + -17.09170917 0.34961195 + -17.08770877 0.35049489 + -17.08370837 0.35137712 + -17.07970797 0.35225864 + -17.07570757 0.35313948 + -17.07170717 0.35401964 + -17.06770677 0.35489915 + -17.06370637 0.35577802 + -17.05970597 0.35665626 + -17.05570557 0.35753388 + -17.05170517 0.35841090 + -17.04770477 0.35928734 + -17.04370437 0.36016321 + -17.03970397 0.36103852 + -17.03570357 0.36191328 + -17.03170317 0.36278752 + -17.02770277 0.36366124 + -17.02370237 0.36453445 + -17.01970197 0.36540718 + -17.01570157 0.36627944 + -17.01170117 0.36715123 + -17.00770077 0.36802258 + -17.00370037 0.36889349 + -16.99969997 0.36976398 + -16.99569957 0.37063407 + -16.99169917 0.37150376 + -16.98769877 0.37237308 + -16.98369837 0.37324203 + -16.97969797 0.37411062 + -16.97569757 0.37497888 + -16.97169717 0.37584681 + -16.96769677 0.37671442 + -16.96369637 0.37758174 + -16.95969597 0.37844878 + -16.95569557 0.37931554 + -16.95169517 0.38018204 + -16.94769477 0.38104829 + -16.94369437 0.38191431 + -16.93969397 0.38278011 + -16.93569357 0.38364571 + -16.93169317 0.38451111 + -16.92769277 0.38537633 + -16.92369237 0.38624138 + -16.91969197 0.38710629 + -16.91569157 0.38797105 + -16.91169117 0.38883568 + -16.90769077 0.38970020 + -16.90369037 0.39056461 + -16.89968997 0.39142894 + -16.89568957 0.39229320 + -16.89168917 0.39315739 + -16.88768877 0.39402154 + -16.88368837 0.39488564 + -16.87968797 0.39574973 + -16.87568757 0.39661381 + -16.87168717 0.39747790 + -16.86768677 0.39834200 + -16.86368637 0.39920613 + -16.85968597 0.40007031 + -16.85568557 0.40093455 + -16.85168517 0.40179885 + -16.84768477 0.40266324 + -16.84368437 0.40352773 + -16.83968397 0.40439234 + -16.83568357 0.40525706 + -16.83168317 0.40612193 + -16.82768277 0.40698694 + -16.82368237 0.40785213 + -16.81968197 0.40871749 + -16.81568157 0.40958305 + -16.81168117 0.41044881 + -16.80768077 0.41131479 + -16.80368037 0.41218101 + -16.79967997 0.41304747 + -16.79567957 0.41391420 + -16.79167917 0.41478120 + -16.78767877 0.41564850 + -16.78367837 0.41651609 + -16.77967797 0.41738401 + -16.77567757 0.41825225 + -16.77167717 0.41912085 + -16.76767677 0.41998980 + -16.76367637 0.42085913 + -16.75967597 0.42172885 + -16.75567557 0.42259897 + -16.75167517 0.42346951 + -16.74767477 0.42434049 + -16.74367437 0.42521191 + -16.73967397 0.42608379 + -16.73567357 0.42695616 + -16.73167317 0.42782901 + -16.72767277 0.42870237 + -16.72367237 0.42957625 + -16.71967197 0.43045068 + -16.71567157 0.43132565 + -16.71167117 0.43220119 + -16.70767077 0.43307732 + -16.70367037 0.43395404 + -16.69966997 0.43483138 + -16.69566957 0.43570935 + -16.69166917 0.43658797 + -16.68766877 0.43746725 + -16.68366837 0.43834720 + -16.67966797 0.43922786 + -16.67566757 0.44010922 + -16.67166717 0.44099131 + -16.66766677 0.44187414 + -16.66366637 0.44275773 + -16.65966597 0.44364210 + -16.65566557 0.44452726 + -16.65166517 0.44541324 + -16.64766477 0.44630004 + -16.64366437 0.44718769 + -16.63966397 0.44807620 + -16.63566357 0.44896559 + -16.63166317 0.44985588 + -16.62766277 0.45074708 + -16.62366237 0.45163922 + -16.61966197 0.45253230 + -16.61566157 0.45342636 + -16.61166117 0.45432141 + -16.60766077 0.45521746 + -16.60366037 0.45611454 + -16.59965997 0.45701267 + -16.59565957 0.45791185 + -16.59165917 0.45881213 + -16.58765877 0.45971350 + -16.58365837 0.46061599 + -16.57965797 0.46151963 + -16.57565757 0.46242443 + -16.57165717 0.46333041 + -16.56765677 0.46423760 + -16.56365637 0.46514601 + -16.55965597 0.46605566 + -16.55565557 0.46696658 + -16.55165517 0.46787878 + -16.54765477 0.46879229 + -16.54365437 0.46970713 + -16.53965397 0.47062333 + -16.53565357 0.47154089 + -16.53165317 0.47245986 + -16.52765277 0.47338024 + -16.52365237 0.47430206 + -16.51965197 0.47522535 + -16.51565157 0.47615013 + -16.51165117 0.47707642 + -16.50765077 0.47800424 + -16.50365037 0.47893363 + -16.49964996 0.47986460 + -16.49564956 0.48079718 + -16.49164916 0.48173139 + -16.48764876 0.48266727 + -16.48364836 0.48360483 + -16.47964796 0.48454410 + -16.47564756 0.48548511 + -16.47164716 0.48642789 + -16.46764676 0.48737246 + -16.46364636 0.48831885 + -16.45964596 0.48926709 + -16.45564556 0.49021720 + -16.45164516 0.49116922 + -16.44764476 0.49212317 + -16.44364436 0.49307908 + -16.43964396 0.49403699 + -16.43564356 0.49499691 + -16.43164316 0.49595889 + -16.42764276 0.49692295 + -16.42364236 0.49788913 + -16.41964196 0.49885746 + -16.41564156 0.49982796 + -16.41164116 0.50080067 + -16.40764076 0.50177563 + -16.40364036 0.50275287 + -16.39963996 0.50373242 + -16.39563956 0.50471432 + -16.39163916 0.50569859 + -16.38763876 0.50668529 + -16.38363836 0.50767444 + -16.37963796 0.50866609 + -16.37563756 0.50966026 + -16.37163716 0.51065699 + -16.36763676 0.51165634 + -16.36363636 0.51265832 + -16.35963596 0.51366299 + -16.35563556 0.51467039 + -16.35163516 0.51568055 + -16.34763476 0.51669352 + -16.34363436 0.51770934 + -16.33963396 0.51872805 + -16.33563356 0.51974970 + -16.33163316 0.52077434 + -16.32763276 0.52180200 + -16.32363236 0.52283273 + -16.31963196 0.52386658 + -16.31563156 0.52490361 + -16.31163116 0.52594385 + -16.30763076 0.52698736 + -16.30363036 0.52803419 + -16.29962996 0.52908438 + -16.29562956 0.53013800 + -16.29162916 0.53119510 + -16.28762876 0.53225572 + -16.28362836 0.53331993 + -16.27962796 0.53438779 + -16.27562756 0.53545934 + -16.27162716 0.53653465 + -16.26762676 0.53761379 + -16.26362636 0.53869680 + -16.25962596 0.53978375 + -16.25562556 0.54087472 + -16.25162516 0.54196975 + -16.24762476 0.54306892 + -16.24362436 0.54417230 + -16.23962396 0.54527996 + -16.23562356 0.54639196 + -16.23162316 0.54750838 + -16.22762276 0.54862929 + -16.22362236 0.54975478 + -16.21962196 0.55088491 + -16.21562156 0.55201976 + -16.21162116 0.55315942 + -16.20762076 0.55430398 + -16.20362036 0.55545350 + -16.19961996 0.55660809 + -16.19561956 0.55776783 + -16.19161916 0.55893281 + -16.18761876 0.56010313 + -16.18361836 0.56127887 + -16.17961796 0.56246015 + -16.17561756 0.56364706 + -16.17161716 0.56483971 + -16.16761676 0.56603819 + -16.16361636 0.56724263 + -16.15961596 0.56845313 + -16.15561556 0.56966981 + -16.15161516 0.57089279 + -16.14761476 0.57212219 + -16.14361436 0.57335813 + -16.13961396 0.57460075 + -16.13561356 0.57585018 + -16.13161316 0.57710656 + -16.12761276 0.57837003 + -16.12361236 0.57964073 + -16.11961196 0.58091882 + -16.11561156 0.58220446 + -16.11161116 0.58349780 + -16.10761076 0.58479902 + -16.10361036 0.58610828 + -16.09960996 0.58742577 + -16.09560956 0.58875166 + -16.09160916 0.59008616 + -16.08760876 0.59142946 + -16.08360836 0.59278176 + -16.07960796 0.59414329 + -16.07560756 0.59551426 + -16.07160716 0.59689490 + -16.06760676 0.59828546 + -16.06360636 0.59968618 + -16.05960596 0.60109732 + -16.05560556 0.60251915 + -16.05160516 0.60395195 + -16.04760476 0.60539602 + -16.04360436 0.60685165 + -16.03960396 0.60831916 + -16.03560356 0.60979888 + -16.03160316 0.61129115 + -16.02760276 0.61279632 + -16.02360236 0.61431477 + -16.01960196 0.61584688 + -16.01560156 0.61739305 + -16.01160116 0.61895370 + -16.00760076 0.62052926 + -16.00360036 0.62212017 + -15.99959996 0.62372691 + -15.99559956 0.62534996 + -15.99159916 0.62698981 + -15.98759876 0.62864699 + -15.98359836 0.63032203 + -15.97959796 0.63201548 + -15.97559756 0.63372792 + -15.97159716 0.63545994 + -15.96759676 0.63721214 + -15.96359636 0.63898514 + -15.95959596 0.64077958 + -15.95559556 0.64259612 + -15.95159516 0.64443541 + -15.94759476 0.64629814 + -15.94359436 0.64818498 + -15.93959396 0.65009665 + -15.93559356 0.65203385 + -15.93159316 0.65399728 + -15.92759276 0.65598765 + -15.92359236 0.65800567 + -15.91959196 0.66005206 + -15.91559156 0.66212750 + -15.91159116 0.66423269 + -15.90759076 0.66636829 + -15.90359036 0.66853496 + -15.89958996 0.67073333 + -15.89558956 0.67296399 + -15.89158916 0.67522751 + -15.88758876 0.67752441 + -15.88358836 0.67985518 + -15.87958796 0.68222023 + -15.87558756 0.68461993 + -15.87158716 0.68705459 + -15.86758676 0.68952444 + -15.86358636 0.69202964 + -15.85958596 0.69457025 + -15.85558556 0.69714626 + -15.85158516 0.69975755 + -15.84758476 0.70240389 + -15.84358436 0.70508496 + -15.83958396 0.70780031 + -15.83558356 0.71054936 + -15.83158316 0.71333140 + -15.82758276 0.71614562 + -15.82358236 0.71899103 + -15.81958196 0.72186651 + -15.81558156 0.72477080 + -15.81158116 0.72770249 + -15.80758076 0.73066001 + -15.80358036 0.73364164 + -15.79957996 0.73664550 + -15.79557956 0.73966956 + -15.79157916 0.74271164 + -15.78757876 0.74576940 + -15.78357836 0.74884034 + -15.77957796 0.75192184 + -15.77557756 0.75501112 + -15.77157716 0.75810526 + -15.76757676 0.76120123 + -15.76357636 0.76429586 + -15.75957596 0.76738588 + -15.75557556 0.77046791 + -15.75157516 0.77353848 + -15.74757476 0.77659403 + -15.74357436 0.77963094 + -15.73957396 0.78264554 + -15.73557356 0.78563411 + -15.73157316 0.78859289 + -15.72757276 0.79151812 + -15.72357236 0.79440604 + -15.71957196 0.79725290 + -15.71557156 0.80005499 + -15.71157116 0.80280864 + -15.70757076 0.80551025 + -15.70357036 0.80815628 + -15.69956996 0.81074331 + -15.69556956 0.81326801 + -15.69156916 0.81572716 + -15.68756876 0.81811771 + -15.68356836 0.82043672 + -15.67956796 0.82268145 + -15.67556756 0.82484930 + -15.67156716 0.82693786 + -15.66756676 0.82894492 + -15.66356636 0.83086847 + -15.65956596 0.83270668 + -15.65556556 0.83445796 + -15.65156516 0.83612094 + -15.64756476 0.83769444 + -15.64356436 0.83917754 + -15.63956396 0.84056951 + -15.63556356 0.84186986 + -15.63156316 0.84307832 + -15.62756276 0.84419483 + -15.62356236 0.84521955 + -15.61956196 0.84615284 + -15.61556156 0.84699529 + -15.61156116 0.84774765 + -15.60756076 0.84841088 + -15.60356036 0.84898611 + -15.59955996 0.84947464 + -15.59555956 0.84987793 + -15.59155916 0.85019760 + -15.58755876 0.85043538 + -15.58355836 0.85059314 + -15.57955796 0.85067288 + -15.57555756 0.85067667 + -15.57155716 0.85060670 + -15.56755676 0.85046521 + -15.56355636 0.85025453 + -15.55955596 0.84997702 + -15.55555556 0.84963510 + -15.55155516 0.84923120 + -15.54755476 0.84876781 + -15.54355436 0.84824738 + -15.53955396 0.84767239 + -15.53555356 0.84704531 + -15.53155316 0.84636857 + -15.52755276 0.84564458 + -15.52355236 0.84487574 + -15.51955196 0.84406437 + -15.51555156 0.84321278 + -15.51155116 0.84232318 + -15.50755076 0.84139776 + -15.50355036 0.84043864 + -15.49954995 0.83944785 + -15.49554955 0.83842737 + -15.49154915 0.83737910 + -15.48754875 0.83630488 + -15.48354835 0.83520644 + -15.47954795 0.83408547 + -15.47554755 0.83294355 + -15.47154715 0.83178220 + -15.46754675 0.83060287 + -15.46354635 0.82940691 + -15.45954595 0.82819561 + -15.45554555 0.82697019 + -15.45154515 0.82573178 + -15.44754475 0.82448145 + -15.44354435 0.82322020 + -15.43954395 0.82194898 + -15.43554355 0.82066864 + -15.43154315 0.81938001 + -15.42754275 0.81808383 + -15.42354235 0.81678080 + -15.41954195 0.81547157 + -15.41554155 0.81415673 + -15.41154115 0.81283682 + -15.40754075 0.81151235 + -15.40354035 0.81018378 + -15.39953995 0.80885152 + -15.39553955 0.80751597 + -15.39153915 0.80617747 + -15.38753875 0.80483634 + -15.38353835 0.80349287 + -15.37953795 0.80214731 + -15.37553755 0.80079991 + -15.37153715 0.79945087 + -15.36753675 0.79810039 + -15.36353635 0.79674864 + -15.35953595 0.79539576 + -15.35553555 0.79404190 + -15.35153515 0.79268718 + -15.34753475 0.79133170 + -15.34353435 0.78997557 + -15.33953395 0.78861885 + -15.33553355 0.78726164 + -15.33153315 0.78590399 + -15.32753275 0.78454596 + -15.32353235 0.78318760 + -15.31953195 0.78182895 + -15.31553155 0.78047005 + -15.31153115 0.77911093 + -15.30753075 0.77775162 + -15.30353035 0.77639213 + -15.29952995 0.77503250 + -15.29552955 0.77367273 + -15.29152915 0.77231285 + -15.28752875 0.77095285 + -15.28352835 0.76959274 + -15.27952795 0.76823254 + -15.27552755 0.76687225 + -15.27152715 0.76551186 + -15.26752675 0.76415139 + -15.26352635 0.76279082 + -15.25952595 0.76143017 + -15.25552555 0.76006943 + -15.25152515 0.75870859 + -15.24752475 0.75734766 + -15.24352435 0.75598662 + -15.23952395 0.75462549 + -15.23552355 0.75326424 + -15.23152315 0.75190288 + -15.22752275 0.75054140 + -15.22352235 0.74917979 + -15.21952195 0.74781806 + -15.21552155 0.74645618 + -15.21152115 0.74509417 + -15.20752075 0.74373200 + -15.20352035 0.74236968 + -15.19951995 0.74100719 + -15.19551955 0.73964453 + -15.19151915 0.73828169 + -15.18751875 0.73691867 + -15.18351835 0.73555546 + -15.17951795 0.73419205 + -15.17551755 0.73282843 + -15.17151715 0.73146460 + -15.16751675 0.73010055 + -15.16351635 0.72873627 + -15.15951595 0.72737175 + -15.15551555 0.72600698 + -15.15151515 0.72464197 + -15.14751475 0.72327669 + -15.14351435 0.72191115 + -15.13951395 0.72054532 + -15.13551355 0.71917922 + -15.13151315 0.71781282 + -15.12751275 0.71644612 + -15.12351235 0.71507912 + -15.11951195 0.71371180 + -15.11551155 0.71234415 + -15.11151115 0.71097617 + -15.10751075 0.70960784 + -15.10351035 0.70823917 + -15.09950995 0.70687014 + -15.09550955 0.70550074 + -15.09150915 0.70413096 + -15.08750875 0.70276080 + -15.08350835 0.70139025 + -15.07950795 0.70001929 + -15.07550755 0.69864793 + -15.07150715 0.69727614 + -15.06750675 0.69590392 + -15.06350635 0.69453127 + -15.05950595 0.69315817 + -15.05550555 0.69178461 + -15.05150515 0.69041058 + -15.04750475 0.68903608 + -15.04350435 0.68766110 + -15.03950395 0.68628562 + -15.03550355 0.68490964 + -15.03150315 0.68353315 + -15.02750275 0.68215613 + -15.02350235 0.68077858 + -15.01950195 0.67940049 + -15.01550155 0.67802184 + -15.01150115 0.67664263 + -15.00750075 0.67526285 + -15.00350035 0.67388249 + -14.99949995 0.67250154 + -14.99549955 0.67111998 + -14.99149915 0.66973780 + -14.98749875 0.66835501 + -14.98349835 0.66697158 + -14.97949795 0.66558750 + -14.97549755 0.66420277 + -14.97149715 0.66281737 + -14.96749675 0.66143129 + -14.96349635 0.66004453 + -14.95949595 0.65865706 + -14.95549555 0.65726889 + -14.95149515 0.65587999 + -14.94749475 0.65449036 + -14.94349435 0.65309998 + -14.93949395 0.65170884 + -14.93549355 0.65031694 + -14.93149315 0.64892426 + -14.92749275 0.64753078 + -14.92349235 0.64613650 + -14.91949195 0.64474140 + -14.91549155 0.64334548 + -14.91149115 0.64194871 + -14.90749075 0.64055110 + -14.90349035 0.63915261 + -14.89948995 0.63775325 + -14.89548955 0.63635299 + -14.89148915 0.63495184 + -14.88748875 0.63354976 + -14.88348835 0.63214675 + -14.87948795 0.63074280 + -14.87548755 0.62933790 + -14.87148715 0.62793202 + -14.86748675 0.62652516 + -14.86348635 0.62511730 + -14.85948595 0.62370843 + -14.85548555 0.62229853 + -14.85148515 0.62088760 + -14.84748475 0.61947560 + -14.84348435 0.61806254 + -14.83948395 0.61664840 + -14.83548355 0.61523316 + -14.83148315 0.61381680 + -14.82748275 0.61239932 + -14.82348235 0.61098069 + -14.81948195 0.60956090 + -14.81548155 0.60813994 + -14.81148115 0.60671779 + -14.80748075 0.60529443 + -14.80348035 0.60386985 + -14.79947995 0.60244404 + -14.79547955 0.60101697 + -14.79147915 0.59958862 + -14.78747875 0.59815899 + -14.78347835 0.59672806 + -14.77947795 0.59529580 + -14.77547755 0.59386220 + -14.77147715 0.59242725 + -14.76747675 0.59099092 + -14.76347635 0.58955320 + -14.75947595 0.58811407 + -14.75547555 0.58667351 + -14.75147515 0.58523150 + -14.74747475 0.58378803 + -14.74347435 0.58234307 + -14.73947395 0.58089661 + -14.73547355 0.57944863 + -14.73147315 0.57799911 + -14.72747275 0.57654802 + -14.72347235 0.57509535 + -14.71947195 0.57364107 + -14.71547155 0.57218518 + -14.71147115 0.57072764 + -14.70747075 0.56926843 + -14.70347035 0.56780754 + -14.69946995 0.56634494 + -14.69546955 0.56488061 + -14.69146915 0.56341453 + -14.68746875 0.56194668 + -14.68346835 0.56047703 + -14.67946795 0.55900556 + -14.67546755 0.55753225 + -14.67146715 0.55605707 + -14.66746675 0.55458000 + -14.66346635 0.55310102 + -14.65946595 0.55162010 + -14.65546555 0.55013721 + -14.65146515 0.54865234 + -14.64746475 0.54716546 + -14.64346435 0.54567653 + -14.63946395 0.54418554 + -14.63546355 0.54269246 + -14.63146315 0.54119726 + -14.62746275 0.53969992 + -14.62346235 0.53820040 + -14.61946195 0.53669868 + -14.61546155 0.53519473 + -14.61146115 0.53368853 + -14.60746075 0.53218004 + -14.60346035 0.53066923 + -14.59945995 0.52915607 + -14.59545955 0.52764054 + -14.59145915 0.52612260 + -14.58745875 0.52460223 + -14.58345835 0.52307938 + -14.57945795 0.52155403 + -14.57545755 0.52002615 + -14.57145715 0.51849569 + -14.56745675 0.51696264 + -14.56345635 0.51542695 + -14.55945595 0.51388859 + -14.55545555 0.51234753 + -14.55145515 0.51080372 + -14.54745475 0.50925714 + -14.54345435 0.50770774 + -14.53945395 0.50615549 + -14.53545355 0.50460035 + -14.53145315 0.50304228 + -14.52745275 0.50148125 + -14.52345235 0.49991721 + -14.51945195 0.49835012 + -14.51545155 0.49677994 + -14.51145115 0.49520663 + -14.50745075 0.49363015 + -14.50345035 0.49205045 + -14.49944994 0.49046750 + -14.49544954 0.48888123 + -14.49144914 0.48729162 + -14.48744874 0.48569861 + -14.48344834 0.48410215 + -14.47944794 0.48250220 + -14.47544754 0.48089871 + -14.47144714 0.47929163 + -14.46744674 0.47768091 + -14.46344634 0.47606650 + -14.45944594 0.47444834 + -14.45544554 0.47282638 + -14.45144514 0.47120057 + -14.44744474 0.46957085 + -14.44344434 0.46793716 + -14.43944394 0.46629945 + -14.43544354 0.46465766 + -14.43144314 0.46301173 + -14.42744274 0.46136160 + -14.42344234 0.45970720 + -14.41944194 0.45804847 + -14.41544154 0.45638535 + -14.41144114 0.45471777 + -14.40744074 0.45304566 + -14.40344034 0.45136896 + -14.39943994 0.44968759 + -14.39543954 0.44800148 + -14.39143914 0.44631056 + -14.38743874 0.44461476 + -14.38343834 0.44291399 + -14.37943794 0.44120817 + -14.37543754 0.43949724 + -14.37143714 0.43778110 + -14.36743674 0.43605967 + -14.36343634 0.43433287 + -14.35943594 0.43260060 + -14.35543554 0.43086278 + -14.35143514 0.42911932 + -14.34743474 0.42737012 + -14.34343434 0.42561507 + -14.33943394 0.42385410 + -14.33543354 0.42208708 + -14.33143314 0.42031393 + -14.32743274 0.41853452 + -14.32343234 0.41674875 + -14.31943194 0.41495651 + -14.31543154 0.41315768 + -14.31143114 0.41135214 + -14.30743074 0.40953977 + -14.30343034 0.40772043 + -14.29942994 0.40589401 + -14.29542954 0.40406037 + -14.29142914 0.40221937 + -14.28742874 0.40037086 + -14.28342834 0.39851471 + -14.27942794 0.39665076 + -14.27542754 0.39477885 + -14.27142714 0.39289883 + -14.26742674 0.39101053 + -14.26342634 0.38911378 + -14.25942594 0.38720840 + -14.25542554 0.38529422 + -14.25142514 0.38337104 + -14.24742474 0.38143866 + -14.24342434 0.37949690 + -14.23942394 0.37754554 + -14.23542354 0.37558436 + -14.23142314 0.37361316 + -14.22742274 0.37163168 + -14.22342234 0.36963972 + -14.21942194 0.36763700 + -14.21542154 0.36562329 + -14.21142114 0.36359833 + -14.20742074 0.36156184 + -14.20342034 0.35951354 + -14.19941994 0.35745315 + -14.19541954 0.35538037 + -14.19141914 0.35329489 + -14.18741874 0.35119641 + -14.18341834 0.34908459 + -14.17941794 0.34695910 + -14.17541754 0.34481960 + -14.17141714 0.34266574 + -14.16741674 0.34049715 + -14.16341634 0.33831347 + -14.15941594 0.33611431 + -14.15541554 0.33389929 + -14.15141514 0.33166802 + -14.14741474 0.32942009 + -14.14341434 0.32715510 + -14.13941394 0.32487263 + -14.13541354 0.32257227 + -14.13141314 0.32025360 + -14.12741274 0.31791620 + -14.12341234 0.31555965 + -14.11941194 0.31318352 + -14.11541154 0.31078739 + -14.11141114 0.30837086 + -14.10741074 0.30593352 + -14.10341034 0.30347498 + -14.09940994 0.30099484 + -14.09540954 0.29849274 + -14.09140914 0.29596833 + -14.08740874 0.29342127 + -14.08340834 0.29085127 + -14.07940794 0.28825803 + -14.07540754 0.28564131 + -14.07140714 0.28300091 + -14.06740674 0.28033663 + -14.06340634 0.27764835 + -14.05940594 0.27493599 + -14.05540554 0.27219952 + -14.05140514 0.26943895 + -14.04740474 0.26665437 + -14.04340434 0.26384594 + -14.03940394 0.26101386 + -14.03540354 0.25815845 + -14.03140314 0.25528006 + -14.02740274 0.25237915 + -14.02340234 0.24945629 + -14.01940194 0.24651209 + -14.01540154 0.24354729 + -14.01140114 0.24056274 + -14.00740074 0.23755937 + -14.00340034 0.23453822 + -13.99939994 0.23150045 + -13.99539954 0.22844734 + -13.99139914 0.22538026 + -13.98739874 0.22230072 + -13.98339834 0.21921034 + -13.97939794 0.21611086 + -13.97539754 0.21300413 + -13.97139714 0.20989214 + -13.96739674 0.20677697 + -13.96339634 0.20366085 + -13.95939594 0.20054608 + -13.95539554 0.19743512 + -13.95139514 0.19433051 + -13.94739474 0.19123489 + -13.94339434 0.18815101 + -13.93939394 0.18508171 + -13.93539354 0.18202992 + -13.93139314 0.17899864 + -13.92739274 0.17599097 + -13.92339234 0.17301003 + -13.91939194 0.17005905 + -13.91539154 0.16714126 + -13.91139114 0.16425997 + -13.90739074 0.16141848 + -13.90339034 0.15862014 + -13.89938994 0.15586829 + -13.89538954 0.15316628 + -13.89138914 0.15051744 + -13.88738874 0.14792507 + -13.88338834 0.14539245 + -13.87938794 0.14292280 + -13.87538754 0.14051928 + -13.87138714 0.13818501 + -13.86738674 0.13592301 + -13.86338634 0.13373619 + -13.85938594 0.13162741 + -13.85538554 0.12959938 + -13.85138514 0.12765472 + -13.84738474 0.12579590 + -13.84338434 0.12402527 + -13.83938394 0.12234504 + -13.83538354 0.12075727 + -13.83138314 0.11926384 + -13.82738274 0.11786651 + -13.82338234 0.11656684 + -13.81938194 0.11536624 + -13.81538154 0.11426594 + -13.81138114 0.11326699 + -13.80738074 0.11237026 + -13.80338034 0.11157646 + -13.79937994 0.11088608 + -13.79537954 0.11029948 + -13.79137914 0.10981681 + -13.78737874 0.10943805 + -13.78337834 0.10916300 + -13.77937794 0.10899131 + -13.77537754 0.10892244 + -13.77137714 0.10895569 + -13.76737674 0.10909021 + -13.76337634 0.10932499 + -13.75937594 0.10965889 + -13.75537554 0.11009060 + -13.75137514 0.11061870 + -13.74737474 0.11124162 + -13.74337434 0.11195770 + -13.73937394 0.11276514 + -13.73537354 0.11366205 + -13.73137314 0.11464643 + -13.72737274 0.11571621 + -13.72337234 0.11686923 + -13.71937194 0.11810325 + -13.71537154 0.11941597 + -13.71137114 0.12080504 + -13.70737074 0.12226806 + -13.70337034 0.12380257 + -13.69936994 0.12540611 + -13.69536954 0.12707616 + -13.69136914 0.12881022 + -13.68736874 0.13060575 + -13.68336834 0.13246022 + -13.67936794 0.13437109 + -13.67536754 0.13633585 + -13.67136714 0.13835199 + -13.66736674 0.14041703 + -13.66336634 0.14252850 + -13.65936594 0.14468400 + -13.65536554 0.14688113 + -13.65136514 0.14911754 + -13.64736474 0.15139094 + -13.64336434 0.15369909 + -13.63936394 0.15603978 + -13.63536354 0.15841088 + -13.63136314 0.16081030 + -13.62736274 0.16323605 + -13.62336234 0.16568615 + -13.61936194 0.16815873 + -13.61536154 0.17065196 + -13.61136114 0.17316410 + -13.60736074 0.17569346 + -13.60336034 0.17823844 + -13.59935994 0.18079749 + -13.59535954 0.18336915 + -13.59135914 0.18595201 + -13.58735874 0.18854476 + -13.58335834 0.19114613 + -13.57935794 0.19375493 + -13.57535754 0.19637004 + -13.57135714 0.19899041 + -13.56735674 0.20161505 + -13.56335634 0.20424303 + -13.55935594 0.20687350 + -13.55535554 0.20950564 + -13.55135514 0.21213872 + -13.54735474 0.21477205 + -13.54335434 0.21740501 + -13.53935394 0.22003701 + -13.53535354 0.22266753 + -13.53135314 0.22529610 + -13.52735274 0.22792229 + -13.52335234 0.23054571 + -13.51935194 0.23316603 + -13.51535154 0.23578293 + -13.51135114 0.23839618 + -13.50735074 0.24100554 + -13.50335034 0.24361081 + -13.49934993 0.24621186 + -13.49534953 0.24880856 + -13.49134913 0.25140080 + -13.48734873 0.25398853 + -13.48334833 0.25657171 + -13.47934793 0.25915032 + -13.47534753 0.26172436 + -13.47134713 0.26429387 + -13.46734673 0.26685889 + -13.46334633 0.26941950 + -13.45934593 0.27197578 + -13.45534553 0.27452783 + -13.45134513 0.27707577 + -13.44734473 0.27961974 + -13.44334433 0.28215988 + -13.43934393 0.28469634 + -13.43534353 0.28722931 + -13.43134313 0.28975896 + -13.42734273 0.29228550 + -13.42334233 0.29480913 + -13.41934193 0.29733007 + -13.41534153 0.29984855 + -13.41134113 0.30236480 + -13.40734073 0.30487908 + -13.40334033 0.30739164 + -13.39933993 0.30990277 + -13.39533953 0.31241274 + -13.39133913 0.31492185 + -13.38733873 0.31743041 + -13.38333833 0.31993874 + -13.37933793 0.32244718 + -13.37533753 0.32495609 + -13.37133713 0.32746582 + -13.36733673 0.32997677 + -13.36333633 0.33248934 + -13.35933593 0.33500397 + -13.35533553 0.33752110 + -13.35133513 0.34004121 + -13.34733473 0.34256481 + -13.34333433 0.34509242 + -13.33933393 0.34762463 + -13.33533353 0.35016202 + -13.33133313 0.35270524 + -13.32733273 0.35525499 + -13.32333233 0.35781197 + -13.31933193 0.36037698 + -13.31533153 0.36295085 + -13.31133113 0.36553447 + -13.30733073 0.36812879 + -13.30333033 0.37073483 + -13.29932993 0.37335370 + -13.29532953 0.37598655 + -13.29132913 0.37863466 + -13.28732873 0.38129936 + -13.28332833 0.38398209 + -13.27932793 0.38668440 + -13.27532753 0.38940795 + -13.27132713 0.39215448 + -13.26732673 0.39492590 + -13.26332633 0.39772422 + -13.25932593 0.40055158 + -13.25532553 0.40341028 + -13.25132513 0.40630276 + -13.24732473 0.40923161 + -13.24332433 0.41219959 + -13.23932393 0.41520963 + -13.23532353 0.41826483 + -13.23132313 0.42136846 + -13.22732273 0.42452400 + -13.22332233 0.42773509 + -13.21932193 0.43100560 + -13.21532153 0.43433957 + -13.21132113 0.43774127 + -13.20732073 0.44121514 + -13.20332033 0.44476586 + -13.19931993 0.44839831 + -13.19531953 0.45211756 + -13.19131913 0.45592892 + -13.18731873 0.45983787 + -13.18331833 0.46385012 + -13.17931793 0.46797156 + -13.17531753 0.47220827 + -13.17131713 0.47656652 + -13.16731673 0.48105275 + -13.16331633 0.48567356 + -13.15931593 0.49043570 + -13.15531553 0.49534606 + -13.15131513 0.50041164 + -13.14731473 0.50563956 + -13.14331433 0.51103700 + -13.13931393 0.51661122 + -13.13531353 0.52236951 + -13.13131313 0.52831917 + -13.12731273 0.53446749 + -13.12331233 0.54082171 + -13.11931193 0.54738899 + -13.11531153 0.55417641 + -13.11131113 0.56119088 + -13.10731073 0.56843913 + -13.10331033 0.57592770 + -13.09930993 0.58366286 + -13.09530953 0.59165057 + -13.09130913 0.59989646 + -13.08730873 0.60840580 + -13.08330833 0.61718339 + -13.07930793 0.62623360 + -13.07530753 0.63556025 + -13.07130713 0.64516660 + -13.06730673 0.65505532 + -13.06330633 0.66522838 + -13.05930593 0.67568707 + -13.05530553 0.68643192 + -13.05130513 0.69746265 + -13.04730473 0.70877815 + -13.04330433 0.72037640 + -13.03930393 0.73225445 + -13.03530353 0.74440840 + -13.03130313 0.75683331 + -13.02730273 0.76952321 + -13.02330233 0.78247105 + -13.01930193 0.79566867 + -13.01530153 0.80910677 + -13.01130113 0.82277492 + -13.00730073 0.83666150 + -13.00330033 0.85075372 + -12.99929993 0.86503760 + -12.99529953 0.87949797 + -12.99129913 0.89411850 + -12.98729873 0.90888168 + -12.98329833 0.92376885 + -12.97929793 0.93876024 + -12.97529753 0.95383498 + -12.97129713 0.96897116 + -12.96729673 0.98414587 + -12.96329633 0.99933526 + -12.95929593 1.01451459 + -12.95529553 1.02965833 + -12.95129513 1.04474019 + -12.94729473 1.05973325 + -12.94329433 1.07461003 + -12.93929393 1.08934258 + -12.93529353 1.10390263 + -12.93129313 1.11826162 + -12.92729273 1.13239088 + -12.92329233 1.14626175 + -12.91929193 1.15984566 + -12.91529153 1.17311427 + -12.91129113 1.18603962 + -12.90729073 1.19859426 + -12.90329033 1.21075133 + -12.89928993 1.22248476 + -12.89528953 1.23376934 + -12.89128913 1.24458089 + -12.88728873 1.25489634 + -12.88328833 1.26469390 + -12.87928793 1.27395311 + -12.87528753 1.28265499 + -12.87128713 1.29078216 + -12.86728673 1.29831885 + -12.86328633 1.30525107 + -12.85928593 1.31156663 + -12.85528553 1.31725524 + -12.85128513 1.32230853 + -12.84728473 1.32672009 + -12.84328433 1.33048554 + -12.83928393 1.33360250 + -12.83528353 1.33607064 + -12.83128313 1.33789164 + -12.82728273 1.33906917 + -12.82328233 1.33960889 + -12.81928193 1.33951839 + -12.81528153 1.33880711 + -12.81128113 1.33748635 + -12.80728073 1.33556910 + -12.80328033 1.33307003 + -12.79927993 1.33000536 + -12.79527953 1.32639278 + -12.79127913 1.32225133 + -12.78727873 1.31760126 + -12.78327833 1.31246397 + -12.77927793 1.30686184 + -12.77527753 1.30081811 + -12.77127713 1.29435676 + -12.76727673 1.28750236 + -12.76327633 1.28027997 + -12.75927593 1.27271499 + -12.75527553 1.26483302 + -12.75127513 1.25665977 + -12.74727473 1.24822089 + -12.74327433 1.23954191 + -12.73927393 1.23064807 + -12.73527353 1.22156425 + -12.73127313 1.21231485 + -12.72727273 1.20292373 + -12.72327233 1.19341408 + -12.71927193 1.18380836 + -12.71527153 1.17412825 + -12.71127113 1.16439455 + -12.70727073 1.15462716 + -12.70327033 1.14484502 + -12.69926993 1.13506607 + -12.69526953 1.12530722 + -12.69126913 1.11558434 + -12.68726873 1.10591225 + -12.68326833 1.09630467 + -12.67926793 1.08677430 + -12.67526753 1.07733275 + -12.67126713 1.06799058 + -12.66726673 1.05875734 + -12.66326633 1.04964157 + -12.65926593 1.04065083 + -12.65526553 1.03179176 + -12.65126513 1.02307005 + -12.64726473 1.01449056 + -12.64326433 1.00605731 + -12.63926393 0.99777353 + -12.63526353 0.98964172 + -12.63126313 0.98166370 + -12.62726273 0.97384062 + -12.62326233 0.96617304 + -12.61926193 0.95866098 + -12.61526153 0.95130394 + -12.61126113 0.94410097 + -12.60726073 0.93705070 + -12.60326033 0.93015139 + -12.59925993 0.92340097 + -12.59525953 0.91679707 + -12.59125913 0.91033709 + -12.58725873 0.90401818 + -12.58325833 0.89783734 + -12.57925793 0.89179140 + -12.57525753 0.88587707 + -12.57125713 0.88009097 + -12.56725673 0.87442966 + -12.56325633 0.86888963 + -12.55925593 0.86346738 + -12.55525553 0.85815937 + -12.55125513 0.85296210 + -12.54725473 0.84787208 + -12.54325433 0.84288587 + -12.53925393 0.83800006 + -12.53525353 0.83321134 + -12.53125313 0.82851644 + -12.52725273 0.82391218 + -12.52325233 0.81939545 + -12.51925193 0.81496325 + -12.51525153 0.81061265 + -12.51125113 0.80634082 + -12.50725073 0.80214504 + -12.50325033 0.79802267 + -12.49924992 0.79397117 + -12.49524952 0.78998810 + -12.49124912 0.78607111 + -12.48724872 0.78221795 + -12.48324832 0.77842645 + -12.47924792 0.77469455 + -12.47524752 0.77102027 + -12.47124712 0.76740170 + -12.46724672 0.76383703 + -12.46324632 0.76032452 + -12.45924592 0.75686251 + -12.45524552 0.75344941 + -12.45124512 0.75008371 + -12.44724472 0.74676396 + -12.44324432 0.74348877 + -12.43924392 0.74025682 + -12.43524352 0.73706684 + -12.43124312 0.73391762 + -12.42724272 0.73080801 + -12.42324232 0.72773690 + -12.41924192 0.72470323 + -12.41524152 0.72170598 + -12.41124112 0.71874419 + -12.40724072 0.71581693 + -12.40324032 0.71292329 + -12.39923992 0.71006244 + -12.39523952 0.70723354 + -12.39123912 0.70443581 + -12.38723872 0.70166850 + -12.38323832 0.69893087 + -12.37923792 0.69622223 + -12.37523752 0.69354190 + -12.37123712 0.69088923 + -12.36723672 0.68826361 + -12.36323632 0.68566443 + -12.35923592 0.68309110 + -12.35523552 0.68054308 + -12.35123512 0.67801982 + -12.34723472 0.67552079 + -12.34323432 0.67304551 + -12.33923392 0.67059346 + -12.33523352 0.66816419 + -12.33123312 0.66575725 + -12.32723272 0.66337218 + -12.32323232 0.66100855 + -12.31923192 0.65866597 + -12.31523152 0.65634402 + -12.31123112 0.65404231 + -12.30723072 0.65176046 + -12.30323032 0.64949811 + -12.29922992 0.64725491 + -12.29522952 0.64503050 + -12.29122912 0.64282454 + -12.28722872 0.64063672 + -12.28322832 0.63846671 + -12.27922792 0.63631421 + -12.27522752 0.63417891 + -12.27122712 0.63206052 + -12.26722672 0.62995876 + -12.26322632 0.62787334 + -12.25922592 0.62580401 + -12.25522552 0.62375048 + -12.25122512 0.62171252 + -12.24722472 0.61968986 + -12.24322432 0.61768226 + -12.23922392 0.61568949 + -12.23522352 0.61371131 + -12.23122312 0.61174750 + -12.22722272 0.60979783 + -12.22322232 0.60786209 + -12.21922192 0.60594007 + -12.21522152 0.60403157 + -12.21122112 0.60213637 + -12.20722072 0.60025429 + -12.20322032 0.59838513 + -12.19921992 0.59652871 + -12.19521952 0.59468484 + -12.19121912 0.59285335 + -12.18721872 0.59103405 + -12.18321832 0.58922678 + -12.17921792 0.58743136 + -12.17521752 0.58564764 + -12.17121712 0.58387545 + -12.16721672 0.58211464 + -12.16321632 0.58036505 + -12.15921592 0.57862654 + -12.15521552 0.57689894 + -12.15121512 0.57518213 + -12.14721472 0.57347595 + -12.14321432 0.57178027 + -12.13921392 0.57009496 + -12.13521352 0.56841987 + -12.13121312 0.56675489 + -12.12721272 0.56509987 + -12.12321232 0.56345470 + -12.11921192 0.56181926 + -12.11521152 0.56019341 + -12.11121112 0.55857705 + -12.10721072 0.55697006 + -12.10321032 0.55537233 + -12.09920992 0.55378373 + -12.09520952 0.55220417 + -12.09120912 0.55063353 + -12.08720872 0.54907171 + -12.08320832 0.54751861 + -12.07920792 0.54597412 + -12.07520752 0.54443815 + -12.07120712 0.54291059 + -12.06720672 0.54139135 + -12.06320632 0.53988034 + -12.05920592 0.53837746 + -12.05520552 0.53688262 + -12.05120512 0.53539573 + -12.04720472 0.53391671 + -12.04320432 0.53244546 + -12.03920392 0.53098190 + -12.03520352 0.52952595 + -12.03120312 0.52807752 + -12.02720272 0.52663654 + -12.02320232 0.52520292 + -12.01920192 0.52377659 + -12.01520152 0.52235747 + -12.01120112 0.52094549 + -12.00720072 0.51954056 + -12.00320032 0.51814262 + -11.99919992 0.51675160 + -11.99519952 0.51536741 + -11.99119912 0.51399001 + -11.98719872 0.51261930 + -11.98319832 0.51125524 + -11.97919792 0.50989775 + -11.97519752 0.50854676 + -11.97119712 0.50720221 + -11.96719672 0.50586405 + -11.96319632 0.50453219 + -11.95919592 0.50320660 + -11.95519552 0.50188720 + -11.95119512 0.50057393 + -11.94719472 0.49926673 + -11.94319432 0.49796556 + -11.93919392 0.49667035 + -11.93519352 0.49538104 + -11.93119312 0.49409758 + -11.92719272 0.49281991 + -11.92319232 0.49154799 + -11.91919192 0.49028176 + -11.91519152 0.48902116 + -11.91119112 0.48776615 + -11.90719072 0.48651667 + -11.90319032 0.48527268 + -11.89918992 0.48403413 + -11.89518952 0.48280096 + -11.89118912 0.48157313 + -11.88718872 0.48035059 + -11.88318832 0.47913330 + -11.87918792 0.47792121 + -11.87518752 0.47671428 + -11.87118712 0.47551245 + -11.86718672 0.47431570 + -11.86318632 0.47312396 + -11.85918592 0.47193721 + -11.85518552 0.47075539 + -11.85118512 0.46957848 + -11.84718472 0.46840641 + -11.84318432 0.46723917 + -11.83918392 0.46607669 + -11.83518352 0.46491896 + -11.83118312 0.46376592 + -11.82718272 0.46261754 + -11.82318232 0.46147378 + -11.81918192 0.46033460 + -11.81518152 0.45919997 + -11.81118112 0.45806985 + -11.80718072 0.45694421 + -11.80318032 0.45582300 + -11.79917992 0.45470619 + -11.79517952 0.45359376 + -11.79117912 0.45248565 + -11.78717872 0.45138185 + -11.78317832 0.45028232 + -11.77917792 0.44918702 + -11.77517752 0.44809592 + -11.77117712 0.44700899 + -11.76717672 0.44592620 + -11.76317632 0.44484752 + -11.75917592 0.44377291 + -11.75517552 0.44270235 + -11.75117512 0.44163581 + -11.74717472 0.44057325 + -11.74317432 0.43951464 + -11.73917392 0.43845996 + -11.73517352 0.43740918 + -11.73117312 0.43636227 + -11.72717272 0.43531919 + -11.72317232 0.43427994 + -11.71917192 0.43324446 + -11.71517152 0.43221275 + -11.71117112 0.43118477 + -11.70717072 0.43016049 + -11.70317032 0.42913989 + -11.69916992 0.42812295 + -11.69516952 0.42710963 + -11.69116912 0.42609991 + -11.68716872 0.42509377 + -11.68316832 0.42409118 + -11.67916792 0.42309212 + -11.67516752 0.42209657 + -11.67116712 0.42110449 + -11.66716672 0.42011587 + -11.66316632 0.41913068 + -11.65916592 0.41814890 + -11.65516552 0.41717050 + -11.65116512 0.41619548 + -11.64716472 0.41522379 + -11.64316432 0.41425542 + -11.63916392 0.41329035 + -11.63516352 0.41232855 + -11.63116312 0.41137001 + -11.62716272 0.41041470 + -11.62316232 0.40946260 + -11.61916192 0.40851369 + -11.61516152 0.40756795 + -11.61116112 0.40662537 + -11.60716072 0.40568591 + -11.60316032 0.40474956 + -11.59915992 0.40381630 + -11.59515952 0.40288611 + -11.59115912 0.40195898 + -11.58715872 0.40103487 + -11.58315832 0.40011378 + -11.57915792 0.39919568 + -11.57515752 0.39828055 + -11.57115712 0.39736839 + -11.56715672 0.39645916 + -11.56315632 0.39555285 + -11.55915592 0.39464945 + -11.55515552 0.39374893 + -11.55115512 0.39285128 + -11.54715472 0.39195648 + -11.54315432 0.39106451 + -11.53915392 0.39017536 + -11.53515352 0.38928902 + -11.53115312 0.38840545 + -11.52715272 0.38752465 + -11.52315232 0.38664661 + -11.51915192 0.38577129 + -11.51515152 0.38489870 + -11.51115112 0.38402881 + -11.50715072 0.38316161 + -11.50315032 0.38229707 + -11.49914991 0.38143520 + -11.49514951 0.38057596 + -11.49114911 0.37971935 + -11.48714871 0.37886535 + -11.48314831 0.37801394 + -11.47914791 0.37716512 + -11.47514751 0.37631886 + -11.47114711 0.37547515 + -11.46714671 0.37463398 + -11.46314631 0.37379534 + -11.45914591 0.37295920 + -11.45514551 0.37212556 + -11.45114511 0.37129440 + -11.44714471 0.37046570 + -11.44314431 0.36963946 + -11.43914391 0.36881567 + -11.43514351 0.36799430 + -11.43114311 0.36717534 + -11.42714271 0.36635879 + -11.42314231 0.36554463 + -11.41914191 0.36473284 + -11.41514151 0.36392342 + -11.41114111 0.36311634 + -11.40714071 0.36231161 + -11.40314031 0.36150920 + -11.39913991 0.36070911 + -11.39513951 0.35991132 + -11.39113911 0.35911582 + -11.38713871 0.35832259 + -11.38313831 0.35753163 + -11.37913791 0.35674293 + -11.37513751 0.35595647 + -11.37113711 0.35517223 + -11.36713671 0.35439022 + -11.36313631 0.35361041 + -11.35913591 0.35283280 + -11.35513551 0.35205738 + -11.35113511 0.35128413 + -11.34713471 0.35051304 + -11.34313431 0.34974410 + -11.33913391 0.34897731 + -11.33513351 0.34821264 + -11.33113311 0.34745009 + -11.32713271 0.34668966 + -11.32313231 0.34593132 + -11.31913191 0.34517507 + -11.31513151 0.34442090 + -11.31113111 0.34366880 + -11.30713071 0.34291875 + -11.30313031 0.34217076 + -11.29912991 0.34142480 + -11.29512951 0.34068088 + -11.29112911 0.33993897 + -11.28712871 0.33919907 + -11.28312831 0.33846117 + -11.27912791 0.33772527 + -11.27512751 0.33699134 + -11.27112711 0.33625939 + -11.26712671 0.33552940 + -11.26312631 0.33480136 + -11.25912591 0.33407526 + -11.25512551 0.33335110 + -11.25112511 0.33262886 + -11.24712471 0.33190854 + -11.24312431 0.33119013 + -11.23912391 0.33047361 + -11.23512351 0.32975898 + -11.23112311 0.32904624 + -11.22712271 0.32833536 + -11.22312231 0.32762634 + -11.21912191 0.32691918 + -11.21512151 0.32621387 + -11.21112111 0.32551039 + -11.20712071 0.32480874 + -11.20312031 0.32410891 + -11.19911991 0.32341089 + -11.19511951 0.32271468 + -11.19111911 0.32202027 + -11.18711871 0.32132765 + -11.18311831 0.32063680 + -11.17911791 0.31994773 + -11.17511751 0.31926043 + -11.17111711 0.31857489 + -11.16711671 0.31789110 + -11.16311631 0.31720905 + -11.15911591 0.31652874 + -11.15511551 0.31585015 + -11.15111511 0.31517329 + -11.14711471 0.31449814 + -11.14311431 0.31382470 + -11.13911391 0.31315295 + -11.13511351 0.31248290 + -11.13111311 0.31181452 + -11.12711271 0.31114783 + -11.12311231 0.31048280 + -11.11911191 0.30981944 + -11.11511151 0.30915772 + -11.11111111 0.30849766 + -11.10711071 0.30783923 + -11.10311031 0.30718243 + -11.09910991 0.30652726 + -11.09510951 0.30587371 + -11.09110911 0.30522177 + -11.08710871 0.30457144 + -11.08310831 0.30392270 + -11.07910791 0.30327555 + -11.07510751 0.30262999 + -11.07110711 0.30198601 + -11.06710671 0.30134361 + -11.06310631 0.30070277 + -11.05910591 0.30006349 + -11.05510551 0.29942577 + -11.05110511 0.29878959 + -11.04710471 0.29815496 + -11.04310431 0.29752187 + -11.03910391 0.29689031 + -11.03510351 0.29626028 + -11.03110311 0.29563176 + -11.02710271 0.29500476 + -11.02310231 0.29437927 + -11.01910191 0.29375527 + -11.01510151 0.29313278 + -11.01110111 0.29251177 + -11.00710071 0.29189224 + -11.00310031 0.29127419 + -10.99909991 0.29065762 + -10.99509951 0.29004250 + -10.99109911 0.28942885 + -10.98709871 0.28881664 + -10.98309831 0.28820588 + -10.97909791 0.28759657 + -10.97509751 0.28698868 + -10.97109711 0.28638223 + -10.96709671 0.28577720 + -10.96309631 0.28517359 + -10.95909591 0.28457139 + -10.95509551 0.28397061 + -10.95109511 0.28337123 + -10.94709471 0.28277324 + -10.94309431 0.28217666 + -10.93909391 0.28158147 + -10.93509351 0.28098767 + -10.93109311 0.28039526 + -10.92709271 0.27980423 + -10.92309231 0.27921459 + -10.91909191 0.27862632 + -10.91509151 0.27803943 + -10.91109111 0.27745393 + -10.90709071 0.27686980 + -10.90309031 0.27628705 + -10.89908991 0.27570567 + -10.89508951 0.27512568 + -10.89108911 0.27454708 + -10.88708871 0.27396986 + -10.88308831 0.27339404 + -10.87908791 0.27281963 + -10.87508751 0.27224663 + -10.87108711 0.27167505 + -10.86708671 0.27110492 + -10.86308631 0.27053624 + -10.85908591 0.26996905 + -10.85508551 0.26940337 + -10.85108511 0.26883924 + -10.84708471 0.26827668 + -10.84308431 0.26771575 + -10.83908391 0.26715649 + -10.83508351 0.26659897 + -10.83108311 0.26604325 + -10.82708271 0.26548941 + -10.82308231 0.26493755 + -10.81908191 0.26438776 + -10.81508151 0.26384016 + -10.81108111 0.26329490 + -10.80708071 0.26275211 + -10.80308031 0.26221197 + -10.79907991 0.26167468 + -10.79507951 0.26114044 + -10.79107911 0.26060951 + -10.78707871 0.26008215 + -10.78307831 0.25955868 + -10.77907791 0.25903942 + -10.77507751 0.25852476 + -10.77107711 0.25801511 + -10.76707671 0.25751095 + -10.76307631 0.25701278 + -10.75907591 0.25652117 + -10.75507551 0.25603675 + -10.75107511 0.25556021 + -10.74707471 0.25509230 + -10.74307431 0.25463385 + -10.73907391 0.25418577 + -10.73507351 0.25374905 + -10.73107311 0.25332476 + -10.72707271 0.25291407 + -10.72307231 0.25251826 + -10.71907191 0.25213870 + -10.71507151 0.25177687 + -10.71107111 0.25143439 + -10.70707071 0.25111297 + -10.70307031 0.25081448 + -10.69906991 0.25054089 + -10.69506951 0.25029433 + -10.69106911 0.25007707 + -10.68706871 0.24989152 + -10.68306831 0.24974025 + -10.67906791 0.24962598 + -10.67506751 0.24955158 + -10.67106711 0.24952010 + -10.66706671 0.24953472 + -10.66306631 0.24959882 + -10.65906591 0.24971590 + -10.65506551 0.24988967 + -10.65106511 0.25012394 + -10.64706471 0.25042273 + -10.64306431 0.25079019 + -10.63906391 0.25123061 + -10.63506351 0.25174843 + -10.63106311 0.25234822 + -10.62706271 0.25303468 + -10.62306231 0.25381262 + -10.61906191 0.25468696 + -10.61506151 0.25566269 + -10.61106111 0.25674491 + -10.60706071 0.25793876 + -10.60306031 0.25924943 + -10.59905991 0.26068214 + -10.59505951 0.26224214 + -10.59105911 0.26393463 + -10.58705871 0.26576482 + -10.58305831 0.26773786 + -10.57905791 0.26985884 + -10.57505751 0.27213272 + -10.57105711 0.27456440 + -10.56705671 0.27715860 + -10.56305631 0.27991989 + -10.55905591 0.28285269 + -10.55505551 0.28596117 + -10.55105511 0.28924929 + -10.54705471 0.29272078 + -10.54305431 0.29637908 + -10.53905391 0.30022735 + -10.53505351 0.30426845 + -10.53105311 0.30850491 + -10.52705271 0.31293892 + -10.52305231 0.31757232 + -10.51905191 0.32240659 + -10.51505151 0.32744284 + -10.51105111 0.33268177 + -10.50705071 0.33812373 + -10.50305031 0.34376864 + -10.49904990 0.34961605 + -10.49504950 0.35566511 + -10.49104910 0.36191456 + -10.48704870 0.36836278 + -10.48304830 0.37500775 + -10.47904790 0.38184710 + -10.47504750 0.38887807 + -10.47104710 0.39609757 + -10.46704670 0.40350220 + -10.46304630 0.41108820 + -10.45904590 0.41885155 + -10.45504550 0.42678794 + -10.45104510 0.43489281 + -10.44704470 0.44316135 + -10.44304430 0.45158856 + -10.43904390 0.46016922 + -10.43504350 0.46889798 + -10.43104310 0.47776932 + -10.42704270 0.48677760 + -10.42304230 0.49591709 + -10.41904190 0.50518199 + -10.41504150 0.51456642 + -10.41104110 0.52406447 + -10.40704070 0.53367024 + -10.40304030 0.54337778 + -10.39903990 0.55318118 + -10.39503950 0.56307456 + -10.39103910 0.57305206 + -10.38703870 0.58310787 + -10.38303830 0.59323625 + -10.37903790 0.60343149 + -10.37503750 0.61368797 + -10.37103710 0.62400012 + -10.36703670 0.63436244 + -10.36303630 0.64476947 + -10.35903590 0.65521583 + -10.35503550 0.66569616 + -10.35103510 0.67620518 + -10.34703470 0.68673760 + -10.34303430 0.69728818 + -10.33903390 0.70785167 + -10.33503350 0.71842283 + -10.33103310 0.72899639 + -10.32703270 0.73956706 + -10.32303230 0.75012951 + -10.31903190 0.76067834 + -10.31503150 0.77120809 + -10.31103110 0.78171320 + -10.30703070 0.79218805 + -10.30303030 0.80262688 + -10.29902990 0.81302385 + -10.29502950 0.82337296 + -10.29102910 0.83366812 + -10.28702870 0.84390309 + -10.28302830 0.85407151 + -10.27902790 0.86416687 + -10.27502750 0.87418254 + -10.27102710 0.88411177 + -10.26702670 0.89394769 + -10.26302630 0.90368332 + -10.25902590 0.91331158 + -10.25502550 0.92282531 + -10.25102510 0.93221729 + -10.24702470 0.94148026 + -10.24302430 0.95060691 + -10.23902390 0.95958996 + -10.23502350 0.96842211 + -10.23102310 0.97709615 + -10.22702270 0.98560491 + -10.22302230 0.99394136 + -10.21902190 1.00209856 + -10.21502150 1.01006975 + -10.21102110 1.01784838 + -10.20702070 1.02542809 + -10.20302030 1.03280279 + -10.19901990 1.03996667 + -10.19501950 1.04691422 + -10.19101910 1.05364027 + -10.18701870 1.06014001 + -10.18301830 1.06640902 + -10.17901790 1.07244330 + -10.17501750 1.07823925 + -10.17101710 1.08379374 + -10.16701670 1.08910411 + -10.16301630 1.09416816 + -10.15901590 1.09898420 + -10.15501550 1.10355100 + -10.15101510 1.10786788 + -10.14701470 1.11193463 + -10.14301430 1.11575156 + -10.13901390 1.11931949 + -10.13501350 1.12263972 + -10.13101310 1.12571405 + -10.12701270 1.12854476 + -10.12301230 1.13113459 + -10.11901190 1.13348672 + -10.11501150 1.13560480 + -10.11101110 1.13749284 + -10.10701070 1.13915528 + -10.10301030 1.14059692 + -10.09900990 1.14182289 + -10.09500950 1.14283867 + -10.09100910 1.14364999 + -10.08700870 1.14426289 + -10.08300830 1.14468363 + -10.07900790 1.14491866 + -10.07500750 1.14497464 + -10.07100710 1.14485837 + -10.06700670 1.14457680 + -10.06300630 1.14413695 + -10.05900590 1.14354594 + -10.05500550 1.14281092 + -10.05100510 1.14193908 + -10.04700470 1.14093759 + -10.04300430 1.13981363 + -10.03900390 1.13857431 + -10.03500350 1.13722668 + -10.03100310 1.13577773 + -10.02700270 1.13423434 + -10.02300230 1.13260326 + -10.01900190 1.13089115 + -10.01500150 1.12910449 + -10.01100110 1.12724963 + -10.00700070 1.12533277 + -10.00300030 1.12335991 + -9.99899990 1.12133690 + -9.99499950 1.11926939 + -9.99099910 1.11716284 + -9.98699870 1.11502254 + -9.98299830 1.11285356 + -9.97899790 1.11066079 + -9.97499750 1.10844891 + -9.97099710 1.10622242 + -9.96699670 1.10398561 + -9.96299630 1.10174257 + -9.95899590 1.09949721 + -9.95499550 1.09725324 + -9.95099510 1.09501419 + -9.94699470 1.09278340 + -9.94299430 1.09056403 + -9.93899390 1.08835906 + -9.93499350 1.08617131 + -9.93099310 1.08400341 + -9.92699270 1.08185785 + -9.92299230 1.07973695 + -9.91899190 1.07764287 + -9.91499150 1.07557763 + -9.91099110 1.07354311 + -9.90699070 1.07154103 + -9.90299030 1.06957299 + -9.89898990 1.06764046 + -9.89498950 1.06574479 + -9.89098910 1.06388719 + -9.88698870 1.06206877 + -9.88298830 1.06029052 + -9.87898790 1.05855333 + -9.87498750 1.05685798 + -9.87098710 1.05520515 + -9.86698670 1.05359544 + -9.86298630 1.05202933 + -9.85898590 1.05050725 + -9.85498550 1.04902951 + -9.85098510 1.04759637 + -9.84698470 1.04620800 + -9.84298430 1.04486449 + -9.83898390 1.04356588 + -9.83498350 1.04231214 + -9.83098310 1.04110317 + -9.82698270 1.03993882 + -9.82298230 1.03881887 + -9.81898190 1.03774306 + -9.81498150 1.03671109 + -9.81098110 1.03572260 + -9.80698070 1.03477719 + -9.80298030 1.03387441 + -9.79897990 1.03301381 + -9.79497950 1.03219486 + -9.79097910 1.03141704 + -9.78697870 1.03067977 + -9.78297830 1.02998245 + -9.77897790 1.02932449 + -9.77497750 1.02870524 + -9.77097710 1.02812405 + -9.76697670 1.02758027 + -9.76297630 1.02707321 + -9.75897590 1.02660219 + -9.75497550 1.02616653 + -9.75097510 1.02576551 + -9.74697470 1.02539846 + -9.74297430 1.02506467 + -9.73897390 1.02476345 + -9.73497350 1.02449410 + -9.73097310 1.02425594 + -9.72697270 1.02404829 + -9.72297230 1.02387049 + -9.71897190 1.02372187 + -9.71497150 1.02360178 + -9.71097110 1.02350960 + -9.70697070 1.02344470 + -9.70297030 1.02340648 + -9.69896990 1.02339433 + -9.69496950 1.02340769 + -9.69096910 1.02344599 + -9.68696870 1.02350870 + -9.68296830 1.02359527 + -9.67896790 1.02370520 + -9.67496750 1.02383799 + -9.67096710 1.02399317 + -9.66696670 1.02417026 + -9.66296630 1.02436883 + -9.65896590 1.02458845 + -9.65496550 1.02482868 + -9.65096510 1.02508914 + -9.64696470 1.02536944 + -9.64296430 1.02566920 + -9.63896390 1.02598807 + -9.63496350 1.02632570 + -9.63096310 1.02668175 + -9.62696270 1.02705591 + -9.62296230 1.02744788 + -9.61896190 1.02785735 + -9.61496150 1.02828405 + -9.61096110 1.02872770 + -9.60696070 1.02918804 + -9.60296030 1.02966482 + -9.59895990 1.03015782 + -9.59495950 1.03066679 + -9.59095910 1.03119153 + -9.58695870 1.03173182 + -9.58295830 1.03228749 + -9.57895790 1.03285833 + -9.57495750 1.03344419 + -9.57095710 1.03404489 + -9.56695670 1.03466029 + -9.56295630 1.03529023 + -9.55895590 1.03593459 + -9.55495550 1.03659324 + -9.55095510 1.03726608 + -9.54695470 1.03795298 + -9.54295430 1.03865386 + -9.53895390 1.03936863 + -9.53495350 1.04009720 + -9.53095310 1.04083951 + -9.52695270 1.04159549 + -9.52295230 1.04236508 + -9.51895190 1.04314822 + -9.51495150 1.04394487 + -9.51095110 1.04475499 + -9.50695070 1.04557855 + -9.50295030 1.04641551 + -9.49894989 1.04726584 + -9.49494949 1.04812953 + -9.49094909 1.04900655 + -9.48694869 1.04989690 + -9.48294829 1.05080056 + -9.47894789 1.05171752 + -9.47494749 1.05264778 + -9.47094709 1.05359134 + -9.46694669 1.05454820 + -9.46294629 1.05551837 + -9.45894589 1.05650185 + -9.45494549 1.05749867 + -9.45094509 1.05850884 + -9.44694469 1.05953238 + -9.44294429 1.06056932 + -9.43894389 1.06161969 + -9.43494349 1.06268352 + -9.43094309 1.06376087 + -9.42694269 1.06485177 + -9.42294229 1.06595627 + -9.41894189 1.06707445 + -9.41494149 1.06820637 + -9.41094109 1.06935209 + -9.40694069 1.07051170 + -9.40294029 1.07168529 + -9.39893989 1.07287295 + -9.39493949 1.07407478 + -9.39093909 1.07529088 + -9.38693869 1.07652139 + -9.38293829 1.07776641 + -9.37893789 1.07902608 + -9.37493749 1.08030054 + -9.37093709 1.08158993 + -9.36693669 1.08289439 + -9.36293629 1.08421410 + -9.35893589 1.08554921 + -9.35493549 1.08689989 + -9.35093509 1.08826633 + -9.34693469 1.08964870 + -9.34293429 1.09104719 + -9.33893389 1.09246202 + -9.33493349 1.09389337 + -9.33093309 1.09534146 + -9.32693269 1.09680651 + -9.32293229 1.09828875 + -9.31893189 1.09978840 + -9.31493149 1.10130573 + -9.31093109 1.10284097 + -9.30693069 1.10439439 + -9.30293029 1.10596627 + -9.29892989 1.10755689 + -9.29492949 1.10916655 + -9.29092909 1.11079555 + -9.28692869 1.11244423 + -9.28292829 1.11411292 + -9.27892789 1.11580198 + -9.27492749 1.11751178 + -9.27092709 1.11924272 + -9.26692669 1.12099519 + -9.26292629 1.12276964 + -9.25892589 1.12456650 + -9.25492549 1.12638626 + -9.25092509 1.12822940 + -9.24692469 1.13009645 + -9.24292429 1.13198795 + -9.23892389 1.13390445 + -9.23492349 1.13584656 + -9.23092309 1.13781489 + -9.22692269 1.13981008 + -9.22292229 1.14183280 + -9.21892189 1.14388375 + -9.21492149 1.14596366 + -9.21092109 1.14807327 + -9.20692069 1.15021337 + -9.20292029 1.15238475 + -9.19891989 1.15458825 + -9.19491949 1.15682473 + -9.19091909 1.15909506 + -9.18691869 1.16140017 + -9.18291829 1.16374097 + -9.17891789 1.16611842 + -9.17491749 1.16853350 + -9.17091709 1.17098720 + -9.16691669 1.17348054 + -9.16291629 1.17601454 + -9.15891589 1.17859024 + -9.15491549 1.18120870 + -9.15091509 1.18387098 + -9.14691469 1.18657815 + -9.14291429 1.18933125 + -9.13891389 1.19213137 + -9.13491349 1.19497954 + -9.13091309 1.19787681 + -9.12691269 1.20082420 + -9.12291229 1.20382270 + -9.11891189 1.20687327 + -9.11491149 1.20997685 + -9.11091109 1.21313430 + -9.10691069 1.21634647 + -9.10291029 1.21961411 + -9.09890989 1.22293793 + -9.09490949 1.22631854 + -9.09090909 1.22975647 + -9.08690869 1.23325216 + -9.08290829 1.23680595 + -9.07890789 1.24041804 + -9.07490749 1.24408852 + -9.07090709 1.24781734 + -9.06690669 1.25160432 + -9.06290629 1.25544911 + -9.05890589 1.25935119 + -9.05490549 1.26330989 + -9.05090509 1.26732433 + -9.04690469 1.27139347 + -9.04290429 1.27551605 + -9.03890389 1.27969061 + -9.03490349 1.28391550 + -9.03090309 1.28818882 + -9.02690269 1.29250849 + -9.02290229 1.29687218 + -9.01890189 1.30127735 + -9.01490149 1.30572122 + -9.01090109 1.31020082 + -9.00690069 1.31471292 + -9.00290029 1.31925409 + -8.99889989 1.32382069 + -8.99489949 1.32840887 + -8.99089909 1.33301459 + -8.98689869 1.33763359 + -8.98289829 1.34226148 + -8.97889789 1.34689365 + -8.97489749 1.35152538 + -8.97089709 1.35615179 + -8.96689669 1.36076789 + -8.96289629 1.36536857 + -8.95889589 1.36994864 + -8.95489549 1.37450285 + -8.95089509 1.37902590 + -8.94689469 1.38351244 + -8.94289429 1.38795715 + -8.93889389 1.39235471 + -8.93489349 1.39669983 + -8.93089309 1.40098728 + -8.92689269 1.40521194 + -8.92289229 1.40936874 + -8.91889189 1.41345279 + -8.91489149 1.41745931 + -8.91089109 1.42138370 + -8.90689069 1.42522153 + -8.90289029 1.42896859 + -8.89888989 1.43262087 + -8.89488949 1.43617460 + -8.89088909 1.43962628 + -8.88688869 1.44297265 + -8.88288829 1.44621073 + -8.87888789 1.44933781 + -8.87488749 1.45235149 + -8.87088709 1.45524967 + -8.86688669 1.45803054 + -8.86288629 1.46069260 + -8.85888589 1.46323465 + -8.85488549 1.46565581 + -8.85088509 1.46795550 + -8.84688469 1.47013343 + -8.84288429 1.47218963 + -8.83888389 1.47412439 + -8.83488349 1.47593831 + -8.83088309 1.47763223 + -8.82688269 1.47920728 + -8.82288229 1.48066482 + -8.81888189 1.48200646 + -8.81488149 1.48323403 + -8.81088109 1.48434956 + -8.80688069 1.48535527 + -8.80288029 1.48625359 + -8.79887989 1.48704708 + -8.79487949 1.48773845 + -8.79087909 1.48833056 + -8.78687869 1.48882637 + -8.78287829 1.48922894 + -8.77887789 1.48954141 + -8.77487749 1.48976698 + -8.77087709 1.48990892 + -8.76687669 1.48997052 + -8.76287629 1.48995510 + -8.75887589 1.48986597 + -8.75487549 1.48970645 + -8.75087509 1.48947984 + -8.74687469 1.48918940 + -8.74287429 1.48883837 + -8.73887389 1.48842991 + -8.73487349 1.48796714 + -8.73087309 1.48745310 + -8.72687269 1.48689075 + -8.72287229 1.48628298 + -8.71887189 1.48563257 + -8.71487149 1.48494223 + -8.71087109 1.48421456 + -8.70687069 1.48345204 + -8.70287029 1.48265707 + -8.69886989 1.48183193 + -8.69486949 1.48097879 + -8.69086909 1.48009973 + -8.68686869 1.47919670 + -8.68286829 1.47827156 + -8.67886789 1.47732605 + -8.67486749 1.47636181 + -8.67086709 1.47538039 + -8.66686669 1.47438323 + -8.66286629 1.47337168 + -8.65886589 1.47234700 + -8.65486549 1.47131036 + -8.65086509 1.47026284 + -8.64686469 1.46920545 + -8.64286429 1.46813912 + -8.63886389 1.46706472 + -8.63486349 1.46598304 + -8.63086309 1.46489481 + -8.62686269 1.46380070 + -8.62286229 1.46270134 + -8.61886189 1.46159729 + -8.61486149 1.46048908 + -8.61086109 1.45937719 + -8.60686069 1.45826205 + -8.60286029 1.45714407 + -8.59885989 1.45602363 + -8.59485949 1.45490106 + -8.59085909 1.45377667 + -8.58685869 1.45265074 + -8.58285829 1.45152354 + -8.57885789 1.45039531 + -8.57485749 1.44926626 + -8.57085709 1.44813659 + -8.56685669 1.44700648 + -8.56285629 1.44587608 + -8.55885589 1.44474555 + -8.55485549 1.44361501 + -8.55085509 1.44248458 + -8.54685469 1.44135436 + -8.54285429 1.44022443 + -8.53885389 1.43909488 + -8.53485349 1.43796577 + -8.53085309 1.43683714 + -8.52685269 1.43570905 + -8.52285229 1.43458152 + -8.51885189 1.43345458 + -8.51485149 1.43232824 + -8.51085109 1.43120252 + -8.50685069 1.43007741 + -8.50285029 1.42895291 + -8.49884988 1.42782902 + -8.49484948 1.42670572 + -8.49084908 1.42558300 + -8.48684868 1.42446085 + -8.48284828 1.42333924 + -8.47884788 1.42221816 + -8.47484748 1.42109761 + -8.47084708 1.41997755 + -8.46684668 1.41885798 + -8.46284628 1.41773890 + -8.45884588 1.41662029 + -8.45484548 1.41550215 + -8.45084508 1.41438448 + -8.44684468 1.41326728 + -8.44284428 1.41215057 + -8.43884388 1.41103435 + -8.43484348 1.40991864 + -8.43084308 1.40880346 + -8.42684268 1.40768882 + -8.42284228 1.40657474 + -8.41884188 1.40546125 + -8.41484148 1.40434838 + -8.41084108 1.40323615 + -8.40684068 1.40212458 + -8.40284028 1.40101369 + -8.39883988 1.39990352 + -8.39483948 1.39879407 + -8.39083908 1.39768537 + -8.38683868 1.39657744 + -8.38283828 1.39547027 + -8.37883788 1.39436389 + -8.37483748 1.39325830 + -8.37083708 1.39215349 + -8.36683668 1.39104947 + -8.36283628 1.38994623 + -8.35883588 1.38884375 + -8.35483548 1.38774203 + -8.35083508 1.38664105 + -8.34683468 1.38554079 + -8.34283428 1.38444122 + -8.33883388 1.38334233 + -8.33483348 1.38224409 + -8.33083308 1.38114647 + -8.32683268 1.38004946 + -8.32283228 1.37895303 + -8.31883188 1.37785715 + -8.31483148 1.37676182 + -8.31083108 1.37566700 + -8.30683068 1.37457268 + -8.30283028 1.37347885 + -8.29882988 1.37238550 + -8.29482948 1.37129262 + -8.29082908 1.37020022 + -8.28682868 1.36910828 + -8.28282828 1.36801682 + -8.27882788 1.36692584 + -8.27482748 1.36583536 + -8.27082708 1.36474538 + -8.26682668 1.36365592 + -8.26282628 1.36256700 + -8.25882588 1.36147864 + -8.25482548 1.36039086 + -8.25082508 1.35930368 + -8.24682468 1.35821712 + -8.24282428 1.35713120 + -8.23882388 1.35604595 + -8.23482348 1.35496137 + -8.23082308 1.35387750 + -8.22682268 1.35279434 + -8.22282228 1.35171190 + -8.21882188 1.35063020 + -8.21482148 1.34954924 + -8.21082108 1.34846903 + -8.20682068 1.34738957 + -8.20282028 1.34631086 + -8.19881988 1.34523288 + -8.19481948 1.34415564 + -8.19081908 1.34307912 + -8.18681868 1.34200331 + -8.18281828 1.34092819 + -8.17881788 1.33985375 + -8.17481748 1.33877997 + -8.17081708 1.33770683 + -8.16681668 1.33663432 + -8.16281628 1.33556240 + -8.15881588 1.33449106 + -8.15481548 1.33342029 + -8.15081508 1.33235006 + -8.14681468 1.33128036 + -8.14281428 1.33021118 + -8.13881388 1.32914250 + -8.13481348 1.32807431 + -8.13081308 1.32700661 + -8.12681268 1.32593940 + -8.12281228 1.32487266 + -8.11881188 1.32380641 + -8.11481148 1.32274064 + -8.11081108 1.32167536 + -8.10681068 1.32061059 + -8.10281028 1.31954632 + -8.09880988 1.31848259 + -8.09480948 1.31741939 + -8.09080908 1.31635675 + -8.08680868 1.31529469 + -8.08280828 1.31423321 + -8.07880788 1.31317235 + -8.07480748 1.31211212 + -8.07080708 1.31105254 + -8.06680668 1.30999362 + -8.06280628 1.30893538 + -8.05880588 1.30787784 + -8.05480548 1.30682100 + -8.05080508 1.30576489 + -8.04680468 1.30470949 + -8.04280428 1.30365484 + -8.03880388 1.30260091 + -8.03480348 1.30154773 + -8.03080308 1.30049528 + -8.02680268 1.29944355 + -8.02280228 1.29839256 + -8.01880188 1.29734227 + -8.01480148 1.29629269 + -8.01080108 1.29524379 + -8.00680068 1.29419557 + -8.00280028 1.29314801 + -7.99879988 1.29210108 + -7.99479948 1.29105478 + -7.99079908 1.29000908 + -7.98679868 1.28896397 + -7.98279828 1.28791942 + -7.97879788 1.28687543 + -7.97479748 1.28583197 + -7.97079708 1.28478904 + -7.96679668 1.28374662 + -7.96279628 1.28270470 + -7.95879588 1.28166328 + -7.95479548 1.28062236 + -7.95079508 1.27958192 + -7.94679468 1.27854198 + -7.94279428 1.27750253 + -7.93879388 1.27646359 + -7.93479348 1.27542516 + -7.93079308 1.27438726 + -7.92679268 1.27334990 + -7.92279228 1.27231310 + -7.91879188 1.27127688 + -7.91479148 1.27024125 + -7.91079108 1.26920623 + -7.90679068 1.26817185 + -7.90279028 1.26713813 + -7.89878988 1.26610509 + -7.89478948 1.26507274 + -7.89078908 1.26404110 + -7.88678868 1.26301019 + -7.88278828 1.26198003 + -7.87878788 1.26095062 + -7.87478748 1.25992198 + -7.87078708 1.25889411 + -7.86678668 1.25786701 + -7.86278628 1.25684068 + -7.85878588 1.25581512 + -7.85478548 1.25479033 + -7.85078508 1.25376630 + -7.84678468 1.25274300 + -7.84278428 1.25172044 + -7.83878388 1.25069859 + -7.83478348 1.24967744 + -7.83078308 1.24865696 + -7.82678268 1.24763714 + -7.82278228 1.24661796 + -7.81878188 1.24559939 + -7.81478148 1.24458142 + -7.81078108 1.24356403 + -7.80678068 1.24254721 + -7.80278028 1.24153093 + -7.79877988 1.24051518 + -7.79477948 1.23949997 + -7.79077908 1.23848527 + -7.78677868 1.23747109 + -7.78277828 1.23645742 + -7.77877788 1.23544427 + -7.77477748 1.23443165 + -7.77077708 1.23341956 + -7.76677668 1.23240803 + -7.76277628 1.23139705 + -7.75877588 1.23038665 + -7.75477548 1.22937686 + -7.75077508 1.22836769 + -7.74677468 1.22735915 + -7.74277428 1.22635129 + -7.73877388 1.22534412 + -7.73477348 1.22433765 + -7.73077308 1.22333192 + -7.72677268 1.22232695 + -7.72277228 1.22132274 + -7.71877188 1.22031933 + -7.71477148 1.21931671 + -7.71077108 1.21831491 + -7.70677068 1.21731392 + -7.70277028 1.21631375 + -7.69876988 1.21531441 + -7.69476948 1.21431588 + -7.69076908 1.21331815 + -7.68676868 1.21232123 + -7.68276828 1.21132509 + -7.67876788 1.21032971 + -7.67476748 1.20933508 + -7.67076708 1.20834117 + -7.66676668 1.20734796 + -7.66276628 1.20635541 + -7.65876588 1.20536350 + -7.65476548 1.20437220 + -7.65076508 1.20338147 + -7.64676468 1.20239129 + -7.64276428 1.20140161 + -7.63876388 1.20041240 + -7.63476348 1.19942363 + -7.63076308 1.19843526 + -7.62676268 1.19744726 + -7.62276228 1.19645958 + -7.61876188 1.19547217 + -7.61476148 1.19448501 + -7.61076108 1.19349804 + -7.60676068 1.19251120 + -7.60276028 1.19152445 + -7.59875988 1.19053772 + -7.59475948 1.18955093 + -7.59075908 1.18856401 + -7.58675868 1.18757686 + -7.58275828 1.18658939 + -7.57875788 1.18560146 + -7.57475748 1.18461295 + -7.57075708 1.18362370 + -7.56675668 1.18263352 + -7.56275628 1.18164223 + -7.55875588 1.18064959 + -7.55475548 1.17965535 + -7.55075508 1.17865922 + -7.54675468 1.17766089 + -7.54275428 1.17665998 + -7.53875388 1.17565610 + -7.53475348 1.17464881 + -7.53075308 1.17363763 + -7.52675268 1.17262201 + -7.52275228 1.17160136 + -7.51875188 1.17057504 + -7.51475148 1.16954235 + -7.51075108 1.16850253 + -7.50675068 1.16745473 + -7.50275028 1.16639806 + -7.49874987 1.16533156 + -7.49474947 1.16425418 + -7.49074907 1.16316481 + -7.48674867 1.16206223 + -7.48274827 1.16094518 + -7.47874787 1.15981228 + -7.47474747 1.15866209 + -7.47074707 1.15749305 + -7.46674667 1.15630353 + -7.46274627 1.15509182 + -7.45874587 1.15385608 + -7.45474547 1.15259441 + -7.45074507 1.15130479 + -7.44674467 1.14998512 + -7.44274427 1.14863320 + -7.43874387 1.14724674 + -7.43474347 1.14582335 + -7.43074307 1.14436057 + -7.42674267 1.14285582 + -7.42274227 1.14130649 + -7.41874187 1.13970984 + -7.41474147 1.13806308 + -7.41074107 1.13636337 + -7.40674067 1.13460778 + -7.40274027 1.13279336 + -7.39873987 1.13091710 + -7.39473947 1.12897595 + -7.39073907 1.12696687 + -7.38673867 1.12488677 + -7.38273827 1.12273259 + -7.37873787 1.12050128 + -7.37473747 1.11818981 + -7.37073707 1.11579519 + -7.36673667 1.11331450 + -7.36273627 1.11074488 + -7.35873587 1.10808356 + -7.35473547 1.10532789 + -7.35073507 1.10247531 + -7.34673467 1.09952342 + -7.34273427 1.09646996 + -7.33873387 1.09331284 + -7.33473347 1.09005014 + -7.33073307 1.08668017 + -7.32673267 1.08320142 + -7.32273227 1.07961262 + -7.31873187 1.07591273 + -7.31473147 1.07210097 + -7.31073107 1.06817682 + -7.30673067 1.06414002 + -7.30273027 1.05999059 + -7.29872987 1.05572886 + -7.29472947 1.05135541 + -7.29072907 1.04687115 + -7.28672867 1.04227726 + -7.28272827 1.03757523 + -7.27872787 1.03276685 + -7.27472747 1.02785417 + -7.27072707 1.02283957 + -7.26672667 1.01772568 + -7.26272627 1.01251541 + -7.25872587 1.00721194 + -7.25472547 1.00181869 + -7.25072507 0.99633932 + -7.24672467 0.99077771 + -7.24272427 0.98513796 + -7.23872387 0.97942435 + -7.23472347 0.97364134 + -7.23072307 0.96779353 + -7.22672267 0.96188567 + -7.22272227 0.95592262 + -7.21872187 0.94990934 + -7.21472147 0.94385085 + -7.21072107 0.93775223 + -7.20672067 0.93161860 + -7.20272027 0.92545508 + -7.19871987 0.91926678 + -7.19471947 0.91305878 + -7.19071907 0.90683613 + -7.18671867 0.90060378 + -7.18271827 0.89436662 + -7.17871787 0.88812943 + -7.17471747 0.88189686 + -7.17071707 0.87567344 + -7.16671667 0.86946355 + -7.16271627 0.86327141 + -7.15871587 0.85710106 + -7.15471547 0.85095637 + -7.15071507 0.84484101 + -7.14671467 0.83875848 + -7.14271427 0.83271203 + -7.13871387 0.82670475 + -7.13471347 0.82073949 + -7.13071307 0.81481890 + -7.12671267 0.80894542 + -7.12271227 0.80312125 + -7.11871187 0.79734842 + -7.11471147 0.79162872 + -7.11071107 0.78596375 + -7.10671067 0.78035489 + -7.10271027 0.77480336 + -7.09870987 0.76931015 + -7.09470947 0.76387608 + -7.09070907 0.75850182 + -7.08670867 0.75318783 + -7.08270827 0.74793444 + -7.07870787 0.74274182 + -7.07470747 0.73760998 + -7.07070707 0.73253882 + -7.06670667 0.72752810 + -7.06270627 0.72257748 + -7.05870587 0.71768648 + -7.05470547 0.71285457 + -7.05070507 0.70808108 + -7.04670467 0.70336530 + -7.04270427 0.69870642 + -7.03870387 0.69410359 + -7.03470347 0.68955589 + -7.03070307 0.68506236 + -7.02670267 0.68062199 + -7.02270227 0.67623375 + -7.01870187 0.67189657 + -7.01470147 0.66760936 + -7.01070107 0.66337104 + -7.00670067 0.65918049 + -7.00270027 0.65503660 + -6.99869987 0.65093825 + -6.99469947 0.64688436 + -6.99069907 0.64287381 + -6.98669867 0.63890553 + -6.98269827 0.63497844 + -6.97869787 0.63109150 + -6.97469747 0.62724366 + -6.97069707 0.62343393 + -6.96669667 0.61966131 + -6.96269627 0.61592485 + -6.95869587 0.61222361 + -6.95469547 0.60855668 + -6.95069507 0.60492318 + -6.94669467 0.60132225 + -6.94269427 0.59775308 + -6.93869387 0.59421485 + -6.93469347 0.59070680 + -6.93069307 0.58722817 + -6.92669267 0.58377826 + -6.92269227 0.58035636 + -6.91869187 0.57696181 + -6.91469147 0.57359395 + -6.91069107 0.57025217 + -6.90669067 0.56693586 + -6.90269027 0.56364445 + -6.89868987 0.56037736 + -6.89468947 0.55713406 + -6.89068907 0.55391403 + -6.88668867 0.55071677 + -6.88268827 0.54754178 + -6.87868787 0.54438859 + -6.87468747 0.54125675 + -6.87068707 0.53814582 + -6.86668667 0.53505537 + -6.86268627 0.53198498 + -6.85868587 0.52893425 + -6.85468547 0.52590281 + -6.85068507 0.52289026 + -6.84668467 0.51989625 + -6.84268427 0.51692043 + -6.83868387 0.51396244 + -6.83468347 0.51102197 + -6.83068307 0.50809869 + -6.82668267 0.50519229 + -6.82268227 0.50230247 + -6.81868187 0.49942893 + -6.81468147 0.49657140 + -6.81068107 0.49372960 + -6.80668067 0.49090326 + -6.80268027 0.48809212 + -6.79867987 0.48529595 + -6.79467947 0.48251448 + -6.79067907 0.47974750 + -6.78667867 0.47699476 + -6.78267827 0.47425605 + -6.77867787 0.47153115 + -6.77467747 0.46881985 + -6.77067707 0.46612195 + -6.76667667 0.46343724 + -6.76267627 0.46076553 + -6.75867587 0.45810662 + -6.75467547 0.45546033 + -6.75067507 0.45282647 + -6.74667467 0.45020487 + -6.74267427 0.44759534 + -6.73867387 0.44499771 + -6.73467347 0.44241181 + -6.73067307 0.43983747 + -6.72667267 0.43727451 + -6.72267227 0.43472278 + -6.71867187 0.43218210 + -6.71467147 0.42965233 + -6.71067107 0.42713330 + -6.70667067 0.42462484 + -6.70267027 0.42212682 + -6.69866987 0.41963906 + -6.69466947 0.41716143 + -6.69066907 0.41469376 + -6.68666867 0.41223592 + -6.68266827 0.40978775 + -6.67866787 0.40734912 + -6.67466747 0.40491987 + -6.67066707 0.40249988 + -6.66666667 0.40008899 + -6.66266627 0.39768709 + -6.65866587 0.39529402 + -6.65466547 0.39290967 + -6.65066507 0.39053390 + -6.64666467 0.38816658 + -6.64266427 0.38580759 + -6.63866387 0.38345679 + -6.63466347 0.38111408 + -6.63066307 0.37877933 + -6.62666267 0.37645242 + -6.62266227 0.37413322 + -6.61866187 0.37182163 + -6.61466147 0.36951753 + -6.61066107 0.36722079 + -6.60666067 0.36493131 + -6.60266027 0.36264897 + -6.59865987 0.36037366 + -6.59465947 0.35810526 + -6.59065907 0.35584367 + -6.58665867 0.35358876 + -6.58265827 0.35134042 + -6.57865787 0.34909854 + -6.57465747 0.34686301 + -6.57065707 0.34463371 + -6.56665667 0.34241053 + -6.56265627 0.34019335 + -6.55865587 0.33798206 + -6.55465547 0.33577655 + -6.55065507 0.33357669 + -6.54665467 0.33138238 + -6.54265427 0.32919349 + -6.53865387 0.32700991 + -6.53465347 0.32483152 + -6.53065307 0.32265820 + -6.52665267 0.32048984 + -6.52265227 0.31832631 + -6.51865187 0.31616750 + -6.51465147 0.31401328 + -6.51065107 0.31186354 + -6.50665067 0.30971814 + -6.50265027 0.30757698 + -6.49864986 0.30543992 + -6.49464946 0.30330684 + -6.49064906 0.30117761 + -6.48664866 0.29905211 + -6.48264826 0.29693021 + -6.47864786 0.29481177 + -6.47464746 0.29269666 + -6.47064706 0.29058475 + -6.46664666 0.28847590 + -6.46264626 0.28636997 + -6.45864586 0.28426682 + -6.45464546 0.28216630 + -6.45064506 0.28006827 + -6.44664466 0.27797256 + -6.44264426 0.27587904 + -6.43864386 0.27378753 + -6.43464346 0.27169788 + -6.43064306 0.26960992 + -6.42664266 0.26752346 + -6.42264226 0.26543835 + -6.41864186 0.26335439 + -6.41464146 0.26127140 + -6.41064106 0.25918918 + -6.40664066 0.25710754 + -6.40264026 0.25502626 + -6.39863986 0.25294515 + -6.39463946 0.25086397 + -6.39063906 0.24878250 + -6.38663866 0.24670052 + -6.38263826 0.24461777 + -6.37863786 0.24253401 + -6.37463746 0.24044899 + -6.37063706 0.23836243 + -6.36663666 0.23627407 + -6.36263626 0.23418362 + -6.35863586 0.23209079 + -6.35463546 0.22999529 + -6.35063506 0.22789679 + -6.34663466 0.22579499 + -6.34263426 0.22368956 + -6.33863386 0.22158015 + -6.33463346 0.21946642 + -6.33063306 0.21734802 + -6.32663266 0.21522457 + -6.32263226 0.21309572 + -6.31863186 0.21096108 + -6.31463146 0.20882025 + -6.31063106 0.20667285 + -6.30663066 0.20451848 + -6.30263026 0.20235672 + -6.29862986 0.20018717 + -6.29462946 0.19800942 + -6.29062906 0.19582305 + -6.28662866 0.19362764 + -6.28262826 0.19142279 + -6.27862786 0.18920808 + -6.27462746 0.18698311 + -6.27062706 0.18474748 + -6.26662666 0.18250080 + -6.26262626 0.18024270 + -6.25862586 0.17797281 + -6.25462546 0.17569080 + -6.25062506 0.17339634 + -6.24662466 0.17108913 + -6.24262426 0.16876890 + -6.23862386 0.16643541 + -6.23462346 0.16408844 + -6.23062306 0.16172783 + -6.22662266 0.15935345 + -6.22262226 0.15696520 + -6.21862186 0.15456305 + -6.21462146 0.15214701 + -6.21062106 0.14971715 + -6.20662066 0.14727359 + -6.20262026 0.14481652 + -6.19861986 0.14234620 + -6.19461946 0.13986293 + -6.19061906 0.13736713 + -6.18661866 0.13485924 + -6.18261826 0.13233982 + -6.17861786 0.12980948 + -6.17461746 0.12726892 + -6.17061706 0.12471894 + -6.16661666 0.12216039 + -6.16261626 0.11959422 + -6.15861586 0.11702147 + -6.15461546 0.11444326 + -6.15061506 0.11186077 + -6.14661466 0.10927529 + -6.14261426 0.10668818 + -6.13861386 0.10410087 + -6.13461346 0.10151488 + -6.13061306 0.09893178 + -6.12661266 0.09635322 + -6.12261226 0.09378091 + -6.11861186 0.09121661 + -6.11461146 0.08866214 + -6.11061106 0.08611936 + -6.10661066 0.08359017 + -6.10261026 0.08107651 + -6.09860986 0.07858032 + -6.09460946 0.07610359 + -6.09060906 0.07364829 + -6.08660866 0.07121641 + -6.08260826 0.06880993 + -6.07860786 0.06643081 + -6.07460746 0.06408099 + -6.07060706 0.06176238 + -6.06660666 0.05947683 + -6.06260626 0.05722617 + -6.05860586 0.05501215 + -6.05460546 0.05283648 + -6.05060506 0.05070078 + -6.04660466 0.04860658 + -6.04260426 0.04655535 + -6.03860386 0.04454846 + -6.03460346 0.04258718 + -6.03060306 0.04067266 + -6.02660266 0.03880599 + -6.02260226 0.03698809 + -6.01860186 0.03521980 + -6.01460146 0.03350185 + -6.01060106 0.03183483 + -6.00660066 0.03021922 + -6.00260026 0.02865537 + -5.99859986 0.02714352 + -5.99459946 0.02568378 + -5.99059906 0.02427616 + -5.98659866 0.02292053 + -5.98259826 0.02161667 + -5.97859786 0.02036421 + -5.97459746 0.01916273 + -5.97059706 0.01801166 + -5.96659666 0.01691035 + -5.96259626 0.01585806 + -5.95859586 0.01485396 + -5.95459546 0.01389713 + -5.95059506 0.01298659 + -5.94659466 0.01212129 + -5.94259426 0.01130011 + -5.93859386 0.01052186 + -5.93459346 0.00978533 + -5.93059306 0.00908926 + -5.92659266 0.00843233 + -5.92259226 0.00781323 + -5.91859186 0.00723058 + -5.91459146 0.00668303 + -5.91059106 0.00616919 + -5.90659066 0.00568767 + -5.90259026 0.00523709 + -5.89858986 0.00481606 + -5.89458946 0.00442322 + -5.89058906 0.00405720 + -5.88658866 0.00371667 + -5.88258826 0.00340033 + -5.87858786 0.00310688 + -5.87458746 0.00283508 + -5.87058706 0.00258369 + -5.86658666 0.00235154 + -5.86258626 0.00213748 + -5.85858586 0.00194040 + -5.85458546 0.00175923 + -5.85058506 0.00159296 + -5.84658466 0.00144060 + -5.84258426 0.00130121 + -5.83858386 0.00117392 + -5.83458346 0.00105786 + -5.83058306 0.00095226 + -5.82658266 0.00085634 + -5.82258226 0.00076940 + -5.81858186 0.00069077 + -5.81458146 0.00061984 + -5.81058106 0.00055602 + -5.80658066 0.00049877 + -5.80258026 0.00044760 + -5.79857986 0.00040205 + -5.79457946 0.00036170 + -5.79057906 0.00032618 + -5.78657866 0.00029515 + -5.78257826 0.00026829 + -5.77857786 0.00024534 + -5.77457746 0.00022608 + -5.77057706 0.00021029 + -5.76657666 0.00019781 + -5.76257626 0.00018851 + -5.75857586 0.00018229 + -5.75457546 0.00017908 + -5.75057506 0.00017885 + -5.74657466 0.00018158 + -5.74257426 0.00018732 + -5.73857386 0.00019611 + -5.73457346 0.00020806 + -5.73057306 0.00022327 + -5.72657266 0.00024193 + -5.72257226 0.00026420 + -5.71857186 0.00029033 + -5.71457146 0.00032056 + -5.71057106 0.00035520 + -5.70657066 0.00039457 + -5.70257026 0.00043904 + -5.69856986 0.00048903 + -5.69456946 0.00054497 + -5.69056906 0.00060736 + -5.68656866 0.00067672 + -5.68256826 0.00075362 + -5.67856786 0.00083868 + -5.67456746 0.00093255 + -5.67056706 0.00103593 + -5.66656666 0.00114958 + -5.66256626 0.00127428 + -5.65856586 0.00141088 + -5.65456546 0.00156027 + -5.65056506 0.00172338 + -5.64656466 0.00190119 + -5.64256426 0.00209473 + -5.63856386 0.00230508 + -5.63456346 0.00253336 + -5.63056306 0.00278074 + -5.62656266 0.00304843 + -5.62256226 0.00333768 + -5.61856186 0.00364979 + -5.61456146 0.00398609 + -5.61056106 0.00434794 + -5.60656066 0.00473676 + -5.60256026 0.00515397 + -5.59855986 0.00560104 + -5.59455946 0.00607945 + -5.59055906 0.00659070 + -5.58655866 0.00713631 + -5.58255826 0.00771782 + -5.57855786 0.00833677 + -5.57455746 0.00899468 + -5.57055706 0.00969311 + -5.56655666 0.01043357 + -5.56255626 0.01121759 + -5.55855586 0.01204665 + -5.55455546 0.01292223 + -5.55055506 0.01384576 + -5.54655466 0.01481864 + -5.54255426 0.01584224 + -5.53855386 0.01691787 + -5.53455346 0.01804677 + -5.53055306 0.01923015 + -5.52655266 0.02046915 + -5.52255226 0.02176481 + -5.51855186 0.02311814 + -5.51455146 0.02453004 + -5.51055106 0.02600133 + -5.50655066 0.02753276 + -5.50255026 0.02912496 + -5.49854985 0.03077848 + -5.49454945 0.03249379 + -5.49054905 0.03427122 + -5.48654865 0.03611104 + -5.48254825 0.03801338 + -5.47854785 0.03997828 + -5.47454745 0.04200569 + -5.47054705 0.04409541 + -5.46654665 0.04624719 + -5.46254625 0.04846063 + -5.45854585 0.05073525 + -5.45454545 0.05307044 + -5.45054505 0.05546553 + -5.44654465 0.05791971 + -5.44254425 0.06043209 + -5.43854385 0.06300171 + -5.43454345 0.06562747 + -5.43054305 0.06830823 + -5.42654265 0.07104274 + -5.42254225 0.07382967 + -5.41854185 0.07666764 + -5.41454145 0.07955518 + -5.41054105 0.08249075 + -5.40654065 0.08547276 + -5.40254025 0.08849956 + -5.39853985 0.09156946 + -5.39453945 0.09468070 + -5.39053905 0.09783150 + -5.38653865 0.10102003 + -5.38253825 0.10424443 + -5.37853785 0.10750282 + -5.37453745 0.11079330 + -5.37053705 0.11411394 + -5.36653665 0.11746280 + -5.36253625 0.12083794 + -5.35853585 0.12423741 + -5.35453545 0.12765926 + -5.35053505 0.13110154 + -5.34653465 0.13456233 + -5.34253425 0.13803970 + -5.33853385 0.14153175 + -5.33453345 0.14503658 + -5.33053305 0.14855233 + -5.32653265 0.15207718 + -5.32253225 0.15560931 + -5.31853185 0.15914696 + -5.31453145 0.16268838 + -5.31053105 0.16623188 + -5.30653065 0.16977581 + -5.30253025 0.17331855 + -5.29852985 0.17685854 + -5.29452945 0.18039427 + -5.29052905 0.18392426 + -5.28652865 0.18744712 + -5.28252825 0.19096147 + -5.27852785 0.19446603 + -5.27452745 0.19795953 + -5.27052705 0.20144081 + -5.26652665 0.20490872 + -5.26252625 0.20836220 + -5.25852585 0.21180025 + -5.25452545 0.21522192 + -5.25052505 0.21862633 + -5.24652465 0.22201266 + -5.24252425 0.22538014 + -5.23852385 0.22872808 + -5.23452345 0.23205585 + -5.23052305 0.23536286 + -5.22652265 0.23864859 + -5.22252225 0.24191260 + -5.21852185 0.24515447 + -5.21452145 0.24837387 + -5.21052105 0.25157050 + -5.20652065 0.25474412 + -5.20252025 0.25789456 + -5.19851985 0.26102168 + -5.19451945 0.26412539 + -5.19051905 0.26720565 + -5.18651865 0.27026246 + -5.18251825 0.27329588 + -5.17851785 0.27630597 + -5.17451745 0.27929288 + -5.17051705 0.28225674 + -5.16651665 0.28519776 + -5.16251625 0.28811615 + -5.15851585 0.29101217 + -5.15451545 0.29388608 + -5.15051505 0.29673819 + -5.14651465 0.29956881 + -5.14251425 0.30237829 + -5.13851385 0.30516697 + -5.13451345 0.30793523 + -5.13051305 0.31068345 + -5.12651265 0.31341202 + -5.12251225 0.31612136 + -5.11851185 0.31881185 + -5.11451145 0.32148393 + -5.11051105 0.32413801 + -5.10651065 0.32677451 + -5.10251025 0.32939385 + -5.09850985 0.33199645 + -5.09450945 0.33458273 + -5.09050905 0.33715311 + -5.08650865 0.33970801 + -5.08250825 0.34224782 + -5.07850785 0.34477295 + -5.07450745 0.34728381 + -5.07050705 0.34978076 + -5.06650665 0.35226421 + -5.06250625 0.35473451 + -5.05850585 0.35719204 + -5.05450545 0.35963716 + -5.05050505 0.36207020 + -5.04650465 0.36449151 + -5.04250425 0.36690143 + -5.03850385 0.36930026 + -5.03450345 0.37168832 + -5.03050305 0.37406592 + -5.02650265 0.37643334 + -5.02250225 0.37879088 + -5.01850185 0.38113881 + -5.01450145 0.38347740 + -5.01050105 0.38580691 + -5.00650065 0.38812760 + -5.00250025 0.39043970 + -4.99849985 0.39274345 + -4.99449945 0.39503910 + -4.99049905 0.39732685 + -4.98649865 0.39960693 + -4.98249825 0.40187955 + -4.97849785 0.40414492 + -4.97449745 0.40640322 + -4.97049705 0.40865466 + -4.96649665 0.41089941 + -4.96249625 0.41313767 + -4.95849585 0.41536959 + -4.95449545 0.41759536 + -4.95049505 0.41981514 + -4.94649465 0.42202908 + -4.94249425 0.42423734 + -4.93849385 0.42644006 + -4.93449345 0.42863739 + -4.93049305 0.43082946 + -4.92649265 0.43301641 + -4.92249225 0.43519836 + -4.91849185 0.43737544 + -4.91449145 0.43954776 + -4.91049105 0.44171545 + -4.90649065 0.44387860 + -4.90249025 0.44603734 + -4.89848985 0.44819175 + -4.89448945 0.45034196 + -4.89048905 0.45248804 + -4.88648865 0.45463011 + -4.88248825 0.45676826 + -4.87848785 0.45890258 + -4.87448745 0.46103318 + -4.87048705 0.46316013 + -4.86648665 0.46528355 + -4.86248625 0.46740353 + -4.85848585 0.46952016 + -4.85448545 0.47163356 + -4.85048505 0.47374383 + -4.84648465 0.47585107 + -4.84248425 0.47795539 + -4.83848385 0.48005693 + -4.83448345 0.48215579 + -4.83048305 0.48425210 + -4.82648265 0.48634600 + -4.82248225 0.48843763 + -4.81848185 0.49052712 + -4.81448145 0.49261464 + -4.81048105 0.49470033 + -4.80648065 0.49678437 + -4.80248025 0.49886692 + -4.79847985 0.50094815 + -4.79447945 0.50302827 + -4.79047905 0.50510746 + -4.78647865 0.50718591 + -4.78247825 0.50926385 + -4.77847785 0.51134148 + -4.77447745 0.51341903 + -4.77047705 0.51549675 + -4.76647665 0.51757487 + -4.76247625 0.51965366 + -4.75847585 0.52173337 + -4.75447545 0.52381430 + -4.75047505 0.52589673 + -4.74647465 0.52798098 + -4.74247425 0.53006737 + -4.73847385 0.53215623 + -4.73447345 0.53424793 + -4.73047305 0.53634284 + -4.72647265 0.53844136 + -4.72247225 0.54054391 + -4.71847185 0.54265092 + -4.71447145 0.54476286 + -4.71047105 0.54688023 + -4.70647065 0.54900354 + -4.70247025 0.55113332 + -4.69846985 0.55327015 + -4.69446945 0.55541463 + -4.69046905 0.55756739 + -4.68646865 0.55972907 + -4.68246825 0.56190035 + -4.67846785 0.56408196 + -4.67446745 0.56627462 + -4.67046705 0.56847910 + -4.66646665 0.57069617 + -4.66246625 0.57292666 + -4.65846585 0.57517138 + -4.65446545 0.57743117 + -4.65046505 0.57970690 + -4.64646465 0.58199944 + -4.64246425 0.58430966 + -4.63846385 0.58663845 + -4.63446345 0.58898668 + -4.63046305 0.59135523 + -4.62646265 0.59374497 + -4.62246225 0.59615676 + -4.61846185 0.59859142 + -4.61446145 0.60104979 + -4.61046105 0.60353264 + -4.60646065 0.60604074 + -4.60246025 0.60857479 + -4.59845985 0.61113550 + -4.59445945 0.61372348 + -4.59045905 0.61633933 + -4.58645865 0.61898358 + -4.58245825 0.62165673 + -4.57845785 0.62435919 + -4.57445745 0.62709132 + -4.57045705 0.62985344 + -4.56645665 0.63264577 + -4.56245625 0.63546850 + -4.55845585 0.63832173 + -4.55445545 0.64120551 + -4.55045505 0.64411980 + -4.54645465 0.64706453 + -4.54245425 0.65003955 + -4.53845385 0.65304463 + -4.53445345 0.65607951 + -4.53045305 0.65914385 + -4.52645265 0.66223727 + -4.52245225 0.66535932 + -4.51845185 0.66850951 + -4.51445145 0.67168730 + -4.51045105 0.67489211 + -4.50645065 0.67812332 + -4.50245025 0.68138028 + -4.49844984 0.68466229 + -4.49444944 0.68796862 + -4.49044904 0.69129855 + -4.48644864 0.69465129 + -4.48244824 0.69802607 + -4.47844784 0.70142207 + -4.47444744 0.70483850 + -4.47044704 0.70827451 + -4.46644664 0.71172930 + -4.46244624 0.71520201 + -4.45844584 0.71869182 + -4.45444544 0.72219790 + -4.45044504 0.72571941 + -4.44644464 0.72925553 + -4.44244424 0.73280544 + -4.43844384 0.73636834 + -4.43444344 0.73994343 + -4.43044304 0.74352992 + -4.42644264 0.74712705 + -4.42244224 0.75073406 + -4.41844184 0.75435021 + -4.41444144 0.75797478 + -4.41044104 0.76160708 + -4.40644064 0.76524643 + -4.40244024 0.76889218 + -4.39843984 0.77254370 + -4.39443944 0.77620038 + -4.39043904 0.77986166 + -4.38643864 0.78352700 + -4.38243824 0.78719589 + -4.37843784 0.79086785 + -4.37443744 0.79454244 + -4.37043704 0.79821927 + -4.36643664 0.80189797 + -4.36243624 0.80557824 + -4.35843584 0.80925979 + -4.35443544 0.81294239 + -4.35043504 0.81662588 + -4.34643464 0.82031011 + -4.34243424 0.82399500 + -4.33843384 0.82768052 + -4.33443344 0.83136669 + -4.33043304 0.83505358 + -4.32643264 0.83874131 + -4.32243224 0.84243006 + -4.31843184 0.84612005 + -4.31443144 0.84981156 + -4.31043104 0.85350492 + -4.30643064 0.85720048 + -4.30243024 0.86089868 + -4.29842984 0.86459996 + -4.29442944 0.86830483 + -4.29042904 0.87201383 + -4.28642864 0.87572751 + -4.28242824 0.87944649 + -4.27842784 0.88317140 + -4.27442744 0.88690288 + -4.27042704 0.89064160 + -4.26642664 0.89438825 + -4.26242624 0.89814353 + -4.25842584 0.90190814 + -4.25442544 0.90568279 + -4.25042504 0.90946820 + -4.24642464 0.91326507 + -4.24242424 0.91707411 + -4.23842384 0.92089600 + -4.23442344 0.92473144 + -4.23042304 0.92858109 + -4.22642264 0.93244562 + -4.22242224 0.93632568 + -4.21842184 0.94022189 + -4.21442144 0.94413487 + -4.21042104 0.94806523 + -4.20642064 0.95201356 + -4.20242024 0.95598044 + -4.19841984 0.95996646 + -4.19441944 0.96397218 + -4.19041904 0.96799817 + -4.18641864 0.97204500 + -4.18241824 0.97611326 + -4.17841784 0.98020354 + -4.17441744 0.98431644 + -4.17041704 0.98845260 + -4.16641664 0.99261265 + -4.16241624 0.99679729 + -4.15841584 1.00100723 + -4.15441544 1.00524324 + -4.15041504 1.00950611 + -4.14641464 1.01379669 + -4.14241424 1.01811589 + -4.13841384 1.02246467 + -4.13441344 1.02684403 + -4.13041304 1.03125507 + -4.12641264 1.03569891 + -4.12241224 1.04017676 + -4.11841184 1.04468988 + -4.11441144 1.04923959 + -4.11041104 1.05382728 + -4.10641064 1.05845440 + -4.10241024 1.06312242 + -4.09840984 1.06783291 + -4.09440944 1.07258744 + -4.09040904 1.07738763 + -4.08640864 1.08223515 + -4.08240824 1.08713166 + -4.07840784 1.09207885 + -4.07440744 1.09707842 + -4.07040704 1.10213203 + -4.06640664 1.10724137 + -4.06240624 1.11240804 + -4.05840584 1.11763366 + -4.05440544 1.12291974 + -4.05040504 1.12826775 + -4.04640464 1.13367907 + -4.04240424 1.13915497 + -4.03840384 1.14469665 + -4.03440344 1.15030513 + -4.03040304 1.15598132 + -4.02640264 1.16172599 + -4.02240224 1.16753972 + -4.01840184 1.17342291 + -4.01440144 1.17937580 + -4.01040104 1.18539838 + -4.00640064 1.19149047 + -4.00240024 1.19765161 + -3.99839984 1.20388116 + -3.99439944 1.21017820 + -3.99039904 1.21654156 + -3.98639864 1.22296981 + -3.98239824 1.22946124 + -3.97839784 1.23601390 + -3.97439744 1.24262554 + -3.97039704 1.24929361 + -3.96639664 1.25601532 + -3.96239624 1.26278757 + -3.95839584 1.26960700 + -3.95439544 1.27646994 + -3.95039504 1.28337249 + -3.94639464 1.29031045 + -3.94239424 1.29727937 + -3.93839384 1.30427454 + -3.93439344 1.31129102 + -3.93039304 1.31832362 + -3.92639264 1.32536694 + -3.92239224 1.33241538 + -3.91839184 1.33946313 + -3.91439144 1.34650421 + -3.91039104 1.35353249 + -3.90639064 1.36054169 + -3.90239024 1.36752539 + -3.89838984 1.37447709 + -3.89438944 1.38139019 + -3.89038904 1.38825805 + -3.88638864 1.39507396 + -3.88238824 1.40183120 + -3.87838784 1.40852306 + -3.87438744 1.41514285 + -3.87038704 1.42168391 + -3.86638664 1.42813969 + -3.86238624 1.43450367 + -3.85838584 1.44076951 + -3.85438544 1.44693094 + -3.85038504 1.45298189 + -3.84638464 1.45891644 + -3.84238424 1.46472887 + -3.83838384 1.47041366 + -3.83438344 1.47596555 + -3.83038304 1.48137948 + -3.82638264 1.48665067 + -3.82238224 1.49177463 + -3.81838184 1.49674712 + -3.81438144 1.50156421 + -3.81038104 1.50622229 + -3.80638064 1.51071804 + -3.80238024 1.51504846 + -3.79837984 1.51921090 + -3.79437944 1.52320300 + -3.79037904 1.52702276 + -3.78637864 1.53066848 + -3.78237824 1.53413881 + -3.77837784 1.53743272 + -3.77437744 1.54054949 + -3.77037704 1.54348872 + -3.76637664 1.54625033 + -3.76237624 1.54883451 + -3.75837584 1.55124177 + -3.75437544 1.55347288 + -3.75037504 1.55552888 + -3.74637464 1.55741108 + -3.74237424 1.55912101 + -3.73837384 1.56066043 + -3.73437344 1.56203132 + -3.73037304 1.56323586 + -3.72637264 1.56427639 + -3.72237224 1.56515542 + -3.71837184 1.56587563 + -3.71437144 1.56643980 + -3.71037104 1.56685082 + -3.70637064 1.56711169 + -3.70237024 1.56722550 + -3.69836984 1.56719535 + -3.69436944 1.56702444 + -3.69036904 1.56671597 + -3.68636864 1.56627315 + -3.68236824 1.56569918 + -3.67836784 1.56499727 + -3.67436744 1.56417055 + -3.67036704 1.56322215 + -3.66636664 1.56215511 + -3.66236624 1.56097241 + -3.65836584 1.55967694 + -3.65436544 1.55827151 + -3.65036504 1.55675881 + -3.64636464 1.55514144 + -3.64236424 1.55342187 + -3.63836384 1.55160245 + -3.63436344 1.54968541 + -3.63036304 1.54767285 + -3.62636264 1.54556673 + -3.62236224 1.54336889 + -3.61836184 1.54108102 + -3.61436144 1.53870471 + -3.61036104 1.53624140 + -3.60636064 1.53369239 + -3.60236024 1.53105892 + -3.59835984 1.52834205 + -3.59435944 1.52554279 + -3.59035904 1.52266202 + -3.58635864 1.51970055 + -3.58235824 1.51665912 + -3.57835784 1.51353840 + -3.57435744 1.51033899 + -3.57035704 1.50706148 + -3.56635664 1.50370641 + -3.56235624 1.50027433 + -3.55835584 1.49676577 + -3.55435544 1.49318130 + -3.55035504 1.48952149 + -3.54635464 1.48578699 + -3.54235424 1.48197847 + -3.53835384 1.47809671 + -3.53435344 1.47414255 + -3.53035304 1.47011694 + -3.52635264 1.46602095 + -3.52235224 1.46185575 + -3.51835184 1.45762268 + -3.51435144 1.45332318 + -3.51035104 1.44895887 + -3.50635064 1.44453154 + -3.50235024 1.44004310 + -3.49834983 1.43549567 + -3.49434943 1.43089153 + -3.49034903 1.42623312 + -3.48634863 1.42152308 + -3.48234823 1.41676419 + -3.47834783 1.41195942 + -3.47434743 1.40711190 + -3.47034703 1.40222491 + -3.46634663 1.39730187 + -3.46234623 1.39234635 + -3.45834583 1.38736205 + -3.45434543 1.38235278 + -3.45034503 1.37732244 + -3.44634463 1.37227504 + -3.44234423 1.36721465 + -3.43834383 1.36214537 + -3.43434343 1.35707137 + -3.43034303 1.35199684 + -3.42634263 1.34692594 + -3.42234223 1.34186284 + -3.41834183 1.33681167 + -3.41434143 1.33177649 + -3.41034103 1.32676131 + -3.40634063 1.32177003 + -3.40234023 1.31680646 + -3.39833983 1.31187428 + -3.39433943 1.30697704 + -3.39033903 1.30211811 + -3.38633863 1.29730074 + -3.38233823 1.29252797 + -3.37833783 1.28780267 + -3.37433743 1.28312750 + -3.37033703 1.27850492 + -3.36633663 1.27393720 + -3.36233623 1.26942638 + -3.35833583 1.26497429 + -3.35433543 1.26058254 + -3.35033503 1.25625252 + -3.34633463 1.25198543 + -3.34233423 1.24778224 + -3.33833383 1.24364371 + -3.33433343 1.23957042 + -3.33033303 1.23556276 + -3.32633263 1.23162092 + -3.32233223 1.22774493 + -3.31833183 1.22393466 + -3.31433143 1.22018983 + -3.31033103 1.21651001 + -3.30633063 1.21289467 + -3.30233023 1.20934315 + -3.29832983 1.20585468 + -3.29432943 1.20242843 + -3.29032903 1.19906347 + -3.28632863 1.19575883 + -3.28232823 1.19251347 + -3.27832783 1.18932634 + -3.27432743 1.18619634 + -3.27032703 1.18312237 + -3.26632663 1.18010331 + -3.26232623 1.17713807 + -3.25832583 1.17422553 + -3.25432543 1.17136464 + -3.25032503 1.16855434 + -3.24632463 1.16579361 + -3.24232423 1.16308148 + -3.23832383 1.16041702 + -3.23432343 1.15779932 + -3.23032303 1.15522754 + -3.22632263 1.15270089 + -3.22232223 1.15021861 + -3.21832183 1.14778002 + -3.21432143 1.14538445 + -3.21032103 1.14303132 + -3.20632063 1.14072008 + -3.20232023 1.13845022 + -3.19831983 1.13622130 + -3.19431943 1.13403292 + -3.19031903 1.13188470 + -3.18631863 1.12977636 + -3.18231823 1.12770763 + -3.17831783 1.12567829 + -3.17431743 1.12368819 + -3.17031703 1.12173722 + -3.16631663 1.11982533 + -3.16231623 1.11795254 + -3.15831583 1.11611892 + -3.15431543 1.11432463 + -3.15031503 1.11256990 + -3.14631463 1.11085507 + -3.14231423 1.10918056 + -3.13831383 1.10754690 + -3.13431343 1.10595478 + -3.13031303 1.10440499 + -3.12631263 1.10289849 + -3.12231223 1.10143641 + -3.11831183 1.10002007 + -3.11431143 1.09865098 + -3.11031103 1.09733090 + -3.10631063 1.09606182 + -3.10231023 1.09484597 + -3.09830983 1.09368588 + -3.09430943 1.09258439 + -3.09030903 1.09154466 + -3.08630863 1.09057016 + -3.08230823 1.08966474 + -3.07830783 1.08883264 + -3.07430743 1.08807848 + -3.07030703 1.08740727 + -3.06630663 1.08682448 + -3.06230623 1.08633600 + -3.05830583 1.08594814 + -3.05430543 1.08566772 + -3.05030503 1.08550197 + -3.04630463 1.08545861 + -3.04230423 1.08554582 + -3.03830383 1.08577225 + -3.03430343 1.08614699 + -3.03030303 1.08667960 + -3.02630263 1.08738006 + -3.02230223 1.08825878 + -3.01830183 1.08932657 + -3.01430143 1.09059461 + -3.01030103 1.09207445 + -3.00630063 1.09377794 + -3.00230023 1.09571723 + -2.99829983 1.09790472 + -2.99429943 1.10035301 + -2.99029903 1.10307486 + -2.98629863 1.10608314 + -2.98229823 1.10939079 + -2.97829783 1.11301075 + -2.97429743 1.11695590 + -2.97029703 1.12123898 + -2.96629663 1.12587259 + -2.96229623 1.13086903 + -2.95829583 1.13624033 + -2.95429543 1.14199808 + -2.95029503 1.14815343 + -2.94629463 1.15471698 + -2.94229423 1.16169870 + -2.93829383 1.16910790 + -2.93429343 1.17695307 + -2.93029303 1.18524190 + -2.92629263 1.19398111 + -2.92229223 1.20317646 + -2.91829183 1.21283261 + -2.91429143 1.22295307 + -2.91029103 1.23354016 + -2.90629063 1.24459489 + -2.90229023 1.25611694 + -2.89828983 1.26810457 + -2.89428943 1.28055460 + -2.89028903 1.29346231 + -2.88628863 1.30682145 + -2.88228823 1.32062416 + -2.87828783 1.33486095 + -2.87428743 1.34952068 + -2.87028703 1.36459054 + -2.86628663 1.38005601 + -2.86228623 1.39590092 + -2.85828583 1.41210739 + -2.85428543 1.42865588 + -2.85028503 1.44552519 + -2.84628463 1.46269253 + -2.84228423 1.48013352 + -2.83828383 1.49782225 + -2.83428343 1.51573137 + -2.83028303 1.53383211 + -2.82628263 1.55209441 + -2.82228223 1.57048697 + -2.81828183 1.58897736 + -2.81428143 1.60753213 + -2.81028103 1.62611691 + -2.80628063 1.64469655 + -2.80228023 1.66323524 + -2.79827983 1.68169663 + -2.79427943 1.70004399 + -2.79027903 1.71824035 + -2.78627863 1.73624864 + -2.78227823 1.75403186 + -2.77827783 1.77155322 + -2.77427743 1.78877629 + -2.77027703 1.80566518 + -2.76627663 1.82218469 + -2.76227623 1.83830045 + -2.75827583 1.85397908 + -2.75427543 1.86918832 + -2.75027503 1.88389723 + -2.74627463 1.89807624 + -2.74227423 1.91169736 + -2.73827383 1.92473426 + -2.73427343 1.93716239 + -2.73027303 1.94895908 + -2.72627263 1.96010367 + -2.72227223 1.97057755 + -2.71827183 1.98036422 + -2.71427143 1.98944944 + -2.71027103 1.99782117 + -2.70627063 2.00546968 + -2.70227023 2.01238753 + -2.69826983 2.01856963 + -2.69426943 2.02401318 + -2.69026903 2.02871771 + -2.68626863 2.03268502 + -2.68226823 2.03591917 + -2.67826783 2.03842639 + -2.67426743 2.04021508 + -2.67026703 2.04129568 + -2.66626663 2.04168064 + -2.66226623 2.04138431 + -2.65826583 2.04042283 + -2.65426543 2.03881407 + -2.65026503 2.03657748 + -2.64626463 2.03373399 + -2.64226423 2.03030588 + -2.63826383 2.02631670 + -2.63426343 2.02179108 + -2.63026303 2.01675464 + -2.62626263 2.01123388 + -2.62226223 2.00525599 + -2.61826183 1.99884877 + -2.61426143 1.99204051 + -2.61026103 1.98485982 + -2.60626063 1.97733555 + -2.60226023 1.96949663 + -2.59825983 1.96137202 + -2.59425943 1.95299051 + -2.59025903 1.94438070 + -2.58625863 1.93557085 + -2.58225823 1.92658879 + -2.57825783 1.91746185 + -2.57425743 1.90821676 + -2.57025703 1.89887957 + -2.56625663 1.88947561 + -2.56225623 1.88002939 + -2.55825583 1.87056454 + -2.55425543 1.86110382 + -2.55025503 1.85166898 + -2.54625463 1.84228081 + -2.54225423 1.83295905 + -2.53825383 1.82372237 + -2.53425343 1.81458839 + -2.53025303 1.80557360 + -2.52625263 1.79669340 + -2.52225223 1.78796206 + -2.51825183 1.77939276 + -2.51425143 1.77099755 + -2.51025103 1.76278735 + -2.50625063 1.75477203 + -2.50225023 1.74696035 + -2.49824982 1.73936000 + -2.49424942 1.73197764 + -2.49024902 1.72481892 + -2.48624862 1.71788847 + -2.48224822 1.71118997 + -2.47824782 1.70472617 + -2.47424742 1.69849891 + -2.47024702 1.69250918 + -2.46624662 1.68675711 + -2.46224622 1.68124206 + -2.45824582 1.67596264 + -2.45424542 1.67091673 + -2.45024502 1.66610154 + -2.44624462 1.66151365 + -2.44224422 1.65714905 + -2.43824382 1.65300320 + -2.43424342 1.64907103 + -2.43024302 1.64534701 + -2.42624262 1.64182520 + -2.42224222 1.63849930 + -2.41824182 1.63536264 + -2.41424142 1.63240829 + -2.41024102 1.62962906 + -2.40624062 1.62701755 + -2.40224022 1.62456620 + -2.39823982 1.62226729 + -2.39423942 1.62011306 + -2.39023902 1.61809566 + -2.38623862 1.61620724 + -2.38223822 1.61443994 + -2.37823782 1.61278599 + -2.37423742 1.61123766 + -2.37023702 1.60978736 + -2.36623662 1.60842762 + -2.36223622 1.60715114 + -2.35823582 1.60595079 + -2.35423542 1.60481967 + -2.35023502 1.60375109 + -2.34623462 1.60273859 + -2.34223422 1.60177599 + -2.33823382 1.60085736 + -2.33423342 1.59997704 + -2.33023302 1.59912968 + -2.32623262 1.59831018 + -2.32223222 1.59751374 + -2.31823182 1.59673585 + -2.31423142 1.59597229 + -2.31023102 1.59521910 + -2.30623062 1.59447260 + -2.30223022 1.59372936 + -2.29822982 1.59298621 + -2.29422942 1.59224019 + -2.29022902 1.59148859 + -2.28622862 1.59072888 + -2.28222822 1.58995870 + -2.27822782 1.58917588 + -2.27422742 1.58837838 + -2.27022702 1.58756426 + -2.26622662 1.58673170 + -2.26222622 1.58587896 + -2.25822582 1.58500433 + -2.25422542 1.58410614 + -2.25022502 1.58318273 + -2.24622462 1.58223244 + -2.24222422 1.58125354 + -2.23822382 1.58024427 + -2.23422342 1.57920281 + -2.23022302 1.57812723 + -2.22622262 1.57701550 + -2.22222222 1.57586548 + -2.21822182 1.57467490 + -2.21422142 1.57344135 + -2.21022102 1.57216228 + -2.20622062 1.57083499 + -2.20222022 1.56945663 + -2.19821982 1.56802420 + -2.19421942 1.56653456 + -2.19021902 1.56498444 + -2.18621862 1.56337041 + -2.18221822 1.56168895 + -2.17821782 1.55993643 + -2.17421742 1.55810911 + -2.17021702 1.55620322 + -2.16621662 1.55421491 + -2.16221622 1.55214031 + -2.15821582 1.54997556 + -2.15421542 1.54771681 + -2.15021502 1.54536029 + -2.14621462 1.54290229 + -2.14221422 1.54033921 + -2.13821382 1.53766761 + -2.13421342 1.53488421 + -2.13021302 1.53198596 + -2.12621262 1.52897000 + -2.12221222 1.52583378 + -2.11821182 1.52257501 + -2.11421142 1.51919176 + -2.11021102 1.51568241 + -2.10621062 1.51204574 + -2.10221022 1.50828091 + -2.09820982 1.50438751 + -2.09420942 1.50036554 + -2.09020902 1.49621549 + -2.08620862 1.49193827 + -2.08220822 1.48753528 + -2.07820782 1.48300840 + -2.07420742 1.47835998 + -2.07020702 1.47359286 + -2.06620662 1.46871034 + -2.06220622 1.46371620 + -2.05820582 1.45861467 + -2.05420542 1.45341044 + -2.05020502 1.44810860 + -2.04620462 1.44271468 + -2.04220422 1.43723456 + -2.03820382 1.43167451 + -2.03420342 1.42604111 + -2.03020302 1.42034125 + -2.02620262 1.41458210 + -2.02220222 1.40877104 + -2.01820182 1.40291567 + -2.01420142 1.39702376 + -2.01020102 1.39110319 + -2.00620062 1.38516194 + -2.00220022 1.37920805 + -1.99819982 1.37324954 + -1.99419942 1.36729446 + -1.99019902 1.36135075 + -1.98619862 1.35542628 + -1.98219822 1.34952880 + -1.97819782 1.34366585 + -1.97419742 1.33784483 + -1.97019702 1.33207287 + -1.96619662 1.32635687 + -1.96219622 1.32070343 + -1.95819582 1.31511888 + -1.95419542 1.30960917 + -1.95019502 1.30417996 + -1.94619462 1.29883652 + -1.94219422 1.29358375 + -1.93819382 1.28842617 + -1.93419342 1.28336789 + -1.93019302 1.27841264 + -1.92619262 1.27356373 + -1.92219222 1.26882408 + -1.91819182 1.26419620 + -1.91419142 1.25968219 + -1.91019102 1.25528377 + -1.90619062 1.25100228 + -1.90219022 1.24683867 + -1.89818982 1.24279352 + -1.89418942 1.23886709 + -1.89018902 1.23505929 + -1.88618862 1.23136970 + -1.88218822 1.22779762 + -1.87818782 1.22434205 + -1.87418742 1.22100176 + -1.87018702 1.21777526 + -1.86618662 1.21466085 + -1.86218622 1.21165662 + -1.85818582 1.20876052 + -1.85418542 1.20597032 + -1.85018502 1.20328369 + -1.84618462 1.20069819 + -1.84218422 1.19821130 + -1.83818382 1.19582044 + -1.83418342 1.19352302 + -1.83018302 1.19131643 + -1.82618262 1.18919805 + -1.82218222 1.18716532 + -1.81818182 1.18521574 + -1.81418142 1.18334686 + -1.81018102 1.18155632 + -1.80618062 1.17984189 + -1.80218022 1.17820145 + -1.79817982 1.17663301 + -1.79417942 1.17513476 + -1.79017902 1.17370501 + -1.78617862 1.17234227 + -1.78217822 1.17104522 + -1.77817782 1.16981273 + -1.77417742 1.16864386 + -1.77017702 1.16753786 + -1.76617662 1.16649417 + -1.76217622 1.16551242 + -1.75817582 1.16459243 + -1.75417542 1.16373422 + -1.75017502 1.16293796 + -1.74617462 1.16220401 + -1.74217422 1.16153287 + -1.73817382 1.16092519 + -1.73417342 1.16038177 + -1.73017302 1.15990349 + -1.72617262 1.15949138 + -1.72217222 1.15914650 + -1.71817182 1.15887003 + -1.71417142 1.15866315 + -1.71017102 1.15852710 + -1.70617062 1.15846311 + -1.70217022 1.15847241 + -1.69816982 1.15855619 + -1.69416942 1.15871559 + -1.69016902 1.15895169 + -1.68616862 1.15926547 + -1.68216822 1.15965781 + -1.67816782 1.16012946 + -1.67416742 1.16068105 + -1.67016702 1.16131305 + -1.66616662 1.16202577 + -1.66216622 1.16281935 + -1.65816582 1.16369374 + -1.65416542 1.16464871 + -1.65016502 1.16568384 + -1.64616462 1.16679852 + -1.64216422 1.16799193 + -1.63816382 1.16926307 + -1.63416342 1.17061075 + -1.63016302 1.17203359 + -1.62616262 1.17353002 + -1.62216222 1.17509832 + -1.61816182 1.17673658 + -1.61416142 1.17844276 + -1.61016102 1.18021468 + -1.60616062 1.18205002 + -1.60216022 1.18394635 + -1.59815982 1.18590114 + -1.59415942 1.18791175 + -1.59015902 1.18997551 + -1.58615862 1.19208963 + -1.58215822 1.19425133 + -1.57815782 1.19645773 + -1.57415742 1.19870597 + -1.57015702 1.20099315 + -1.56615662 1.20331637 + -1.56215622 1.20567271 + -1.55815582 1.20805929 + -1.55415542 1.21047320 + -1.55015502 1.21291157 + -1.54615462 1.21537154 + -1.54215422 1.21785026 + -1.53815382 1.22034489 + -1.53415342 1.22285262 + -1.53015302 1.22537063 + -1.52615262 1.22789613 + -1.52215222 1.23042629 + -1.51815182 1.23295831 + -1.51415142 1.23548936 + -1.51015102 1.23801661 + -1.50615062 1.24053716 + -1.50215022 1.24304813 + -1.49814981 1.24554655 + -1.49414941 1.24802944 + -1.49014901 1.25049375 + -1.48614861 1.25293635 + -1.48214821 1.25535409 + -1.47814781 1.25774373 + -1.47414741 1.26010196 + -1.47014701 1.26242540 + -1.46614661 1.26471062 + -1.46214621 1.26695412 + -1.45814581 1.26915232 + -1.45414541 1.27130161 + -1.45014501 1.27339834 + -1.44614461 1.27543880 + -1.44214421 1.27741927 + -1.43814381 1.27933603 + -1.43414341 1.28118533 + -1.43014301 1.28296348 + -1.42614261 1.28466680 + -1.42214221 1.28629168 + -1.41814181 1.28783456 + -1.41414141 1.28929201 + -1.41014101 1.29066069 + -1.40614061 1.29193740 + -1.40214021 1.29311911 + -1.39813981 1.29420296 + -1.39413941 1.29518629 + -1.39013901 1.29606667 + -1.38613861 1.29684190 + -1.38213821 1.29751006 + -1.37813781 1.29806950 + -1.37413741 1.29851886 + -1.37013701 1.29885710 + -1.36613661 1.29908350 + -1.36213621 1.29919770 + -1.35813581 1.29919968 + -1.35413541 1.29908975 + -1.35013501 1.29886863 + -1.34613461 1.29853739 + -1.34213421 1.29809746 + -1.33813381 1.29755066 + -1.33413341 1.29689917 + -1.33013301 1.29614553 + -1.32613261 1.29529263 + -1.32213221 1.29434372 + -1.31813181 1.29330237 + -1.31413141 1.29217248 + -1.31013101 1.29095823 + -1.30613061 1.28966411 + -1.30213021 1.28829486 + -1.29812981 1.28685543 + -1.29412941 1.28535103 + -1.29012901 1.28378702 + -1.28612861 1.28216893 + -1.28212821 1.28050242 + -1.27812781 1.27879326 + -1.27412741 1.27704727 + -1.27012701 1.27527031 + -1.26612661 1.27346826 + -1.26212621 1.27164694 + -1.25812581 1.26981214 + -1.25412541 1.26796955 + -1.25012501 1.26612473 + -1.24612461 1.26428308 + -1.24212421 1.26244984 + -1.23812381 1.26063001 + -1.23412341 1.25882837 + -1.23012301 1.25704944 + -1.22612261 1.25529742 + -1.22212221 1.25357624 + -1.21812181 1.25188949 + -1.21412141 1.25024041 + -1.21012101 1.24863190 + -1.20612061 1.24706646 + -1.20212021 1.24554626 + -1.19811981 1.24407305 + -1.19411941 1.24264823 + -1.19011901 1.24127279 + -1.18611861 1.23994736 + -1.18211821 1.23867220 + -1.17811781 1.23744719 + -1.17411741 1.23627188 + -1.17011701 1.23514548 + -1.16611661 1.23406690 + -1.16211621 1.23303471 + -1.15811581 1.23204726 + -1.15411541 1.23110261 + -1.15011501 1.23019860 + -1.14611461 1.22933290 + -1.14211421 1.22850299 + -1.13811381 1.22770619 + -1.13411341 1.22693975 + -1.13011301 1.22620081 + -1.12611261 1.22548646 + -1.12211221 1.22479377 + -1.11811181 1.22411982 + -1.11411141 1.22346173 + -1.11011101 1.22281666 + -1.10611061 1.22218186 + -1.10211021 1.22155471 + -1.09810981 1.22093268 + -1.09410941 1.22031342 + -1.09010901 1.21969474 + -1.08610861 1.21907461 + -1.08210821 1.21845123 + -1.07810781 1.21782296 + -1.07410741 1.21718841 + -1.07010701 1.21654637 + -1.06610661 1.21589586 + -1.06210621 1.21523613 + -1.05810581 1.21456662 + -1.05410541 1.21388700 + -1.05010501 1.21319712 + -1.04610461 1.21249704 + -1.04210421 1.21178699 + -1.03810381 1.21106739 + -1.03410341 1.21033880 + -1.03010301 1.20960193 + -1.02610261 1.20885760 + -1.02210221 1.20810676 + -1.01810181 1.20735045 + -1.01410141 1.20658979 + -1.01010101 1.20582594 + -1.00610061 1.20506014 + -1.00210021 1.20429362 + -0.99809981 1.20352766 + -0.99409941 1.20276350 + -0.99009901 1.20200240 + -0.98609861 1.20124556 + -0.98209821 1.20049415 + -0.97809781 1.19974930 + -0.97409741 1.19901206 + -0.97009701 1.19828343 + -0.96609661 1.19756430 + -0.96209621 1.19685552 + -0.95809581 1.19615782 + -0.95409541 1.19547184 + -0.95009501 1.19479815 + -0.94609461 1.19413719 + -0.94209421 1.19348933 + -0.93809381 1.19285484 + -0.93409341 1.19223387 + -0.93009301 1.19162652 + -0.92609261 1.19103275 + -0.92209221 1.19045245 + -0.91809181 1.18988545 + -0.91409141 1.18933145 + -0.91009101 1.18879010 + -0.90609061 1.18826097 + -0.90209021 1.18774355 + -0.89808981 1.18723727 + -0.89408941 1.18674148 + -0.89008901 1.18625549 + -0.88608861 1.18577855 + -0.88208821 1.18530984 + -0.87808781 1.18484853 + -0.87408741 1.18439370 + -0.87008701 1.18394444 + -0.86608661 1.18349976 + -0.86208621 1.18305868 + -0.85808581 1.18262019 + -0.85408541 1.18218324 + -0.85008501 1.18174678 + -0.84608461 1.18130978 + -0.84208421 1.18087118 + -0.83808381 1.18042993 + -0.83408341 1.17998501 + -0.83008301 1.17953542 + -0.82608261 1.17908018 + -0.82208221 1.17861836 + -0.81808181 1.17814907 + -0.81408141 1.17767147 + -0.81008101 1.17718481 + -0.80608061 1.17668837 + -0.80208021 1.17618156 + -0.79807981 1.17566383 + -0.79407941 1.17513476 + -0.79007901 1.17459403 + -0.78607861 1.17404140 + -0.78207821 1.17347680 + -0.77807781 1.17290023 + -0.77407741 1.17231184 + -0.77007701 1.17171191 + -0.76607661 1.17110083 + -0.76207621 1.17047916 + -0.75807581 1.16984753 + -0.75407541 1.16920676 + -0.75007501 1.16855774 + -0.74607461 1.16790151 + -0.74207421 1.16723920 + -0.73807381 1.16657206 + -0.73407341 1.16590140 + -0.73007301 1.16522865 + -0.72607261 1.16455526 + -0.72207221 1.16388277 + -0.71807181 1.16321273 + -0.71407141 1.16254673 + -0.71007101 1.16188634 + -0.70607061 1.16123312 + -0.70207021 1.16058862 + -0.69806981 1.15995429 + -0.69406941 1.15933157 + -0.69006901 1.15872175 + -0.68606861 1.15812605 + -0.68206821 1.15754557 + -0.67806781 1.15698126 + -0.67406741 1.15643392 + -0.67006701 1.15590418 + -0.66606661 1.15539250 + -0.66206621 1.15489917 + -0.65806581 1.15442426 + -0.65406541 1.15396766 + -0.65006501 1.15352906 + -0.64606461 1.15310796 + -0.64206421 1.15270364 + -0.63806381 1.15231521 + -0.63406341 1.15194159 + -0.63006301 1.15158153 + -0.62606261 1.15123359 + -0.62206221 1.15089623 + -0.61806181 1.15056774 + -0.61406141 1.15024632 + -0.61006101 1.14993005 + -0.60606061 1.14961697 + -0.60206021 1.14930506 + -0.59805981 1.14899225 + -0.59405941 1.14867650 + -0.59005901 1.14835578 + -0.58605861 1.14802811 + -0.58205821 1.14769158 + -0.57805781 1.14734437 + -0.57405741 1.14698479 + -0.57005701 1.14661127 + -0.56605661 1.14622241 + -0.56205621 1.14581699 + -0.55805581 1.14539398 + -0.55405541 1.14495255 + -0.55005501 1.14449209 + -0.54605461 1.14401222 + -0.54205421 1.14351278 + -0.53805381 1.14299387 + -0.53405341 1.14245580 + -0.53005301 1.14189911 + -0.52605261 1.14132460 + -0.52205221 1.14073324 + -0.51805181 1.14012625 + -0.51405141 1.13950501 + -0.51005101 1.13887109 + -0.50605061 1.13822622 + -0.50205021 1.13757226 + -0.49804980 1.13691117 + -0.49404940 1.13624502 + -0.49004900 1.13557592 + -0.48604860 1.13490605 + -0.48204820 1.13423756 + -0.47804780 1.13357259 + -0.47404740 1.13291326 + -0.47004700 1.13226158 + -0.46604660 1.13161948 + -0.46204620 1.13098875 + -0.45804580 1.13037104 + -0.45404540 1.12976783 + -0.45004500 1.12918040 + -0.44604460 1.12860980 + -0.44204420 1.12805689 + -0.43804380 1.12752226 + -0.43404340 1.12700626 + -0.43004300 1.12650896 + -0.42604260 1.12603018 + -0.42204220 1.12556949 + -0.41804180 1.12512616 + -0.41404140 1.12469923 + -0.41004100 1.12428746 + -0.40604060 1.12388939 + -0.40204020 1.12350333 + -0.39803980 1.12312736 + -0.39403940 1.12275938 + -0.39003900 1.12239711 + -0.38603860 1.12203814 + -0.38203820 1.12167991 + -0.37803780 1.12131978 + -0.37403740 1.12095504 + -0.37003700 1.12058292 + -0.36603660 1.12020067 + -0.36203620 1.11980554 + -0.35803580 1.11939481 + -0.35403540 1.11896588 + -0.35003500 1.11851623 + -0.34603460 1.11804345 + -0.34203420 1.11754533 + -0.33803380 1.11701982 + -0.33403340 1.11646508 + -0.33003300 1.11587947 + -0.32603260 1.11526163 + -0.32203220 1.11461041 + -0.31803180 1.11392496 + -0.31403140 1.11320469 + -0.31003100 1.11244929 + -0.30603060 1.11165873 + -0.30203020 1.11083326 + -0.29802980 1.10997341 + -0.29402940 1.10907997 + -0.29002900 1.10815400 + -0.28602860 1.10719679 + -0.28202820 1.10620986 + -0.27802780 1.10519495 + -0.27402740 1.10415398 + -0.27002700 1.10308904 + -0.26602660 1.10200234 + -0.26202620 1.10089624 + -0.25802580 1.09977315 + -0.25402540 1.09863555 + -0.25002500 1.09748597 + -0.24602460 1.09632691 + -0.24202420 1.09516086 + -0.23802380 1.09399024 + -0.23402340 1.09281739 + -0.23002300 1.09164455 + -0.22602260 1.09047382 + -0.22202220 1.08930715 + -0.21802180 1.08814631 + -0.21402140 1.08699287 + -0.21002100 1.08584820 + -0.20602060 1.08471345 + -0.20202020 1.08358954 + -0.19801980 1.08247715 + -0.19401940 1.08137674 + -0.19001900 1.08028850 + -0.18601860 1.07921242 + -0.18201820 1.07814822 + -0.17801780 1.07709545 + -0.17401740 1.07605341 + -0.17001700 1.07502123 + -0.16601660 1.07399786 + -0.16201620 1.07298208 + -0.15801580 1.07197255 + -0.15401540 1.07096783 + -0.15001500 1.06996635 + -0.14601460 1.06896652 + -0.14201420 1.06796668 + -0.13801380 1.06696519 + -0.13401340 1.06596040 + -0.13001300 1.06495071 + -0.12601260 1.06393458 + -0.12201220 1.06291058 + -0.11801180 1.06187735 + -0.11401140 1.06083372 + -0.11001100 1.05977862 + -0.10601060 1.05871118 + -0.10201020 1.05763070 + -0.09800980 1.05653670 + -0.09400940 1.05542886 + -0.09000900 1.05430713 + -0.08600860 1.05317162 + -0.08200820 1.05202270 + -0.07800780 1.05086094 + -0.07400740 1.04968712 + -0.07000700 1.04850222 + -0.06600660 1.04730742 + -0.06200620 1.04610409 + -0.05800580 1.04489375 + -0.05400540 1.04367807 + -0.05000500 1.04245888 + -0.04600460 1.04123810 + -0.04200420 1.04001772 + -0.03800380 1.03879985 + -0.03400340 1.03758660 + -0.03000300 1.03638012 + -0.02600260 1.03518255 + -0.02200220 1.03399602 + -0.01800180 1.03282259 + -0.01400140 1.03166426 + -0.01000100 1.03052294 + -0.00600060 1.02940041 + -0.00200020 1.02829834 + 0.00200020 1.02721824 + 0.00600060 1.02616146 + 0.01000100 1.02512917 + 0.01400140 1.02412235 + 0.01800180 1.02314181 + 0.02200220 1.02218813 + 0.02600260 1.02126170 + 0.03000300 1.02036270 + 0.03400340 1.01949112 + 0.03800380 1.01864675 + 0.04200420 1.01782917 + 0.04600460 1.01703780 + 0.05000500 1.01627187 + 0.05400540 1.01553048 + 0.05800580 1.01481257 + 0.06200620 1.01411693 + 0.06600660 1.01344229 + 0.07000700 1.01278726 + 0.07400740 1.01215039 + 0.07800780 1.01153018 + 0.08200820 1.01092510 + 0.08600860 1.01033363 + 0.09000900 1.00975425 + 0.09400940 1.00918549 + 0.09800980 1.00862592 + 0.10201020 1.00807422 + 0.10601060 1.00752912 + 0.11001100 1.00698951 + 0.11401140 1.00645437 + 0.11801180 1.00592285 + 0.12201220 1.00539424 + 0.12601260 1.00486800 + 0.13001300 1.00434375 + 0.13401340 1.00382129 + 0.13801380 1.00330063 + 0.14201420 1.00278192 + 0.14601460 1.00226550 + 0.15001500 1.00175191 + 0.15401540 1.00124184 + 0.15801580 1.00073614 + 0.16201620 1.00023582 + 0.16601660 0.99974202 + 0.17001700 0.99925602 + 0.17401740 0.99877920 + 0.17801780 0.99831303 + 0.18201820 0.99785907 + 0.18601860 0.99741891 + 0.19001900 0.99699421 + 0.19401940 0.99658661 + 0.19801980 0.99619776 + 0.20202020 0.99582929 + 0.20602060 0.99548278 + 0.21002100 0.99515974 + 0.21402140 0.99486160 + 0.21802180 0.99458967 + 0.22202220 0.99434515 + 0.22602260 0.99412912 + 0.23002300 0.99394248 + 0.23402340 0.99378598 + 0.23802380 0.99366022 + 0.24202420 0.99356557 + 0.24602460 0.99350225 + 0.25002500 0.99347029 + 0.25402540 0.99346950 + 0.25802580 0.99349951 + 0.26202620 0.99355978 + 0.26602660 0.99364956 + 0.27002700 0.99376794 + 0.27402740 0.99391381 + 0.27802780 0.99408596 + 0.28202820 0.99428297 + 0.28602860 0.99450335 + 0.29002900 0.99474546 + 0.29402940 0.99500758 + 0.29802980 0.99528791 + 0.30203020 0.99558459 + 0.30603060 0.99589573 + 0.31003100 0.99621942 + 0.31403140 0.99655376 + 0.31803180 0.99689687 + 0.32203220 0.99724692 + 0.32603260 0.99760213 + 0.33003300 0.99796084 + 0.33403340 0.99832146 + 0.33803380 0.99868254 + 0.34203420 0.99904277 + 0.34603460 0.99940097 + 0.35003500 0.99975614 + 0.35403540 1.00010745 + 0.35803580 1.00045427 + 0.36203620 1.00079614 + 0.36603660 1.00113281 + 0.37003700 1.00146424 + 0.37403740 1.00179056 + 0.37803780 1.00211215 + 0.38203820 1.00242954 + 0.38603860 1.00274351 + 0.39003900 1.00305498 + 0.39403940 1.00336508 + 0.39803980 1.00367513 + 0.40204020 1.00398657 + 0.40604060 1.00430105 + 0.41004100 1.00462030 + 0.41404140 1.00494623 + 0.41804180 1.00528084 + 0.42204220 1.00562624 + 0.42604260 1.00598460 + 0.43004300 1.00635820 + 0.43404340 1.00674935 + 0.43804380 1.00716040 + 0.44204420 1.00759374 + 0.44604460 1.00805178 + 0.45004500 1.00853689 + 0.45404540 1.00905148 + 0.45804580 1.00959790 + 0.46204620 1.01017847 + 0.46604660 1.01079547 + 0.47004700 1.01145112 + 0.47404740 1.01214757 + 0.47804780 1.01288693 + 0.48204820 1.01367118 + 0.48604860 1.01450226 + 0.49004900 1.01538201 + 0.49404940 1.01631215 + 0.49804980 1.01729435 + 0.50205021 1.01833014 + 0.50605061 1.01942096 + 0.51005101 1.02056817 + 0.51405141 1.02177300 + 0.51805181 1.02303657 + 0.52205221 1.02435991 + 0.52605261 1.02574394 + 0.53005301 1.02718947 + 0.53405341 1.02869720 + 0.53805381 1.03026771 + 0.54205421 1.03190150 + 0.54605461 1.03359892 + 0.55005501 1.03536024 + 0.55405541 1.03718559 + 0.55805581 1.03907501 + 0.56205621 1.04102841 + 0.56605661 1.04304557 + 0.57005701 1.04512617 + 0.57405741 1.04726975 + 0.57805781 1.04947573 + 0.58205821 1.05174340 + 0.58605861 1.05407191 + 0.59005901 1.05646029 + 0.59405941 1.05890743 + 0.59805981 1.06141207 + 0.60206021 1.06397283 + 0.60606061 1.06658816 + 0.61006101 1.06925639 + 0.61406141 1.07197569 + 0.61806181 1.07474410 + 0.62206221 1.07755951 + 0.62606261 1.08041966 + 0.63006301 1.08332215 + 0.63406341 1.08626446 + 0.63806381 1.08924390 + 0.64206421 1.09225767 + 0.64606461 1.09530284 + 0.65006501 1.09837635 + 0.65406541 1.10147503 + 0.65806581 1.10459560 + 0.66206621 1.10773466 + 0.66606661 1.11088873 + 0.67006701 1.11405425 + 0.67406741 1.11722756 + 0.67806781 1.12040494 + 0.68206821 1.12358261 + 0.68606861 1.12675674 + 0.69006901 1.12992347 + 0.69406941 1.13307888 + 0.69806981 1.13621907 + 0.70207021 1.13934009 + 0.70607061 1.14243803 + 0.71007101 1.14550895 + 0.71407141 1.14854897 + 0.71807181 1.15155422 + 0.72207221 1.15452086 + 0.72607261 1.15744511 + 0.73007301 1.16032325 + 0.73407341 1.16315162 + 0.73807381 1.16592663 + 0.74207421 1.16864476 + 0.74607461 1.17130261 + 0.75007501 1.17389682 + 0.75407541 1.17642418 + 0.75807581 1.17888155 + 0.76207621 1.18126591 + 0.76607661 1.18357435 + 0.77007701 1.18580408 + 0.77407741 1.18795243 + 0.77807781 1.19001687 + 0.78207821 1.19199497 + 0.78607861 1.19388445 + 0.79007901 1.19568317 + 0.79407941 1.19738914 + 0.79807981 1.19900049 + 0.80208021 1.20051551 + 0.80608061 1.20193265 + 0.81008101 1.20325050 + 0.81408141 1.20446783 + 0.81808181 1.20558356 + 0.82208221 1.20659680 + 0.82608261 1.20750681 + 0.83008301 1.20831305 + 0.83408341 1.20901517 + 0.83808381 1.20961299 + 0.84208421 1.21010655 + 0.84608461 1.21049609 + 0.85008501 1.21078206 + 0.85408541 1.21096510 + 0.85808581 1.21104612 + 0.86208621 1.21102622 + 0.86608661 1.21090673 + 0.87008701 1.21068923 + 0.87408741 1.21037554 + 0.87808781 1.20996771 + 0.88208821 1.20946804 + 0.88608861 1.20887906 + 0.89008901 1.20820355 + 0.89408941 1.20744455 + 0.89808981 1.20660531 + 0.90209021 1.20568931 + 0.90609061 1.20470028 + 0.91009101 1.20364216 + 0.91409141 1.20251908 + 0.91809181 1.20133537 + 0.92209221 1.20009557 + 0.92609261 1.19880434 + 0.93009301 1.19746651 + 0.93409341 1.19608705 + 0.93809381 1.19467101 + 0.94209421 1.19322354 + 0.94609461 1.19174984 + 0.95009501 1.19025514 + 0.95409541 1.18874467 + 0.95809581 1.18722365 + 0.96209621 1.18569722 + 0.96609661 1.18417046 + 0.97009701 1.18264830 + 0.97409741 1.18113554 + 0.97809781 1.17963679 + 0.98209821 1.17815645 + 0.98609861 1.17669868 + 0.99009901 1.17526737 + 0.99409941 1.17386608 + 0.99809981 1.17249807 + 1.00210021 1.17116623 + 1.00610061 1.16987309 + 1.01010101 1.16862077 + 1.01410141 1.16741098 + 1.01810181 1.16624500 + 1.02210221 1.16512368 + 1.02610261 1.16404742 + 1.03010301 1.16301617 + 1.03410341 1.16202944 + 1.03810381 1.16108628 + 1.04210421 1.16018532 + 1.04610461 1.15932478 + 1.05010501 1.15850245 + 1.05410541 1.15771576 + 1.05810581 1.15696177 + 1.06210621 1.15623723 + 1.06610661 1.15553856 + 1.07010701 1.15486197 + 1.07410741 1.15420340 + 1.07810781 1.15355866 + 1.08210821 1.15292338 + 1.08610861 1.15229315 + 1.09010901 1.15166348 + 1.09410941 1.15102992 + 1.09810981 1.15038805 + 1.10211021 1.14973358 + 1.10611061 1.14906237 + 1.11011101 1.14837048 + 1.11411141 1.14765422 + 1.11811181 1.14691020 + 1.12211221 1.14613535 + 1.12611261 1.14532699 + 1.13011301 1.14448283 + 1.13411341 1.14360103 + 1.13811381 1.14268021 + 1.14211421 1.14171946 + 1.14611461 1.14071839 + 1.15011501 1.13967710 + 1.15411541 1.13859623 + 1.15811581 1.13747692 + 1.16211621 1.13632081 + 1.16611661 1.13513005 + 1.17011701 1.13390727 + 1.17411741 1.13265555 + 1.17811781 1.13137841 + 1.18211821 1.13007973 + 1.18611861 1.12876380 + 1.19011901 1.12743517 + 1.19411941 1.12609870 + 1.19811981 1.12475944 + 1.20212021 1.12342262 + 1.20612061 1.12209359 + 1.21012101 1.12077772 + 1.21412141 1.11948041 + 1.21812181 1.11820699 + 1.22212221 1.11696266 + 1.22612261 1.11575246 + 1.23012301 1.11458118 + 1.23412341 1.11345334 + 1.23812381 1.11237312 + 1.24212421 1.11134433 + 1.24612461 1.11037033 + 1.25012501 1.10945403 + 1.25412541 1.10859785 + 1.25812581 1.10780368 + 1.26212621 1.10707287 + 1.26612661 1.10640618 + 1.27012701 1.10580383 + 1.27412741 1.10526544 + 1.27812781 1.10479007 + 1.28212821 1.10437620 + 1.28612861 1.10402179 + 1.29012901 1.10372423 + 1.29412941 1.10348045 + 1.29812981 1.10328691 + 1.30213021 1.10313962 + 1.30613061 1.10303423 + 1.31013101 1.10296608 + 1.31413141 1.10293020 + 1.31813181 1.10292141 + 1.32213221 1.10293437 + 1.32613261 1.10296367 + 1.33013301 1.10300383 + 1.33413341 1.10304942 + 1.33813381 1.10309510 + 1.34213421 1.10313569 + 1.34613461 1.10316624 + 1.35013501 1.10318207 + 1.35413541 1.10317884 + 1.35813581 1.10315263 + 1.36213621 1.10309993 + 1.36613661 1.10301775 + 1.37013701 1.10290360 + 1.37413741 1.10275559 + 1.37813781 1.10257240 + 1.38213821 1.10235333 + 1.38613861 1.10209832 + 1.39013901 1.10180794 + 1.39413941 1.10148341 + 1.39813981 1.10112659 + 1.40214021 1.10073994 + 1.40614061 1.10032656 + 1.41014101 1.09989009 + 1.41414141 1.09943474 + 1.41814181 1.09896521 + 1.42214221 1.09848667 + 1.42614261 1.09800471 + 1.43014301 1.09752524 + 1.43414341 1.09705452 + 1.43814381 1.09659899 + 1.44214421 1.09616529 + 1.44614461 1.09576016 + 1.45014501 1.09539036 + 1.45414541 1.09506264 + 1.45814581 1.09478360 + 1.46214621 1.09455971 + 1.46614661 1.09439716 + 1.47014701 1.09430188 + 1.47414741 1.09427938 + 1.47814781 1.09433478 + 1.48214821 1.09447272 + 1.48614861 1.09469728 + 1.49014901 1.09501202 + 1.49414941 1.09541984 + 1.49814981 1.09592305 + 1.50215022 1.09652325 + 1.50615062 1.09722140 + 1.51015102 1.09801773 + 1.51415142 1.09891182 + 1.51815182 1.09990251 + 1.52215222 1.10098800 + 1.52615262 1.10216581 + 1.53015302 1.10343283 + 1.53415342 1.10478535 + 1.53815382 1.10621907 + 1.54215422 1.10772920 + 1.54615462 1.10931044 + 1.55015502 1.11095710 + 1.55415542 1.11266311 + 1.55815582 1.11442209 + 1.56215622 1.11622744 + 1.56615662 1.11807237 + 1.57015702 1.11995000 + 1.57415742 1.12185340 + 1.57815782 1.12377568 + 1.58215822 1.12571004 + 1.58615862 1.12764985 + 1.59015902 1.12958871 + 1.59415942 1.13152050 + 1.59815982 1.13343944 + 1.60216022 1.13534016 + 1.60616062 1.13721774 + 1.61016102 1.13906772 + 1.61416142 1.14088618 + 1.61816182 1.14266976 + 1.62216222 1.14441565 + 1.62616262 1.14612167 + 1.63016302 1.14778622 + 1.63416342 1.14940831 + 1.63816382 1.15098754 + 1.64216422 1.15252413 + 1.64616462 1.15401885 + 1.65016502 1.15547302 + 1.65416542 1.15688848 + 1.65816582 1.15826755 + 1.66216622 1.15961298 + 1.66616662 1.16092790 + 1.67016702 1.16221580 + 1.67416742 1.16348044 + 1.67816782 1.16472578 + 1.68216822 1.16595596 + 1.68616862 1.16717521 + 1.69016902 1.16838778 + 1.69416942 1.16959788 + 1.69816982 1.17080964 + 1.70217022 1.17202700 + 1.70617062 1.17325369 + 1.71017102 1.17449314 + 1.71417142 1.17574843 + 1.71817182 1.17702227 + 1.72217222 1.17831692 + 1.72617262 1.17963412 + 1.73017302 1.18097514 + 1.73417342 1.18234067 + 1.73817382 1.18373081 + 1.74217422 1.18514509 + 1.74617462 1.18658242 + 1.75017502 1.18804112 + 1.75417542 1.18951887 + 1.75817582 1.19101279 + 1.76217622 1.19251940 + 1.76617662 1.19403467 + 1.77017702 1.19555407 + 1.77417742 1.19707256 + 1.77817782 1.19858466 + 1.78217822 1.20008453 + 1.78617862 1.20156594 + 1.79017902 1.20302243 + 1.79417942 1.20444730 + 1.79817982 1.20583368 + 1.80218022 1.20717465 + 1.80618062 1.20846324 + 1.81018102 1.20969255 + 1.81418142 1.21085580 + 1.81818182 1.21194641 + 1.82218222 1.21295805 + 1.82618262 1.21388471 + 1.83018302 1.21472080 + 1.83418342 1.21546114 + 1.83818382 1.21610109 + 1.84218422 1.21663656 + 1.84618462 1.21706407 + 1.85018502 1.21738076 + 1.85418542 1.21758448 + 1.85818582 1.21767378 + 1.86218622 1.21764794 + 1.86618662 1.21750697 + 1.87018702 1.21725166 + 1.87418742 1.21688354 + 1.87818782 1.21640487 + 1.88218822 1.21581866 + 1.88618862 1.21512864 + 1.89018902 1.21433919 + 1.89418942 1.21345537 + 1.89818982 1.21248283 + 1.90219022 1.21142778 + 1.90619062 1.21029697 + 1.91019102 1.20909755 + 1.91419142 1.20783712 + 1.91819182 1.20652359 + 1.92219222 1.20516511 + 1.92619262 1.20377006 + 1.93019302 1.20234692 + 1.93419342 1.20090425 + 1.93819382 1.19945056 + 1.94219422 1.19799430 + 1.94619462 1.19654373 + 1.95019502 1.19510691 + 1.95419542 1.19369161 + 1.95819582 1.19230522 + 1.96219622 1.19095475 + 1.96619662 1.18964673 + 1.97019702 1.18838717 + 1.97419742 1.18718154 + 1.97819782 1.18603470 + 1.98219822 1.18495089 + 1.98619862 1.18393371 + 1.99019902 1.18298608 + 1.99419942 1.18211023 + 1.99819982 1.18130771 + 2.00220022 1.18057939 + 2.00620062 1.17992544 + 2.01020102 1.17934540 + 2.01420142 1.17883814 + 2.01820182 1.17840191 + 2.02220222 1.17803440 + 2.02620262 1.17773274 + 2.03020302 1.17749355 + 2.03420342 1.17731301 + 2.03820382 1.17718688 + 2.04220422 1.17711058 + 2.04620462 1.17707923 + 2.05020502 1.17708772 + 2.05420542 1.17713078 + 2.05820582 1.17720300 + 2.06220622 1.17729896 + 2.06620662 1.17741322 + 2.07020702 1.17754043 + 2.07420742 1.17767538 + 2.07820782 1.17781305 + 2.08220822 1.17794867 + 2.08620862 1.17807774 + 2.09020902 1.17819614 + 2.09420942 1.17830013 + 2.09820982 1.17838640 + 2.10221022 1.17845210 + 2.10621062 1.17849486 + 2.11021102 1.17851286 + 2.11421142 1.17850478 + 2.11821182 1.17846987 + 2.12221222 1.17840791 + 2.12621262 1.17831928 + 2.13021302 1.17820486 + 2.13421342 1.17806612 + 2.13821382 1.17790501 + 2.14221422 1.17772403 + 2.14621462 1.17752613 + 2.15021502 1.17731474 + 2.15421542 1.17709368 + 2.15821582 1.17686717 + 2.16221622 1.17663977 + 2.16621662 1.17641634 + 2.17021702 1.17620197 + 2.17421742 1.17600197 + 2.17821782 1.17582180 + 2.18221822 1.17566701 + 2.18621862 1.17554321 + 2.19021902 1.17545600 + 2.19421942 1.17541092 + 2.19821982 1.17541341 + 2.20222022 1.17546875 + 2.20622062 1.17558201 + 2.21022102 1.17575801 + 2.21422142 1.17600128 + 2.21822182 1.17631599 + 2.22222222 1.17670594 + 2.22622262 1.17717453 + 2.23022302 1.17772469 + 2.23422342 1.17835889 + 2.23822382 1.17907907 + 2.24222422 1.17988667 + 2.24622462 1.18078257 + 2.25022502 1.18176711 + 2.25422542 1.18284004 + 2.25822582 1.18400055 + 2.26222622 1.18524726 + 2.26622662 1.18657820 + 2.27022702 1.18799083 + 2.27422742 1.18948207 + 2.27822782 1.19104828 + 2.28222822 1.19268528 + 2.28622862 1.19438839 + 2.29022902 1.19615246 + 2.29422942 1.19797185 + 2.29822982 1.19984049 + 2.30223022 1.20175193 + 2.30623062 1.20369932 + 2.31023102 1.20567551 + 2.31423142 1.20767301 + 2.31823182 1.20968412 + 2.32223222 1.21170089 + 2.32623262 1.21371519 + 2.33023302 1.21571878 + 2.33423342 1.21770331 + 2.33823382 1.21966037 + 2.34223422 1.22158157 + 2.34623462 1.22345853 + 2.35023502 1.22528294 + 2.35423542 1.22704664 + 2.35823582 1.22874160 + 2.36223622 1.23035999 + 2.36623662 1.23189424 + 2.37023702 1.23333701 + 2.37423742 1.23468130 + 2.37823782 1.23592044 + 2.38223822 1.23704812 + 2.38623862 1.23805845 + 2.39023902 1.23894594 + 2.39423942 1.23970556 + 2.39823982 1.24033277 + 2.40224022 1.24082350 + 2.40624062 1.24117419 + 2.41024102 1.24138181 + 2.41424142 1.24144385 + 2.41824182 1.24135835 + 2.42224222 1.24112391 + 2.42624262 1.24073966 + 2.43024302 1.24020528 + 2.43424342 1.23952101 + 2.43824382 1.23868763 + 2.44224422 1.23770646 + 2.44624462 1.23657934 + 2.45024502 1.23530862 + 2.45424542 1.23389717 + 2.45824582 1.23234831 + 2.46224622 1.23066586 + 2.46624662 1.22885406 + 2.47024702 1.22691756 + 2.47424742 1.22486144 + 2.47824782 1.22269112 + 2.48224822 1.22041237 + 2.48624862 1.21803129 + 2.49024902 1.21555423 + 2.49424942 1.21298783 + 2.49824982 1.21033892 + 2.50225023 1.20761454 + 2.50625063 1.20482189 + 2.51025103 1.20196827 + 2.51425143 1.19906110 + 2.51825183 1.19610784 + 2.52225223 1.19311598 + 2.52625263 1.19009302 + 2.53025303 1.18704639 + 2.53425343 1.18398348 + 2.53825383 1.18091158 + 2.54225423 1.17783785 + 2.54625463 1.17476927 + 2.55025503 1.17171269 + 2.55425543 1.16867470 + 2.55825583 1.16566171 + 2.56225623 1.16267984 + 2.56625663 1.15973496 + 2.57025703 1.15683264 + 2.57425743 1.15397817 + 2.57825783 1.15117648 + 2.58225823 1.14843221 + 2.58625863 1.14574963 + 2.59025903 1.14313266 + 2.59425943 1.14058489 + 2.59825983 1.13810952 + 2.60226023 1.13570942 + 2.60626063 1.13338706 + 2.61026103 1.13114459 + 2.61426143 1.12898379 + 2.61826183 1.12690608 + 2.62226223 1.12491257 + 2.62626263 1.12300400 + 2.63026303 1.12118084 + 2.63426343 1.11944320 + 2.63826383 1.11779095 + 2.64226423 1.11622365 + 2.64626463 1.11474061 + 2.65026503 1.11334090 + 2.65426543 1.11202337 + 2.65826583 1.11078667 + 2.66226623 1.10962925 + 2.66626663 1.10854941 + 2.67026703 1.10754530 + 2.67426743 1.10661496 + 2.67826783 1.10575631 + 2.68226823 1.10496720 + 2.68626863 1.10424541 + 2.69026903 1.10358868 + 2.69426943 1.10299472 + 2.69826983 1.10246126 + 2.70227023 1.10198601 + 2.70627063 1.10156671 + 2.71027103 1.10120116 + 2.71427143 1.10088721 + 2.71827183 1.10062277 + 2.72227223 1.10040582 + 2.72627263 1.10023447 + 2.73027303 1.10010688 + 2.73427343 1.10002135 + 2.73827383 1.09997628 + 2.74227423 1.09997017 + 2.74627463 1.10000166 + 2.75027503 1.10006950 + 2.75427543 1.10017255 + 2.75827583 1.10030981 + 2.76227623 1.10048037 + 2.76627663 1.10068345 + 2.77027703 1.10091835 + 2.77427743 1.10118448 + 2.77827783 1.10148137 + 2.78227823 1.10180857 + 2.78627863 1.10216577 + 2.79027903 1.10255267 + 2.79427943 1.10296904 + 2.79827983 1.10341472 + 2.80228023 1.10388953 + 2.80628063 1.10439334 + 2.81028103 1.10492603 + 2.81428143 1.10548747 + 2.81828183 1.10607751 + 2.82228223 1.10669597 + 2.82628263 1.10734267 + 2.83028303 1.10801734 + 2.83428343 1.10871969 + 2.83828383 1.10944935 + 2.84228423 1.11020591 + 2.84628463 1.11098886 + 2.85028503 1.11179763 + 2.85428543 1.11263158 + 2.85828583 1.11348996 + 2.86228623 1.11437198 + 2.86628663 1.11527675 + 2.87028703 1.11620330 + 2.87428743 1.11715059 + 2.87828783 1.11811755 + 2.88228823 1.11910299 + 2.88628863 1.12010573 + 2.89028903 1.12112450 + 2.89428943 1.12215804 + 2.89828983 1.12320504 + 2.90229023 1.12426419 + 2.90629063 1.12533420 + 2.91029103 1.12641378 + 2.91429143 1.12750168 + 2.91829183 1.12859668 + 2.92229223 1.12969764 + 2.92629263 1.13080347 + 2.93029303 1.13191317 + 2.93429343 1.13302585 + 2.93829383 1.13414069 + 2.94229423 1.13525701 + 2.94629463 1.13637426 + 2.95029503 1.13749199 + 2.95429543 1.13860990 + 2.95829583 1.13972785 + 2.96229623 1.14084580 + 2.96629663 1.14196390 + 2.97029703 1.14308239 + 2.97429743 1.14420167 + 2.97829783 1.14532229 + 2.98229823 1.14644489 + 2.98629863 1.14757025 + 2.99029903 1.14869923 + 2.99429943 1.14983279 + 2.99829983 1.15097198 + 3.00230023 1.15211790 + 3.00630063 1.15327168 + 3.01030103 1.15443450 + 3.01430143 1.15560753 + 3.01830183 1.15679194 + 3.02230223 1.15798886 + 3.02630263 1.15919937 + 3.03030303 1.16042448 + 3.03430343 1.16166511 + 3.03830383 1.16292206 + 3.04230423 1.16419603 + 3.04630463 1.16548754 + 3.05030503 1.16679698 + 3.05430543 1.16812455 + 3.05830583 1.16947026 + 3.06230623 1.17083395 + 3.06630663 1.17221523 + 3.07030703 1.17361349 + 3.07430743 1.17502795 + 3.07830783 1.17645756 + 3.08230823 1.17790108 + 3.08630863 1.17935706 + 3.09030903 1.18082384 + 3.09430943 1.18229954 + 3.09830983 1.18378210 + 3.10231023 1.18526930 + 3.10631063 1.18675873 + 3.11031103 1.18824783 + 3.11431143 1.18973391 + 3.11831183 1.19121418 + 3.12231223 1.19268572 + 3.12631263 1.19414558 + 3.13031303 1.19559071 + 3.13431343 1.19701807 + 3.13831383 1.19842458 + 3.14231423 1.19980719 + 3.14631463 1.20116287 + 3.15031503 1.20248867 + 3.15431543 1.20378170 + 3.15831583 1.20503916 + 3.16231623 1.20625839 + 3.16631663 1.20743685 + 3.17031703 1.20857214 + 3.17431743 1.20966206 + 3.17831783 1.21070454 + 3.18231823 1.21169774 + 3.18631863 1.21264001 + 3.19031903 1.21352990 + 3.19431943 1.21436617 + 3.19831983 1.21514782 + 3.20232023 1.21587404 + 3.20632063 1.21654426 + 3.21032103 1.21715814 + 3.21432143 1.21771553 + 3.21832183 1.21821651 + 3.22232223 1.21866138 + 3.22632263 1.21905062 + 3.23032303 1.21938492 + 3.23432343 1.21966515 + 3.23832383 1.21989237 + 3.24232423 1.22006780 + 3.24632463 1.22019281 + 3.25032503 1.22026896 + 3.25432543 1.22029790 + 3.25832583 1.22028146 + 3.26232623 1.22022156 + 3.26632663 1.22012025 + 3.27032703 1.21997968 + 3.27432743 1.21980211 + 3.27832783 1.21958987 + 3.28232823 1.21934541 + 3.28632863 1.21907124 + 3.29032903 1.21876994 + 3.29432943 1.21844418 + 3.29832983 1.21809670 + 3.30233023 1.21773029 + 3.30633063 1.21734782 + 3.31033103 1.21695223 + 3.31433143 1.21654651 + 3.31833183 1.21613372 + 3.32233223 1.21571697 + 3.32633263 1.21529947 + 3.33033303 1.21488444 + 3.33433343 1.21447520 + 3.33833383 1.21407511 + 3.34233423 1.21368759 + 3.34633463 1.21331613 + 3.35033503 1.21296426 + 3.35433543 1.21263554 + 3.35833583 1.21233360 + 3.36233623 1.21206210 + 3.36633663 1.21182472 + 3.37033703 1.21162516 + 3.37433743 1.21146712 + 3.37833783 1.21135432 + 3.38233823 1.21129045 + 3.38633863 1.21127917 + 3.39033903 1.21132410 + 3.39433943 1.21142878 + 3.39833983 1.21159669 + 3.40234023 1.21183121 + 3.40634063 1.21213561 + 3.41034103 1.21251299 + 3.41434143 1.21296633 + 3.41834183 1.21349842 + 3.42234223 1.21411184 + 3.42634263 1.21480897 + 3.43034303 1.21559195 + 3.43434343 1.21646264 + 3.43834383 1.21742267 + 3.44234423 1.21847333 + 3.44634463 1.21961562 + 3.45034503 1.22085024 + 3.45434543 1.22217753 + 3.45834583 1.22359749 + 3.46234623 1.22510977 + 3.46634663 1.22671365 + 3.47034703 1.22840807 + 3.47434743 1.23019160 + 3.47834783 1.23206242 + 3.48234823 1.23401839 + 3.48634863 1.23605700 + 3.49034903 1.23817539 + 3.49434943 1.24037040 + 3.49834983 1.24263853 + 3.50235024 1.24497600 + 3.50635064 1.24737873 + 3.51035104 1.24984241 + 3.51435144 1.25236250 + 3.51835184 1.25493424 + 3.52235224 1.25755270 + 3.52635264 1.26021281 + 3.53035304 1.26290937 + 3.53435344 1.26563711 + 3.53835384 1.26839070 + 3.54235424 1.27116478 + 3.54635464 1.27395402 + 3.55035504 1.27675311 + 3.55435544 1.27955683 + 3.55835584 1.28236006 + 3.56235624 1.28515781 + 3.56635664 1.28794525 + 3.57035704 1.29071774 + 3.57435744 1.29347084 + 3.57835784 1.29620036 + 3.58235824 1.29890235 + 3.58635864 1.30157311 + 3.59035904 1.30420924 + 3.59435944 1.30680763 + 3.59835984 1.30936546 + 3.60236024 1.31188022 + 3.60636064 1.31434969 + 3.61036104 1.31677197 + 3.61436144 1.31914545 + 3.61836184 1.32146882 + 3.62236224 1.32374104 + 3.62636264 1.32596134 + 3.63036304 1.32812920 + 3.63436344 1.33024435 + 3.63836384 1.33230672 + 3.64236424 1.33431645 + 3.64636464 1.33627383 + 3.65036504 1.33817932 + 3.65436544 1.34003350 + 3.65836584 1.34183703 + 3.66236624 1.34359067 + 3.66636664 1.34529520 + 3.67036704 1.34695144 + 3.67436744 1.34856020 + 3.67836784 1.35012228 + 3.68236824 1.35163840 + 3.68636864 1.35310924 + 3.69036904 1.35453540 + 3.69436944 1.35591734 + 3.69836984 1.35725545 + 3.70237024 1.35854996 + 3.70637064 1.35980097 + 3.71037104 1.36100846 + 3.71437144 1.36217223 + 3.71837184 1.36329196 + 3.72237224 1.36436718 + 3.72637264 1.36539728 + 3.73037304 1.36638153 + 3.73437344 1.36731907 + 3.73837384 1.36820894 + 3.74237424 1.36905010 + 3.74637464 1.36984142 + 3.75037504 1.37058175 + 3.75437544 1.37126988 + 3.75837584 1.37190461 + 3.76237624 1.37248475 + 3.76637664 1.37300917 + 3.77037704 1.37347678 + 3.77437744 1.37388659 + 3.77837784 1.37423775 + 3.78237824 1.37452951 + 3.78637864 1.37476132 + 3.79037904 1.37493280 + 3.79437944 1.37504376 + 3.79837984 1.37509426 + 3.80238024 1.37508458 + 3.80638064 1.37501525 + 3.81038104 1.37488707 + 3.81438144 1.37470111 + 3.81838184 1.37445872 + 3.82238224 1.37416151 + 3.82638264 1.37381137 + 3.83038304 1.37341048 + 3.83438344 1.37296125 + 3.83838384 1.37246637 + 3.84238424 1.37192875 + 3.84638464 1.37135153 + 3.85038504 1.37073807 + 3.85438544 1.37009186 + 3.85838584 1.36941661 + 3.86238624 1.36871610 + 3.86638664 1.36799426 + 3.87038704 1.36725507 + 3.87438744 1.36650255 + 3.87838784 1.36574075 + 3.88238824 1.36497369 + 3.88638864 1.36420533 + 3.89038904 1.36343956 + 3.89438944 1.36268016 + 3.89838984 1.36193077 + 3.90239024 1.36119484 + 3.90639064 1.36047565 + 3.91039104 1.35977623 + 3.91439144 1.35909939 + 3.91839184 1.35844766 + 3.92239224 1.35782331 + 3.92639264 1.35722828 + 3.93039304 1.35666422 + 3.93439344 1.35613246 + 3.93839384 1.35563400 + 3.94239424 1.35516953 + 3.94639464 1.35473937 + 3.95039504 1.35434356 + 3.95439544 1.35398181 + 3.95839584 1.35365349 + 3.96239624 1.35335772 + 3.96639664 1.35309329 + 3.97039704 1.35285876 + 3.97439744 1.35265241 + 3.97839784 1.35247233 + 3.98239824 1.35231638 + 3.98639864 1.35218223 + 3.99039904 1.35206744 + 3.99439944 1.35196940 + 3.99839984 1.35188542 + 4.00240024 1.35181275 + 4.00640064 1.35174857 + 4.01040104 1.35169006 + 4.01440144 1.35163442 + 4.01840184 1.35157889 + 4.02240224 1.35152075 + 4.02640264 1.35145740 + 4.03040304 1.35138636 + 4.03440344 1.35130525 + 4.03840384 1.35121189 + 4.04240424 1.35110425 + 4.04640464 1.35098050 + 4.05040504 1.35083902 + 4.05440544 1.35067841 + 4.05840584 1.35049749 + 4.06240624 1.35029532 + 4.06640664 1.35007120 + 4.07040704 1.34982467 + 4.07440744 1.34955552 + 4.07840784 1.34926378 + 4.08240824 1.34894968 + 4.08640864 1.34861373 + 4.09040904 1.34825661 + 4.09440944 1.34787923 + 4.09840984 1.34748267 + 4.10241024 1.34706821 + 4.10641064 1.34663727 + 4.11041104 1.34619142 + 4.11441144 1.34573232 + 4.11841184 1.34526176 + 4.12241224 1.34478160 + 4.12641264 1.34429374 + 4.13041304 1.34380011 + 4.13441344 1.34330267 + 4.13841384 1.34280333 + 4.14241424 1.34230399 + 4.14641464 1.34180647 + 4.15041504 1.34131252 + 4.15441544 1.34082377 + 4.15841584 1.34034176 + 4.16241624 1.33986784 + 4.16641664 1.33940325 + 4.17041704 1.33894902 + 4.17441744 1.33850601 + 4.17841784 1.33807489 + 4.18241824 1.33765610 + 4.18641864 1.33724987 + 4.19041904 1.33685623 + 4.19441944 1.33647495 + 4.19841984 1.33610562 + 4.20242024 1.33574756 + 4.20642064 1.33539990 + 4.21042104 1.33506156 + 4.21442144 1.33473122 + 4.21842184 1.33440739 + 4.22242224 1.33408841 + 4.22642264 1.33377242 + 4.23042304 1.33345742 + 4.23442344 1.33314128 + 4.23842384 1.33282175 + 4.24242424 1.33249648 + 4.24642464 1.33216305 + 4.25042504 1.33181900 + 4.25442544 1.33146181 + 4.25842584 1.33108899 + 4.26242624 1.33069806 + 4.26642664 1.33028658 + 4.27042704 1.32985218 + 4.27442744 1.32939260 + 4.27842784 1.32890569 + 4.28242824 1.32838943 + 4.28642864 1.32784196 + 4.29042904 1.32726164 + 4.29442944 1.32664698 + 4.29842984 1.32599675 + 4.30243024 1.32530995 + 4.30643064 1.32458580 + 4.31043104 1.32382383 + 4.31443144 1.32302379 + 4.31843184 1.32218574 + 4.32243224 1.32131001 + 4.32643264 1.32039723 + 4.33043304 1.31944828 + 4.33443344 1.31846436 + 4.33843384 1.31744690 + 4.34243424 1.31639765 + 4.34643464 1.31531856 + 4.35043504 1.31421186 + 4.35443544 1.31307998 + 4.35843584 1.31192558 + 4.36243624 1.31075148 + 4.36643664 1.30956070 + 4.37043704 1.30835637 + 4.37443744 1.30714174 + 4.37843784 1.30592017 + 4.38243824 1.30469506 + 4.38643864 1.30346986 + 4.39043904 1.30224802 + 4.39443944 1.30103296 + 4.39843984 1.29982805 + 4.40244024 1.29863659 + 4.40644064 1.29746176 + 4.41044104 1.29630661 + 4.41444144 1.29517403 + 4.41844184 1.29406672 + 4.42244224 1.29298719 + 4.42644264 1.29193771 + 4.43044304 1.29092030 + 4.43444344 1.28993673 + 4.43844384 1.28898850 + 4.44244424 1.28807681 + 4.44644464 1.28720259 + 4.45044504 1.28636646 + 4.45444544 1.28556874 + 4.45844584 1.28480947 + 4.46244624 1.28408836 + 4.46644664 1.28340488 + 4.47044704 1.28275820 + 4.47444744 1.28214721 + 4.47844784 1.28157058 + 4.48244824 1.28102673 + 4.48644864 1.28051386 + 4.49044904 1.28003000 + 4.49444944 1.27957298 + 4.49844984 1.27914052 + 4.50245025 1.27873018 + 4.50645065 1.27833945 + 4.51045105 1.27796576 + 4.51445145 1.27760648 + 4.51845185 1.27725897 + 4.52245225 1.27692062 + 4.52645265 1.27658883 + 4.53045305 1.27626111 + 4.53445345 1.27593501 + 4.53845385 1.27560823 + 4.54245425 1.27527857 + 4.54645465 1.27494401 + 4.55045505 1.27460270 + 4.55445545 1.27425294 + 4.55845585 1.27389326 + 4.56245625 1.27352238 + 4.56645665 1.27313925 + 4.57045705 1.27274303 + 4.57445745 1.27233308 + 4.57845785 1.27190902 + 4.58245825 1.27147067 + 4.58645865 1.27101805 + 4.59045905 1.27055142 + 4.59445945 1.27007120 + 4.59845985 1.26957801 + 4.60246025 1.26907266 + 4.60646065 1.26855608 + 4.61046105 1.26802937 + 4.61446145 1.26749373 + 4.61846185 1.26695047 + 4.62246225 1.26640098 + 4.62646265 1.26584673 + 4.63046305 1.26528920 + 4.63446345 1.26472991 + 4.63846385 1.26417039 + 4.64246425 1.26361212 + 4.64646465 1.26305658 + 4.65046505 1.26250515 + 4.65446545 1.26195917 + 4.65846585 1.26141987 + 4.66246625 1.26088839 + 4.66646665 1.26036573 + 4.67046705 1.25985277 + 4.67446745 1.25935025 + 4.67846785 1.25885875 + 4.68246825 1.25837872 + 4.68646865 1.25791040 + 4.69046905 1.25745391 + 4.69446945 1.25700919 + 4.69846985 1.25657600 + 4.70247025 1.25615394 + 4.70647065 1.25574247 + 4.71047105 1.25534087 + 4.71447145 1.25494828 + 4.71847185 1.25456369 + 4.72247225 1.25418597 + 4.72647265 1.25381386 + 4.73047305 1.25344599 + 4.73447345 1.25308086 + 4.73847385 1.25271693 + 4.74247425 1.25235253 + 4.74647465 1.25198596 + 4.75047505 1.25161544 + 4.75447545 1.25123918 + 4.75847585 1.25085532 + 4.76247625 1.25046202 + 4.76647665 1.25005741 + 4.77047705 1.24963964 + 4.77447745 1.24920686 + 4.77847785 1.24875726 + 4.78247825 1.24828907 + 4.78647865 1.24780056 + 4.79047905 1.24729003 + 4.79447945 1.24675588 + 4.79847985 1.24619654 + 4.80248025 1.24561053 + 4.80648065 1.24499645 + 4.81048105 1.24435297 + 4.81448145 1.24367883 + 4.81848185 1.24297290 + 4.82248225 1.24223409 + 4.82648265 1.24146142 + 4.83048305 1.24065401 + 4.83448345 1.23981104 + 4.83848385 1.23893181 + 4.84248425 1.23801569 + 4.84648465 1.23706213 + 4.85048505 1.23607068 + 4.85448545 1.23504097 + 4.85848585 1.23397270 + 4.86248625 1.23286566 + 4.86648665 1.23171969 + 4.87048705 1.23053474 + 4.87448745 1.22931079 + 4.87848785 1.22804790 + 4.88248825 1.22674620 + 4.88648865 1.22540588 + 4.89048905 1.22402716 + 4.89448945 1.22261034 + 4.89848985 1.22115575 + 4.90249025 1.21966377 + 4.90649065 1.21813484 + 4.91049105 1.21656940 + 4.91449145 1.21496796 + 4.91849185 1.21333105 + 4.92249225 1.21165922 + 4.92649265 1.20995304 + 4.93049305 1.20821311 + 4.93449345 1.20644006 + 4.93849385 1.20463449 + 4.94249425 1.20279704 + 4.94649465 1.20092835 + 4.95049505 1.19902905 + 4.95449545 1.19709974 + 4.95849585 1.19514106 + 4.96249625 1.19315357 + 4.96649665 1.19113786 + 4.97049705 1.18909446 + 4.97449745 1.18702387 + 4.97849785 1.18492654 + 4.98249825 1.18280289 + 4.98649865 1.18065329 + 4.99049905 1.17847802 + 4.99449945 1.17627732 + 4.99849985 1.17405135 + 5.00250025 1.17180020 + 5.00650065 1.16952386 + 5.01050105 1.16722227 + 5.01450145 1.16489524 + 5.01850185 1.16254252 + 5.02250225 1.16016372 + 5.02650265 1.15775840 + 5.03050305 1.15532599 + 5.03450345 1.15286583 + 5.03850385 1.15037716 + 5.04250425 1.14785912 + 5.04650465 1.14531076 + 5.05050505 1.14273105 + 5.05450545 1.14011885 + 5.05850585 1.13747297 + 5.06250625 1.13479214 + 5.06650665 1.13207505 + 5.07050705 1.12932032 + 5.07450745 1.12652654 + 5.07850785 1.12369231 + 5.08250825 1.12081619 + 5.08650865 1.11789677 + 5.09050905 1.11493267 + 5.09450945 1.11192255 + 5.09850985 1.10886515 + 5.10251025 1.10575928 + 5.10651065 1.10260388 + 5.11051105 1.09939799 + 5.11451145 1.09614082 + 5.11851185 1.09283175 + 5.12251225 1.08947032 + 5.12651265 1.08605632 + 5.13051305 1.08258973 + 5.13451345 1.07907080 + 5.13851385 1.07550002 + 5.14251425 1.07187818 + 5.14651465 1.06820633 + 5.15051505 1.06448585 + 5.15451545 1.06071840 + 5.15851585 1.05690599 + 5.16251625 1.05305093 + 5.16651665 1.04915586 + 5.17051705 1.04522374 + 5.17451745 1.04125784 + 5.17851785 1.03726178 + 5.18251825 1.03323946 + 5.18651865 1.02919507 + 5.19051905 1.02513309 + 5.19451945 1.02105828 + 5.19851985 1.01697563 + 5.20252025 1.01289035 + 5.20652065 1.00880787 + 5.21052105 1.00473377 + 5.21452145 1.00067382 + 5.21852185 0.99663386 + 5.22252225 0.99261985 + 5.22652265 0.98863782 + 5.23052305 0.98469379 + 5.23452345 0.98079381 + 5.23852385 0.97694388 + 5.24252425 0.97314991 + 5.24652465 0.96941775 + 5.25052505 0.96575308 + 5.25452545 0.96216143 + 5.25852585 0.95864815 + 5.26252625 0.95521835 + 5.26652665 0.95187691 + 5.27052705 0.94862844 + 5.27452745 0.94547726 + 5.27852785 0.94242739 + 5.28252825 0.93948252 + 5.28652865 0.93664599 + 5.29052905 0.93392082 + 5.29452945 0.93130965 + 5.29852985 0.92881478 + 5.30253025 0.92643813 + 5.30653065 0.92418127 + 5.31053105 0.92204540 + 5.31453145 0.92003138 + 5.31853185 0.91813970 + 5.32253225 0.91637053 + 5.32653265 0.91472372 + 5.33053305 0.91319881 + 5.33453345 0.91179503 + 5.33853385 0.91051136 + 5.34253425 0.90934649 + 5.34653465 0.90829891 + 5.35053505 0.90736686 + 5.35453545 0.90654841 + 5.35853585 0.90584144 + 5.36253625 0.90524367 + 5.36653665 0.90475272 + 5.37053705 0.90436607 + 5.37453745 0.90408111 + 5.37853785 0.90389517 + 5.38253825 0.90380554 + 5.38653865 0.90380944 + 5.39053905 0.90390411 + 5.39453945 0.90408677 + 5.39853985 0.90435464 + 5.40254025 0.90470498 + 5.40654065 0.90513508 + 5.41054105 0.90564228 + 5.41454145 0.90622397 + 5.41854185 0.90687758 + 5.42254225 0.90760063 + 5.42654265 0.90839070 + 5.43054305 0.90924542 + 5.43454345 0.91016252 + 5.43854385 0.91113978 + 5.44254425 0.91217505 + 5.44654465 0.91326627 + 5.45054505 0.91441141 + 5.45454545 0.91560852 + 5.45854585 0.91685571 + 5.46254625 0.91815113 + 5.46654665 0.91949299 + 5.47054705 0.92087952 + 5.47454745 0.92230901 + 5.47854785 0.92377977 + 5.48254825 0.92529014 + 5.48654865 0.92683848 + 5.49054905 0.92842317 + 5.49454945 0.93004259 + 5.49854985 0.93169515 + 5.50255026 0.93337927 + 5.50655066 0.93509336 + 5.51055106 0.93683585 + 5.51455146 0.93860517 + 5.51855186 0.94039977 + 5.52255226 0.94221809 + 5.52655266 0.94405860 + 5.53055306 0.94591977 + 5.53455346 0.94780010 + 5.53855386 0.94969813 + 5.54255426 0.95161241 + 5.54655466 0.95354152 + 5.55055506 0.95548413 + 5.55455546 0.95743892 + 5.55855586 0.95940466 + 5.56255626 0.96138018 + 5.56655666 0.96336439 + 5.57055706 0.96535632 + 5.57455746 0.96735506 + 5.57855786 0.96935983 + 5.58255826 0.97136997 + 5.58655866 0.97338496 + 5.59055906 0.97540438 + 5.59455946 0.97742798 + 5.59855986 0.97945567 + 5.60256026 0.98148748 + 5.60656066 0.98352364 + 5.61056106 0.98556451 + 5.61456146 0.98761064 + 5.61856186 0.98966272 + 5.62256226 0.99172162 + 5.62656266 0.99378838 + 5.63056306 0.99586419 + 5.63456346 0.99795037 + 5.63856386 1.00004842 + 5.64256426 1.00215996 + 5.64656466 1.00428672 + 5.65056506 1.00643055 + 5.65456546 1.00859340 + 5.65856586 1.01077731 + 5.66256626 1.01298437 + 5.66656666 1.01521671 + 5.67056706 1.01747650 + 5.67456746 1.01976591 + 5.67856786 1.02208710 + 5.68256826 1.02444220 + 5.68656866 1.02683326 + 5.69056906 1.02926228 + 5.69456946 1.03173113 + 5.69856986 1.03424159 + 5.70257026 1.03679528 + 5.70657066 1.03939365 + 5.71057106 1.04203800 + 5.71457146 1.04472939 + 5.71857186 1.04746871 + 5.72257226 1.05025659 + 5.72657266 1.05309344 + 5.73057306 1.05597942 + 5.73457346 1.05891442 + 5.73857386 1.06189807 + 5.74257426 1.06492974 + 5.74657466 1.06800853 + 5.75057506 1.07113326 + 5.75457546 1.07430252 + 5.75857586 1.07751459 + 5.76257626 1.08076756 + 5.76657666 1.08405923 + 5.77057706 1.08738720 + 5.77457746 1.09074887 + 5.77857786 1.09414141 + 5.78257826 1.09756184 + 5.78657866 1.10100702 + 5.79057906 1.10447365 + 5.79457946 1.10795834 + 5.79857986 1.11145759 + 5.80258026 1.11496784 + 5.80658066 1.11848546 + 5.81058106 1.12200681 + 5.81458146 1.12552824 + 5.81858186 1.12904612 + 5.82258226 1.13255683 + 5.82658266 1.13605685 + 5.83058306 1.13954270 + 5.83458346 1.14301100 + 5.83858386 1.14645847 + 5.84258426 1.14988197 + 5.84658466 1.15327845 + 5.85058506 1.15664504 + 5.85458546 1.15997899 + 5.85858586 1.16327772 + 5.86258626 1.16653879 + 5.86658666 1.16975992 + 5.87058706 1.17293900 + 5.87458746 1.17607406 + 5.87858786 1.17916328 + 5.88258826 1.18220501 + 5.88658866 1.18519770 + 5.89058906 1.18813996 + 5.89458946 1.19103051 + 5.89858986 1.19386819 + 5.90259026 1.19665195 + 5.90659066 1.19938080 + 5.91059106 1.20205389 + 5.91459146 1.20467039 + 5.91859186 1.20722956 + 5.92259226 1.20973071 + 5.92659266 1.21217321 + 5.93059306 1.21455646 + 5.93459346 1.21687989 + 5.93859386 1.21914297 + 5.94259426 1.22134521 + 5.94659466 1.22348613 + 5.95059506 1.22556529 + 5.95459546 1.22758227 + 5.95859586 1.22953669 + 5.96259626 1.23142821 + 5.96659666 1.23325655 + 5.97059706 1.23502145 + 5.97459746 1.23672274 + 5.97859786 1.23836033 + 5.98259826 1.23993419 + 5.98659866 1.24144442 + 5.99059906 1.24289119 + 5.99459946 1.24427484 + 5.99859986 1.24559582 + 6.00260026 1.24685474 + 6.00660066 1.24805237 + 6.01060106 1.24918965 + 6.01460146 1.25026771 + 6.01860186 1.25128789 + 6.02260226 1.25225171 + 6.02660266 1.25316092 + 6.03060306 1.25401748 + 6.03460346 1.25482357 + 6.03860386 1.25558157 + 6.04260426 1.25629411 + 6.04660466 1.25696401 + 6.05060506 1.25759430 + 6.05460546 1.25818822 + 6.05860586 1.25874917 + 6.06260626 1.25928075 + 6.06660666 1.25978669 + 6.07060706 1.26027088 + 6.07460746 1.26073731 + 6.07860786 1.26119005 + 6.08260826 1.26163326 + 6.08660866 1.26207113 + 6.09060906 1.26250786 + 6.09460946 1.26294764 + 6.09860986 1.26339459 + 6.10261026 1.26385278 + 6.10661066 1.26432617 + 6.11061106 1.26481855 + 6.11461146 1.26533360 + 6.11861186 1.26587474 + 6.12261226 1.26644520 + 6.12661266 1.26704796 + 6.13061306 1.26768571 + 6.13461346 1.26836084 + 6.13861386 1.26907545 + 6.14261426 1.26983125 + 6.14661466 1.27062966 + 6.15061506 1.27147168 + 6.15461546 1.27235798 + 6.15861586 1.27328882 + 6.16261626 1.27426411 + 6.16661666 1.27528336 + 6.17061706 1.27634571 + 6.17461746 1.27744994 + 6.17861786 1.27859448 + 6.18261826 1.27977742 + 6.18661866 1.28099652 + 6.19061906 1.28224926 + 6.19461946 1.28353284 + 6.19861986 1.28484420 + 6.20262026 1.28618009 + 6.20662066 1.28753705 + 6.21062106 1.28891149 + 6.21462146 1.29029970 + 6.21862186 1.29169787 + 6.22262226 1.29310216 + 6.22662266 1.29450874 + 6.23062306 1.29591378 + 6.23462346 1.29731353 + 6.23862386 1.29870436 + 6.24262426 1.30008275 + 6.24662466 1.30144536 + 6.25062506 1.30278907 + 6.25462546 1.30411096 + 6.25862586 1.30540841 + 6.26262626 1.30667903 + 6.26662666 1.30792079 + 6.27062706 1.30913194 + 6.27462746 1.31031109 + 6.27862786 1.31145717 + 6.28262826 1.31256951 + 6.28662866 1.31364774 + 6.29062906 1.31469190 + 6.29462946 1.31570235 + 6.29862986 1.31667983 + 6.30263026 1.31762537 + 6.30663066 1.31854038 + 6.31063106 1.31942654 + 6.31463146 1.32028581 + 6.31863186 1.32112045 + 6.32263226 1.32193293 + 6.32663266 1.32272594 + 6.33063306 1.32350236 + 6.33463346 1.32426521 + 6.33863386 1.32501765 + 6.34263426 1.32576292 + 6.34663466 1.32650432 + 6.35063506 1.32724518 + 6.35463546 1.32798883 + 6.35863586 1.32873857 + 6.36263626 1.32949761 + 6.36663666 1.33026909 + 6.37063706 1.33105602 + 6.37463746 1.33186128 + 6.37863786 1.33268758 + 6.38263826 1.33353742 + 6.38663866 1.33441314 + 6.39063906 1.33531683 + 6.39463946 1.33625036 + 6.39863986 1.33721536 + 6.40264026 1.33821322 + 6.40664066 1.33924508 + 6.41064106 1.34031183 + 6.41464146 1.34141412 + 6.41864186 1.34255233 + 6.42264226 1.34372665 + 6.42664266 1.34493702 + 6.43064306 1.34618315 + 6.43464346 1.34746459 + 6.43864386 1.34878066 + 6.44264426 1.35013053 + 6.44664466 1.35151322 + 6.45064506 1.35292761 + 6.45464546 1.35437243 + 6.45864586 1.35584635 + 6.46264626 1.35734794 + 6.46664666 1.35887568 + 6.47064706 1.36042803 + 6.47464746 1.36200340 + 6.47864786 1.36360018 + 6.48264826 1.36521674 + 6.48664866 1.36685148 + 6.49064906 1.36850278 + 6.49464946 1.37016907 + 6.49864986 1.37184880 + 6.50265027 1.37354045 + 6.50665067 1.37524253 + 6.51065107 1.37695361 + 6.51465147 1.37867229 + 6.51865187 1.38039720 + 6.52265227 1.38212702 + 6.52665267 1.38386044 + 6.53065307 1.38559622 + 6.53465347 1.38733309 + 6.53865387 1.38906982 + 6.54265427 1.39080520 + 6.54665467 1.39253798 + 6.55065507 1.39426695 + 6.55465547 1.39599084 + 6.55865587 1.39770838 + 6.56265627 1.39941828 + 6.56665667 1.40111919 + 6.57065707 1.40280973 + 6.57465747 1.40448848 + 6.57865787 1.40615396 + 6.58265827 1.40780464 + 6.58665867 1.40943894 + 6.59065907 1.41105523 + 6.59465947 1.41265182 + 6.59865987 1.41422699 + 6.60266027 1.41577896 + 6.60666067 1.41730590 + 6.61066107 1.41880598 + 6.61466147 1.42027733 + 6.61866187 1.42171805 + 6.62266227 1.42312626 + 6.62666267 1.42450005 + 6.63066307 1.42583756 + 6.63466347 1.42713693 + 6.63866387 1.42839635 + 6.64266427 1.42961403 + 6.64666467 1.43078827 + 6.65066507 1.43191741 + 6.65466547 1.43299988 + 6.65866587 1.43403420 + 6.66266627 1.43501896 + 6.66666667 1.43595287 + 6.67066707 1.43683474 + 6.67466747 1.43766349 + 6.67866787 1.43843815 + 6.68266827 1.43915786 + 6.68666867 1.43982188 + 6.69066907 1.44042957 + 6.69466947 1.44098043 + 6.69866987 1.44147404 + 6.70267027 1.44191008 + 6.70667067 1.44228832 + 6.71067107 1.44260864 + 6.71467147 1.44287096 + 6.71867187 1.44307529 + 6.72267227 1.44322168 + 6.72667267 1.44331022 + 6.73067307 1.44334104 + 6.73467347 1.44331428 + 6.73867387 1.44323007 + 6.74267427 1.44308855 + 6.74667467 1.44288983 + 6.75067507 1.44263398 + 6.75467547 1.44232103 + 6.75867587 1.44195095 + 6.76267627 1.44152365 + 6.76667667 1.44103895 + 6.77067707 1.44049659 + 6.77467747 1.43989624 + 6.77867787 1.43923745 + 6.78267827 1.43851970 + 6.78667867 1.43774235 + 6.79067907 1.43690467 + 6.79467947 1.43600583 + 6.79867987 1.43504494 + 6.80268027 1.43402098 + 6.80668067 1.43293288 + 6.81068107 1.43177950 + 6.81468147 1.43055964 + 6.81868187 1.42927206 + 6.82268227 1.42791547 + 6.82668267 1.42648858 + 6.83068307 1.42499011 + 6.83468347 1.42341879 + 6.83868387 1.42177337 + 6.84268427 1.42005266 + 6.84668467 1.41825557 + 6.85068507 1.41638106 + 6.85468547 1.41442823 + 6.85868587 1.41239628 + 6.86268627 1.41028459 + 6.86668667 1.40809269 + 6.87068707 1.40582027 + 6.87468747 1.40346723 + 6.87868787 1.40103370 + 6.88268827 1.39851999 + 6.88668867 1.39592667 + 6.89068907 1.39325454 + 6.89468947 1.39050465 + 6.89868987 1.38767830 + 6.90269027 1.38477704 + 6.90669067 1.38180270 + 6.91069107 1.37875733 + 6.91469147 1.37564325 + 6.91869187 1.37246301 + 6.92269227 1.36921942 + 6.92669267 1.36591550 + 6.93069307 1.36255447 + 6.93469347 1.35913978 + 6.93869387 1.35567504 + 6.94269427 1.35216403 + 6.94669467 1.34861067 + 6.95069507 1.34501903 + 6.95469547 1.34139326 + 6.95869587 1.33773760 + 6.96269627 1.33405635 + 6.96669667 1.33035384 + 6.97069707 1.32663442 + 6.97469747 1.32290241 + 6.97869787 1.31916212 + 6.98269827 1.31541778 + 6.98669867 1.31167353 + 6.99069907 1.30793342 + 6.99469947 1.30420138 + 6.99869987 1.30048117 + 7.00270027 1.29677642 + 7.00670067 1.29309053 + 7.01070107 1.28942675 + 7.01470147 1.28578809 + 7.01870187 1.28217734 + 7.02270227 1.27859708 + 7.02670267 1.27504961 + 7.03070307 1.27153702 + 7.03470347 1.26806111 + 7.03870387 1.26462346 + 7.04270427 1.26122537 + 7.04670467 1.25786789 + 7.05070507 1.25455184 + 7.05470547 1.25127776 + 7.05870587 1.24804598 + 7.06270627 1.24485658 + 7.06670667 1.24170943 + 7.07070707 1.23860418 + 7.07470747 1.23554029 + 7.07870787 1.23251704 + 7.08270827 1.22953352 + 7.08670867 1.22658868 + 7.09070907 1.22368133 + 7.09470947 1.22081014 + 7.09870987 1.21797370 + 7.10271027 1.21517049 + 7.10671067 1.21239892 + 7.11071107 1.20965734 + 7.11471147 1.20694407 + 7.11871187 1.20425740 + 7.12271227 1.20159561 + 7.12671267 1.19895698 + 7.13071307 1.19633983 + 7.13471347 1.19374250 + 7.13871387 1.19116338 + 7.14271427 1.18860094 + 7.14671467 1.18605368 + 7.15071507 1.18352022 + 7.15471547 1.18099925 + 7.15871587 1.17848957 + 7.16271627 1.17599008 + 7.16671667 1.17349977 + 7.17071707 1.17101779 + 7.17471747 1.16854335 + 7.17871787 1.16607584 + 7.18271827 1.16361472 + 7.18671867 1.16115960 + 7.19071907 1.15871019 + 7.19471947 1.15626633 + 7.19871987 1.15382797 + 7.20272027 1.15139515 + 7.20672067 1.14896804 + 7.21072107 1.14654690 + 7.21472147 1.14413206 + 7.21872187 1.14172395 + 7.22272227 1.13932308 + 7.22672267 1.13693001 + 7.23072307 1.13454535 + 7.23472347 1.13216979 + 7.23872387 1.12980402 + 7.24272427 1.12744878 + 7.24672467 1.12510481 + 7.25072507 1.12277289 + 7.25472547 1.12045375 + 7.25872587 1.11814816 + 7.26272627 1.11585682 + 7.26672667 1.11358044 + 7.27072707 1.11131966 + 7.27472747 1.10907510 + 7.27872787 1.10684730 + 7.28272827 1.10463676 + 7.28672867 1.10244390 + 7.29072907 1.10026907 + 7.29472947 1.09811254 + 7.29872987 1.09597450 + 7.30273027 1.09385506 + 7.30673067 1.09175423 + 7.31073107 1.08967194 + 7.31473147 1.08760803 + 7.31873187 1.08556223 + 7.32273227 1.08353421 + 7.32673267 1.08152353 + 7.33073307 1.07952967 + 7.33473347 1.07755202 + 7.33873387 1.07558990 + 7.34273427 1.07364254 + 7.34673467 1.07170911 + 7.35073507 1.06978870 + 7.35473547 1.06788036 + 7.35873587 1.06598304 + 7.36273627 1.06409569 + 7.36673667 1.06221716 + 7.37073707 1.06034631 + 7.37473747 1.05848194 + 7.37873787 1.05662282 + 7.38273827 1.05476770 + 7.38673867 1.05291532 + 7.39073907 1.05106439 + 7.39473947 1.04921364 + 7.39873987 1.04736178 + 7.40274027 1.04550752 + 7.40674067 1.04364958 + 7.41074107 1.04178669 + 7.41474147 1.03991759 + 7.41874187 1.03804103 + 7.42274227 1.03615578 + 7.42674267 1.03426063 + 7.43074307 1.03235438 + 7.43474347 1.03043585 + 7.43874387 1.02850389 + 7.44274427 1.02655735 + 7.44674467 1.02459512 + 7.45074507 1.02261609 + 7.45474547 1.02061915 + 7.45874587 1.01860325 + 7.46274627 1.01656730 + 7.46674667 1.01451026 + 7.47074707 1.01243108 + 7.47474747 1.01032871 + 7.47874787 1.00820211 + 7.48274827 1.00605025 + 7.48674867 1.00387210 + 7.49074907 1.00166661 + 7.49474947 0.99943275 + 7.49874987 0.99716948 + 7.50275028 0.99487575 + 7.50675068 0.99255051 + 7.51075108 0.99019272 + 7.51475148 0.98780132 + 7.51875188 0.98537525 + 7.52275228 0.98291346 + 7.52675268 0.98041490 + 7.53075308 0.97787852 + 7.53475348 0.97530329 + 7.53875388 0.97268816 + 7.54275428 0.97003214 + 7.54675468 0.96733422 + 7.55075508 0.96459343 + 7.55475548 0.96180883 + 7.55875588 0.95897952 + 7.56275628 0.95610463 + 7.56675668 0.95318332 + 7.57075708 0.95021483 + 7.57475748 0.94719843 + 7.57875788 0.94413347 + 7.58275828 0.94101935 + 7.58675868 0.93785556 + 7.59075908 0.93464165 + 7.59475948 0.93137726 + 7.59875988 0.92806212 + 7.60276028 0.92469605 + 7.60676068 0.92127895 + 7.61076108 0.91781086 + 7.61476148 0.91429188 + 7.61876188 0.91072223 + 7.62276228 0.90710224 + 7.62676268 0.90343236 + 7.63076308 0.89971314 + 7.63476348 0.89594523 + 7.63876388 0.89212941 + 7.64276428 0.88826657 + 7.64676468 0.88435770 + 7.65076508 0.88040391 + 7.65476548 0.87640641 + 7.65876588 0.87236653 + 7.66276628 0.86828569 + 7.66676668 0.86416541 + 7.67076708 0.86000731 + 7.67476748 0.85581310 + 7.67876788 0.85158459 + 7.68276828 0.84732367 + 7.68676868 0.84303229 + 7.69076908 0.83871252 + 7.69476948 0.83436645 + 7.69876988 0.82999628 + 7.70277028 0.82560424 + 7.70677068 0.82119263 + 7.71077108 0.81676379 + 7.71477148 0.81232014 + 7.71877188 0.80786409 + 7.72277228 0.80339811 + 7.72677268 0.79892473 + 7.73077308 0.79444644 + 7.73477348 0.78996582 + 7.73877388 0.78548542 + 7.74277428 0.78100782 + 7.74677468 0.77653560 + 7.75077508 0.77207135 + 7.75477548 0.76761765 + 7.75877588 0.76317707 + 7.76277628 0.75875218 + 7.76677668 0.75434553 + 7.77077708 0.74995965 + 7.77477748 0.74559703 + 7.77877788 0.74126015 + 7.78277828 0.73695144 + 7.78677868 0.73267331 + 7.79077908 0.72842811 + 7.79477948 0.72421815 + 7.79877988 0.72004567 + 7.80278028 0.71591289 + 7.80678068 0.71182192 + 7.81078108 0.70777483 + 7.81478148 0.70377362 + 7.81878188 0.69982020 + 7.82278228 0.69591641 + 7.82678268 0.69206399 + 7.83078308 0.68826459 + 7.83478348 0.68451978 + 7.83878388 0.68083102 + 7.84278428 0.67719965 + 7.84678468 0.67362694 + 7.85078508 0.67011401 + 7.85478548 0.66666190 + 7.85878588 0.66327150 + 7.86278628 0.65994360 + 7.86678668 0.65667887 + 7.87078708 0.65347786 + 7.87478748 0.65034098 + 7.87878788 0.64726852 + 7.88278828 0.64426067 + 7.88678868 0.64131747 + 7.89078908 0.63843885 + 7.89478948 0.63562463 + 7.89878988 0.63287449 + 7.90279028 0.63018802 + 7.90679068 0.62756468 + 7.91079108 0.62500384 + 7.91479148 0.62250477 + 7.91879188 0.62006662 + 7.92279228 0.61768848 + 7.92679268 0.61536934 + 7.93079308 0.61310812 + 7.93479348 0.61090365 + 7.93879388 0.60875472 + 7.94279428 0.60666004 + 7.94679468 0.60461829 + 7.95079508 0.60262810 + 7.95479548 0.60068805 + 7.95879588 0.59879671 + 7.96279628 0.59695262 + 7.96679668 0.59515430 + 7.97079708 0.59340028 + 7.97479748 0.59168906 + 7.97879788 0.59001917 + 7.98279828 0.58838913 + 7.98679868 0.58679749 + 7.99079908 0.58524282 + 7.99479948 0.58372369 + 7.99879988 0.58223874 + 8.00280028 0.58078661 + 8.00680068 0.57936598 + 8.01080108 0.57797558 + 8.01480148 0.57661417 + 8.01880188 0.57528055 + 8.02280228 0.57397357 + 8.02680268 0.57269212 + 8.03080308 0.57143513 + 8.03480348 0.57020158 + 8.03880388 0.56899049 + 8.04280428 0.56780091 + 8.04680468 0.56663196 + 8.05080508 0.56548276 + 8.05480548 0.56435250 + 8.05880588 0.56324040 + 8.06280628 0.56214569 + 8.06680668 0.56106766 + 8.07080708 0.56000562 + 8.07480748 0.55895890 + 8.07880788 0.55792686 + 8.08280828 0.55690889 + 8.08680868 0.55590438 + 8.09080908 0.55491276 + 8.09480948 0.55393347 + 8.09880988 0.55296595 + 8.10281028 0.55200969 + 8.10681068 0.55106415 + 8.11081108 0.55012883 + 8.11481148 0.54920324 + 8.11881188 0.54828689 + 8.12281228 0.54737931 + 8.12681268 0.54648004 + 8.13081308 0.54558863 + 8.13481348 0.54470465 + 8.13881388 0.54382767 + 8.14281428 0.54295730 + 8.14681468 0.54209316 + 8.15081508 0.54123487 + 8.15481548 0.54038210 + 8.15881588 0.53953454 + 8.16281628 0.53869189 + 8.16681668 0.53785391 + 8.17081708 0.53702036 + 8.17481748 0.53619105 + 8.17881788 0.53536584 + 8.18281828 0.53454461 + 8.18681868 0.53372729 + 8.19081908 0.53291384 + 8.19481948 0.53210428 + 8.19881988 0.53129867 + 8.20282028 0.53049711 + 8.20682068 0.52969975 + 8.21082108 0.52890679 + 8.21482148 0.52811844 + 8.21882188 0.52733500 + 8.22282228 0.52655677 + 8.22682268 0.52578411 + 8.23082308 0.52501740 + 8.23482348 0.52425705 + 8.23882388 0.52350350 + 8.24282428 0.52275720 + 8.24682468 0.52201862 + 8.25082508 0.52128823 + 8.25482548 0.52056652 + 8.25882588 0.51985395 + 8.26282628 0.51915098 + 8.26682668 0.51845806 + 8.27082708 0.51777559 + 8.27482748 0.51710397 + 8.27882788 0.51644354 + 8.28282828 0.51579460 + 8.28682868 0.51515741 + 8.29082908 0.51453214 + 8.29482948 0.51391895 + 8.29882988 0.51331790 + 8.30283028 0.51272899 + 8.30683068 0.51215216 + 8.31083108 0.51158725 + 8.31483148 0.51103407 + 8.31883188 0.51049232 + 8.32283228 0.50996165 + 8.32683268 0.50944162 + 8.33083308 0.50893176 + 8.33483348 0.50843149 + 8.33883388 0.50794021 + 8.34283428 0.50745727 + 8.34683468 0.50698195 + 8.35083508 0.50651350 + 8.35483548 0.50605118 + 8.35883588 0.50559418 + 8.36283628 0.50514171 + 8.36683668 0.50469298 + 8.37083708 0.50424721 + 8.37483748 0.50380363 + 8.37883788 0.50336151 + 8.38283828 0.50292018 + 8.38683868 0.50247900 + 8.39083908 0.50203739 + 8.39483948 0.50159487 + 8.39883988 0.50115100 + 8.40284028 0.50070547 + 8.40684068 0.50025803 + 8.41084108 0.49980855 + 8.41484148 0.49935699 + 8.41884188 0.49890343 + 8.42284228 0.49844807 + 8.42684268 0.49799119 + 8.43084308 0.49753321 + 8.43484348 0.49707465 + 8.43884388 0.49661613 + 8.44284428 0.49615838 + 8.44684468 0.49570222 + 8.45084508 0.49524857 + 8.45484548 0.49479842 + 8.45884588 0.49435283 + 8.46284628 0.49391293 + 8.46684668 0.49347990 + 8.47084708 0.49305494 + 8.47484748 0.49263930 + 8.47884788 0.49223422 + 8.48284828 0.49184096 + 8.48684868 0.49146075 + 8.49084908 0.49109478 + 8.49484948 0.49074421 + 8.49884988 0.49041015 + 8.50285029 0.49009362 + 8.50685069 0.48979557 + 8.51085109 0.48951684 + 8.51485149 0.48925818 + 8.51885189 0.48902021 + 8.52285229 0.48880343 + 8.52685269 0.48860820 + 8.53085309 0.48843474 + 8.53485349 0.48828312 + 8.53885389 0.48815327 + 8.54285429 0.48804496 + 8.54685469 0.48795781 + 8.55085509 0.48789127 + 8.55485549 0.48784467 + 8.55885589 0.48781716 + 8.56285629 0.48780776 + 8.56685669 0.48781536 + 8.57085709 0.48783871 + 8.57485749 0.48787644 + 8.57885789 0.48792708 + 8.58285829 0.48798905 + 8.58685869 0.48806068 + 8.59085909 0.48814023 + 8.59485949 0.48822588 + 8.59885989 0.48831578 + 8.60286029 0.48840802 + 8.60686069 0.48850067 + 8.61086109 0.48859180 + 8.61486149 0.48867945 + 8.61886189 0.48876169 + 8.62286229 0.48883661 + 8.62686269 0.48890232 + 8.63086309 0.48895697 + 8.63486349 0.48899875 + 8.63886389 0.48902593 + 8.64286429 0.48903679 + 8.64686469 0.48902973 + 8.65086509 0.48900316 + 8.65486549 0.48895559 + 8.65886589 0.48888557 + 8.66286629 0.48879175 + 8.66686669 0.48867279 + 8.67086709 0.48852744 + 8.67486749 0.48835449 + 8.67886789 0.48815276 + 8.68286829 0.48792113 + 8.68686869 0.48765849 + 8.69086909 0.48736375 + 8.69486949 0.48703583 + 8.69886989 0.48667363 + 8.70287029 0.48627608 + 8.70687069 0.48584204 + 8.71087109 0.48537038 + 8.71487149 0.48485991 + 8.71887189 0.48430939 + 8.72287229 0.48371753 + 8.72687269 0.48308297 + 8.73087309 0.48240431 + 8.73487349 0.48168004 + 8.73887389 0.48090861 + 8.74287429 0.48008837 + 8.74687469 0.47921762 + 8.75087509 0.47829457 + 8.75487549 0.47731738 + 8.75887589 0.47628412 + 8.76287629 0.47519285 + 8.76687669 0.47404155 + 8.77087709 0.47282817 + 8.77487749 0.47155066 + 8.77887789 0.47020694 + 8.78287829 0.46879494 + 8.78687869 0.46731262 + 8.79087909 0.46575798 + 8.79487949 0.46412906 + 8.79887989 0.46242398 + 8.80288029 0.46064097 + 8.80688069 0.45877834 + 8.81088109 0.45683454 + 8.81488149 0.45480818 + 8.81888189 0.45269800 + 8.82288229 0.45050295 + 8.82688269 0.44822214 + 8.83088309 0.44585492 + 8.83488349 0.44340083 + 8.83888389 0.44085966 + 8.84288429 0.43823143 + 8.84688469 0.43551640 + 8.85088509 0.43271509 + 8.85488549 0.42982828 + 8.85888589 0.42685700 + 8.86288629 0.42380255 + 8.86688669 0.42066646 + 8.87088709 0.41745053 + 8.87488749 0.41415680 + 8.87888789 0.41078756 + 8.88288829 0.40734530 + 8.88688869 0.40383276 + 8.89088909 0.40025284 + 8.89488949 0.39660866 + 8.89888989 0.39290352 + 8.90289029 0.38914085 + 8.90689069 0.38532423 + 8.91089109 0.38145736 + 8.91489149 0.37754405 + 8.91889189 0.37358819 + 8.92289229 0.36959373 + 8.92689269 0.36556466 + 8.93089309 0.36150501 + 8.93489349 0.35741880 + 8.93889389 0.35331007 + 8.94289429 0.34918279 + 8.94689469 0.34504092 + 8.95089509 0.34088835 + 8.95489549 0.33672888 + 8.95889589 0.33256624 + 8.96289629 0.32840405 + 8.96689669 0.32424583 + 8.97089709 0.32009496 + 8.97489749 0.31595470 + 8.97889789 0.31182817 + 8.98289829 0.30771835 + 8.98689869 0.30362807 + 8.99089909 0.29955999 + 8.99489949 0.29551665 + 8.99889989 0.29150040 + 9.00290029 0.28751346 + 9.00690069 0.28355789 + 9.01090109 0.27963557 + 9.01490149 0.27574828 + 9.01890189 0.27189760 + 9.02290229 0.26808499 + 9.02690269 0.26431179 + 9.03090309 0.26057918 + 9.03490349 0.25688822 + 9.03890389 0.25323984 + 9.04290429 0.24963488 + 9.04690469 0.24607403 + 9.05090509 0.24255791 + 9.05490549 0.23908703 + 9.05890589 0.23566180 + 9.06290629 0.23228256 + 9.06690669 0.22894955 + 9.07090709 0.22566294 + 9.07490749 0.22242286 + 9.07890789 0.21922934 + 9.08290829 0.21608235 + 9.08690869 0.21298184 + 9.09090909 0.20992767 + 9.09490949 0.20691968 + 9.09890989 0.20395765 + 9.10291029 0.20104133 + 9.10691069 0.19817044 + 9.11091109 0.19534463 + 9.11491149 0.19256356 + 9.11891189 0.18982684 + 9.12291229 0.18713405 + 9.12691269 0.18448475 + 9.13091309 0.18187847 + 9.13491349 0.17931473 + 9.13891389 0.17679301 + 9.14291429 0.17431277 + 9.14691469 0.17187347 + 9.15091509 0.16947453 + 9.15491549 0.16711535 + 9.15891589 0.16479534 + 9.16291629 0.16251385 + 9.16691669 0.16027025 + 9.17091709 0.15806389 + 9.17491749 0.15589408 + 9.17891789 0.15376014 + 9.18291829 0.15166136 + 9.18691869 0.14959704 + 9.19091909 0.14756645 + 9.19491949 0.14556884 + 9.19891989 0.14360347 + 9.20292029 0.14166958 + 9.20692069 0.13976640 + 9.21092109 0.13789316 + 9.21492149 0.13604908 + 9.21892189 0.13423335 + 9.22292229 0.13244520 + 9.22692269 0.13068381 + 9.23092309 0.12894839 + 9.23492349 0.12723812 + 9.23892389 0.12555222 + 9.24292429 0.12388986 + 9.24692469 0.12225025 + 9.25092509 0.12063259 + 9.25492549 0.11903607 + 9.25892589 0.11745990 + 9.26292629 0.11590331 + 9.26692669 0.11436551 + 9.27092709 0.11284574 + 9.27492749 0.11134323 + 9.27892789 0.10985726 + 9.28292829 0.10838709 + 9.28692869 0.10693200 + 9.29092909 0.10549131 + 9.29492949 0.10406434 + 9.29892989 0.10265043 + 9.30293029 0.10124894 + 9.30693069 0.09985928 + 9.31093109 0.09848085 + 9.31493149 0.09711310 + 9.31893189 0.09575549 + 9.32293229 0.09440753 + 9.32693269 0.09306874 + 9.33093309 0.09173868 + 9.33493349 0.09041694 + 9.33893389 0.08910314 + 9.34293429 0.08779694 + 9.34693469 0.08649803 + 9.35093509 0.08520613 + 9.35493549 0.08392099 + 9.35893589 0.08264241 + 9.36293629 0.08137021 + 9.36693669 0.08010425 + 9.37093709 0.07884440 + 9.37493749 0.07759061 + 9.37893789 0.07634280 + 9.38293829 0.07510097 + 9.38693869 0.07386513 + 9.39093909 0.07263530 + 9.39493949 0.07141155 + 9.39893989 0.07019397 + 9.40294029 0.06898266 + 9.40694069 0.06777774 + 9.41094109 0.06657936 + 9.41494149 0.06538769 + 9.41894189 0.06420289 + 9.42294229 0.06302516 + 9.42694269 0.06185468 + 9.43094309 0.06069167 + 9.43494349 0.05953635 + 9.43894389 0.05838891 + 9.44294429 0.05724958 + 9.44694469 0.05611859 + 9.45094509 0.05499615 + 9.45494549 0.05388246 + 9.45894589 0.05277776 + 9.46294629 0.05168224 + 9.46694669 0.05059610 + 9.47094709 0.04951954 + 9.47494749 0.04845274 + 9.47894789 0.04739588 + 9.48294829 0.04634912 + 9.48694869 0.04531264 + 9.49094909 0.04428656 + 9.49494949 0.04327105 + 9.49894989 0.04226622 + 9.50295030 0.04127219 + 9.50695070 0.04028909 + 9.51095110 0.03931701 + 9.51495150 0.03835605 + 9.51895190 0.03740630 + 9.52295230 0.03646784 + 9.52695270 0.03554076 + 9.53095310 0.03462512 + 9.53495350 0.03372100 + 9.53895390 0.03282846 + 9.54295430 0.03194757 + 9.54695470 0.03107839 + 9.55095510 0.03022098 + 9.55495550 0.02937541 + 9.55895590 0.02854174 + 9.56295630 0.02772003 + 9.56695670 0.02691035 + 9.57095710 0.02611277 + 9.57495750 0.02532735 + 9.57895790 0.02455418 + 9.58295830 0.02379333 + 9.58695870 0.02304487 + 9.59095910 0.02230888 + 9.59495950 0.02158546 + 9.59895990 0.02087467 + 9.60296030 0.02017662 + 9.60696070 0.01949138 + 9.61096110 0.01881904 + 9.61496150 0.01815969 + 9.61896190 0.01751340 + 9.62296230 0.01688027 + 9.62696270 0.01626038 + 9.63096310 0.01565379 + 9.63496350 0.01506057 + 9.63896390 0.01448080 + 9.64296430 0.01391452 + 9.64696470 0.01336179 + 9.65096510 0.01282265 + 9.65496550 0.01229713 + 9.65896590 0.01178524 + 9.66296630 0.01128701 + 9.66696670 0.01080242 + 9.67096710 0.01033146 + 9.67496750 0.00987411 + 9.67896790 0.00943032 + 9.68296830 0.00900004 + 9.68696870 0.00858319 + 9.69096910 0.00817970 + 9.69496950 0.00778946 + 9.69896990 0.00741237 + 9.70297030 0.00704829 + 9.70697070 0.00669708 + 9.71097110 0.00635859 + 9.71497150 0.00603264 + 9.71897190 0.00571906 + 9.72297230 0.00541764 + 9.72697270 0.00512818 + 9.73097310 0.00485046 + 9.73497350 0.00458425 + 9.73897390 0.00432931 + 9.74297430 0.00408538 + 9.74697470 0.00385221 + 9.75097510 0.00362953 + 9.75497550 0.00341707 + 9.75897590 0.00321454 + 9.76297630 0.00302167 + 9.76697670 0.00283816 + 9.77097710 0.00266373 + 9.77497750 0.00249807 + 9.77897790 0.00234090 + 9.78297830 0.00219192 + 9.78697870 0.00205082 + 9.79097910 0.00191733 + 9.79497950 0.00179113 + 9.79897990 0.00167195 + 9.80298030 0.00155950 + 9.80698070 0.00145349 + 9.81098110 0.00135364 + 9.81498150 0.00125968 + 9.81898190 0.00117134 + 9.82298230 0.00108837 + 9.82698270 0.00101049 + 9.83098310 0.00093747 + 9.83498350 0.00086905 + 9.83898390 0.00080502 + 9.84298430 0.00074512 + 9.84698470 0.00068916 + 9.85098510 0.00063691 + 9.85498550 0.00058816 + 9.85898590 0.00054273 + 9.86298630 0.00050042 + 9.86698670 0.00046105 + 9.87098710 0.00042445 + 9.87498750 0.00039045 + 9.87898790 0.00035889 + 9.88298830 0.00032962 + 9.88698870 0.00030250 + 9.89098910 0.00027739 + 9.89498950 0.00025416 + 9.89898990 0.00023268 + 9.90299030 0.00021285 + 9.90699070 0.00019455 + 9.91099110 0.00017767 + 9.91499150 0.00016212 + 9.91899190 0.00014781 + 9.92299230 0.00013465 + 9.92699270 0.00012255 + 9.93099310 0.00011145 + 9.93499350 0.00010126 + 9.93899390 0.00009192 + 9.94299430 0.00008337 + 9.94699470 0.00007554 + 9.95099510 0.00006839 + 9.95499550 0.00006185 + 9.95899590 0.00005589 + 9.96299630 0.00005045 + 9.96699670 0.00004550 + 9.97099710 0.00004100 + 9.97499750 0.00003690 + 9.97899790 0.00003318 + 9.98299830 0.00002981 + 9.98699870 0.00002675 + 9.99099910 0.00002398 + 9.99499950 0.00002147 + 9.99899990 0.00001921 + 10.00300030 0.00001717 + 10.00700070 0.00001532 + 10.01100110 0.00001366 + 10.01500150 0.00001217 + 10.01900190 0.00001083 + 10.02300230 0.00000962 + 10.02700270 0.00000854 + 10.03100310 0.00000757 + 10.03500350 0.00000670 + 10.03900390 0.00000593 + 10.04300430 0.00000524 + 10.04700470 0.00000462 + 10.05100510 0.00000407 + 10.05500550 0.00000359 + 10.05900590 0.00000315 + 10.06300630 0.00000277 + 10.06700670 0.00000243 + 10.07100710 0.00000213 + 10.07500750 0.00000186 + 10.07900790 0.00000162 + 10.08300830 0.00000142 + 10.08700870 0.00000124 + 10.09100910 0.00000107 + 10.09500950 0.00000093 + 10.09900990 0.00000081 + 10.10301030 0.00000070 + 10.10701070 0.00000061 + 10.11101110 0.00000053 + 10.11501150 0.00000045 + 10.11901190 0.00000039 + 10.12301230 0.00000034 + 10.12701270 0.00000029 + 10.13101310 0.00000025 + 10.13501350 0.00000021 + 10.13901390 0.00000018 + 10.14301430 0.00000016 + 10.14701470 0.00000013 + 10.15101510 0.00000011 + 10.15501550 0.00000010 + 10.15901590 0.00000008 + 10.16301630 0.00000007 + 10.16701670 0.00000006 + 10.17101710 0.00000005 + 10.17501750 0.00000004 + 10.17901790 0.00000004 + 10.18301830 0.00000003 + 10.18701870 0.00000003 + 10.19101910 0.00000002 + 10.19501950 0.00000002 + 10.19901990 0.00000001 + 10.20302030 0.00000001 + 10.20702070 0.00000001 + 10.21102110 0.00000001 + 10.21502150 0.00000001 + 10.21902190 0.00000001 + 10.22302230 0.00000000 + 10.22702270 0.00000000 + 10.23102310 0.00000000 + 10.23502350 0.00000000 + 10.23902390 0.00000000 + 10.24302430 0.00000000 + 10.24702470 0.00000000 + 10.25102510 0.00000000 + 10.25502550 0.00000000 + 10.25902590 0.00000000 + 10.26302630 0.00000000 + 10.26702670 0.00000000 + 10.27102710 0.00000000 + 10.27502750 0.00000000 + 10.27902790 0.00000000 + 10.28302830 0.00000000 + 10.28702870 0.00000000 + 10.29102910 0.00000000 + 10.29502950 0.00000000 + 10.29902990 0.00000000 + 10.30303030 0.00000000 + 10.30703070 0.00000000 + 10.31103110 0.00000000 + 10.31503150 0.00000000 + 10.31903190 0.00000000 + 10.32303230 0.00000000 + 10.32703270 0.00000000 + 10.33103310 0.00000000 + 10.33503350 0.00000000 + 10.33903390 0.00000000 + 10.34303430 0.00000000 + 10.34703470 0.00000000 + 10.35103510 0.00000000 + 10.35503550 0.00000000 + 10.35903590 0.00000000 + 10.36303630 0.00000000 + 10.36703670 0.00000000 + 10.37103710 0.00000000 + 10.37503750 0.00000000 + 10.37903790 0.00000000 + 10.38303830 0.00000000 + 10.38703870 0.00000000 + 10.39103910 0.00000000 + 10.39503950 0.00000000 + 10.39903990 0.00000000 + 10.40304030 0.00000000 + 10.40704070 0.00000000 + 10.41104110 0.00000000 + 10.41504150 0.00000000 + 10.41904190 0.00000000 + 10.42304230 0.00000000 + 10.42704270 0.00000000 + 10.43104310 0.00000000 + 10.43504350 0.00000000 + 10.43904390 0.00000000 + 10.44304430 0.00000000 + 10.44704470 0.00000000 + 10.45104510 0.00000000 + 10.45504550 0.00000000 + 10.45904590 0.00000000 + 10.46304630 0.00000000 + 10.46704670 0.00000000 + 10.47104710 0.00000000 + 10.47504750 0.00000000 + 10.47904790 0.00000000 + 10.48304830 0.00000000 + 10.48704870 0.00000000 + 10.49104910 0.00000000 + 10.49504950 0.00000000 + 10.49904990 0.00000000 + 10.50305031 0.00000000 + 10.50705071 0.00000000 + 10.51105111 0.00000000 + 10.51505151 0.00000000 + 10.51905191 0.00000000 + 10.52305231 0.00000000 + 10.52705271 0.00000000 + 10.53105311 0.00000000 + 10.53505351 0.00000000 + 10.53905391 0.00000000 + 10.54305431 0.00000000 + 10.54705471 0.00000000 + 10.55105511 0.00000000 + 10.55505551 0.00000000 + 10.55905591 0.00000000 + 10.56305631 0.00000000 + 10.56705671 0.00000000 + 10.57105711 0.00000000 + 10.57505751 0.00000000 + 10.57905791 0.00000000 + 10.58305831 0.00000000 + 10.58705871 0.00000000 + 10.59105911 0.00000000 + 10.59505951 0.00000000 + 10.59905991 0.00000000 + 10.60306031 0.00000000 + 10.60706071 0.00000000 + 10.61106111 0.00000000 + 10.61506151 0.00000000 + 10.61906191 0.00000000 + 10.62306231 0.00000000 + 10.62706271 0.00000000 + 10.63106311 0.00000000 + 10.63506351 0.00000000 + 10.63906391 0.00000000 + 10.64306431 0.00000000 + 10.64706471 0.00000000 + 10.65106511 0.00000000 + 10.65506551 0.00000000 + 10.65906591 0.00000000 + 10.66306631 0.00000000 + 10.66706671 0.00000000 + 10.67106711 0.00000000 + 10.67506751 0.00000000 + 10.67906791 0.00000000 + 10.68306831 0.00000000 + 10.68706871 0.00000000 + 10.69106911 0.00000000 + 10.69506951 0.00000000 + 10.69906991 0.00000000 + 10.70307031 0.00000000 + 10.70707071 0.00000000 + 10.71107111 0.00000000 + 10.71507151 0.00000000 + 10.71907191 0.00000000 + 10.72307231 0.00000000 + 10.72707271 0.00000000 + 10.73107311 0.00000000 + 10.73507351 0.00000000 + 10.73907391 0.00000000 + 10.74307431 0.00000000 + 10.74707471 0.00000000 + 10.75107511 0.00000000 + 10.75507551 0.00000000 + 10.75907591 0.00000000 + 10.76307631 0.00000000 + 10.76707671 0.00000000 + 10.77107711 0.00000000 + 10.77507751 0.00000000 + 10.77907791 0.00000000 + 10.78307831 0.00000000 + 10.78707871 0.00000000 + 10.79107911 0.00000000 + 10.79507951 0.00000000 + 10.79907991 0.00000000 + 10.80308031 0.00000000 + 10.80708071 0.00000000 + 10.81108111 0.00000000 + 10.81508151 0.00000000 + 10.81908191 0.00000000 + 10.82308231 0.00000000 + 10.82708271 0.00000000 + 10.83108311 0.00000000 + 10.83508351 0.00000000 + 10.83908391 0.00000000 + 10.84308431 0.00000000 + 10.84708471 0.00000000 + 10.85108511 0.00000000 + 10.85508551 0.00000000 + 10.85908591 0.00000000 + 10.86308631 0.00000000 + 10.86708671 0.00000000 + 10.87108711 0.00000000 + 10.87508751 0.00000000 + 10.87908791 0.00000000 + 10.88308831 0.00000000 + 10.88708871 0.00000000 + 10.89108911 0.00000000 + 10.89508951 0.00000000 + 10.89908991 0.00000000 + 10.90309031 0.00000000 + 10.90709071 0.00000000 + 10.91109111 0.00000000 + 10.91509151 0.00000000 + 10.91909191 0.00000000 + 10.92309231 0.00000000 + 10.92709271 0.00000000 + 10.93109311 0.00000000 + 10.93509351 0.00000000 + 10.93909391 0.00000000 + 10.94309431 0.00000000 + 10.94709471 0.00000000 + 10.95109511 0.00000000 + 10.95509551 0.00000000 + 10.95909591 0.00000000 + 10.96309631 0.00000000 + 10.96709671 0.00000000 + 10.97109711 0.00000000 + 10.97509751 0.00000000 + 10.97909791 0.00000000 + 10.98309831 0.00000000 + 10.98709871 0.00000000 + 10.99109911 0.00000000 + 10.99509951 0.00000000 + 10.99909991 0.00000000 + 11.00310031 0.00000000 + 11.00710071 0.00000000 + 11.01110111 0.00000000 + 11.01510151 0.00000000 + 11.01910191 0.00000000 + 11.02310231 0.00000000 + 11.02710271 0.00000000 + 11.03110311 0.00000000 + 11.03510351 0.00000000 + 11.03910391 0.00000000 + 11.04310431 0.00000000 + 11.04710471 0.00000000 + 11.05110511 0.00000000 + 11.05510551 0.00000000 + 11.05910591 0.00000000 + 11.06310631 0.00000000 + 11.06710671 0.00000000 + 11.07110711 0.00000000 + 11.07510751 0.00000000 + 11.07910791 0.00000000 + 11.08310831 0.00000000 + 11.08710871 0.00000000 + 11.09110911 0.00000000 + 11.09510951 0.00000000 + 11.09910991 0.00000000 + 11.10311031 0.00000000 + 11.10711071 0.00000000 + 11.11111111 0.00000000 + 11.11511151 0.00000000 + 11.11911191 0.00000000 + 11.12311231 0.00000000 + 11.12711271 0.00000000 + 11.13111311 0.00000000 + 11.13511351 0.00000000 + 11.13911391 0.00000000 + 11.14311431 0.00000000 + 11.14711471 0.00000000 + 11.15111511 0.00000000 + 11.15511551 0.00000000 + 11.15911591 0.00000000 + 11.16311631 0.00000000 + 11.16711671 0.00000000 + 11.17111711 0.00000000 + 11.17511751 0.00000000 + 11.17911791 0.00000000 + 11.18311831 0.00000000 + 11.18711871 0.00000000 + 11.19111911 0.00000000 + 11.19511951 0.00000000 + 11.19911991 0.00000000 + 11.20312031 0.00000000 + 11.20712071 0.00000000 + 11.21112111 0.00000000 + 11.21512151 0.00000000 + 11.21912191 0.00000000 + 11.22312231 0.00000000 + 11.22712271 0.00000000 + 11.23112311 0.00000000 + 11.23512351 0.00000000 + 11.23912391 0.00000000 + 11.24312431 0.00000000 + 11.24712471 0.00000000 + 11.25112511 0.00000000 + 11.25512551 0.00000000 + 11.25912591 0.00000000 + 11.26312631 0.00000000 + 11.26712671 0.00000000 + 11.27112711 0.00000000 + 11.27512751 0.00000000 + 11.27912791 0.00000000 + 11.28312831 0.00000000 + 11.28712871 0.00000000 + 11.29112911 0.00000000 + 11.29512951 0.00000000 + 11.29912991 0.00000000 + 11.30313031 0.00000000 + 11.30713071 0.00000000 + 11.31113111 0.00000000 + 11.31513151 0.00000000 + 11.31913191 0.00000000 + 11.32313231 0.00000000 + 11.32713271 0.00000000 + 11.33113311 0.00000000 + 11.33513351 0.00000000 + 11.33913391 0.00000000 + 11.34313431 0.00000000 + 11.34713471 0.00000000 + 11.35113511 0.00000000 + 11.35513551 0.00000000 + 11.35913591 0.00000000 + 11.36313631 0.00000000 + 11.36713671 0.00000000 + 11.37113711 0.00000000 + 11.37513751 0.00000000 + 11.37913791 0.00000000 + 11.38313831 0.00000000 + 11.38713871 0.00000000 + 11.39113911 0.00000000 + 11.39513951 0.00000000 + 11.39913991 0.00000000 + 11.40314031 0.00000000 + 11.40714071 0.00000000 + 11.41114111 0.00000000 + 11.41514151 0.00000000 + 11.41914191 0.00000000 + 11.42314231 0.00000000 + 11.42714271 0.00000000 + 11.43114311 0.00000000 + 11.43514351 0.00000000 + 11.43914391 0.00000000 + 11.44314431 0.00000000 + 11.44714471 0.00000000 + 11.45114511 0.00000000 + 11.45514551 0.00000000 + 11.45914591 0.00000000 + 11.46314631 0.00000000 + 11.46714671 0.00000000 + 11.47114711 0.00000000 + 11.47514751 0.00000000 + 11.47914791 0.00000000 + 11.48314831 0.00000000 + 11.48714871 0.00000000 + 11.49114911 0.00000000 + 11.49514951 0.00000000 + 11.49914991 0.00000000 + 11.50315032 0.00000000 + 11.50715072 0.00000000 + 11.51115112 0.00000000 + 11.51515152 0.00000000 + 11.51915192 0.00000000 + 11.52315232 0.00000000 + 11.52715272 0.00000000 + 11.53115312 0.00000000 + 11.53515352 0.00000000 + 11.53915392 0.00000000 + 11.54315432 0.00000000 + 11.54715472 0.00000000 + 11.55115512 0.00000000 + 11.55515552 0.00000000 + 11.55915592 0.00000000 + 11.56315632 0.00000000 + 11.56715672 0.00000000 + 11.57115712 0.00000000 + 11.57515752 0.00000000 + 11.57915792 0.00000000 + 11.58315832 0.00000000 + 11.58715872 0.00000000 + 11.59115912 0.00000000 + 11.59515952 0.00000000 + 11.59915992 0.00000000 + 11.60316032 0.00000000 + 11.60716072 0.00000000 + 11.61116112 0.00000000 + 11.61516152 0.00000000 + 11.61916192 0.00000000 + 11.62316232 0.00000000 + 11.62716272 0.00000000 + 11.63116312 0.00000000 + 11.63516352 0.00000000 + 11.63916392 0.00000000 + 11.64316432 0.00000000 + 11.64716472 0.00000000 + 11.65116512 0.00000000 + 11.65516552 0.00000000 + 11.65916592 0.00000000 + 11.66316632 0.00000000 + 11.66716672 0.00000000 + 11.67116712 0.00000000 + 11.67516752 0.00000000 + 11.67916792 0.00000000 + 11.68316832 0.00000000 + 11.68716872 0.00000000 + 11.69116912 0.00000000 + 11.69516952 0.00000000 + 11.69916992 0.00000000 + 11.70317032 0.00000000 + 11.70717072 0.00000000 + 11.71117112 0.00000000 + 11.71517152 0.00000000 + 11.71917192 0.00000000 + 11.72317232 0.00000000 + 11.72717272 0.00000000 + 11.73117312 0.00000000 + 11.73517352 0.00000000 + 11.73917392 0.00000000 + 11.74317432 0.00000000 + 11.74717472 0.00000000 + 11.75117512 0.00000000 + 11.75517552 0.00000000 + 11.75917592 0.00000000 + 11.76317632 0.00000000 + 11.76717672 0.00000000 + 11.77117712 0.00000000 + 11.77517752 0.00000000 + 11.77917792 0.00000000 + 11.78317832 0.00000000 + 11.78717872 0.00000000 + 11.79117912 0.00000000 + 11.79517952 0.00000000 + 11.79917992 0.00000000 + 11.80318032 0.00000000 + 11.80718072 0.00000000 + 11.81118112 0.00000000 + 11.81518152 0.00000000 + 11.81918192 0.00000000 + 11.82318232 0.00000000 + 11.82718272 0.00000000 + 11.83118312 0.00000000 + 11.83518352 0.00000000 + 11.83918392 0.00000000 + 11.84318432 0.00000000 + 11.84718472 0.00000000 + 11.85118512 0.00000000 + 11.85518552 0.00000000 + 11.85918592 0.00000000 + 11.86318632 0.00000000 + 11.86718672 0.00000000 + 11.87118712 0.00000000 + 11.87518752 0.00000000 + 11.87918792 0.00000000 + 11.88318832 0.00000000 + 11.88718872 0.00000000 + 11.89118912 0.00000000 + 11.89518952 0.00000000 + 11.89918992 0.00000000 + 11.90319032 0.00000000 + 11.90719072 0.00000000 + 11.91119112 0.00000000 + 11.91519152 0.00000000 + 11.91919192 0.00000000 + 11.92319232 0.00000000 + 11.92719272 0.00000000 + 11.93119312 0.00000000 + 11.93519352 0.00000000 + 11.93919392 0.00000000 + 11.94319432 0.00000000 + 11.94719472 0.00000000 + 11.95119512 0.00000000 + 11.95519552 0.00000000 + 11.95919592 0.00000000 + 11.96319632 0.00000000 + 11.96719672 0.00000000 + 11.97119712 0.00000000 + 11.97519752 0.00000000 + 11.97919792 0.00000000 + 11.98319832 0.00000000 + 11.98719872 0.00000000 + 11.99119912 0.00000000 + 11.99519952 0.00000000 + 11.99919992 0.00000000 + 12.00320032 0.00000000 + 12.00720072 0.00000000 + 12.01120112 0.00000000 + 12.01520152 0.00000000 + 12.01920192 0.00000000 + 12.02320232 0.00000000 + 12.02720272 0.00000000 + 12.03120312 0.00000000 + 12.03520352 0.00000000 + 12.03920392 0.00000000 + 12.04320432 0.00000000 + 12.04720472 0.00000000 + 12.05120512 0.00000000 + 12.05520552 0.00000000 + 12.05920592 0.00000000 + 12.06320632 0.00000000 + 12.06720672 0.00000000 + 12.07120712 0.00000000 + 12.07520752 0.00000000 + 12.07920792 0.00000000 + 12.08320832 0.00000000 + 12.08720872 0.00000000 + 12.09120912 0.00000000 + 12.09520952 0.00000000 + 12.09920992 0.00000000 + 12.10321032 0.00000000 + 12.10721072 0.00000000 + 12.11121112 0.00000000 + 12.11521152 0.00000000 + 12.11921192 0.00000000 + 12.12321232 0.00000000 + 12.12721272 0.00000000 + 12.13121312 0.00000000 + 12.13521352 0.00000000 + 12.13921392 0.00000000 + 12.14321432 0.00000000 + 12.14721472 0.00000000 + 12.15121512 0.00000000 + 12.15521552 0.00000000 + 12.15921592 0.00000000 + 12.16321632 0.00000000 + 12.16721672 0.00000000 + 12.17121712 0.00000000 + 12.17521752 0.00000000 + 12.17921792 0.00000000 + 12.18321832 0.00000000 + 12.18721872 0.00000000 + 12.19121912 0.00000000 + 12.19521952 0.00000000 + 12.19921992 0.00000000 + 12.20322032 0.00000000 + 12.20722072 0.00000000 + 12.21122112 0.00000000 + 12.21522152 0.00000000 + 12.21922192 0.00000000 + 12.22322232 0.00000000 + 12.22722272 0.00000000 + 12.23122312 0.00000000 + 12.23522352 0.00000000 + 12.23922392 0.00000000 + 12.24322432 0.00000000 + 12.24722472 0.00000000 + 12.25122512 0.00000000 + 12.25522552 0.00000000 + 12.25922592 0.00000000 + 12.26322632 0.00000000 + 12.26722672 0.00000000 + 12.27122712 0.00000000 + 12.27522752 0.00000000 + 12.27922792 0.00000000 + 12.28322832 0.00000000 + 12.28722872 0.00000000 + 12.29122912 0.00000000 + 12.29522952 0.00000000 + 12.29922992 0.00000000 + 12.30323032 0.00000000 + 12.30723072 0.00000000 + 12.31123112 0.00000000 + 12.31523152 0.00000000 + 12.31923192 0.00000000 + 12.32323232 0.00000000 + 12.32723272 0.00000000 + 12.33123312 0.00000000 + 12.33523352 0.00000000 + 12.33923392 0.00000000 + 12.34323432 0.00000000 + 12.34723472 0.00000000 + 12.35123512 0.00000000 + 12.35523552 0.00000000 + 12.35923592 0.00000000 + 12.36323632 0.00000000 + 12.36723672 0.00000000 + 12.37123712 0.00000000 + 12.37523752 0.00000000 + 12.37923792 0.00000000 + 12.38323832 0.00000000 + 12.38723872 0.00000000 + 12.39123912 0.00000000 + 12.39523952 0.00000000 + 12.39923992 0.00000000 + 12.40324032 0.00000000 + 12.40724072 0.00000000 + 12.41124112 0.00000000 + 12.41524152 0.00000000 + 12.41924192 0.00000000 + 12.42324232 0.00000000 + 12.42724272 0.00000000 + 12.43124312 0.00000000 + 12.43524352 0.00000000 + 12.43924392 0.00000000 + 12.44324432 0.00000000 + 12.44724472 0.00000000 + 12.45124512 0.00000000 + 12.45524552 0.00000000 + 12.45924592 0.00000000 + 12.46324632 0.00000000 + 12.46724672 0.00000000 + 12.47124712 0.00000000 + 12.47524752 0.00000000 + 12.47924792 0.00000000 + 12.48324832 0.00000000 + 12.48724872 0.00000000 + 12.49124912 0.00000000 + 12.49524952 0.00000000 + 12.49924992 0.00000000 + 12.50325033 0.00000000 + 12.50725073 0.00000000 + 12.51125113 0.00000000 + 12.51525153 0.00000000 + 12.51925193 0.00000000 + 12.52325233 0.00000000 + 12.52725273 0.00000000 + 12.53125313 0.00000000 + 12.53525353 0.00000000 + 12.53925393 0.00000000 + 12.54325433 0.00000000 + 12.54725473 0.00000000 + 12.55125513 0.00000000 + 12.55525553 0.00000000 + 12.55925593 0.00000000 + 12.56325633 0.00000000 + 12.56725673 0.00000000 + 12.57125713 0.00000000 + 12.57525753 0.00000000 + 12.57925793 0.00000000 + 12.58325833 0.00000000 + 12.58725873 0.00000000 + 12.59125913 0.00000000 + 12.59525953 0.00000000 + 12.59925993 0.00000000 + 12.60326033 0.00000000 + 12.60726073 0.00000000 + 12.61126113 0.00000000 + 12.61526153 0.00000000 + 12.61926193 0.00000000 + 12.62326233 0.00000000 + 12.62726273 0.00000000 + 12.63126313 0.00000000 + 12.63526353 0.00000000 + 12.63926393 0.00000000 + 12.64326433 0.00000000 + 12.64726473 0.00000000 + 12.65126513 0.00000000 + 12.65526553 0.00000000 + 12.65926593 0.00000000 + 12.66326633 0.00000000 + 12.66726673 0.00000000 + 12.67126713 0.00000000 + 12.67526753 0.00000000 + 12.67926793 0.00000000 + 12.68326833 0.00000000 + 12.68726873 0.00000000 + 12.69126913 0.00000000 + 12.69526953 0.00000000 + 12.69926993 0.00000000 + 12.70327033 0.00000000 + 12.70727073 0.00000000 + 12.71127113 0.00000000 + 12.71527153 0.00000000 + 12.71927193 0.00000000 + 12.72327233 0.00000000 + 12.72727273 0.00000000 + 12.73127313 0.00000000 + 12.73527353 0.00000000 + 12.73927393 0.00000000 + 12.74327433 0.00000000 + 12.74727473 0.00000000 + 12.75127513 0.00000000 + 12.75527553 0.00000000 + 12.75927593 0.00000000 + 12.76327633 0.00000000 + 12.76727673 0.00000000 + 12.77127713 0.00000000 + 12.77527753 0.00000000 + 12.77927793 0.00000000 + 12.78327833 0.00000000 + 12.78727873 0.00000000 + 12.79127913 0.00000000 + 12.79527953 0.00000000 + 12.79927993 0.00000000 + 12.80328033 0.00000000 + 12.80728073 0.00000000 + 12.81128113 0.00000000 + 12.81528153 0.00000000 + 12.81928193 0.00000000 + 12.82328233 0.00000000 + 12.82728273 0.00000000 + 12.83128313 0.00000000 + 12.83528353 0.00000000 + 12.83928393 0.00000000 + 12.84328433 0.00000000 + 12.84728473 0.00000000 + 12.85128513 0.00000000 + 12.85528553 0.00000000 + 12.85928593 0.00000000 + 12.86328633 0.00000000 + 12.86728673 0.00000000 + 12.87128713 0.00000000 + 12.87528753 0.00000000 + 12.87928793 0.00000000 + 12.88328833 0.00000000 + 12.88728873 0.00000000 + 12.89128913 0.00000000 + 12.89528953 0.00000000 + 12.89928993 0.00000000 + 12.90329033 0.00000000 + 12.90729073 0.00000000 + 12.91129113 0.00000000 + 12.91529153 0.00000000 + 12.91929193 0.00000000 + 12.92329233 0.00000000 + 12.92729273 0.00000000 + 12.93129313 0.00000000 + 12.93529353 0.00000000 + 12.93929393 0.00000000 + 12.94329433 0.00000000 + 12.94729473 0.00000000 + 12.95129513 0.00000000 + 12.95529553 0.00000000 + 12.95929593 0.00000000 + 12.96329633 0.00000000 + 12.96729673 0.00000000 + 12.97129713 0.00000000 + 12.97529753 0.00000000 + 12.97929793 0.00000000 + 12.98329833 0.00000000 + 12.98729873 0.00000000 + 12.99129913 0.00000000 + 12.99529953 0.00000000 + 12.99929993 0.00000000 + 13.00330033 0.00000000 + 13.00730073 0.00000000 + 13.01130113 0.00000000 + 13.01530153 0.00000000 + 13.01930193 0.00000000 + 13.02330233 0.00000000 + 13.02730273 0.00000000 + 13.03130313 0.00000000 + 13.03530353 0.00000000 + 13.03930393 0.00000000 + 13.04330433 0.00000000 + 13.04730473 0.00000000 + 13.05130513 0.00000000 + 13.05530553 0.00000000 + 13.05930593 0.00000000 + 13.06330633 0.00000000 + 13.06730673 0.00000000 + 13.07130713 0.00000000 + 13.07530753 0.00000000 + 13.07930793 0.00000000 + 13.08330833 0.00000000 + 13.08730873 0.00000000 + 13.09130913 0.00000000 + 13.09530953 0.00000000 + 13.09930993 0.00000000 + 13.10331033 0.00000000 + 13.10731073 0.00000000 + 13.11131113 0.00000000 + 13.11531153 0.00000000 + 13.11931193 0.00000000 + 13.12331233 0.00000000 + 13.12731273 0.00000000 + 13.13131313 0.00000000 + 13.13531353 0.00000000 + 13.13931393 0.00000000 + 13.14331433 0.00000000 + 13.14731473 0.00000000 + 13.15131513 0.00000000 + 13.15531553 0.00000000 + 13.15931593 0.00000000 + 13.16331633 0.00000000 + 13.16731673 0.00000000 + 13.17131713 0.00000000 + 13.17531753 0.00000000 + 13.17931793 0.00000000 + 13.18331833 0.00000000 + 13.18731873 0.00000000 + 13.19131913 0.00000000 + 13.19531953 0.00000000 + 13.19931993 0.00000000 + 13.20332033 0.00000000 + 13.20732073 0.00000000 + 13.21132113 0.00000000 + 13.21532153 0.00000000 + 13.21932193 0.00000000 + 13.22332233 0.00000000 + 13.22732273 0.00000000 + 13.23132313 0.00000000 + 13.23532353 0.00000000 + 13.23932393 0.00000000 + 13.24332433 0.00000000 + 13.24732473 0.00000000 + 13.25132513 0.00000000 + 13.25532553 0.00000000 + 13.25932593 0.00000000 + 13.26332633 0.00000000 + 13.26732673 0.00000000 + 13.27132713 0.00000000 + 13.27532753 0.00000000 + 13.27932793 0.00000000 + 13.28332833 0.00000000 + 13.28732873 0.00000000 + 13.29132913 0.00000000 + 13.29532953 0.00000000 + 13.29932993 0.00000000 + 13.30333033 0.00000000 + 13.30733073 0.00000000 + 13.31133113 0.00000000 + 13.31533153 0.00000000 + 13.31933193 0.00000000 + 13.32333233 0.00000000 + 13.32733273 0.00000000 + 13.33133313 0.00000000 + 13.33533353 0.00000000 + 13.33933393 0.00000000 + 13.34333433 0.00000000 + 13.34733473 0.00000000 + 13.35133513 0.00000000 + 13.35533553 0.00000000 + 13.35933593 0.00000000 + 13.36333633 0.00000000 + 13.36733673 0.00000000 + 13.37133713 0.00000000 + 13.37533753 0.00000000 + 13.37933793 0.00000000 + 13.38333833 0.00000000 + 13.38733873 0.00000000 + 13.39133913 0.00000000 + 13.39533953 0.00000000 + 13.39933993 0.00000000 + 13.40334033 0.00000000 + 13.40734073 0.00000000 + 13.41134113 0.00000000 + 13.41534153 0.00000000 + 13.41934193 0.00000000 + 13.42334233 0.00000000 + 13.42734273 0.00000000 + 13.43134313 0.00000000 + 13.43534353 0.00000000 + 13.43934393 0.00000000 + 13.44334433 0.00000000 + 13.44734473 0.00000000 + 13.45134513 0.00000000 + 13.45534553 0.00000000 + 13.45934593 0.00000000 + 13.46334633 0.00000000 + 13.46734673 0.00000000 + 13.47134713 0.00000000 + 13.47534753 0.00000000 + 13.47934793 0.00000000 + 13.48334833 0.00000000 + 13.48734873 0.00000000 + 13.49134913 0.00000000 + 13.49534953 0.00000000 + 13.49934993 0.00000000 + 13.50335034 0.00000000 + 13.50735074 0.00000000 + 13.51135114 0.00000000 + 13.51535154 0.00000000 + 13.51935194 0.00000000 + 13.52335234 0.00000000 + 13.52735274 0.00000000 + 13.53135314 0.00000000 + 13.53535354 0.00000000 + 13.53935394 0.00000000 + 13.54335434 0.00000000 + 13.54735474 0.00000000 + 13.55135514 0.00000000 + 13.55535554 0.00000000 + 13.55935594 0.00000000 + 13.56335634 0.00000000 + 13.56735674 0.00000000 + 13.57135714 0.00000000 + 13.57535754 0.00000000 + 13.57935794 0.00000000 + 13.58335834 0.00000000 + 13.58735874 0.00000000 + 13.59135914 0.00000000 + 13.59535954 0.00000000 + 13.59935994 0.00000000 + 13.60336034 0.00000000 + 13.60736074 0.00000000 + 13.61136114 0.00000000 + 13.61536154 0.00000000 + 13.61936194 0.00000000 + 13.62336234 0.00000000 + 13.62736274 0.00000000 + 13.63136314 0.00000000 + 13.63536354 0.00000000 + 13.63936394 0.00000000 + 13.64336434 0.00000000 + 13.64736474 0.00000000 + 13.65136514 0.00000000 + 13.65536554 0.00000000 + 13.65936594 0.00000000 + 13.66336634 0.00000000 + 13.66736674 0.00000000 + 13.67136714 0.00000000 + 13.67536754 0.00000000 + 13.67936794 0.00000000 + 13.68336834 0.00000000 + 13.68736874 0.00000000 + 13.69136914 0.00000000 + 13.69536954 0.00000000 + 13.69936994 0.00000000 + 13.70337034 0.00000000 + 13.70737074 0.00000000 + 13.71137114 0.00000000 + 13.71537154 0.00000000 + 13.71937194 0.00000000 + 13.72337234 0.00000000 + 13.72737274 0.00000000 + 13.73137314 0.00000000 + 13.73537354 0.00000000 + 13.73937394 0.00000000 + 13.74337434 0.00000000 + 13.74737474 0.00000000 + 13.75137514 0.00000000 + 13.75537554 0.00000000 + 13.75937594 0.00000000 + 13.76337634 0.00000000 + 13.76737674 0.00000000 + 13.77137714 0.00000000 + 13.77537754 0.00000000 + 13.77937794 0.00000000 + 13.78337834 0.00000000 + 13.78737874 0.00000000 + 13.79137914 0.00000000 + 13.79537954 0.00000000 + 13.79937994 0.00000000 + 13.80338034 0.00000000 + 13.80738074 0.00000000 + 13.81138114 0.00000000 + 13.81538154 0.00000000 + 13.81938194 0.00000000 + 13.82338234 0.00000000 + 13.82738274 0.00000000 + 13.83138314 0.00000000 + 13.83538354 0.00000000 + 13.83938394 0.00000000 + 13.84338434 0.00000000 + 13.84738474 0.00000000 + 13.85138514 0.00000000 + 13.85538554 0.00000000 + 13.85938594 0.00000000 + 13.86338634 0.00000000 + 13.86738674 0.00000000 + 13.87138714 0.00000000 + 13.87538754 0.00000000 + 13.87938794 0.00000000 + 13.88338834 0.00000000 + 13.88738874 0.00000000 + 13.89138914 0.00000000 + 13.89538954 0.00000000 + 13.89938994 0.00000000 + 13.90339034 0.00000000 + 13.90739074 0.00000000 + 13.91139114 0.00000000 + 13.91539154 0.00000000 + 13.91939194 0.00000000 + 13.92339234 0.00000000 + 13.92739274 0.00000000 + 13.93139314 0.00000000 + 13.93539354 0.00000000 + 13.93939394 0.00000000 + 13.94339434 0.00000000 + 13.94739474 0.00000000 + 13.95139514 0.00000000 + 13.95539554 0.00000000 + 13.95939594 0.00000000 + 13.96339634 0.00000000 + 13.96739674 0.00000000 + 13.97139714 0.00000000 + 13.97539754 0.00000000 + 13.97939794 0.00000000 + 13.98339834 0.00000000 + 13.98739874 0.00000000 + 13.99139914 0.00000000 + 13.99539954 0.00000000 + 13.99939994 0.00000000 + 14.00340034 0.00000000 + 14.00740074 0.00000000 + 14.01140114 0.00000000 + 14.01540154 0.00000000 + 14.01940194 0.00000000 + 14.02340234 0.00000000 + 14.02740274 0.00000000 + 14.03140314 0.00000000 + 14.03540354 0.00000000 + 14.03940394 0.00000000 + 14.04340434 0.00000000 + 14.04740474 0.00000000 + 14.05140514 0.00000000 + 14.05540554 0.00000000 + 14.05940594 0.00000000 + 14.06340634 0.00000000 + 14.06740674 0.00000000 + 14.07140714 0.00000000 + 14.07540754 0.00000000 + 14.07940794 0.00000000 + 14.08340834 0.00000000 + 14.08740874 0.00000000 + 14.09140914 0.00000000 + 14.09540954 0.00000000 + 14.09940994 0.00000000 + 14.10341034 0.00000000 + 14.10741074 0.00000000 + 14.11141114 0.00000000 + 14.11541154 0.00000000 + 14.11941194 0.00000000 + 14.12341234 0.00000000 + 14.12741274 0.00000000 + 14.13141314 0.00000000 + 14.13541354 0.00000000 + 14.13941394 0.00000000 + 14.14341434 0.00000000 + 14.14741474 0.00000000 + 14.15141514 0.00000000 + 14.15541554 0.00000000 + 14.15941594 0.00000000 + 14.16341634 0.00000000 + 14.16741674 0.00000000 + 14.17141714 0.00000000 + 14.17541754 0.00000000 + 14.17941794 0.00000000 + 14.18341834 0.00000000 + 14.18741874 0.00000000 + 14.19141914 0.00000000 + 14.19541954 0.00000000 + 14.19941994 0.00000000 + 14.20342034 0.00000000 + 14.20742074 0.00000000 + 14.21142114 0.00000000 + 14.21542154 0.00000000 + 14.21942194 0.00000000 + 14.22342234 0.00000000 + 14.22742274 0.00000000 + 14.23142314 0.00000000 + 14.23542354 0.00000000 + 14.23942394 0.00000000 + 14.24342434 0.00000000 + 14.24742474 0.00000000 + 14.25142514 0.00000000 + 14.25542554 0.00000000 + 14.25942594 0.00000000 + 14.26342634 0.00000000 + 14.26742674 0.00000000 + 14.27142714 0.00000000 + 14.27542754 0.00000000 + 14.27942794 0.00000000 + 14.28342834 0.00000000 + 14.28742874 0.00000000 + 14.29142914 0.00000000 + 14.29542954 0.00000000 + 14.29942994 0.00000000 + 14.30343034 0.00000000 + 14.30743074 0.00000000 + 14.31143114 0.00000000 + 14.31543154 0.00000000 + 14.31943194 0.00000000 + 14.32343234 0.00000000 + 14.32743274 0.00000000 + 14.33143314 0.00000000 + 14.33543354 0.00000000 + 14.33943394 0.00000000 + 14.34343434 0.00000000 + 14.34743474 0.00000000 + 14.35143514 0.00000000 + 14.35543554 0.00000000 + 14.35943594 0.00000000 + 14.36343634 0.00000000 + 14.36743674 0.00000000 + 14.37143714 0.00000000 + 14.37543754 0.00000000 + 14.37943794 0.00000000 + 14.38343834 0.00000000 + 14.38743874 0.00000000 + 14.39143914 0.00000000 + 14.39543954 0.00000000 + 14.39943994 0.00000000 + 14.40344034 0.00000000 + 14.40744074 0.00000000 + 14.41144114 0.00000000 + 14.41544154 0.00000000 + 14.41944194 0.00000000 + 14.42344234 0.00000000 + 14.42744274 0.00000000 + 14.43144314 0.00000000 + 14.43544354 0.00000000 + 14.43944394 0.00000000 + 14.44344434 0.00000000 + 14.44744474 0.00000000 + 14.45144514 0.00000000 + 14.45544554 0.00000000 + 14.45944594 0.00000000 + 14.46344634 0.00000000 + 14.46744674 0.00000000 + 14.47144714 0.00000000 + 14.47544754 0.00000000 + 14.47944794 0.00000000 + 14.48344834 0.00000000 + 14.48744874 0.00000000 + 14.49144914 0.00000000 + 14.49544954 0.00000000 + 14.49944994 0.00000000 + 14.50345035 0.00000000 + 14.50745075 0.00000000 + 14.51145115 0.00000000 + 14.51545155 0.00000000 + 14.51945195 0.00000000 + 14.52345235 0.00000000 + 14.52745275 0.00000000 + 14.53145315 0.00000000 + 14.53545355 0.00000000 + 14.53945395 0.00000000 + 14.54345435 0.00000000 + 14.54745475 0.00000000 + 14.55145515 0.00000000 + 14.55545555 0.00000000 + 14.55945595 0.00000000 + 14.56345635 0.00000000 + 14.56745675 0.00000000 + 14.57145715 0.00000000 + 14.57545755 0.00000000 + 14.57945795 0.00000000 + 14.58345835 0.00000000 + 14.58745875 0.00000000 + 14.59145915 0.00000000 + 14.59545955 0.00000000 + 14.59945995 0.00000000 + 14.60346035 0.00000000 + 14.60746075 0.00000000 + 14.61146115 0.00000000 + 14.61546155 0.00000000 + 14.61946195 0.00000000 + 14.62346235 0.00000000 + 14.62746275 0.00000000 + 14.63146315 0.00000000 + 14.63546355 0.00000000 + 14.63946395 0.00000000 + 14.64346435 0.00000000 + 14.64746475 0.00000000 + 14.65146515 0.00000000 + 14.65546555 0.00000000 + 14.65946595 0.00000000 + 14.66346635 0.00000000 + 14.66746675 0.00000000 + 14.67146715 0.00000000 + 14.67546755 0.00000000 + 14.67946795 0.00000000 + 14.68346835 0.00000000 + 14.68746875 0.00000000 + 14.69146915 0.00000000 + 14.69546955 0.00000000 + 14.69946995 0.00000000 + 14.70347035 0.00000000 + 14.70747075 0.00000000 + 14.71147115 0.00000000 + 14.71547155 0.00000000 + 14.71947195 0.00000000 + 14.72347235 0.00000000 + 14.72747275 0.00000000 + 14.73147315 0.00000000 + 14.73547355 0.00000000 + 14.73947395 0.00000000 + 14.74347435 0.00000000 + 14.74747475 0.00000000 + 14.75147515 0.00000000 + 14.75547555 0.00000000 + 14.75947595 0.00000000 + 14.76347635 0.00000000 + 14.76747675 0.00000000 + 14.77147715 0.00000000 + 14.77547755 0.00000000 + 14.77947795 0.00000000 + 14.78347835 0.00000000 + 14.78747875 0.00000000 + 14.79147915 0.00000000 + 14.79547955 0.00000000 + 14.79947995 0.00000000 + 14.80348035 0.00000000 + 14.80748075 0.00000000 + 14.81148115 0.00000000 + 14.81548155 0.00000000 + 14.81948195 0.00000000 + 14.82348235 0.00000000 + 14.82748275 0.00000000 + 14.83148315 0.00000000 + 14.83548355 0.00000000 + 14.83948395 0.00000000 + 14.84348435 0.00000000 + 14.84748475 0.00000000 + 14.85148515 0.00000000 + 14.85548555 0.00000000 + 14.85948595 0.00000000 + 14.86348635 0.00000000 + 14.86748675 0.00000000 + 14.87148715 0.00000000 + 14.87548755 0.00000000 + 14.87948795 0.00000000 + 14.88348835 0.00000000 + 14.88748875 0.00000000 + 14.89148915 0.00000000 + 14.89548955 0.00000000 + 14.89948995 0.00000000 + 14.90349035 0.00000000 + 14.90749075 0.00000000 + 14.91149115 0.00000000 + 14.91549155 0.00000000 + 14.91949195 0.00000000 + 14.92349235 0.00000000 + 14.92749275 0.00000000 + 14.93149315 0.00000000 + 14.93549355 0.00000000 + 14.93949395 0.00000000 + 14.94349435 0.00000000 + 14.94749475 0.00000000 + 14.95149515 0.00000000 + 14.95549555 0.00000000 + 14.95949595 0.00000000 + 14.96349635 0.00000000 + 14.96749675 0.00000000 + 14.97149715 0.00000000 + 14.97549755 0.00000000 + 14.97949795 0.00000000 + 14.98349835 0.00000000 + 14.98749875 0.00000000 + 14.99149915 0.00000000 + 14.99549955 0.00000000 + 14.99949995 0.00000000 + 15.00350035 0.00000000 + 15.00750075 0.00000000 + 15.01150115 0.00000000 + 15.01550155 0.00000000 + 15.01950195 0.00000000 + 15.02350235 0.00000000 + 15.02750275 0.00000000 + 15.03150315 0.00000000 + 15.03550355 0.00000000 + 15.03950395 0.00000000 + 15.04350435 0.00000000 + 15.04750475 0.00000000 + 15.05150515 0.00000000 + 15.05550555 0.00000000 + 15.05950595 0.00000000 + 15.06350635 0.00000000 + 15.06750675 0.00000000 + 15.07150715 0.00000000 + 15.07550755 0.00000000 + 15.07950795 0.00000000 + 15.08350835 0.00000000 + 15.08750875 0.00000000 + 15.09150915 0.00000000 + 15.09550955 0.00000000 + 15.09950995 0.00000000 + 15.10351035 0.00000000 + 15.10751075 0.00000000 + 15.11151115 0.00000000 + 15.11551155 0.00000000 + 15.11951195 0.00000000 + 15.12351235 0.00000000 + 15.12751275 0.00000000 + 15.13151315 0.00000000 + 15.13551355 0.00000000 + 15.13951395 0.00000000 + 15.14351435 0.00000000 + 15.14751475 0.00000000 + 15.15151515 0.00000000 + 15.15551555 0.00000000 + 15.15951595 0.00000000 + 15.16351635 0.00000000 + 15.16751675 0.00000000 + 15.17151715 0.00000000 + 15.17551755 0.00000000 + 15.17951795 0.00000000 + 15.18351835 0.00000000 + 15.18751875 0.00000000 + 15.19151915 0.00000000 + 15.19551955 0.00000000 + 15.19951995 0.00000000 + 15.20352035 0.00000000 + 15.20752075 0.00000000 + 15.21152115 0.00000000 + 15.21552155 0.00000000 + 15.21952195 0.00000000 + 15.22352235 0.00000000 + 15.22752275 0.00000000 + 15.23152315 0.00000000 + 15.23552355 0.00000000 + 15.23952395 0.00000000 + 15.24352435 0.00000000 + 15.24752475 0.00000000 + 15.25152515 0.00000000 + 15.25552555 0.00000000 + 15.25952595 0.00000000 + 15.26352635 0.00000000 + 15.26752675 0.00000000 + 15.27152715 0.00000000 + 15.27552755 0.00000000 + 15.27952795 0.00000000 + 15.28352835 0.00000000 + 15.28752875 0.00000000 + 15.29152915 0.00000000 + 15.29552955 0.00000000 + 15.29952995 0.00000000 + 15.30353035 0.00000000 + 15.30753075 0.00000000 + 15.31153115 0.00000000 + 15.31553155 0.00000000 + 15.31953195 0.00000000 + 15.32353235 0.00000000 + 15.32753275 0.00000000 + 15.33153315 0.00000000 + 15.33553355 0.00000000 + 15.33953395 0.00000000 + 15.34353435 0.00000000 + 15.34753475 0.00000000 + 15.35153515 0.00000000 + 15.35553555 0.00000000 + 15.35953595 0.00000000 + 15.36353635 0.00000000 + 15.36753675 0.00000000 + 15.37153715 0.00000000 + 15.37553755 0.00000000 + 15.37953795 0.00000000 + 15.38353835 0.00000000 + 15.38753875 0.00000000 + 15.39153915 0.00000000 + 15.39553955 0.00000000 + 15.39953995 0.00000000 + 15.40354035 0.00000000 + 15.40754075 0.00000000 + 15.41154115 0.00000000 + 15.41554155 0.00000000 + 15.41954195 0.00000000 + 15.42354235 0.00000000 + 15.42754275 0.00000000 + 15.43154315 0.00000000 + 15.43554355 0.00000000 + 15.43954395 0.00000000 + 15.44354435 0.00000000 + 15.44754475 0.00000000 + 15.45154515 0.00000000 + 15.45554555 0.00000000 + 15.45954595 0.00000000 + 15.46354635 0.00000000 + 15.46754675 0.00000000 + 15.47154715 0.00000000 + 15.47554755 0.00000000 + 15.47954795 0.00000000 + 15.48354835 0.00000000 + 15.48754875 0.00000000 + 15.49154915 0.00000000 + 15.49554955 0.00000000 + 15.49954995 0.00000000 + 15.50355036 0.00000000 + 15.50755076 0.00000000 + 15.51155116 0.00000000 + 15.51555156 0.00000000 + 15.51955196 0.00000000 + 15.52355236 0.00000000 + 15.52755276 0.00000000 + 15.53155316 0.00000000 + 15.53555356 0.00000000 + 15.53955396 0.00000000 + 15.54355436 0.00000000 + 15.54755476 0.00000000 + 15.55155516 0.00000000 + 15.55555556 0.00000000 + 15.55955596 0.00000000 + 15.56355636 0.00000000 + 15.56755676 0.00000000 + 15.57155716 0.00000000 + 15.57555756 0.00000000 + 15.57955796 0.00000000 + 15.58355836 0.00000000 + 15.58755876 0.00000000 + 15.59155916 0.00000000 + 15.59555956 0.00000000 + 15.59955996 0.00000000 + 15.60356036 0.00000000 + 15.60756076 0.00000000 + 15.61156116 0.00000000 + 15.61556156 0.00000000 + 15.61956196 0.00000000 + 15.62356236 0.00000000 + 15.62756276 0.00000000 + 15.63156316 0.00000000 + 15.63556356 0.00000000 + 15.63956396 0.00000000 + 15.64356436 0.00000000 + 15.64756476 0.00000000 + 15.65156516 0.00000000 + 15.65556556 0.00000000 + 15.65956596 0.00000000 + 15.66356636 0.00000000 + 15.66756676 0.00000000 + 15.67156716 0.00000000 + 15.67556756 0.00000000 + 15.67956796 0.00000000 + 15.68356836 0.00000000 + 15.68756876 0.00000000 + 15.69156916 0.00000000 + 15.69556956 0.00000000 + 15.69956996 0.00000000 + 15.70357036 0.00000000 + 15.70757076 0.00000000 + 15.71157116 0.00000000 + 15.71557156 0.00000000 + 15.71957196 0.00000000 + 15.72357236 0.00000000 + 15.72757276 0.00000000 + 15.73157316 0.00000000 + 15.73557356 0.00000000 + 15.73957396 0.00000000 + 15.74357436 0.00000000 + 15.74757476 0.00000000 + 15.75157516 0.00000000 + 15.75557556 0.00000000 + 15.75957596 0.00000000 + 15.76357636 0.00000000 + 15.76757676 0.00000000 + 15.77157716 0.00000000 + 15.77557756 0.00000000 + 15.77957796 0.00000000 + 15.78357836 0.00000000 + 15.78757876 0.00000000 + 15.79157916 0.00000000 + 15.79557956 0.00000000 + 15.79957996 0.00000000 + 15.80358036 0.00000000 + 15.80758076 0.00000000 + 15.81158116 0.00000000 + 15.81558156 0.00000000 + 15.81958196 0.00000000 + 15.82358236 0.00000000 + 15.82758276 0.00000000 + 15.83158316 0.00000000 + 15.83558356 0.00000000 + 15.83958396 0.00000000 + 15.84358436 0.00000000 + 15.84758476 0.00000000 + 15.85158516 0.00000000 + 15.85558556 0.00000000 + 15.85958596 0.00000000 + 15.86358636 0.00000000 + 15.86758676 0.00000000 + 15.87158716 0.00000000 + 15.87558756 0.00000000 + 15.87958796 0.00000000 + 15.88358836 0.00000000 + 15.88758876 0.00000000 + 15.89158916 0.00000000 + 15.89558956 0.00000000 + 15.89958996 0.00000000 + 15.90359036 0.00000000 + 15.90759076 0.00000000 + 15.91159116 0.00000000 + 15.91559156 0.00000000 + 15.91959196 0.00000000 + 15.92359236 0.00000000 + 15.92759276 0.00000000 + 15.93159316 0.00000000 + 15.93559356 0.00000000 + 15.93959396 0.00000000 + 15.94359436 0.00000000 + 15.94759476 0.00000000 + 15.95159516 0.00000000 + 15.95559556 0.00000000 + 15.95959596 0.00000000 + 15.96359636 0.00000000 + 15.96759676 0.00000000 + 15.97159716 0.00000000 + 15.97559756 0.00000000 + 15.97959796 0.00000000 + 15.98359836 0.00000000 + 15.98759876 0.00000000 + 15.99159916 0.00000000 + 15.99559956 0.00000000 + 15.99959996 0.00000000 + 16.00360036 0.00000000 + 16.00760076 0.00000000 + 16.01160116 0.00000000 + 16.01560156 0.00000000 + 16.01960196 0.00000000 + 16.02360236 0.00000000 + 16.02760276 0.00000000 + 16.03160316 0.00000000 + 16.03560356 0.00000000 + 16.03960396 0.00000000 + 16.04360436 0.00000000 + 16.04760476 0.00000000 + 16.05160516 0.00000000 + 16.05560556 0.00000000 + 16.05960596 0.00000000 + 16.06360636 0.00000000 + 16.06760676 0.00000000 + 16.07160716 0.00000000 + 16.07560756 0.00000000 + 16.07960796 0.00000000 + 16.08360836 0.00000000 + 16.08760876 0.00000000 + 16.09160916 0.00000000 + 16.09560956 0.00000000 + 16.09960996 0.00000000 + 16.10361036 0.00000000 + 16.10761076 0.00000000 + 16.11161116 0.00000000 + 16.11561156 0.00000000 + 16.11961196 0.00000000 + 16.12361236 0.00000000 + 16.12761276 0.00000000 + 16.13161316 0.00000000 + 16.13561356 0.00000000 + 16.13961396 0.00000000 + 16.14361436 0.00000000 + 16.14761476 0.00000000 + 16.15161516 0.00000000 + 16.15561556 0.00000000 + 16.15961596 0.00000000 + 16.16361636 0.00000000 + 16.16761676 0.00000000 + 16.17161716 0.00000000 + 16.17561756 0.00000000 + 16.17961796 0.00000000 + 16.18361836 0.00000000 + 16.18761876 0.00000000 + 16.19161916 0.00000000 + 16.19561956 0.00000000 + 16.19961996 0.00000000 + 16.20362036 0.00000000 + 16.20762076 0.00000000 + 16.21162116 0.00000000 + 16.21562156 0.00000000 + 16.21962196 0.00000000 + 16.22362236 0.00000000 + 16.22762276 0.00000000 + 16.23162316 0.00000000 + 16.23562356 0.00000000 + 16.23962396 0.00000000 + 16.24362436 0.00000000 + 16.24762476 0.00000000 + 16.25162516 0.00000000 + 16.25562556 0.00000000 + 16.25962596 0.00000000 + 16.26362636 0.00000000 + 16.26762676 0.00000000 + 16.27162716 0.00000000 + 16.27562756 0.00000000 + 16.27962796 0.00000000 + 16.28362836 0.00000000 + 16.28762876 0.00000000 + 16.29162916 0.00000000 + 16.29562956 0.00000000 + 16.29962996 0.00000000 + 16.30363036 0.00000000 + 16.30763076 0.00000000 + 16.31163116 0.00000000 + 16.31563156 0.00000000 + 16.31963196 0.00000000 + 16.32363236 0.00000000 + 16.32763276 0.00000000 + 16.33163316 0.00000000 + 16.33563356 0.00000000 + 16.33963396 0.00000000 + 16.34363436 0.00000000 + 16.34763476 0.00000000 + 16.35163516 0.00000000 + 16.35563556 0.00000000 + 16.35963596 0.00000000 + 16.36363636 0.00000000 + 16.36763676 0.00000000 + 16.37163716 0.00000000 + 16.37563756 0.00000000 + 16.37963796 0.00000000 + 16.38363836 0.00000000 + 16.38763876 0.00000000 + 16.39163916 0.00000000 + 16.39563956 0.00000000 + 16.39963996 0.00000000 + 16.40364036 0.00000000 + 16.40764076 0.00000000 + 16.41164116 0.00000000 + 16.41564156 0.00000000 + 16.41964196 0.00000000 + 16.42364236 0.00000000 + 16.42764276 0.00000000 + 16.43164316 0.00000000 + 16.43564356 0.00000000 + 16.43964396 0.00000000 + 16.44364436 0.00000000 + 16.44764476 0.00000000 + 16.45164516 0.00000000 + 16.45564556 0.00000000 + 16.45964596 0.00000000 + 16.46364636 0.00000000 + 16.46764676 0.00000000 + 16.47164716 0.00000000 + 16.47564756 0.00000000 + 16.47964796 0.00000000 + 16.48364836 0.00000000 + 16.48764876 0.00000000 + 16.49164916 0.00000000 + 16.49564956 0.00000000 + 16.49964996 0.00000000 + 16.50365037 0.00000000 + 16.50765077 0.00000000 + 16.51165117 0.00000000 + 16.51565157 0.00000000 + 16.51965197 0.00000000 + 16.52365237 0.00000000 + 16.52765277 0.00000000 + 16.53165317 0.00000000 + 16.53565357 0.00000000 + 16.53965397 0.00000000 + 16.54365437 0.00000000 + 16.54765477 0.00000000 + 16.55165517 0.00000000 + 16.55565557 0.00000000 + 16.55965597 0.00000000 + 16.56365637 0.00000000 + 16.56765677 0.00000000 + 16.57165717 0.00000000 + 16.57565757 0.00000000 + 16.57965797 0.00000000 + 16.58365837 0.00000000 + 16.58765877 0.00000000 + 16.59165917 0.00000000 + 16.59565957 0.00000000 + 16.59965997 0.00000000 + 16.60366037 0.00000000 + 16.60766077 0.00000000 + 16.61166117 0.00000000 + 16.61566157 0.00000000 + 16.61966197 0.00000000 + 16.62366237 0.00000000 + 16.62766277 0.00000000 + 16.63166317 0.00000000 + 16.63566357 0.00000000 + 16.63966397 0.00000000 + 16.64366437 0.00000000 + 16.64766477 0.00000000 + 16.65166517 0.00000000 + 16.65566557 0.00000000 + 16.65966597 0.00000000 + 16.66366637 0.00000000 + 16.66766677 0.00000000 + 16.67166717 0.00000000 + 16.67566757 0.00000000 + 16.67966797 0.00000000 + 16.68366837 0.00000000 + 16.68766877 0.00000000 + 16.69166917 0.00000000 + 16.69566957 0.00000000 + 16.69966997 0.00000000 + 16.70367037 0.00000000 + 16.70767077 0.00000000 + 16.71167117 0.00000000 + 16.71567157 0.00000000 + 16.71967197 0.00000000 + 16.72367237 0.00000000 + 16.72767277 0.00000000 + 16.73167317 0.00000000 + 16.73567357 0.00000000 + 16.73967397 0.00000000 + 16.74367437 0.00000000 + 16.74767477 0.00000000 + 16.75167517 0.00000000 + 16.75567557 0.00000000 + 16.75967597 0.00000000 + 16.76367637 0.00000000 + 16.76767677 0.00000000 + 16.77167717 0.00000000 + 16.77567757 0.00000000 + 16.77967797 0.00000000 + 16.78367837 0.00000000 + 16.78767877 0.00000000 + 16.79167917 0.00000000 + 16.79567957 0.00000000 + 16.79967997 0.00000000 + 16.80368037 0.00000000 + 16.80768077 0.00000000 + 16.81168117 0.00000000 + 16.81568157 0.00000000 + 16.81968197 0.00000000 + 16.82368237 0.00000000 + 16.82768277 0.00000000 + 16.83168317 0.00000000 + 16.83568357 0.00000000 + 16.83968397 0.00000000 + 16.84368437 0.00000000 + 16.84768477 0.00000000 + 16.85168517 0.00000000 + 16.85568557 0.00000000 + 16.85968597 0.00000000 + 16.86368637 0.00000000 + 16.86768677 0.00000000 + 16.87168717 0.00000000 + 16.87568757 0.00000000 + 16.87968797 0.00000000 + 16.88368837 0.00000000 + 16.88768877 0.00000000 + 16.89168917 0.00000000 + 16.89568957 0.00000000 + 16.89968997 0.00000000 + 16.90369037 0.00000000 + 16.90769077 0.00000000 + 16.91169117 0.00000000 + 16.91569157 0.00000000 + 16.91969197 0.00000000 + 16.92369237 0.00000000 + 16.92769277 0.00000000 + 16.93169317 0.00000000 + 16.93569357 0.00000000 + 16.93969397 0.00000000 + 16.94369437 0.00000000 + 16.94769477 0.00000000 + 16.95169517 0.00000000 + 16.95569557 0.00000000 + 16.95969597 0.00000000 + 16.96369637 0.00000000 + 16.96769677 0.00000000 + 16.97169717 0.00000000 + 16.97569757 0.00000000 + 16.97969797 0.00000000 + 16.98369837 0.00000000 + 16.98769877 0.00000000 + 16.99169917 0.00000000 + 16.99569957 0.00000000 + 16.99969997 0.00000000 + 17.00370037 0.00000000 + 17.00770077 0.00000000 + 17.01170117 0.00000000 + 17.01570157 0.00000000 + 17.01970197 0.00000000 + 17.02370237 0.00000000 + 17.02770277 0.00000000 + 17.03170317 0.00000000 + 17.03570357 0.00000000 + 17.03970397 0.00000000 + 17.04370437 0.00000000 + 17.04770477 0.00000000 + 17.05170517 0.00000000 + 17.05570557 0.00000000 + 17.05970597 0.00000000 + 17.06370637 0.00000000 + 17.06770677 0.00000000 + 17.07170717 0.00000000 + 17.07570757 0.00000000 + 17.07970797 0.00000000 + 17.08370837 0.00000000 + 17.08770877 0.00000000 + 17.09170917 0.00000000 + 17.09570957 0.00000000 + 17.09970997 0.00000000 + 17.10371037 0.00000000 + 17.10771077 0.00000000 + 17.11171117 0.00000000 + 17.11571157 0.00000000 + 17.11971197 0.00000000 + 17.12371237 0.00000000 + 17.12771277 0.00000000 + 17.13171317 0.00000000 + 17.13571357 0.00000000 + 17.13971397 0.00000000 + 17.14371437 0.00000000 + 17.14771477 0.00000000 + 17.15171517 0.00000000 + 17.15571557 0.00000000 + 17.15971597 0.00000000 + 17.16371637 0.00000000 + 17.16771677 0.00000000 + 17.17171717 0.00000000 + 17.17571757 0.00000000 + 17.17971797 0.00000000 + 17.18371837 0.00000000 + 17.18771877 0.00000000 + 17.19171917 0.00000000 + 17.19571957 0.00000000 + 17.19971997 0.00000000 + 17.20372037 0.00000000 + 17.20772077 0.00000000 + 17.21172117 0.00000000 + 17.21572157 0.00000000 + 17.21972197 0.00000000 + 17.22372237 0.00000000 + 17.22772277 0.00000000 + 17.23172317 0.00000000 + 17.23572357 0.00000000 + 17.23972397 0.00000000 + 17.24372437 0.00000000 + 17.24772477 0.00000000 + 17.25172517 0.00000000 + 17.25572557 0.00000000 + 17.25972597 0.00000000 + 17.26372637 0.00000000 + 17.26772677 0.00000000 + 17.27172717 0.00000000 + 17.27572757 0.00000000 + 17.27972797 0.00000000 + 17.28372837 0.00000000 + 17.28772877 0.00000000 + 17.29172917 0.00000000 + 17.29572957 0.00000000 + 17.29972997 0.00000000 + 17.30373037 0.00000000 + 17.30773077 0.00000000 + 17.31173117 0.00000000 + 17.31573157 0.00000000 + 17.31973197 0.00000000 + 17.32373237 0.00000000 + 17.32773277 0.00000000 + 17.33173317 0.00000000 + 17.33573357 0.00000000 + 17.33973397 0.00000000 + 17.34373437 0.00000000 + 17.34773477 0.00000000 + 17.35173517 0.00000000 + 17.35573557 0.00000000 + 17.35973597 0.00000000 + 17.36373637 0.00000000 + 17.36773677 0.00000000 + 17.37173717 0.00000000 + 17.37573757 0.00000000 + 17.37973797 0.00000000 + 17.38373837 0.00000000 + 17.38773877 0.00000000 + 17.39173917 0.00000000 + 17.39573957 0.00000000 + 17.39973997 0.00000000 + 17.40374037 0.00000000 + 17.40774077 0.00000000 + 17.41174117 0.00000000 + 17.41574157 0.00000000 + 17.41974197 0.00000000 + 17.42374237 0.00000000 + 17.42774277 0.00000000 + 17.43174317 0.00000000 + 17.43574357 0.00000000 + 17.43974397 0.00000000 + 17.44374437 0.00000000 + 17.44774477 0.00000000 + 17.45174517 0.00000000 + 17.45574557 0.00000000 + 17.45974597 0.00000000 + 17.46374637 0.00000000 + 17.46774677 0.00000000 + 17.47174717 0.00000000 + 17.47574757 0.00000000 + 17.47974797 0.00000000 + 17.48374837 0.00000000 + 17.48774877 0.00000000 + 17.49174917 0.00000000 + 17.49574957 0.00000000 + 17.49974997 0.00000000 + 17.50375038 0.00000000 + 17.50775078 0.00000000 + 17.51175118 0.00000000 + 17.51575158 0.00000000 + 17.51975198 0.00000000 + 17.52375238 0.00000000 + 17.52775278 0.00000000 + 17.53175318 0.00000000 + 17.53575358 0.00000000 + 17.53975398 0.00000000 + 17.54375438 0.00000000 + 17.54775478 0.00000000 + 17.55175518 0.00000000 + 17.55575558 0.00000000 + 17.55975598 0.00000000 + 17.56375638 0.00000000 + 17.56775678 0.00000000 + 17.57175718 0.00000000 + 17.57575758 0.00000000 + 17.57975798 0.00000000 + 17.58375838 0.00000000 + 17.58775878 0.00000000 + 17.59175918 0.00000000 + 17.59575958 0.00000000 + 17.59975998 0.00000000 + 17.60376038 0.00000000 + 17.60776078 0.00000000 + 17.61176118 0.00000000 + 17.61576158 0.00000000 + 17.61976198 0.00000000 + 17.62376238 0.00000000 + 17.62776278 0.00000000 + 17.63176318 0.00000000 + 17.63576358 0.00000000 + 17.63976398 0.00000000 + 17.64376438 0.00000000 + 17.64776478 0.00000000 + 17.65176518 0.00000000 + 17.65576558 0.00000000 + 17.65976598 0.00000000 + 17.66376638 0.00000000 + 17.66776678 0.00000000 + 17.67176718 0.00000000 + 17.67576758 0.00000000 + 17.67976798 0.00000000 + 17.68376838 0.00000000 + 17.68776878 0.00000000 + 17.69176918 0.00000000 + 17.69576958 0.00000000 + 17.69976998 0.00000000 + 17.70377038 0.00000000 + 17.70777078 0.00000000 + 17.71177118 0.00000000 + 17.71577158 0.00000000 + 17.71977198 0.00000000 + 17.72377238 0.00000000 + 17.72777278 0.00000000 + 17.73177318 0.00000000 + 17.73577358 0.00000000 + 17.73977398 0.00000000 + 17.74377438 0.00000000 + 17.74777478 0.00000000 + 17.75177518 0.00000000 + 17.75577558 0.00000000 + 17.75977598 0.00000000 + 17.76377638 0.00000000 + 17.76777678 0.00000000 + 17.77177718 0.00000000 + 17.77577758 0.00000000 + 17.77977798 0.00000000 + 17.78377838 0.00000000 + 17.78777878 0.00000000 + 17.79177918 0.00000000 + 17.79577958 0.00000000 + 17.79977998 0.00000000 + 17.80378038 0.00000000 + 17.80778078 0.00000000 + 17.81178118 0.00000000 + 17.81578158 0.00000000 + 17.81978198 0.00000000 + 17.82378238 0.00000000 + 17.82778278 0.00000000 + 17.83178318 0.00000000 + 17.83578358 0.00000000 + 17.83978398 0.00000000 + 17.84378438 0.00000000 + 17.84778478 0.00000000 + 17.85178518 0.00000000 + 17.85578558 0.00000000 + 17.85978598 0.00000000 + 17.86378638 0.00000000 + 17.86778678 0.00000000 + 17.87178718 0.00000000 + 17.87578758 0.00000000 + 17.87978798 0.00000000 + 17.88378838 0.00000000 + 17.88778878 0.00000000 + 17.89178918 0.00000000 + 17.89578958 0.00000000 + 17.89978998 0.00000000 + 17.90379038 0.00000000 + 17.90779078 0.00000000 + 17.91179118 0.00000000 + 17.91579158 0.00000000 + 17.91979198 0.00000000 + 17.92379238 0.00000000 + 17.92779278 0.00000000 + 17.93179318 0.00000000 + 17.93579358 0.00000000 + 17.93979398 0.00000000 + 17.94379438 0.00000000 + 17.94779478 0.00000000 + 17.95179518 0.00000000 + 17.95579558 0.00000000 + 17.95979598 0.00000000 + 17.96379638 0.00000000 + 17.96779678 0.00000000 + 17.97179718 0.00000000 + 17.97579758 0.00000000 + 17.97979798 0.00000000 + 17.98379838 0.00000000 + 17.98779878 0.00000000 + 17.99179918 0.00000000 + 17.99579958 0.00000000 + 17.99979998 0.00000000 + 18.00380038 0.00000000 + 18.00780078 0.00000000 + 18.01180118 0.00000000 + 18.01580158 0.00000000 + 18.01980198 0.00000000 + 18.02380238 0.00000000 + 18.02780278 0.00000000 + 18.03180318 0.00000000 + 18.03580358 0.00000000 + 18.03980398 0.00000000 + 18.04380438 0.00000000 + 18.04780478 0.00000000 + 18.05180518 0.00000000 + 18.05580558 0.00000000 + 18.05980598 0.00000000 + 18.06380638 0.00000000 + 18.06780678 0.00000000 + 18.07180718 0.00000000 + 18.07580758 0.00000000 + 18.07980798 0.00000000 + 18.08380838 0.00000000 + 18.08780878 0.00000000 + 18.09180918 0.00000000 + 18.09580958 0.00000000 + 18.09980998 0.00000000 + 18.10381038 0.00000000 + 18.10781078 0.00000000 + 18.11181118 0.00000000 + 18.11581158 0.00000000 + 18.11981198 0.00000000 + 18.12381238 0.00000000 + 18.12781278 0.00000000 + 18.13181318 0.00000000 + 18.13581358 0.00000000 + 18.13981398 0.00000000 + 18.14381438 0.00000000 + 18.14781478 0.00000000 + 18.15181518 0.00000000 + 18.15581558 0.00000000 + 18.15981598 0.00000000 + 18.16381638 0.00000000 + 18.16781678 0.00000000 + 18.17181718 0.00000000 + 18.17581758 0.00000000 + 18.17981798 0.00000000 + 18.18381838 0.00000000 + 18.18781878 0.00000000 + 18.19181918 0.00000000 + 18.19581958 0.00000000 + 18.19981998 0.00000000 + 18.20382038 0.00000000 + 18.20782078 0.00000000 + 18.21182118 0.00000000 + 18.21582158 0.00000000 + 18.21982198 0.00000000 + 18.22382238 0.00000000 + 18.22782278 0.00000000 + 18.23182318 0.00000000 + 18.23582358 0.00000000 + 18.23982398 0.00000000 + 18.24382438 0.00000000 + 18.24782478 0.00000000 + 18.25182518 0.00000000 + 18.25582558 0.00000000 + 18.25982598 0.00000000 + 18.26382638 0.00000000 + 18.26782678 0.00000000 + 18.27182718 0.00000000 + 18.27582758 0.00000000 + 18.27982798 0.00000000 + 18.28382838 0.00000000 + 18.28782878 0.00000000 + 18.29182918 0.00000000 + 18.29582958 0.00000000 + 18.29982998 0.00000000 + 18.30383038 0.00000000 + 18.30783078 0.00000000 + 18.31183118 0.00000000 + 18.31583158 0.00000000 + 18.31983198 0.00000000 + 18.32383238 0.00000000 + 18.32783278 0.00000000 + 18.33183318 0.00000000 + 18.33583358 0.00000000 + 18.33983398 0.00000000 + 18.34383438 0.00000000 + 18.34783478 0.00000000 + 18.35183518 0.00000000 + 18.35583558 0.00000000 + 18.35983598 0.00000000 + 18.36383638 0.00000000 + 18.36783678 0.00000000 + 18.37183718 0.00000000 + 18.37583758 0.00000000 + 18.37983798 0.00000000 + 18.38383838 0.00000000 + 18.38783878 0.00000000 + 18.39183918 0.00000000 + 18.39583958 0.00000000 + 18.39983998 0.00000000 + 18.40384038 0.00000000 + 18.40784078 0.00000000 + 18.41184118 0.00000000 + 18.41584158 0.00000000 + 18.41984198 0.00000000 + 18.42384238 0.00000000 + 18.42784278 0.00000000 + 18.43184318 0.00000000 + 18.43584358 0.00000000 + 18.43984398 0.00000000 + 18.44384438 0.00000000 + 18.44784478 0.00000000 + 18.45184518 0.00000000 + 18.45584558 0.00000000 + 18.45984598 0.00000000 + 18.46384638 0.00000000 + 18.46784678 0.00000000 + 18.47184718 0.00000000 + 18.47584758 0.00000000 + 18.47984798 0.00000000 + 18.48384838 0.00000000 + 18.48784878 0.00000000 + 18.49184918 0.00000000 + 18.49584958 0.00000000 + 18.49984998 0.00000000 + 18.50385039 0.00000000 + 18.50785079 0.00000000 + 18.51185119 0.00000000 + 18.51585159 0.00000000 + 18.51985199 0.00000000 + 18.52385239 0.00000000 + 18.52785279 0.00000000 + 18.53185319 0.00000000 + 18.53585359 0.00000000 + 18.53985399 0.00000000 + 18.54385439 0.00000000 + 18.54785479 0.00000000 + 18.55185519 0.00000000 + 18.55585559 0.00000000 + 18.55985599 0.00000000 + 18.56385639 0.00000000 + 18.56785679 0.00000000 + 18.57185719 0.00000000 + 18.57585759 0.00000000 + 18.57985799 0.00000000 + 18.58385839 0.00000000 + 18.58785879 0.00000000 + 18.59185919 0.00000000 + 18.59585959 0.00000000 + 18.59985999 0.00000000 + 18.60386039 0.00000000 + 18.60786079 0.00000000 + 18.61186119 0.00000000 + 18.61586159 0.00000000 + 18.61986199 0.00000000 + 18.62386239 0.00000000 + 18.62786279 0.00000000 + 18.63186319 0.00000000 + 18.63586359 0.00000000 + 18.63986399 0.00000000 + 18.64386439 0.00000000 + 18.64786479 0.00000000 + 18.65186519 0.00000000 + 18.65586559 0.00000000 + 18.65986599 0.00000000 + 18.66386639 0.00000000 + 18.66786679 0.00000000 + 18.67186719 0.00000000 + 18.67586759 0.00000000 + 18.67986799 0.00000000 + 18.68386839 0.00000000 + 18.68786879 0.00000000 + 18.69186919 0.00000000 + 18.69586959 0.00000000 + 18.69986999 0.00000000 + 18.70387039 0.00000000 + 18.70787079 0.00000000 + 18.71187119 0.00000000 + 18.71587159 0.00000000 + 18.71987199 0.00000000 + 18.72387239 0.00000000 + 18.72787279 0.00000000 + 18.73187319 0.00000000 + 18.73587359 0.00000000 + 18.73987399 0.00000000 + 18.74387439 0.00000000 + 18.74787479 0.00000000 + 18.75187519 0.00000000 + 18.75587559 0.00000000 + 18.75987599 0.00000000 + 18.76387639 0.00000000 + 18.76787679 0.00000000 + 18.77187719 0.00000000 + 18.77587759 0.00000000 + 18.77987799 0.00000000 + 18.78387839 0.00000000 + 18.78787879 0.00000000 + 18.79187919 0.00000000 + 18.79587959 0.00000000 + 18.79987999 0.00000000 + 18.80388039 0.00000000 + 18.80788079 0.00000000 + 18.81188119 0.00000000 + 18.81588159 0.00000000 + 18.81988199 0.00000000 + 18.82388239 0.00000000 + 18.82788279 0.00000000 + 18.83188319 0.00000000 + 18.83588359 0.00000000 + 18.83988399 0.00000000 + 18.84388439 0.00000000 + 18.84788479 0.00000000 + 18.85188519 0.00000000 + 18.85588559 0.00000000 + 18.85988599 0.00000000 + 18.86388639 0.00000000 + 18.86788679 0.00000000 + 18.87188719 0.00000000 + 18.87588759 0.00000000 + 18.87988799 0.00000000 + 18.88388839 0.00000000 + 18.88788879 0.00000000 + 18.89188919 0.00000000 + 18.89588959 0.00000000 + 18.89988999 0.00000000 + 18.90389039 0.00000000 + 18.90789079 0.00000000 + 18.91189119 0.00000000 + 18.91589159 0.00000000 + 18.91989199 0.00000000 + 18.92389239 0.00000000 + 18.92789279 0.00000000 + 18.93189319 0.00000000 + 18.93589359 0.00000000 + 18.93989399 0.00000000 + 18.94389439 0.00000000 + 18.94789479 0.00000000 + 18.95189519 0.00000000 + 18.95589559 0.00000000 + 18.95989599 0.00000000 + 18.96389639 0.00000000 + 18.96789679 0.00000000 + 18.97189719 0.00000000 + 18.97589759 0.00000000 + 18.97989799 0.00000000 + 18.98389839 0.00000000 + 18.98789879 0.00000000 + 18.99189919 0.00000000 + 18.99589959 0.00000000 + 18.99989999 0.00000000 + 19.00390039 0.00000000 + 19.00790079 0.00000000 + 19.01190119 0.00000000 + 19.01590159 0.00000000 + 19.01990199 0.00000000 + 19.02390239 0.00000000 + 19.02790279 0.00000000 + 19.03190319 0.00000000 + 19.03590359 0.00000000 + 19.03990399 0.00000000 + 19.04390439 0.00000000 + 19.04790479 0.00000000 + 19.05190519 0.00000000 + 19.05590559 0.00000000 + 19.05990599 0.00000000 + 19.06390639 0.00000000 + 19.06790679 0.00000000 + 19.07190719 0.00000000 + 19.07590759 0.00000000 + 19.07990799 0.00000000 + 19.08390839 0.00000000 + 19.08790879 0.00000000 + 19.09190919 0.00000000 + 19.09590959 0.00000000 + 19.09990999 0.00000000 + 19.10391039 0.00000000 + 19.10791079 0.00000000 + 19.11191119 0.00000000 + 19.11591159 0.00000000 + 19.11991199 0.00000000 + 19.12391239 0.00000000 + 19.12791279 0.00000000 + 19.13191319 0.00000000 + 19.13591359 0.00000000 + 19.13991399 0.00000000 + 19.14391439 0.00000000 + 19.14791479 0.00000000 + 19.15191519 0.00000000 + 19.15591559 0.00000000 + 19.15991599 0.00000000 + 19.16391639 0.00000000 + 19.16791679 0.00000000 + 19.17191719 0.00000000 + 19.17591759 0.00000000 + 19.17991799 0.00000000 + 19.18391839 0.00000000 + 19.18791879 0.00000000 + 19.19191919 0.00000000 + 19.19591959 0.00000000 + 19.19991999 0.00000000 + 19.20392039 0.00000000 + 19.20792079 0.00000000 + 19.21192119 0.00000000 + 19.21592159 0.00000000 + 19.21992199 0.00000000 + 19.22392239 0.00000000 + 19.22792279 0.00000000 + 19.23192319 0.00000000 + 19.23592359 0.00000000 + 19.23992399 0.00000000 + 19.24392439 0.00000000 + 19.24792479 0.00000000 + 19.25192519 0.00000000 + 19.25592559 0.00000000 + 19.25992599 0.00000000 + 19.26392639 0.00000000 + 19.26792679 0.00000000 + 19.27192719 0.00000000 + 19.27592759 0.00000000 + 19.27992799 0.00000000 + 19.28392839 0.00000000 + 19.28792879 0.00000000 + 19.29192919 0.00000000 + 19.29592959 0.00000000 + 19.29992999 0.00000000 + 19.30393039 0.00000000 + 19.30793079 0.00000000 + 19.31193119 0.00000000 + 19.31593159 0.00000000 + 19.31993199 0.00000000 + 19.32393239 0.00000000 + 19.32793279 0.00000000 + 19.33193319 0.00000000 + 19.33593359 0.00000000 + 19.33993399 0.00000000 + 19.34393439 0.00000000 + 19.34793479 0.00000000 + 19.35193519 0.00000000 + 19.35593559 0.00000000 + 19.35993599 0.00000000 + 19.36393639 0.00000000 + 19.36793679 0.00000000 + 19.37193719 0.00000000 + 19.37593759 0.00000000 + 19.37993799 0.00000000 + 19.38393839 0.00000000 + 19.38793879 0.00000000 + 19.39193919 0.00000000 + 19.39593959 0.00000000 + 19.39993999 0.00000000 + 19.40394039 0.00000000 + 19.40794079 0.00000000 + 19.41194119 0.00000000 + 19.41594159 0.00000000 + 19.41994199 0.00000000 + 19.42394239 0.00000000 + 19.42794279 0.00000000 + 19.43194319 0.00000000 + 19.43594359 0.00000000 + 19.43994399 0.00000000 + 19.44394439 0.00000000 + 19.44794479 0.00000000 + 19.45194519 0.00000000 + 19.45594559 0.00000000 + 19.45994599 0.00000000 + 19.46394639 0.00000000 + 19.46794679 0.00000000 + 19.47194719 0.00000000 + 19.47594759 0.00000000 + 19.47994799 0.00000000 + 19.48394839 0.00000000 + 19.48794879 0.00000000 + 19.49194919 0.00000000 + 19.49594959 0.00000000 + 19.49994999 0.00000000 + 19.50395040 0.00000000 + 19.50795080 0.00000000 + 19.51195120 0.00000000 + 19.51595160 0.00000000 + 19.51995200 0.00000000 + 19.52395240 0.00000000 + 19.52795280 0.00000000 + 19.53195320 0.00000000 + 19.53595360 0.00000000 + 19.53995400 0.00000000 + 19.54395440 0.00000000 + 19.54795480 0.00000000 + 19.55195520 0.00000000 + 19.55595560 0.00000000 + 19.55995600 0.00000000 + 19.56395640 0.00000000 + 19.56795680 0.00000000 + 19.57195720 0.00000000 + 19.57595760 0.00000000 + 19.57995800 0.00000000 + 19.58395840 0.00000000 + 19.58795880 0.00000000 + 19.59195920 0.00000000 + 19.59595960 0.00000000 + 19.59996000 0.00000000 + 19.60396040 0.00000000 + 19.60796080 0.00000000 + 19.61196120 0.00000000 + 19.61596160 0.00000000 + 19.61996200 0.00000000 + 19.62396240 0.00000000 + 19.62796280 0.00000000 + 19.63196320 0.00000000 + 19.63596360 0.00000000 + 19.63996400 0.00000000 + 19.64396440 0.00000000 + 19.64796480 0.00000000 + 19.65196520 0.00000000 + 19.65596560 0.00000000 + 19.65996600 0.00000000 + 19.66396640 0.00000000 + 19.66796680 0.00000000 + 19.67196720 0.00000000 + 19.67596760 0.00000000 + 19.67996800 0.00000000 + 19.68396840 0.00000000 + 19.68796880 0.00000000 + 19.69196920 0.00000000 + 19.69596960 0.00000000 + 19.69997000 0.00000000 + 19.70397040 0.00000000 + 19.70797080 0.00000000 + 19.71197120 0.00000000 + 19.71597160 0.00000000 + 19.71997200 0.00000000 + 19.72397240 0.00000000 + 19.72797280 0.00000000 + 19.73197320 0.00000000 + 19.73597360 0.00000000 + 19.73997400 0.00000000 + 19.74397440 0.00000000 + 19.74797480 0.00000000 + 19.75197520 0.00000000 + 19.75597560 0.00000000 + 19.75997600 0.00000000 + 19.76397640 0.00000000 + 19.76797680 0.00000000 + 19.77197720 0.00000000 + 19.77597760 0.00000000 + 19.77997800 0.00000000 + 19.78397840 0.00000000 + 19.78797880 0.00000000 + 19.79197920 0.00000000 + 19.79597960 0.00000000 + 19.79998000 0.00000000 + 19.80398040 0.00000000 + 19.80798080 0.00000000 + 19.81198120 0.00000000 + 19.81598160 0.00000000 + 19.81998200 0.00000000 + 19.82398240 0.00000000 + 19.82798280 0.00000000 + 19.83198320 0.00000000 + 19.83598360 0.00000000 + 19.83998400 0.00000000 + 19.84398440 0.00000000 + 19.84798480 0.00000000 + 19.85198520 0.00000000 + 19.85598560 0.00000000 + 19.85998600 0.00000000 + 19.86398640 0.00000000 + 19.86798680 0.00000000 + 19.87198720 0.00000000 + 19.87598760 0.00000000 + 19.87998800 0.00000000 + 19.88398840 0.00000000 + 19.88798880 0.00000000 + 19.89198920 0.00000000 + 19.89598960 0.00000000 + 19.89999000 0.00000000 + 19.90399040 0.00000000 + 19.90799080 0.00000000 + 19.91199120 0.00000000 + 19.91599160 0.00000000 + 19.91999200 0.00000000 + 19.92399240 0.00000000 + 19.92799280 0.00000000 + 19.93199320 0.00000000 + 19.93599360 0.00000000 + 19.93999400 0.00000000 + 19.94399440 0.00000000 + 19.94799480 0.00000000 + 19.95199520 0.00000000 + 19.95599560 0.00000000 + 19.95999600 0.00000000 + 19.96399640 0.00000000 + 19.96799680 0.00000000 + 19.97199720 0.00000000 + 19.97599760 0.00000000 + 19.97999800 0.00000000 + 19.98399840 0.00000000 + 19.98799880 0.00000000 + 19.99199920 0.00000000 + 19.99599960 0.00000000 + 20.00000000 0.00000000 diff --git a/tests/data/normalizers/dos/dos_si_fhiaims/aims.log b/tests/data/normalizers/dos/dos_si_fhiaims/aims.log new file mode 100644 index 0000000000000000000000000000000000000000..4b8ace4dba87d209b1a2181f97eb75257c0d54c0 --- /dev/null +++ b/tests/data/normalizers/dos/dos_si_fhiaims/aims.log @@ -0,0 +1,2668 @@ + MPI-parallelism will be employed. +------------------------------------------------------------ + Invoking FHI-aims ... + Version 170201 + Compiled on 2017/02/05 at 10:55:20 on host eos01. + + When using FHI-aims, please cite the following reference: + + Volker Blum, Ralf Gehrke, Felix Hanke, Paula Havu, + Ville Havu, Xinguo Ren, Karsten Reuter, and Matthias Scheffler, + 'Ab Initio Molecular Simulations with Numeric Atom-Centered Orbitals', + Computer Physics Communications 180, 2175-2196 (2009) + + For any questions about FHI-aims, please visit the aimsclub website + with its forums and wiki. Contributions to both the forums and the + wiki are warmly encouraged - they are for you, and everyone is welcome there. + +------------------------------------------------------------ + + + + Date : 20170508, Time : 200326.406 + Time zero on CPU 1 : 0.288017000000000E+00 s. + Internal wall clock time zero : 263505806.406 s. + + FHI-aims created a unique identifier for this run for later identification + aims_uuid : F9312635-0FC6-4290-AE6A-DFB71FBFA7C8 + + Using 32 parallel tasks. + Task 0 on host eos311 reporting. + Task 1 on host eos311 reporting. + Task 2 on host eos311 reporting. + Task 3 on host eos311 reporting. + Task 4 on host eos311 reporting. + Task 5 on host eos311 reporting. + Task 6 on host eos311 reporting. + Task 7 on host eos311 reporting. + Task 8 on host eos311 reporting. + Task 9 on host eos311 reporting. + Task 10 on host eos311 reporting. + Task 11 on host eos311 reporting. + Task 12 on host eos311 reporting. + Task 13 on host eos311 reporting. + Task 14 on host eos311 reporting. + Task 15 on host eos311 reporting. + Task 16 on host eos311 reporting. + Task 17 on host eos311 reporting. + Task 18 on host eos311 reporting. + Task 19 on host eos311 reporting. + Task 20 on host eos311 reporting. + Task 21 on host eos311 reporting. + Task 22 on host eos311 reporting. + Task 23 on host eos311 reporting. + Task 24 on host eos311 reporting. + Task 25 on host eos311 reporting. + Task 26 on host eos311 reporting. + Task 27 on host eos311 reporting. + Task 28 on host eos311 reporting. + Task 29 on host eos311 reporting. + Task 30 on host eos311 reporting. + Task 31 on host eos311 reporting. + + Performing system and environment tests: + | Environment variable OMP_NUM_THREADS correctly set to 1. + | Stacksize not measured: no C compiler + | Checking for scalapack... + | Testing pdtran()... + | All pdtran() tests passed. + + Obtaining array dimensions for all initial allocations: + + ----------------------------------------------------------------------- + Parsing control.in (first pass over file, find array dimensions only). + The contents of control.in will be repeated verbatim below + unless switched off by setting 'verbatim_writeout .false.' . + in the first line of control.in . + ----------------------------------------------------------------------- + + ##### Physical settings ################ + + xc pbe + RI_method LVL_fast + charge 0.0 + spin none + # spin collinear + # default_initial_moment 1 + # default_initial_moment hund + relativistic atomic_zora scalar + many_body_dispersion + # vdw_correction_hirshfeld + # mbd_eigensolver lapack + + KS_method scalapack + basis_threshold 1.e-5 + empty_states 8 + + ##### SCF settings ################ + + sc_accuracy_forces 1E-4 + sc_accuracy_rho 1E-5 + sc_accuracy_eev 1E-3 + sc_accuracy_etot 1E-6 + sc_iter_limit 600 + mixer pulay + n_max_pulay 6 + charge_mix_param 0.08 + occupation_type gaussian 0.01 + + # k-point grid + k_grid 10 10 10 + ##### Relaxation################### + + # partition_type rho_r2 + # relax_geometry bfgs 0.01 + # relax_unit_cell full + # relax_unit_cell fixed_angles + + ##### Output options ############# + # output mulliken + # output dipole + + # DOS + dos_kgrid_factors 8 8 8 + output dos -20 20 10000 0.1 + output atom_proj_dos -20 10000 160 0.1 + output species_proj_dos -20 20 10000 0.1 + # note 0.02 in the DOS parameters is Gaussian broadening. + + # output band structure + output band 0.5 0.5 0.5 0.0 0.0 0.0 50 L Gamma + output band 0.0 0.0 0.0 0.0 0.5 0.5 50 Gamma X + output band 0.0 0.5 0.5 0.25 0.5 0.75 50 X W + output band 0.25 0.5 0.75 0.375 0.375 0.75 50 W K + + ################################################################################ + # + # FHI-aims code project + # VB, Fritz-Haber Institut, 2009 + # + # Suggested "light" defaults for Si atom (to be pasted into control.in file) + # Be sure to double-check any results obtained with these settings for post-processing, + # e.g., with the "tight" defaults and larger basis sets. + # + ################################################################################ + species Si + # global species definitions + nucleus 14 + mass 28.0855 + # + l_hartree 6 + # + cut_pot 4.0 2.0 1.0 + basis_dep_cutoff 1e-4 + # + radial_base 42 7.0 + radial_multiplier 2 + angular_grids specified + division 0.4121 50 + division 0.7665 110 + division 1.0603 194 + division 1.2846 302 + division 1.4125 434 + # division 1.4810 590 + # division 1.5529 770 + # division 1.6284 974 + # division 2.6016 1202 + # outer_grid 974 + outer_grid 434 + ################################################################################ + # + # Definition of "minimal" basis + # + ################################################################################ + # valence basis states + valence 3 s 2. + valence 3 p 2. + # ion occupancy + ion_occ 3 s 1. + ion_occ 3 p 1. + ################################################################################ + # + # Suggested additional basis functions. For production calculations, + # uncomment them one after another (the most important basis functions are + # listed first). + # + # Constructed for dimers: 1.75 A, 2.0 A, 2.25 A, 2.75 A, 3.75 A + # + ################################################################################ + # "First tier" - improvements: -571.96 meV to -37.03 meV + hydro 3 d 4.2 + hydro 2 p 1.4 + hydro 4 f 6.2 + ionic 3 s auto + # "Second tier" - improvements: -16.76 meV to -3.03 meV + hydro 3 d 9 + hydro 5 g 9.4 + # hydro 4 p 4 + # hydro 1 s 0.65 + # "Third tier" - improvements: -3.89 meV to -0.60 meV + # ionic 3 d auto + # hydro 3 s 2.6 + # hydro 4 f 8.4 + # hydro 3 d 3.4 + # hydro 3 p 7.8 + # "Fourth tier" - improvements: -0.33 meV to -0.11 meV + # hydro 2 p 1.6 + # hydro 5 g 10.8 + # hydro 5 f 11.2 + # hydro 3 d 1 + # hydro 4 s 4.5 + # Further basis functions that fell out of the optimization - noise + # level... < -0.08 meV + # hydro 4 d 6.6 + # hydro 5 g 16.4 + # hydro 4 d 9 + ################################################################################ + # + # For methods that use the localized form of the "resolution of identity" for + # the two-electron Coulomb operator (RI_method LVL), particularly Hartree-Fock and + # hybrid density functional calculations, the highest accuracy can be obtained by + # uncommenting the line beginning with "for_aux" below, thus adding an extra g radial + # function to the construction of the product basis set for the expansion. + # See Ref. New J. Phys. 17, 093020 (2015) for more information, particularly Figs. 1 and 6. + # + ################################################################################ + # + # for_aux hydro 5 g 6.0 + + ----------------------------------------------------------------------- + Completed first pass over input file control.in . + ----------------------------------------------------------------------- + + + ----------------------------------------------------------------------- + Parsing geometry.in (first pass over file, find array dimensions only). + The contents of geometry.in will be repeated verbatim below + unless switched off by setting 'verbatim_writeout .false.' . + in the first line of geometry.in . + ----------------------------------------------------------------------- + + # Diamond structure with lattice constant 5.431 AA. + lattice_vector 0.0000 2.7155 2.7155 + lattice_vector 2.7155 0.0000 2.7155 + lattice_vector 2.7155 2.7155 0.0000 + + atom_frac 0.0 0.0 0.0 Si + atom_frac 0.25 0.25 0.25 Si + + ----------------------------------------------------------------------- + Completed first pass over input file geometry.in . + ----------------------------------------------------------------------- + + + Basic array size parameters: + | Number of species : 1 + | Number of atoms : 2 + | Number of lattice vectors : 3 + | Max. basis fn. angular momentum : 4 + | Max. atomic/ionic basis occupied n: 3 + | Max. number of basis fn. types : 3 + | Max. radial fns per species/type : 5 + | Max. logarithmic grid size : 1346 + | Max. radial integration grid size : 85 + | Max. angular integration grid size: 434 + | Max. angular grid division number : 8 + | Radial grid for Hartree potential : 1346 + | Number of spin channels : 1 + +------------------------------------------------------------ + Reading file control.in. +------------------------------------------------------------ + XC: Using PBE gradient-corrected functionals. + The 'LVL' version of RI (resolution of identity) technique is used. + ** This is a localized expansion of all basis function products. + Its intended use are Hartree-Fock and hybrid functionals. + For RPA, MP2, GW, etc., LVL is not yet as accurate. In those cases, check carefully. + Charge = 0.000000E+00: Neutral system requested explicitly. + Spin treatment: No spin polarisation. + Scalar relativistic treatment of kinetic energy: on-site free-atom approximation to ZORA. + Using the default MBD implementation with analytical forces + Kohn-Sham eigenvalues and eigenfunctions calculated by the ELPA eigensolver library. + Threshold for basis singularities: 0.1000E-04 + Number of empty states per atom: 8 + Convergence accuracy of forces: 0.1000E-03 + Convergence accuracy of self-consistent charge density: 0.1000E-04 + Convergence accuracy of sum of eigenvalues: 0.1000E-02 + Convergence accuracy of total energy: 0.1000E-05 + Maximum number of s.-c. iterations : 600 + Using pulay charge density mixing. + Pulay mixing - number of memorized iterations: 6 + Charge density mixing - mixing parameter: 0.0800 + Occupation type: Gaussian broadening, width = 0.100000E-01 eV. + Found k-point grid: 10 10 10 + Found k-point grid multipliers for perturbative DOS : 8 8 8 + Calculating density of states with + | energy interval :-20.000000 20.000000 + | points & broadening : 10000 0.100000 + Calculating atom-projected density of states with + | energy interval :-20.000000********** + | points & broadening : 160 0.100000 + Calculating angular-momentum projected DOS with + | energy interval :-20.000000 20.000000 + | points & broadening : 10000 0.100000 + + Plot band 1 + | begin 0.500000 0.500000 0.500000 + | end 0.000000 0.000000 0.000000 + | number of points: 50 + + Plot band 2 + | begin 0.000000 0.000000 0.000000 + | end 0.000000 0.500000 0.500000 + | number of points: 50 + + Plot band 3 + | begin 0.000000 0.500000 0.500000 + | end 0.250000 0.500000 0.750000 + | number of points: 50 + + Plot band 4 + | begin 0.250000 0.500000 0.750000 + | end 0.375000 0.375000 0.750000 + | number of points: 50 + + Reading configuration options for species Si . + | Found nuclear charge : 14.0000 + | Found atomic mass : 28.0855000000000 amu + | Found l_max for Hartree potential : 6 + | Found cutoff potl. onset [A], width [A], scale factor : 4.00000 2.00000 1.00000 + | Threshold for basis-dependent cutoff potential is 0.100000E-03 + | Found data for basic radial integration grid : 42 points, outermost radius = 7.000 A + | Found multiplier for basic radial grid : 2 + | Found angular grid specification: user-specified. + | Specified grid contains 6 separate shells. + | Check grid settings after all constraints further below. + | Found free-atom valence shell : 3 s 2.000 + | Found free-atom valence shell : 3 p 2.000 + | Found free-ion valence shell : 3 s 1.000 + | Found free-ion valence shell : 3 p 1.000 + | Found hydrogenic basis function : 3 d 4.200 + | Found hydrogenic basis function : 2 p 1.400 + | Found hydrogenic basis function : 4 f 6.200 + | Found ionic basis function : 3 s , default cutoff radius. + | Found hydrogenic basis function : 3 d 9.000 + | Found hydrogenic basis function : 5 g 9.400 + Species Si : Missing cutoff potential type. + Defaulting to exp(1/x)/(1-x)^2 type cutoff potential. + Species Si: No 'logarithmic' tag. Using default grid for free atom: + | Default logarithmic grid data [bohr] : 0.1000E-03 0.1000E+03 0.1012E+01 + | Will include ionic basis functions of 2.0-fold positive Si ion. + Species Si: On-site basis accuracy parameter (for Gram-Schmidt orthonormalisation) not specified. + Using default value basis_acc = 0.1000000E-03. + Species Si : Using default innermost maximum threshold i_radial= 2 for radial functions. + Species Si : Default cutoff onset for free atom density etc. : 0.40000000E+01 AA. + Species Si : Basic radial grid will be enhanced according to radial_multiplier = 2, to contain 85 grid points. + + Finished reading input file 'control.in'. Consistency checks are next. + + Target number of points in a grid batch is not set. Defaulting to 100 + Method for grid partitioning is not set. Defaulting to parallel hash+maxmin partitioning. + Batch size limit is not set. Defaulting to 200 + By default, will store active basis functions for each batch. + If in need of memory, prune_basis_once .false. can be used to disable this option. + communication_type for Hartree potential was not specified. + Defaulting to calc_hartree . + Pulay mixer: Number of initial linear mixing iterations not set. + Defaulting to 0 iterations. + Work space size for distributed Hartree potential not set. + Defaulting to 0.200000E+03 MB. + Algorithm-dependent basis array size parameters: + | n_max_pulay : 6 + Presetting 40 iterations before the initial mixing cycle + is restarted anyway using the sc_init_iter criterion / keyword. + Presetting a factor 1.000 between actual scf density residual + and density convergence criterion sc_accuracy_rho below which sc_init_iter + takes no effect. + Geometry relaxation not requested: no relaxation will be performed. + Handling of forces: Unphysical translation and rotation will be removed from forces. + No accuracy limit for integral partition fn. given. Defaulting to 0.1000E-14. + No threshold value for u(r) in integrations given. Defaulting to 0.1000E-05. + No accuracy for occupation numbers given. Defaulting to 0.1000E-07. + No threshold value for occupation numbers given. Defaulting to 0.0000E+00. + No accuracy for fermi level given. Defaulting to 0.1000E-19. + Maximum # of iterations to find E_F not set. Defaulting to 200. + * You have 1000 k-points in your system, but only 32 MPI-tasks available. + * In this case using ScaLAPACK is not necessary / supported. + * Switching to default eigenvalue solver (lapack_fast) instead. + Will not use alltoall communication since running on < 1024 CPUs. + partition_type (choice of integration weights) for integrals was not specified. + | Using a version of the partition function of Stratmann and coworkers ('stratmann_smoother'). + | At each grid point, the set of atoms used to build the partition table is smoothly restricted to + | only those atoms whose free-atom density would be non-zero at that grid point. + Partitioning for Hartree potential was not defined. Using partition_type for integrals. + | Adjusted default value of keyword multip_moments_threshold to: 0.10000000E-11 + | This value may affect high angular momentum components of the Hartree potential in periodic systems. + Angular momentum expansion for Kerker preconditioner not set explicitly. + | Using default value of 0 + No explicit requirement for turning off preconditioner. + | By default, it will be turned off when the charge convergence reaches + | sc_accuracy_rho = 0.100000E-04 + | sc_accuracy_eev = 0.100000E-02 + | sc_accuracy_etot = 0.100000E-05 + No special mixing parameter while Kerker preconditioner is on. + Using default: charge_mix_param = 0.0800. + No q(lm)/r^(l+1) cutoff set for long-range Hartree potential. + | Using default value of 0.100000E-09 . + | Verify using the multipole_threshold keyword. + Defaulting to new monopole extrapolation. + Density update method: automatic selection selected. + Using density matrix based charge density update. + Using density matrix based charge density update. + Using packed matrix style: index . + Defaulting to use time-reversal symmetry for k-point grid. +------------------------------------------------------------ + + +------------------------------------------------------------ + Reading geometry description geometry.in. +------------------------------------------------------------ + Input structure read successfully. + The structure contains 2 atoms, and a total of 28.000 electrons. + + Input geometry: + | Unit cell: + | 0.000000 2.715500 2.715500 + | 2.715500 0.000000 2.715500 + | 2.715500 2.715500 0.000000 + | Atomic structure: + | Atom x [A] y [A] z [A] + | 1: Species Si 0.000000 0.000000 0.000000 + | 2: Species Si 1.357750 1.357750 1.357750 + + Lattice parameters for dimension 3 lattice : 3.840297 3.840297 3.840297 60.000000 60.000000 60.000000 + + | + + | The smallest distance between any two atoms is 2.35169198 AA. + | + | The first atom of this pair is atom number 1 . + | The second atom of this pair is atom number 2 . + | Wigner-Seitz cell of the first atom image 0 0 0 . + | (The Wigner-Seitz cell of the second atom is 0 0 0 by definition.) + + Quantities derived from the lattice vectors: + | Reciprocal lattice vector 1: -1.156911 1.156911 1.156911 + | Reciprocal lattice vector 2: 1.156911 -1.156911 1.156911 + | Reciprocal lattice vector 3: 1.156911 1.156911 -1.156911 + | Unit cell volume : 0.400479E+02 A^3 + + Fractional coordinates: + L1 L2 L3 + atom_frac 0.00000000 0.00000000 0.00000000 Si + atom_frac 0.25000000 0.25000000 0.25000000 Si + + Structure-dependent array size parameters: + | Maximum number of distinct radial functions : 11 + | Maximum number of basis functions : 78 + | Number of Kohn-Sham states (occupied + empty): 22 +------------------------------------------------------------ + +------------------------------------------------------------ + Preparing all fixed parts of the calculation. +------------------------------------------------------------ + Determining machine precision: + 2.225073858507201E-308 + Setting up grids for atomic and cluster calculations. + + Creating wave function, potential, and density for free atoms. + + Species: Si + + List of occupied orbitals and eigenvalues: + n l occ energy [Ha] energy [eV] + 1 0 2.0000 -65.775969 -1789.8552 + 2 0 2.0000 -5.123557 -139.4191 + 3 0 2.0000 -0.394463 -10.7339 + 2 1 6.0000 -3.508175 -95.4623 + 3 1 2.0000 -0.147003 -4.0002 + + Creating fixed part of basis set: Ionic, confined, hydrogenic. + + Si ion: + + List of free ionic orbitals and eigenvalues: + n l energy [Ha] energy [eV] + 1 0 -66.641157 -1813.3982 + 2 0 -5.964274 -162.2962 + 3 0 -1.073878 -29.2217 + 2 1 -4.350005 -118.3697 + 3 1 -0.776571 -21.1316 + + + List of ionic basis orbitals and eigenvalues: + n l energy [Ha] energy [eV] outer radius [A] + 3 0 -1.073870 -29.2215 4.534782 + + + Si hydrogenic: + + List of hydrogenic basis orbitals: + n l effective z eigenvalue [eV] inner max. [A] outer max. [A] outer radius [A] + 3 2 4.200000 -26.6668 1.139231 1.139231 5.315897 + 2 1 1.400000 -6.6027 1.490786 1.490786 5.447472 + 4 3 6.200000 -32.6870 1.368518 1.368518 5.381283 + 3 2 9.000000 -122.4512 0.527387 0.527387 3.181181 + 5 4 9.400000 -48.0877 1.402391 1.402391 5.251306 + + + Adding cutoff potential to free-atom effective potential. + Creating atomic-like basis functions for current effective potential. + + Species Si : + + List of atomic basis orbitals and eigenvalues: + n l energy [Ha] energy [eV] outer radius [A] + 1 0 -65.775969 -1789.8552 0.789468 + 2 0 -5.123557 -139.4191 2.815114 + 3 0 -0.394463 -10.7339 5.315897 + 2 1 -3.508175 -95.4623 3.259919 + 3 1 -0.147003 -4.0002 5.447472 + + Assembling full basis from fixed parts. + | Species Si : atomic orbital 1 s accepted. + | Species Si : atomic orbital 2 s accepted. + | Species Si : ionic orbital 3 s accepted. + | Species Si : atomic orbital 3 s accepted. + | Species Si : atomic orbital 2 p accepted. + | Species Si : atomic orbital 3 p accepted. + | Species Si : hydro orbital 2 p accepted. + | Species Si : hydro orbital 3 d accepted. + | Species Si : hydro orbital 3 d accepted. + | Species Si : hydro orbital 4 f accepted. + | Species Si : hydro orbital 5 g accepted. + + Basis size parameters after reduction: + | Total number of radial functions: 11 + | Total number of basis functions : 78 + + Per-task memory consumption for arrays in subroutine allocate_ext: + | 3.792652MB. + Testing on-site integration grid accuracy. + | Species Function <phi|h_atom|phi> (log., in eV) <phi|h_atom|phi> (rad., in eV) + 1 1 -1789.8551969286 -1789.8551654044 + 1 2 -139.4190834032 -139.4190829157 + 1 3 -10.3851269365 -10.3851269662 + 1 4 5.2748560831 5.2746879749 + 1 5 -95.4622899789 -95.4622898460 + 1 6 -4.0035070090 -4.0036255172 + 1 7 4.8352944695 4.8334925957 + 1 8 36.0281341134 36.0281341202 + 1 9 21.0467703617 21.0467633086 + 1 10 19.1745287805 19.1745199964 + 1 11 35.6867439284 35.6867482281 + + Preparing densities etc. for the partition functions (integrals / Hartree potential). + + Preparations completed. + max(cpu_time) : 0.244 s. + Wall clock time (cpu1) : 0.255 s. +------------------------------------------------------------ + +------------------------------------------------------------ + Begin self-consistency loop: Initialization. + + Date : 20170508, Time : 200327.012 +------------------------------------------------------------ + + Initializing index lists of integration centers etc. from given atomic structure: + Mapping all atomic coordinates to central unit cell. + + Initializing the k-points + Using symmetry for reducing the k-points + | k-points reduced from: 1000 to 504 + | Number of k-points : 504 + The eigenvectors in the calculations are COMPLEX. + | K-points in task 0: 15 + | K-points in task 1: 16 + | K-points in task 2: 16 + | K-points in task 3: 16 + | K-points in task 4: 16 + | K-points in task 5: 16 + | K-points in task 6: 16 + | K-points in task 7: 16 + | K-points in task 8: 16 + | K-points in task 9: 16 + | K-points in task 10: 16 + | K-points in task 11: 16 + | K-points in task 12: 16 + | K-points in task 13: 16 + | K-points in task 14: 16 + | K-points in task 15: 16 + | K-points in task 16: 16 + | K-points in task 17: 16 + | K-points in task 18: 16 + | K-points in task 19: 16 + | K-points in task 20: 16 + | K-points in task 21: 16 + | K-points in task 22: 16 + | K-points in task 23: 16 + | K-points in task 24: 16 + | K-points in task 25: 15 + | K-points in task 26: 15 + | K-points in task 27: 15 + | K-points in task 28: 15 + | K-points in task 29: 15 + | K-points in task 30: 15 + | K-points in task 31: 15 + | Number of basis functions in the Hamiltonian integrals : 3591 + | Number of basis functions in a single unit cell : 78 + | Number of centers in hartree potential : 594 + | Number of centers in hartree multipole : 480 + | Number of centers in electron density summation: 336 + | Number of centers in basis integrals : 378 + | Number of centers in integrals : 170 + | Number of centers in hamiltonian : 336 + | Consuming 1543 KiB for k_phase. + | Number of super-cells (origin) [n_cells] : 1331 + | Number of super-cells (after PM_index) [n_cells] : 196 + | Number of super-cells in hamiltonian [n_cells_in_hamiltonian]: 196 + | Size of matrix packed + index [n_hamiltonian_matrix_size] : 331057 + Partitioning the integration grid into batches with parallel hashing+maxmin method. + | Number of batches: 504 + | Maximal batch size: 107 + | Minimal batch size: 51 + | Average batch size: 71.103 + | Standard deviation of batch sizes: 10.624 + + Integration load balanced across 32 MPI tasks. + Work distribution over tasks is as follows: + Task 0 has 1113 integration points. + Task 1 has 1166 integration points. + Task 2 has 1120 integration points. + Task 3 has 1102 integration points. + Task 4 has 1092 integration points. + Task 5 has 1097 integration points. + Task 6 has 1154 integration points. + Task 7 has 1115 integration points. + Task 8 has 1092 integration points. + Task 9 has 1089 integration points. + Task 10 has 1098 integration points. + Task 11 has 1172 integration points. + Task 12 has 1101 integration points. + Task 13 has 1123 integration points. + Task 14 has 1147 integration points. + Task 15 has 1132 integration points. + Task 16 has 1118 integration points. + Task 17 has 1127 integration points. + Task 18 has 1089 integration points. + Task 19 has 1078 integration points. + Task 20 has 1128 integration points. + Task 21 has 1146 integration points. + Task 22 has 1128 integration points. + Task 23 has 1167 integration points. + Task 24 has 1121 integration points. + Task 25 has 1124 integration points. + Task 26 has 1130 integration points. + Task 27 has 1171 integration points. + Task 28 has 1079 integration points. + Task 29 has 1119 integration points. + Task 30 has 1077 integration points. + Task 31 has 1121 integration points. + Initializing partition tables, free-atom densities, potentials, etc. across the integration grid (initialize_grid_storage). + | initialize_grid_storage: Actual outermost partition radius vs. multipole_radius_free + | (-- VB: in principle, multipole_radius_free should be larger, hence this output) + | Species 1: Confinement radius = 6.000000000000000 AA, multipole_radius_free = 6.007157080273940 AA. + | Species 1: outer_partition_radius set to 6.007157080273940 AA . + | Original list of interatomic distances with 378 x 378 entries is created. + | Net number of integration points: 35836 + | of which are non-zero points : 27252 + | Numerical average free-atom electrostatic potential : -13.51703366 eV + Obtaining max. number of non-zero basis functions in each batch (get_n_compute_maxes). + | Maximal number of non-zero basis functions: 1349 in task 0 + | Maximal number of non-zero basis functions: 1352 in task 1 + | Maximal number of non-zero basis functions: 1381 in task 2 + | Maximal number of non-zero basis functions: 1465 in task 3 + | Maximal number of non-zero basis functions: 1369 in task 4 + | Maximal number of non-zero basis functions: 1390 in task 5 + | Maximal number of non-zero basis functions: 1383 in task 6 + | Maximal number of non-zero basis functions: 1349 in task 7 + | Maximal number of non-zero basis functions: 1405 in task 8 + | Maximal number of non-zero basis functions: 1376 in task 9 + | Maximal number of non-zero basis functions: 1371 in task 10 + | Maximal number of non-zero basis functions: 1355 in task 11 + | Maximal number of non-zero basis functions: 1355 in task 12 + | Maximal number of non-zero basis functions: 1429 in task 13 + | Maximal number of non-zero basis functions: 1377 in task 14 + | Maximal number of non-zero basis functions: 1370 in task 15 + | Maximal number of non-zero basis functions: 1390 in task 16 + | Maximal number of non-zero basis functions: 1429 in task 17 + | Maximal number of non-zero basis functions: 1370 in task 18 + | Maximal number of non-zero basis functions: 1413 in task 19 + | Maximal number of non-zero basis functions: 1350 in task 20 + | Maximal number of non-zero basis functions: 1332 in task 21 + | Maximal number of non-zero basis functions: 1384 in task 22 + | Maximal number of non-zero basis functions: 1350 in task 23 + | Maximal number of non-zero basis functions: 1405 in task 24 + | Maximal number of non-zero basis functions: 1419 in task 25 + | Maximal number of non-zero basis functions: 1392 in task 26 + | Maximal number of non-zero basis functions: 1394 in task 27 + | Maximal number of non-zero basis functions: 1384 in task 28 + | Maximal number of non-zero basis functions: 1371 in task 29 + | Maximal number of non-zero basis functions: 1413 in task 30 + | Maximal number of non-zero basis functions: 1392 in task 31 + | MBD: Using the same k-grid sampling as DFT + Integrating Hamiltonian matrix: batch-based integration. + Time summed over all CPUs for integration: real work 18.602 s, elapsed 19.428 s + Integrating overlap matrix. + Time summed over all CPUs for integration: real work 14.649 s, elapsed 15.452 s + Decreasing sparse matrix size: + Tolerance: 9.999999824516700E-014 + Hamiltonian matrix + | Array has 287266 nonzero elements out of 331057 elements + | Sparsity factor is 0.132 + Overlap matrix + | Array has 270916 nonzero elements out of 331057 elements + | Sparsity factor is 0.182 + New size of hamiltonian matrix: 288501 + + Solving generalized eigenproblem + Transforming overlap matrix and checking for singularities. + Overlap matrix is nonsingular at first k-point: + | Lowest eigenvalue: 0.630311E-03 + Determining occupation numbers for Kohn-Sham eigenstates. + | Chemical potential (Fermi level) in eV : -.59318443E+01 + | Error in electron count due to remaining E_F inaccuracy: 0.25863756E-11 + | Maximum occupation number of highest empty state: 0.00E+00 + + Writing Kohn-Sham eigenvalues. + K-point: 1 at 0.000000 0.000000 0.000000 (in units of recip. lattice) + + State Occupation Eigenvalue [Ha] Eigenvalue [eV] + 1 2.00000 -65.804971 -1790.64436 + 2 2.00000 -65.804971 -1790.64436 + 3 2.00000 -5.157172 -140.33380 + 4 2.00000 -5.156888 -140.32607 + 5 2.00000 -3.541797 -96.37720 + 6 2.00000 -3.541797 -96.37720 + 7 2.00000 -3.541797 -96.37720 + 8 2.00000 -3.541173 -96.36021 + 9 2.00000 -3.541173 -96.36021 + 10 2.00000 -3.541173 -96.36021 + 11 2.00000 -0.676873 -18.41866 + 12 2.00000 -0.241529 -6.57233 + 13 2.00000 -0.241529 -6.57233 + 14 2.00000 -0.241529 -6.57233 + 15 0.00000 -0.139417 -3.79373 + 16 0.00000 -0.139417 -3.79373 + 17 0.00000 -0.139417 -3.79373 + 18 0.00000 -0.117879 -3.20766 + 19 0.00000 0.056297 1.53192 + 20 0.00000 0.056297 1.53192 + 21 0.00000 0.081625 2.22112 + 22 0.00000 0.214111 5.82625 + + What follows are estimated values for band gap, HOMO, LUMO, etc. + | They are estimated on a discrete k-point grid and not necessarily exact. + | For converged numbers, create a DOS and/or band structure plot on a denser k-grid. + + Highest occupied state (VBM) at -6.57233497 eV (relative to internal zero) + | Occupation number: 2.00000000 + | K-point: 1 at 0.000000 0.000000 0.000000 (in units of recip. lattice) + + Lowest unoccupied state (CBM) at -5.69483135 eV (relative to internal zero) + | Occupation number: 0.00000000 + | K-point: 32 at 0.000000 0.400000 0.400000 (in units of recip. lattice) + + ESTIMATED overall HOMO-LUMO gap: 0.87750362 eV between HOMO at k-point 1 and LUMO at k-point 32 + | This appears to be an indirect band gap. + | Smallest direct gap : 2.77860306 eV for k_point 1 at 0.000000 0.400000 0.400000 (in units of recip. lattice) + The gap value is above 0.2 eV. Unless you are using a very sparse k-point grid, + this system is most likely an insulator or a semiconductor. + Calculating total energy contributions from superposition of free atom densities. + + Total energy components: + | Sum of eigenvalues : -329.74003883 Ha -8972.68298166 eV + | XC energy correction : -41.73061839 Ha -1135.54790252 eV + | XC potential correction : 53.89327714 Ha 1466.51068626 eV + | Free-atom electrostatic energy: -263.16647022 Ha -7161.12400869 eV + | Hartree energy correction : 0.00000000 Ha 0.00000000 eV + | Entropy correction : -0.00000000 Ha -0.00000000 eV + | --------------------------- + | Total energy : -580.74385030 Ha -15802.84420660 eV + | Total energy, T -> 0 : -580.74385030 Ha -15802.84420660 eV <-- do not rely on this value for anything but (periodic) metals + | Electronic free energy : -580.74385030 Ha -15802.84420660 eV + + Derived energy quantities: + | Kinetic energy : 582.31111448 Ha 15845.49163466 eV + | Electrostatic energy : -1121.32434639 Ha -30512.78793875 eV + | Energy correction for multipole + | error in Hartree potential : 0.00000000 Ha 0.00000000 eV + | Sum of eigenvalues per atom : -4486.34149083 eV + | Total energy (T->0) per atom : -7901.42210330 eV <-- do not rely on this value for anything but (periodic) metals + | Electronic free energy per atom : -7901.42210330 eV + Initialize hartree_potential_storage + Max. number of atoms included in rho_multipole: 2 + + End scf initialization - timings : max(cpu_time) wall_clock(cpu1) + | Time for scf. initialization : 1.960 s 2.081 s + | Boundary condition initialization : 0.300 s 0.301 s + | Integration : 1.108 s 1.134 s + | Solution of K.-S. eqns. : 0.280 s 0.327 s + | Grid partitioning : 0.120 s 0.130 s + | Preloading free-atom quantities on grid : 0.012 s 0.011 s + | Free-atom superposition energy : 0.016 s 0.017 s + | Total energy evaluation : 0.004 s 0.005 s +------------------------------------------------------------ + +------------------------------------------------------------ + Begin self-consistency iteration # 1 + + Date : 20170508, Time : 200329.097 +------------------------------------------------------------ + Evaluating new KS density using the density matrix + Evaluating density matrix + Time summed over all CPUs for getting density from density matrix: real work 29.042 s, elapsed 30.535 s + Integration grid: deviation in total charge (<rho> - N_e) = 0.000000E+00 + Pulay mixing of updated and previous charge densities. + + Evaluating partitioned Hartree potential by multipole expansion. + | Analytical far-field extrapolation by fixed multipoles: + | Hartree multipole sum: apparent total charge = 0.344294E-03 + Summing up the Hartree potential. + | Estimated reciprocal-space cutoff momentum G_max: 3.32253784 bohr^-1 . + | Reciprocal lattice points for long-range Hartree potential: 168 + Time summed over all CPUs for potential: real work 9.106 s, elapsed 9.805 s + | RMS charge density error from multipole expansion : 0.446567E-03 + | Average real-space part of the electrostatic potential : 0.03027379 eV + + Integrating Hamiltonian matrix: batch-based integration. + Time summed over all CPUs for integration: real work 18.083 s, elapsed 18.884 s + + Solving generalized eigenproblem + Determining occupation numbers for Kohn-Sham eigenstates. + | Chemical potential (Fermi level) in eV : -.60313835E+01 + | Error in electron count due to remaining E_F inaccuracy: 0.25863756E-11 + | Maximum occupation number of highest empty state: 0.00E+00 + + Writing Kohn-Sham eigenvalues. + K-point: 1 at 0.000000 0.000000 0.000000 (in units of recip. lattice) + + State Occupation Eigenvalue [Ha] Eigenvalue [eV] + 1 2.00000 -65.802039 -1790.56457 + 2 2.00000 -65.802039 -1790.56457 + 3 2.00000 -5.154835 -140.27021 + 4 2.00000 -5.154551 -140.26247 + 5 2.00000 -3.539393 -96.31179 + 6 2.00000 -3.539393 -96.31179 + 7 2.00000 -3.539393 -96.31179 + 8 2.00000 -3.538769 -96.29481 + 9 2.00000 -3.538769 -96.29481 + 10 2.00000 -3.538769 -96.29481 + 11 2.00000 -0.675602 -18.38408 + 12 2.00000 -0.239864 -6.52703 + 13 2.00000 -0.239864 -6.52703 + 14 2.00000 -0.239864 -6.52703 + 15 0.00000 -0.138420 -3.76661 + 16 0.00000 -0.138420 -3.76661 + 17 0.00000 -0.138420 -3.76661 + 18 0.00000 -0.116068 -3.15837 + 19 0.00000 0.057306 1.55937 + 20 0.00000 0.057306 1.55937 + 21 0.00000 0.082014 2.23172 + 22 0.00000 0.214620 5.84012 + + What follows are estimated values for band gap, HOMO, LUMO, etc. + | They are estimated on a discrete k-point grid and not necessarily exact. + | For converged numbers, create a DOS and/or band structure plot on a denser k-grid. + + Highest occupied state (VBM) at -6.52703245 eV (relative to internal zero) + | Occupation number: 2.00000000 + | K-point: 1 at 0.000000 0.000000 0.000000 (in units of recip. lattice) + + Lowest unoccupied state (CBM) at -5.67813298 eV (relative to internal zero) + | Occupation number: 0.00000000 + | K-point: 32 at 0.000000 0.400000 0.400000 (in units of recip. lattice) + + ESTIMATED overall HOMO-LUMO gap: 0.84889947 eV between HOMO at k-point 1 and LUMO at k-point 32 + | This appears to be an indirect band gap. + | Smallest direct gap : 2.76042367 eV for k_point 1 at 0.000000 0.400000 0.400000 (in units of recip. lattice) + The gap value is above 0.2 eV. Unless you are using a very sparse k-point grid, + this system is most likely an insulator or a semiconductor. + + Total energy components: + | Sum of eigenvalues : -329.67928644 Ha -8971.02982490 eV + | XC energy correction : -41.73473435 Ha -1135.65990353 eV + | XC potential correction : 53.89859360 Ha 1466.65535435 eV + | Free-atom electrostatic energy: -263.16647022 Ha -7161.12400869 eV + | Hartree energy correction : -0.06096904 Ha -1.65905210 eV + | Entropy correction : 0.00000000 Ha 0.00000000 eV + | --------------------------- + | Total energy : -580.74286646 Ha -15802.81743487 eV + | Total energy, T -> 0 : -580.74286646 Ha -15802.81743487 eV <-- do not rely on this value for anything but (periodic) metals + | Electronic free energy : -580.74286646 Ha -15802.81743487 eV + + Derived energy quantities: + | Kinetic energy : 582.31621386 Ha 15845.63039585 eV + | Electrostatic energy : -1121.32434596 Ha -30512.78792719 eV + | Energy correction for multipole + | error in Hartree potential : -0.00051700 Ha -0.01406824 eV + | Sum of eigenvalues per atom : -4485.51491245 eV + | Total energy (T->0) per atom : -7901.40871743 eV <-- do not rely on this value for anything but (periodic) metals + | Electronic free energy per atom : -7901.40871743 eV + + Self-consistency convergence accuracy: + | Change of charge density : 0.1178E+00 + | Change of sum of eigenvalues : 0.1653E+01 eV + | Change of total energy : 0.2677E-01 eV + + End self-consistency iteration # 1 : max(cpu_time) wall_clock(cpu1) + | Time for this iteration : 2.184 s 2.211 s + | Charge density update : 1.004 s 1.013 s + | Density mixing & preconditioning : 0.072 s 0.075 s + | Hartree multipole update : 0.008 s 0.009 s + | Hartree multipole summation : 0.320 s 0.329 s + | Integration : 0.600 s 0.598 s + | Solution of K.-S. eqns. : 0.184 s 0.181 s + | Total energy evaluation : 0.004 s 0.001 s +------------------------------------------------------------ + +------------------------------------------------------------ + Begin self-consistency iteration # 2 + + Date : 20170508, Time : 200331.308 +------------------------------------------------------------ + Evaluating new KS density using the density matrix + Evaluating density matrix + Time summed over all CPUs for getting density from density matrix: real work 28.956 s, elapsed 30.462 s + Integration grid: deviation in total charge (<rho> - N_e) = 0.000000E+00 + Pulay mixing of updated and previous charge densities. + + Evaluating partitioned Hartree potential by multipole expansion. + | Analytical far-field extrapolation by fixed multipoles: + | Hartree multipole sum: apparent total charge = 0.389803E-02 + Summing up the Hartree potential. + Time summed over all CPUs for potential: real work 10.258 s, elapsed 11.274 s + | RMS charge density error from multipole expansion : 0.527552E-02 + | Average real-space part of the electrostatic potential : 0.35246675 eV + + Integrating Hamiltonian matrix: batch-based integration. + Time summed over all CPUs for integration: real work 18.082 s, elapsed 18.900 s + + Solving generalized eigenproblem + Determining occupation numbers for Kohn-Sham eigenstates. + | Chemical potential (Fermi level) in eV : -.54977424E+01 + | Error in electron count due to remaining E_F inaccuracy: 0.25899283E-11 + | Maximum occupation number of highest empty state: 0.00E+00 + + What follows are estimated values for band gap, HOMO, LUMO, etc. + | They are estimated on a discrete k-point grid and not necessarily exact. + | For converged numbers, create a DOS and/or band structure plot on a denser k-grid. + + Highest occupied state (VBM) at -6.00274516 eV (relative to internal zero) + | Occupation number: 2.00000000 + | K-point: 1 at 0.000000 0.000000 0.000000 (in units of recip. lattice) + + Lowest unoccupied state (CBM) at -5.44687489 eV (relative to internal zero) + | Occupation number: 0.00000000 + | K-point: 281 at 0.400000 0.000000 0.400000 (in units of recip. lattice) + + ESTIMATED overall HOMO-LUMO gap: 0.55587027 eV between HOMO at k-point 1 and LUMO at k-point 281 + | This appears to be an indirect band gap. + | Smallest direct gap : 2.55163918 eV for k_point 1 at 0.400000 0.000000 0.400000 (in units of recip. lattice) + The gap value is above 0.2 eV. Unless you are using a very sparse k-point grid, + this system is most likely an insulator or a semiconductor. + + Total energy components: + | Sum of eigenvalues : -329.03593630 Ha -8953.52337707 eV + | XC energy correction : -41.79213196 Ha -1137.22177175 eV + | XC potential correction : 53.97154392 Ha 1468.64043367 eV + | Free-atom electrostatic energy: -263.16647022 Ha -7161.12400869 eV + | Hartree energy correction : -0.71527434 Ha -19.46360501 eV + | Entropy correction : -0.00000000 Ha -0.00000000 eV + | --------------------------- + | Total energy : -580.73826890 Ha -15802.69232885 eV + | Total energy, T -> 0 : -580.73826890 Ha -15802.69232885 eV <-- do not rely on this value for anything but (periodic) metals + | Electronic free energy : -580.73826890 Ha -15802.69232885 eV + + Derived energy quantities: + | Kinetic energy : 582.34180036 Ha 15846.32664010 eV + | Electrostatic energy : -1121.28793730 Ha -30511.79719721 eV + | Energy correction for multipole + | error in Hartree potential : -0.00615853 Ha -0.16758205 eV + | Sum of eigenvalues per atom : -4476.76168854 eV + | Total energy (T->0) per atom : -7901.34616443 eV <-- do not rely on this value for anything but (periodic) metals + | Electronic free energy per atom : -7901.34616443 eV + + Self-consistency convergence accuracy: + | Change of charge density : 0.1079E+00 + | Change of sum of eigenvalues : 0.1751E+02 eV + | Change of total energy : 0.1251E+00 eV + + End self-consistency iteration # 2 : max(cpu_time) wall_clock(cpu1) + | Time for this iteration : 2.212 s 2.213 s + | Charge density update : 1.000 s 0.997 s + | Density mixing & preconditioning : 0.068 s 0.067 s + | Hartree multipole update : 0.004 s 0.004 s + | Hartree multipole summation : 0.368 s 0.365 s + | Integration : 0.600 s 0.597 s + | Solution of K.-S. eqns. : 0.184 s 0.181 s + | Total energy evaluation : 0.004 s 0.001 s +------------------------------------------------------------ + +------------------------------------------------------------ + Begin self-consistency iteration # 3 + + Date : 20170508, Time : 200333.522 +------------------------------------------------------------ + Evaluating new KS density using the density matrix + Evaluating density matrix + Time summed over all CPUs for getting density from density matrix: real work 29.022 s, elapsed 30.542 s + Integration grid: deviation in total charge (<rho> - N_e) = 0.000000E+00 + Pulay mixing of updated and previous charge densities. + + Evaluating partitioned Hartree potential by multipole expansion. + | Analytical far-field extrapolation by fixed multipoles: + | Hartree multipole sum: apparent total charge = 0.296909E-02 + Summing up the Hartree potential. + Time summed over all CPUs for potential: real work 10.266 s, elapsed 11.276 s + | RMS charge density error from multipole expansion : 0.539667E-02 + | Average real-space part of the electrostatic potential : 0.32466853 eV + + Integrating Hamiltonian matrix: batch-based integration. + Time summed over all CPUs for integration: real work 18.078 s, elapsed 18.872 s + + Solving generalized eigenproblem + Determining occupation numbers for Kohn-Sham eigenstates. + | Chemical potential (Fermi level) in eV : -.55360304E+01 + | Error in electron count due to remaining E_F inaccuracy: 0.25863756E-11 + | Maximum occupation number of highest empty state: 0.00E+00 + + What follows are estimated values for band gap, HOMO, LUMO, etc. + | They are estimated on a discrete k-point grid and not necessarily exact. + | For converged numbers, create a DOS and/or band structure plot on a denser k-grid. + + Highest occupied state (VBM) at -6.04609057 eV (relative to internal zero) + | Occupation number: 2.00000000 + | K-point: 1 at 0.000000 0.000000 0.000000 (in units of recip. lattice) + + Lowest unoccupied state (CBM) at -5.46112948 eV (relative to internal zero) + | Occupation number: 0.00000000 + | K-point: 281 at 0.400000 0.000000 0.400000 (in units of recip. lattice) + + ESTIMATED overall HOMO-LUMO gap: 0.58496109 eV between HOMO at k-point 1 and LUMO at k-point 281 + | This appears to be an indirect band gap. + | Smallest direct gap : 2.56354497 eV for k_point 1 at 0.400000 0.000000 0.400000 (in units of recip. lattice) + The gap value is above 0.2 eV. Unless you are using a very sparse k-point grid, + this system is most likely an insulator or a semiconductor. + + Total energy components: + | Sum of eigenvalues : -329.18546932 Ha -8957.59237753 eV + | XC energy correction : -41.78126245 Ha -1136.92599734 eV + | XC potential correction : 53.95745705 Ha 1468.25711050 eV + | Free-atom electrostatic energy: -263.16647022 Ha -7161.12400869 eV + | Hartree energy correction : -0.56247699 Ha -15.30577769 eV + | Entropy correction : -0.00000000 Ha -0.00000000 eV + | --------------------------- + | Total energy : -580.73822193 Ha -15802.69105075 eV + | Total energy, T -> 0 : -580.73822193 Ha -15802.69105075 eV <-- do not rely on this value for anything but (periodic) metals + | Electronic free energy : -580.73822193 Ha -15802.69105075 eV + + Derived energy quantities: + | Kinetic energy : 582.21898269 Ha 15842.98460121 eV + | Electrostatic energy : -1121.17594217 Ha -30508.74965463 eV + | Energy correction for multipole + | error in Hartree potential : -0.00615925 Ha -0.16760170 eV + | Sum of eigenvalues per atom : -4478.79618877 eV + | Total energy (T->0) per atom : -7901.34552538 eV <-- do not rely on this value for anything but (periodic) metals + | Electronic free energy per atom : -7901.34552538 eV + + Self-consistency convergence accuracy: + | Change of charge density : 0.1324E-01 + | Change of sum of eigenvalues : -0.4069E+01 eV + | Change of total energy : 0.1278E-02 eV + + End self-consistency iteration # 3 : max(cpu_time) wall_clock(cpu1) + | Time for this iteration : 2.212 s 2.211 s + | Charge density update : 1.000 s 0.998 s + | Density mixing & preconditioning : 0.064 s 0.064 s + | Hartree multipole update : 0.008 s 0.004 s + | Hartree multipole summation : 0.368 s 0.365 s + | Integration : 0.596 s 0.597 s + | Solution of K.-S. eqns. : 0.184 s 0.181 s + | Total energy evaluation : 0.004 s 0.001 s +------------------------------------------------------------ + +------------------------------------------------------------ + Begin self-consistency iteration # 4 + + Date : 20170508, Time : 200335.733 +------------------------------------------------------------ + Evaluating new KS density using the density matrix + Evaluating density matrix + Time summed over all CPUs for getting density from density matrix: real work 29.018 s, elapsed 30.536 s + Integration grid: deviation in total charge (<rho> - N_e) = -3.552714E-15 + Pulay mixing of updated and previous charge densities. + + Evaluating partitioned Hartree potential by multipole expansion. + | Analytical far-field extrapolation by fixed multipoles: + | Hartree multipole sum: apparent total charge = 0.246036E-02 + Summing up the Hartree potential. + Time summed over all CPUs for potential: real work 10.267 s, elapsed 11.279 s + | RMS charge density error from multipole expansion : 0.582751E-02 + | Average real-space part of the electrostatic potential : 0.32642058 eV + + Integrating Hamiltonian matrix: batch-based integration. + Time summed over all CPUs for integration: real work 18.076 s, elapsed 18.894 s + + Solving generalized eigenproblem + Determining occupation numbers for Kohn-Sham eigenstates. + | Chemical potential (Fermi level) in eV : -.55307407E+01 + | Error in electron count due to remaining E_F inaccuracy: 0.25863756E-11 + | Maximum occupation number of highest empty state: 0.00E+00 + + What follows are estimated values for band gap, HOMO, LUMO, etc. + | They are estimated on a discrete k-point grid and not necessarily exact. + | For converged numbers, create a DOS and/or band structure plot on a denser k-grid. + + Highest occupied state (VBM) at -6.03960235 eV (relative to internal zero) + | Occupation number: 2.00000000 + | K-point: 1 at 0.000000 0.000000 0.000000 (in units of recip. lattice) + + Lowest unoccupied state (CBM) at -5.45094130 eV (relative to internal zero) + | Occupation number: 0.00000000 + | K-point: 281 at 0.400000 0.000000 0.400000 (in units of recip. lattice) + + ESTIMATED overall HOMO-LUMO gap: 0.58866105 eV between HOMO at k-point 1 and LUMO at k-point 281 + | This appears to be an indirect band gap. + | Smallest direct gap : 2.55772039 eV for k_point 1 at 0.400000 0.000000 0.400000 (in units of recip. lattice) + The gap value is above 0.2 eV. Unless you are using a very sparse k-point grid, + this system is most likely an insulator or a semiconductor. + + Total energy components: + | Sum of eigenvalues : -329.24959321 Ha -8959.33727718 eV + | XC energy correction : -41.77848159 Ha -1136.85032646 eV + | XC potential correction : 53.95365289 Ha 1468.15359391 eV + | Free-atom electrostatic energy: -263.16647022 Ha -7161.12400869 eV + | Hartree energy correction : -0.49733743 Ha -13.53324008 eV + | Entropy correction : -0.00000000 Ha -0.00000000 eV + | --------------------------- + | Total energy : -580.73822956 Ha -15802.69125849 eV + | Total energy, T -> 0 : -580.73822956 Ha -15802.69125849 eV <-- do not rely on this value for anything but (periodic) metals + | Electronic free energy : -580.73822956 Ha -15802.69125849 eV + + Derived energy quantities: + | Kinetic energy : 582.13472047 Ha 15840.69170959 eV + | Electrostatic energy : -1121.09446844 Ha -30506.53264163 eV + | Energy correction for multipole + | error in Hartree potential : -0.00655679 Ha -0.17841938 eV + | Sum of eigenvalues per atom : -4479.66863859 eV + | Total energy (T->0) per atom : -7901.34562925 eV <-- do not rely on this value for anything but (periodic) metals + | Electronic free energy per atom : -7901.34562925 eV + + Self-consistency convergence accuracy: + | Change of charge density : 0.7239E-02 + | Change of sum of eigenvalues : -0.1745E+01 eV + | Change of total energy : -0.2077E-03 eV + + End self-consistency iteration # 4 : max(cpu_time) wall_clock(cpu1) + | Time for this iteration : 2.212 s 2.212 s + | Charge density update : 1.000 s 0.998 s + | Density mixing & preconditioning : 0.064 s 0.064 s + | Hartree multipole update : 0.008 s 0.004 s + | Hartree multipole summation : 0.368 s 0.366 s + | Integration : 0.600 s 0.597 s + | Solution of K.-S. eqns. : 0.184 s 0.181 s + | Total energy evaluation : 0.004 s 0.001 s +------------------------------------------------------------ + +------------------------------------------------------------ + Begin self-consistency iteration # 5 + + Date : 20170508, Time : 200337.945 +------------------------------------------------------------ + Evaluating new KS density using the density matrix + Evaluating density matrix + Time summed over all CPUs for getting density from density matrix: real work 29.023 s, elapsed 30.550 s + Integration grid: deviation in total charge (<rho> - N_e) = -7.105427E-15 + Pulay mixing of updated and previous charge densities. + + Evaluating partitioned Hartree potential by multipole expansion. + | Analytical far-field extrapolation by fixed multipoles: + | Hartree multipole sum: apparent total charge = 0.169110E-02 + Summing up the Hartree potential. + Time summed over all CPUs for potential: real work 10.269 s, elapsed 11.293 s + | RMS charge density error from multipole expansion : 0.588769E-02 + | Average real-space part of the electrostatic potential : 0.32452090 eV + + Integrating Hamiltonian matrix: batch-based integration. + Time summed over all CPUs for integration: real work 18.082 s, elapsed 18.909 s + + Solving generalized eigenproblem + Determining occupation numbers for Kohn-Sham eigenstates. + | Chemical potential (Fermi level) in eV : -.55337119E+01 + | Error in electron count due to remaining E_F inaccuracy: 0.25863756E-11 + | Maximum occupation number of highest empty state: 0.00E+00 + + What follows are estimated values for band gap, HOMO, LUMO, etc. + | They are estimated on a discrete k-point grid and not necessarily exact. + | For converged numbers, create a DOS and/or band structure plot on a denser k-grid. + + Highest occupied state (VBM) at -6.04282922 eV (relative to internal zero) + | Occupation number: 2.00000000 + | K-point: 1 at 0.000000 0.000000 0.000000 (in units of recip. lattice) + + Lowest unoccupied state (CBM) at -5.45163056 eV (relative to internal zero) + | Occupation number: 0.00000000 + | K-point: 281 at 0.400000 0.000000 0.400000 (in units of recip. lattice) + + ESTIMATED overall HOMO-LUMO gap: 0.59119866 eV between HOMO at k-point 1 and LUMO at k-point 281 + | This appears to be an indirect band gap. + | Smallest direct gap : 2.55882748 eV for k_point 1 at 0.400000 0.000000 0.400000 (in units of recip. lattice) + The gap value is above 0.2 eV. Unless you are using a very sparse k-point grid, + this system is most likely an insulator or a semiconductor. + + Total energy components: + | Sum of eigenvalues : -329.25163132 Ha -8959.39273711 eV + | XC energy correction : -41.78086581 Ha -1136.91520421 eV + | XC potential correction : 53.95658221 Ha 1468.23330494 eV + | Free-atom electrostatic energy: -263.16647022 Ha -7161.12400869 eV + | Hartree energy correction : -0.49584384 Ha -13.49259752 eV + | Entropy correction : -0.00000000 Ha -0.00000000 eV + | --------------------------- + | Total energy : -580.73822898 Ha -15802.69124258 eV + | Total energy, T -> 0 : -580.73822898 Ha -15802.69124258 eV <-- do not rely on this value for anything but (periodic) metals + | Electronic free energy : -580.73822898 Ha -15802.69124258 eV + + Derived energy quantities: + | Kinetic energy : 582.18017956 Ha 15841.92871440 eV + | Electrostatic energy : -1121.13754274 Ha -30507.70475277 eV + | Energy correction for multipole + | error in Hartree potential : -0.00660377 Ha -0.17969781 eV + | Sum of eigenvalues per atom : -4479.69636855 eV + | Total energy (T->0) per atom : -7901.34562129 eV <-- do not rely on this value for anything but (periodic) metals + | Electronic free energy per atom : -7901.34562129 eV + + Self-consistency convergence accuracy: + | Change of charge density : 0.2934E-02 + | Change of sum of eigenvalues : -0.5546E-01 eV + | Change of total energy : 0.1591E-04 eV + + End self-consistency iteration # 5 : max(cpu_time) wall_clock(cpu1) + | Time for this iteration : 2.216 s 2.215 s + | Charge density update : 1.000 s 0.999 s + | Density mixing & preconditioning : 0.064 s 0.064 s + | Hartree multipole update : 0.008 s 0.004 s + | Hartree multipole summation : 0.368 s 0.366 s + | Integration : 0.600 s 0.598 s + | Solution of K.-S. eqns. : 0.184 s 0.182 s + | Total energy evaluation : 0.004 s 0.001 s +------------------------------------------------------------ + +------------------------------------------------------------ + Begin self-consistency iteration # 6 + + Date : 20170508, Time : 200340.160 +------------------------------------------------------------ + Evaluating new KS density using the density matrix + Evaluating density matrix + Time summed over all CPUs for getting density from density matrix: real work 29.006 s, elapsed 30.518 s + Integration grid: deviation in total charge (<rho> - N_e) = -7.105427E-15 + Pulay mixing of updated and previous charge densities. + + Evaluating partitioned Hartree potential by multipole expansion. + | Analytical far-field extrapolation by fixed multipoles: + | Hartree multipole sum: apparent total charge = 0.169513E-02 + Summing up the Hartree potential. + Time summed over all CPUs for potential: real work 10.262 s, elapsed 11.273 s + | RMS charge density error from multipole expansion : 0.585100E-02 + | Average real-space part of the electrostatic potential : 0.32084009 eV + + Integrating Hamiltonian matrix: batch-based integration. + Time summed over all CPUs for integration: real work 18.079 s, elapsed 18.948 s + + Solving generalized eigenproblem + Determining occupation numbers for Kohn-Sham eigenstates. + | Chemical potential (Fermi level) in eV : -.55392370E+01 + | Error in electron count due to remaining E_F inaccuracy: 0.25863756E-11 + | Maximum occupation number of highest empty state: 0.00E+00 + + What follows are estimated values for band gap, HOMO, LUMO, etc. + | They are estimated on a discrete k-point grid and not necessarily exact. + | For converged numbers, create a DOS and/or band structure plot on a denser k-grid. + + Highest occupied state (VBM) at -6.04887968 eV (relative to internal zero) + | Occupation number: 2.00000000 + | K-point: 1 at 0.000000 0.000000 0.000000 (in units of recip. lattice) + + Lowest unoccupied state (CBM) at -5.45458377 eV (relative to internal zero) + | Occupation number: 0.00000000 + | K-point: 281 at 0.400000 0.000000 0.400000 (in units of recip. lattice) + + ESTIMATED overall HOMO-LUMO gap: 0.59429590 eV between HOMO at k-point 1 and LUMO at k-point 281 + | This appears to be an indirect band gap. + | Smallest direct gap : 2.56107537 eV for k_point 1 at 0.400000 0.000000 0.400000 (in units of recip. lattice) + The gap value is above 0.2 eV. Unless you are using a very sparse k-point grid, + this system is most likely an insulator or a semiconductor. + + Total energy components: + | Sum of eigenvalues : -329.26113073 Ha -8959.65122926 eV + | XC energy correction : -41.78003564 Ha -1136.89261416 eV + | XC potential correction : 53.95552099 Ha 1468.20442745 eV + | Free-atom electrostatic energy: -263.16647022 Ha -7161.12400869 eV + | Hartree energy correction : -0.48611095 Ha -13.22775197 eV + | Entropy correction : -0.00000000 Ha -0.00000000 eV + | --------------------------- + | Total energy : -580.73822655 Ha -15802.69117663 eV + | Total energy, T -> 0 : -580.73822655 Ha -15802.69117663 eV <-- do not rely on this value for anything but (periodic) metals + | Electronic free energy : -580.73822655 Ha -15802.69117663 eV + + Derived energy quantities: + | Kinetic energy : 582.17878747 Ha 15841.89083360 eV + | Electrostatic energy : -1121.13697839 Ha -30507.68939607 eV + | Energy correction for multipole + | error in Hartree potential : -0.00655402 Ha -0.17834386 eV + | Sum of eigenvalues per atom : -4479.82561463 eV + | Total energy (T->0) per atom : -7901.34558831 eV <-- do not rely on this value for anything but (periodic) metals + | Electronic free energy per atom : -7901.34558831 eV + + Self-consistency convergence accuracy: + | Change of charge density : 0.7531E-03 + | Change of sum of eigenvalues : -0.2585E+00 eV + | Change of total energy : 0.6595E-04 eV + + End self-consistency iteration # 6 : max(cpu_time) wall_clock(cpu1) + | Time for this iteration : 2.216 s 2.212 s + | Charge density update : 1.000 s 0.997 s + | Density mixing & preconditioning : 0.064 s 0.064 s + | Hartree multipole update : 0.008 s 0.004 s + | Hartree multipole summation : 0.368 s 0.366 s + | Integration : 0.600 s 0.599 s + | Solution of K.-S. eqns. : 0.180 s 0.180 s + | Total energy evaluation : 0.004 s 0.001 s +------------------------------------------------------------ + +------------------------------------------------------------ + Begin self-consistency iteration # 7 + + Date : 20170508, Time : 200342.374 +------------------------------------------------------------ + Evaluating new KS density using the density matrix + Evaluating density matrix + Time summed over all CPUs for getting density from density matrix: real work 29.001 s, elapsed 30.495 s + Integration grid: deviation in total charge (<rho> - N_e) = 0.000000E+00 + Pulay mixing of updated and previous charge densities. + + Evaluating partitioned Hartree potential by multipole expansion. + | Analytical far-field extrapolation by fixed multipoles: + | Hartree multipole sum: apparent total charge = 0.248732E-02 + Summing up the Hartree potential. + Time summed over all CPUs for potential: real work 10.260 s, elapsed 11.280 s + | RMS charge density error from multipole expansion : 0.586803E-02 + | Average real-space part of the electrostatic potential : 0.32121299 eV + + Integrating Hamiltonian matrix: batch-based integration. + Time summed over all CPUs for integration: real work 18.081 s, elapsed 18.916 s + + Solving generalized eigenproblem + Determining occupation numbers for Kohn-Sham eigenstates. + | Chemical potential (Fermi level) in eV : -.55370842E+01 + | Error in electron count due to remaining E_F inaccuracy: 0.25863756E-11 + | Maximum occupation number of highest empty state: 0.00E+00 + + What follows are estimated values for band gap, HOMO, LUMO, etc. + | They are estimated on a discrete k-point grid and not necessarily exact. + | For converged numbers, create a DOS and/or band structure plot on a denser k-grid. + + Highest occupied state (VBM) at -6.04658439 eV (relative to internal zero) + | Occupation number: 2.00000000 + | K-point: 1 at 0.000000 0.000000 0.000000 (in units of recip. lattice) + + Lowest unoccupied state (CBM) at -5.45311620 eV (relative to internal zero) + | Occupation number: 0.00000000 + | K-point: 281 at 0.400000 0.000000 0.400000 (in units of recip. lattice) + + ESTIMATED overall HOMO-LUMO gap: 0.59346819 eV between HOMO at k-point 1 and LUMO at k-point 281 + | This appears to be an indirect band gap. + | Smallest direct gap : 2.56038401 eV for k_point 1 at 0.400000 0.000000 0.400000 (in units of recip. lattice) + The gap value is above 0.2 eV. Unless you are using a very sparse k-point grid, + this system is most likely an insulator or a semiconductor. + + Total energy components: + | Sum of eigenvalues : -329.25899551 Ha -8959.59312679 eV + | XC energy correction : -41.77992574 Ha -1136.88962362 eV + | XC potential correction : 53.95536913 Ha 1468.20029515 eV + | Free-atom electrostatic energy: -263.16647022 Ha -7161.12400869 eV + | Hartree energy correction : -0.48820455 Ha -13.28472168 eV + | Entropy correction : -0.00000000 Ha -0.00000000 eV + | --------------------------- + | Total energy : -580.73822689 Ha -15802.69118563 eV + | Total energy, T -> 0 : -580.73822689 Ha -15802.69118563 eV <-- do not rely on this value for anything but (periodic) metals + | Electronic free energy : -580.73822689 Ha -15802.69118563 eV + + Derived energy quantities: + | Kinetic energy : 582.17781023 Ha 15841.86424157 eV + | Electrostatic energy : -1121.13611138 Ha -30507.66580358 eV + | Energy correction for multipole + | error in Hartree potential : -0.00656333 Ha -0.17859727 eV + | Sum of eigenvalues per atom : -4479.79656339 eV + | Total energy (T->0) per atom : -7901.34559282 eV <-- do not rely on this value for anything but (periodic) metals + | Electronic free energy per atom : -7901.34559282 eV + + Self-consistency convergence accuracy: + | Change of charge density : 0.3407E-03 + | Change of sum of eigenvalues : 0.5810E-01 eV + | Change of total energy : -0.9001E-05 eV + + End self-consistency iteration # 7 : max(cpu_time) wall_clock(cpu1) + | Time for this iteration : 2.208 s 2.209 s + | Charge density update : 1.000 s 0.997 s + | Density mixing & preconditioning : 0.064 s 0.062 s + | Hartree multipole update : 0.008 s 0.004 s + | Hartree multipole summation : 0.368 s 0.366 s + | Integration : 0.600 s 0.598 s + | Solution of K.-S. eqns. : 0.180 s 0.180 s + | Total energy evaluation : 0.004 s 0.001 s +------------------------------------------------------------ + +------------------------------------------------------------ + Begin self-consistency iteration # 8 + + Date : 20170508, Time : 200344.584 +------------------------------------------------------------ + Evaluating new KS density using the density matrix + Evaluating density matrix + Time summed over all CPUs for getting density from density matrix: real work 29.009 s, elapsed 30.539 s + Integration grid: deviation in total charge (<rho> - N_e) = -7.105427E-15 + Pulay mixing of updated and previous charge densities. + + Evaluating partitioned Hartree potential by multipole expansion. + | Analytical far-field extrapolation by fixed multipoles: + | Hartree multipole sum: apparent total charge = 0.243313E-02 + Summing up the Hartree potential. + Time summed over all CPUs for potential: real work 10.266 s, elapsed 11.292 s + | RMS charge density error from multipole expansion : 0.586746E-02 + | Average real-space part of the electrostatic potential : 0.32113175 eV + + Integrating Hamiltonian matrix: batch-based integration. + Time summed over all CPUs for integration: real work 18.117 s, elapsed 19.123 s + + Solving generalized eigenproblem + Determining occupation numbers for Kohn-Sham eigenstates. + | Chemical potential (Fermi level) in eV : -.55373052E+01 + | Error in electron count due to remaining E_F inaccuracy: 0.25863756E-11 + | Maximum occupation number of highest empty state: 0.00E+00 + + What follows are estimated values for band gap, HOMO, LUMO, etc. + | They are estimated on a discrete k-point grid and not necessarily exact. + | For converged numbers, create a DOS and/or band structure plot on a denser k-grid. + + Highest occupied state (VBM) at -6.04682066 eV (relative to internal zero) + | Occupation number: 2.00000000 + | K-point: 1 at 0.000000 0.000000 0.000000 (in units of recip. lattice) + + Lowest unoccupied state (CBM) at -5.45323459 eV (relative to internal zero) + | Occupation number: 0.00000000 + | K-point: 281 at 0.400000 0.000000 0.400000 (in units of recip. lattice) + + ESTIMATED overall HOMO-LUMO gap: 0.59358608 eV between HOMO at k-point 1 and LUMO at k-point 281 + | This appears to be an indirect band gap. + | Smallest direct gap : 2.56045238 eV for k_point 1 at 0.400000 0.000000 0.400000 (in units of recip. lattice) + The gap value is above 0.2 eV. Unless you are using a very sparse k-point grid, + this system is most likely an insulator or a semiconductor. + + Total energy components: + | Sum of eigenvalues : -329.25944588 Ha -8959.60538201 eV + | XC energy correction : -41.77991675 Ha -1136.88937900 eV + | XC potential correction : 53.95535747 Ha 1468.19997785 eV + | Free-atom electrostatic energy: -263.16647022 Ha -7161.12400869 eV + | Hartree energy correction : -0.48775150 Ha -13.27239349 eV + | Entropy correction : -0.00000000 Ha -0.00000000 eV + | --------------------------- + | Total energy : -580.73822687 Ha -15802.69118534 eV + | Total energy, T -> 0 : -580.73822687 Ha -15802.69118534 eV <-- do not rely on this value for anything but (periodic) metals + | Electronic free energy : -580.73822687 Ha -15802.69118534 eV + + Derived energy quantities: + | Kinetic energy : 582.17771692 Ha 15841.86170234 eV + | Electrostatic energy : -1121.13602704 Ha -30507.66350867 eV + | Energy correction for multipole + | error in Hartree potential : -0.00656305 Ha -0.17858976 eV + | Sum of eigenvalues per atom : -4479.80269101 eV + | Total energy (T->0) per atom : -7901.34559267 eV <-- do not rely on this value for anything but (periodic) metals + | Electronic free energy per atom : -7901.34559267 eV + + Self-consistency convergence accuracy: + | Change of charge density : 0.2654E-04 + | Change of sum of eigenvalues : -0.1226E-01 eV + | Change of total energy : 0.2898E-06 eV + + End self-consistency iteration # 8 : max(cpu_time) wall_clock(cpu1) + | Time for this iteration : 2.216 s 2.217 s + | Charge density update : 1.004 s 0.998 s + | Density mixing & preconditioning : 0.064 s 0.062 s + | Hartree multipole update : 0.008 s 0.004 s + | Hartree multipole summation : 0.368 s 0.366 s + | Integration : 0.604 s 0.605 s + | Solution of K.-S. eqns. : 0.180 s 0.180 s + | Total energy evaluation : 0.004 s 0.001 s +------------------------------------------------------------ + +------------------------------------------------------------ + Begin self-consistency iteration # 9 + + Date : 20170508, Time : 200346.802 +------------------------------------------------------------ + Evaluating new KS density using the density matrix + Evaluating density matrix + Time summed over all CPUs for getting density from density matrix: real work 29.009 s, elapsed 30.539 s + Integration grid: deviation in total charge (<rho> - N_e) = 0.000000E+00 + Pulay mixing of updated and previous charge densities. + + Evaluating partitioned Hartree potential by multipole expansion. + | Analytical far-field extrapolation by fixed multipoles: + | Hartree multipole sum: apparent total charge = 0.247417E-02 + Summing up the Hartree potential. + Time summed over all CPUs for potential: real work 10.273 s, elapsed 11.298 s + | RMS charge density error from multipole expansion : 0.586738E-02 + | Average real-space part of the electrostatic potential : 0.32114111 eV + + Integrating Hamiltonian matrix: batch-based integration. + Time summed over all CPUs for integration: real work 18.084 s, elapsed 18.895 s + + Solving generalized eigenproblem + Determining occupation numbers for Kohn-Sham eigenstates. + | Chemical potential (Fermi level) in eV : -.55372268E+01 + | Error in electron count due to remaining E_F inaccuracy: 0.25863756E-11 + | Maximum occupation number of highest empty state: 0.00E+00 + + What follows are estimated values for band gap, HOMO, LUMO, etc. + | They are estimated on a discrete k-point grid and not necessarily exact. + | For converged numbers, create a DOS and/or band structure plot on a denser k-grid. + + Highest occupied state (VBM) at -6.04673762 eV (relative to internal zero) + | Occupation number: 2.00000000 + | K-point: 1 at 0.000000 0.000000 0.000000 (in units of recip. lattice) + + Lowest unoccupied state (CBM) at -5.45318564 eV (relative to internal zero) + | Occupation number: 0.00000000 + | K-point: 281 at 0.400000 0.000000 0.400000 (in units of recip. lattice) + + ESTIMATED overall HOMO-LUMO gap: 0.59355198 eV between HOMO at k-point 1 and LUMO at k-point 281 + | This appears to be an indirect band gap. + | Smallest direct gap : 2.56043117 eV for k_point 1 at 0.400000 0.000000 0.400000 (in units of recip. lattice) + The gap value is above 0.2 eV. Unless you are using a very sparse k-point grid, + this system is most likely an insulator or a semiconductor. + + Total energy components: + | Sum of eigenvalues : -329.25927515 Ha -8959.60073636 eV + | XC energy correction : -41.77991036 Ha -1136.88920515 eV + | XC potential correction : 53.95534835 Ha 1468.19972983 eV + | Free-atom electrostatic energy: -263.16647022 Ha -7161.12400869 eV + | Hartree energy correction : -0.48791953 Ha -13.27696583 eV + | Entropy correction : -0.00000000 Ha -0.00000000 eV + | --------------------------- + | Total energy : -580.73822691 Ha -15802.69118621 eV + | Total energy, T -> 0 : -580.73822691 Ha -15802.69118621 eV <-- do not rely on this value for anything but (periodic) metals + | Electronic free energy : -580.73822691 Ha -15802.69118621 eV + + Derived energy quantities: + | Kinetic energy : 582.17774730 Ha 15841.86252906 eV + | Electrostatic energy : -1121.13606385 Ha -30507.66451012 eV + | Energy correction for multipole + | error in Hartree potential : -0.00656332 Ha -0.17859703 eV + | Sum of eigenvalues per atom : -4479.80036818 eV + | Total energy (T->0) per atom : -7901.34559310 eV <-- do not rely on this value for anything but (periodic) metals + | Electronic free energy per atom : -7901.34559310 eV + + Self-consistency convergence accuracy: + | Change of charge density : 0.1476E-04 + | Change of sum of eigenvalues : 0.4646E-02 eV + | Change of total energy : -0.8679E-06 eV + + End self-consistency iteration # 9 : max(cpu_time) wall_clock(cpu1) + | Time for this iteration : 2.212 s 2.211 s + | Charge density update : 1.000 s 0.998 s + | Density mixing & preconditioning : 0.064 s 0.062 s + | Hartree multipole update : 0.008 s 0.005 s + | Hartree multipole summation : 0.368 s 0.366 s + | Integration : 0.600 s 0.598 s + | Solution of K.-S. eqns. : 0.184 s 0.180 s + | Total energy evaluation : 0.004 s 0.001 s +------------------------------------------------------------ + +------------------------------------------------------------ + Begin self-consistency iteration # 10 + + Date : 20170508, Time : 200349.014 +------------------------------------------------------------ + Evaluating new KS density using the density matrix + Evaluating density matrix + Time summed over all CPUs for getting density from density matrix: real work 29.018 s, elapsed 30.543 s + Integration grid: deviation in total charge (<rho> - N_e) = 0.000000E+00 + Pulay mixing of updated and previous charge densities. + + Evaluating partitioned Hartree potential by multipole expansion. + | Analytical far-field extrapolation by fixed multipoles: + | Hartree multipole sum: apparent total charge = 0.247047E-02 + Summing up the Hartree potential. + Time summed over all CPUs for potential: real work 10.265 s, elapsed 11.279 s + | RMS charge density error from multipole expansion : 0.586740E-02 + | Average real-space part of the electrostatic potential : 0.32114035 eV + + Integrating Hamiltonian matrix: batch-based integration. + Time summed over all CPUs for integration: real work 18.076 s, elapsed 18.895 s + + Solving generalized eigenproblem + Determining occupation numbers for Kohn-Sham eigenstates. + | Chemical potential (Fermi level) in eV : -.55372372E+01 + | Error in electron count due to remaining E_F inaccuracy: 0.25863756E-11 + | Maximum occupation number of highest empty state: 0.00E+00 + + What follows are estimated values for band gap, HOMO, LUMO, etc. + | They are estimated on a discrete k-point grid and not necessarily exact. + | For converged numbers, create a DOS and/or band structure plot on a denser k-grid. + + Highest occupied state (VBM) at -6.04674864 eV (relative to internal zero) + | Occupation number: 2.00000000 + | K-point: 1 at 0.000000 0.000000 0.000000 (in units of recip. lattice) + + Lowest unoccupied state (CBM) at -5.45319076 eV (relative to internal zero) + | Occupation number: 0.00000000 + | K-point: 281 at 0.400000 0.000000 0.400000 (in units of recip. lattice) + + ESTIMATED overall HOMO-LUMO gap: 0.59355788 eV between HOMO at k-point 1 and LUMO at k-point 281 + | This appears to be an indirect band gap. + | Smallest direct gap : 2.56043332 eV for k_point 1 at 0.400000 0.000000 0.400000 (in units of recip. lattice) + The gap value is above 0.2 eV. Unless you are using a very sparse k-point grid, + this system is most likely an insulator or a semiconductor. + + Total energy components: + | Sum of eigenvalues : -329.25929963 Ha -8959.60140232 eV + | XC energy correction : -41.77991028 Ha -1136.88920291 eV + | XC potential correction : 53.95534829 Ha 1468.19972815 eV + | Free-atom electrostatic energy: -263.16647022 Ha -7161.12400869 eV + | Hartree energy correction : -0.48789507 Ha -13.27630044 eV + | Entropy correction : -0.00000000 Ha -0.00000000 eV + | --------------------------- + | Total energy : -580.73822691 Ha -15802.69118620 eV + | Total energy, T -> 0 : -580.73822691 Ha -15802.69118620 eV <-- do not rely on this value for anything but (periodic) metals + | Electronic free energy : -580.73822691 Ha -15802.69118620 eV + + Derived energy quantities: + | Kinetic energy : 582.17773856 Ha 15841.86229127 eV + | Electrostatic energy : -1121.13605519 Ha -30507.66427456 eV + | Energy correction for multipole + | error in Hartree potential : -0.00656332 Ha -0.17859690 eV + | Sum of eigenvalues per atom : -4479.80070116 eV + | Total energy (T->0) per atom : -7901.34559310 eV <-- do not rely on this value for anything but (periodic) metals + | Electronic free energy per atom : -7901.34559310 eV + + Self-consistency convergence accuracy: + | Change of charge density : 0.1760E-05 + | Change of sum of eigenvalues : -0.6660E-03 eV + | Change of total energy : 0.4022E-08 eV + + Preliminary charge convergence reached. Turning off preconditioner. + + Electronic self-consistency reached - switching on the force computation. + + End self-consistency iteration # 10 : max(cpu_time) wall_clock(cpu1) + | Time for this iteration : 2.212 s 2.214 s + | Charge density & force component update : 1.000 s 0.998 s + | Density mixing : 0.064 s 0.062 s + | Hartree multipole update : 0.008 s 0.005 s + | Hartree multipole summation : 0.368 s 0.365 s + | Integration : 0.600 s 0.598 s + | Solution of K.-S. eqns. : 0.184 s 0.182 s + | Total energy evaluation : 0.004 s 0.001 s +------------------------------------------------------------ + +------------------------------------------------------------ + Begin self-consistency iteration # 11 + + Date : 20170508, Time : 200351.228 +------------------------------------------------------------ + Evaluating new KS density using the density matrix + Evaluating density matrix + Time summed over all CPUs for getting density from density matrix: real work 29.001 s, elapsed 30.515 s + Integration grid: deviation in total charge (<rho> - N_e) = -7.105427E-15 + Pulay mixing of updated and previous charge densities. + + Evaluating partitioned Hartree potential by multipole expansion. + | Analytical far-field extrapolation by fixed multipoles: + | Hartree multipole sum: apparent total charge = 0.247105E-02 + Summing up the Hartree potential. + Time summed over all CPUs for potential: real work 46.053 s, elapsed 50.996 s + | RMS charge density error from multipole expansion : 0.586744E-02 + | Average real-space part of the electrostatic potential : 0.32114614 eV + + Integrating Hamiltonian matrix: batch-based integration. + Time summed over all CPUs for integration: real work 18.076 s, elapsed 18.897 s + + Solving generalized eigenproblem + Determining occupation numbers for Kohn-Sham eigenstates. + | Chemical potential (Fermi level) in eV : -.55372313E+01 + | Error in electron count due to remaining E_F inaccuracy: 0.25863756E-11 + | Maximum occupation number of highest empty state: 0.00E+00 + + What follows are estimated values for band gap, HOMO, LUMO, etc. + | They are estimated on a discrete k-point grid and not necessarily exact. + | For converged numbers, create a DOS and/or band structure plot on a denser k-grid. + + Highest occupied state (VBM) at -6.04674219 eV (relative to internal zero) + | Occupation number: 2.00000000 + | K-point: 1 at 0.000000 0.000000 0.000000 (in units of recip. lattice) + + Lowest unoccupied state (CBM) at -5.45318741 eV (relative to internal zero) + | Occupation number: 0.00000000 + | K-point: 281 at 0.400000 0.000000 0.400000 (in units of recip. lattice) + + ESTIMATED overall HOMO-LUMO gap: 0.59355478 eV between HOMO at k-point 1 and LUMO at k-point 281 + | This appears to be an indirect band gap. + | Smallest direct gap : 2.56043047 eV for k_point 1 at 0.400000 0.000000 0.400000 (in units of recip. lattice) + The gap value is above 0.2 eV. Unless you are using a very sparse k-point grid, + this system is most likely an insulator or a semiconductor. + + Total energy components: + | Sum of eigenvalues : -329.25928493 Ha -8959.60100249 eV + | XC energy correction : -41.77991110 Ha -1136.88922531 eV + | XC potential correction : 53.95534939 Ha 1468.19975821 eV + | Free-atom electrostatic energy: -263.16647022 Ha -7161.12400869 eV + | Hartree energy correction : -0.48791005 Ha -13.27670795 eV + | Entropy correction : -0.00000000 Ha -0.00000000 eV + | --------------------------- + | Total energy : -580.73822691 Ha -15802.69118623 eV + | Total energy, T -> 0 : -580.73822691 Ha -15802.69118623 eV <-- do not rely on this value for anything but (periodic) metals + | Electronic free energy : -580.73822691 Ha -15802.69118623 eV + + Derived energy quantities: + | Kinetic energy : 582.17774418 Ha 15841.86244414 eV + | Electrostatic energy : -1121.13605998 Ha -30507.66440505 eV + | Energy correction for multipole + | error in Hartree potential : -0.00656332 Ha -0.17859695 eV + | Sum of eigenvalues per atom : -4479.80050124 eV + | Total energy (T->0) per atom : -7901.34559311 eV <-- do not rely on this value for anything but (periodic) metals + | Electronic free energy per atom : -7901.34559311 eV + + atomic forces [eV/Ang]: + ----------------------- + atom # 1 + Hellmann-Feynman : -0.686109E-11 -0.104844E-11 0.152594E-10 + Ionic forces : 0.000000E+00 0.000000E+00 0.000000E+00 + Multipole : -0.658051E-12 -0.100556E-11 -0.604217E-12 + Pulay + GGA : 0.000000E+00 0.000000E+00 0.000000E+00 + Van der Waals : 0.000000E+00 0.000000E+00 0.000000E+00 + ---------------------------------------------------------------- + Total forces( 1) : -0.751914E-11 -0.205400E-11 0.146552E-10 + atom # 2 + Hellmann-Feynman : 0.761733E-08 0.434183E-08 0.228068E-08 + Ionic forces : 0.000000E+00 0.000000E+00 0.000000E+00 + Multipole : 0.268741E-12 0.161313E-12 -0.811101E-12 + Pulay + GGA : 0.000000E+00 0.000000E+00 0.000000E+00 + Van der Waals : 0.000000E+00 0.000000E+00 0.000000E+00 + ---------------------------------------------------------------- + Total forces( 2) : 0.761760E-08 0.434199E-08 0.227986E-08 + + + Self-consistency convergence accuracy: + | Change of charge density : 0.7180E-06 + | Change of sum of eigenvalues : 0.3998E-03 eV + | Change of total energy : -0.2235E-07 eV + | Change of forces : 0.6406E-08 eV/A + + Writing Kohn-Sham eigenvalues. + K-point: 1 at 0.000000 0.000000 0.000000 (in units of recip. lattice) + + State Occupation Eigenvalue [Ha] Eigenvalue [eV] + 1 2.00000 -65.783937 -1790.07201 + 2 2.00000 -65.783937 -1790.07201 + 3 2.00000 -5.140759 -139.88718 + 4 2.00000 -5.140478 -139.87952 + 5 2.00000 -3.524696 -95.91187 + 6 2.00000 -3.524696 -95.91187 + 7 2.00000 -3.524696 -95.91187 + 8 2.00000 -3.524081 -95.89512 + 9 2.00000 -3.524081 -95.89512 + 10 2.00000 -3.524081 -95.89512 + 11 2.00000 -0.661962 -18.01290 + 12 2.00000 -0.222214 -6.04674 + 13 2.00000 -0.222214 -6.04674 + 14 2.00000 -0.222214 -6.04674 + 15 0.00000 -0.128120 -3.48631 + 16 0.00000 -0.128120 -3.48631 + 17 0.00000 -0.128120 -3.48631 + 18 0.00000 -0.098405 -2.67774 + 19 0.00000 0.067722 1.84281 + 20 0.00000 0.067722 1.84281 + 21 0.00000 0.090819 2.47130 + 22 0.00000 0.221336 6.02286 + + What follows are estimated values for band gap, HOMO, LUMO, etc. + | They are estimated on a discrete k-point grid and not necessarily exact. + | For converged numbers, create a DOS and/or band structure plot on a denser k-grid. + + Highest occupied state (VBM) at -6.04674219 eV (relative to internal zero) + | Occupation number: 2.00000000 + | K-point: 1 at 0.000000 0.000000 0.000000 (in units of recip. lattice) + + Lowest unoccupied state (CBM) at -5.45318741 eV (relative to internal zero) + | Occupation number: 0.00000000 + | K-point: 281 at 0.400000 0.000000 0.400000 (in units of recip. lattice) + + ESTIMATED overall HOMO-LUMO gap: 0.59355478 eV between HOMO at k-point 1 and LUMO at k-point 281 + | This appears to be an indirect band gap. + | Smallest direct gap : 2.56043047 eV for k_point 1 at 0.400000 0.000000 0.400000 (in units of recip. lattice) + The gap value is above 0.2 eV. Unless you are using a very sparse k-point grid, + this system is most likely an insulator or a semiconductor. + + Self-consistency cycle converged. + + End self-consistency iteration # 11 : max(cpu_time) wall_clock(cpu1) + | Time for this iteration : 3.396 s 3.400 s + | Charge density & force component update : 1.000 s 0.997 s + | Density mixing : 0.004 s 0.001 s + | Hartree multipole update : 0.008 s 0.005 s + | Hartree multipole summation : 1.612 s 1.611 s + | Integration : 0.600 s 0.597 s + | Solution of K.-S. eqns. : 0.180 s 0.181 s + | Total energy evaluation : 0.004 s 0.005 s +------------------------------------------------------------ + Obtaining max. number of non-zero basis functions in each batch . + Evaluating KS electron density on previously omitted grid points, using the density matrix. + Evaluating density matrix + Performing Hirshfeld analysis of fragment charges and moments. + ---------------------------------------------------------------------- + | Atom 1: Si + | Hirshfeld charge : 0.00060127 + | Free atom volume : 102.74726785 + | Hirshfeld volume : 96.55901451 + | Hirshfeld dipole vector : 0.00000000 0.00000000 0.00000000 + | Hirshfeld dipole moment : 0.00000000 + | Hirshfeld second moments: 0.10666643 -0.00000000 -0.00000000 + | -0.00000000 0.10666643 -0.00000000 + | -0.00000000 -0.00000000 0.10666643 + ---------------------------------------------------------------------- + | Atom 2: Si + | Hirshfeld charge : 0.00060127 + | Free atom volume : 102.74726785 + | Hirshfeld volume : 96.55901451 + | Hirshfeld dipole vector : -0.00000000 -0.00000000 0.00000000 + | Hirshfeld dipole moment : 0.00000000 + | Hirshfeld second moments: 0.10666643 0.00000000 0.00000000 + | 0.00000000 0.10666643 0.00000000 + | 0.00000000 0.00000000 0.10666643 + ---------------------------------------------------------------------- + + | Many-Body Dispersion (MBD@rsSCS) energy + | Total dynamic anisotropic polarizability, \alpha_{ij}(iu), (a.u.) + | ------------------------------------------------------------------- + | u xx yy zz yz xz xy + | 0.000000 49.970 49.970 49.970 0.000 0.000 0.000 + | 0.003624 49.966 49.966 49.966 0.000 0.000 0.000 + | 0.019427 49.852 49.852 49.852 0.000 0.000 0.000 + | 0.049278 49.217 49.217 49.217 0.000 0.000 0.000 + | 0.095887 47.229 47.229 47.229 0.000 0.000 0.000 + | 0.163858 42.679 42.679 42.679 0.000 0.000 0.000 + | 0.260739 34.614 34.614 34.614 0.000 0.000 0.000 + | 0.399006 23.815 23.815 23.815 0.000 0.000 0.000 + | 0.600000 13.626 13.626 13.626 0.000 0.000 0.000 + | 0.902242 6.801 6.801 6.801 0.000 0.000 0.000 + | 1.380693 3.077 3.077 3.077 0.000 0.000 0.000 + | 2.197021 1.248 1.248 1.248 0.000 0.000 0.000 + | 3.754417 0.433 0.433 0.433 0.000 0.000 0.000 + | 7.305481 0.115 0.115 0.115 0.000 0.000 0.000 + | 18.530638 0.018 0.018 0.018 0.000 0.000 0.000 + | 99.337689 0.001 0.001 0.001 0.000 0.000 0.000 + | -------------------------------------------------------------- + | Partitioned atomic C6 coefficients and polarizabilities (a.u.) + | -------------------------------------------------------------- + | ATOM 1 Si 177.843255 24.985056 + | ATOM 2 Si 177.843255 24.985056 + | -------------------------------------------------------------- + | Computing MBD@rsSCS energy... + | -------------------------------------------------------------- + + Total energy components: + | Sum of eigenvalues : -329.25928493 Ha -8959.60100249 eV + | XC energy correction : -41.77991110 Ha -1136.88922531 eV + | XC potential correction : 53.95534939 Ha 1468.19975821 eV + | Free-atom electrostatic energy: -263.16647022 Ha -7161.12400869 eV + | Hartree energy correction : -0.48791005 Ha -13.27670795 eV + | Entropy correction : -0.00000000 Ha -0.00000000 eV + | --------------------------- + | Total energy : -580.75774305 Ha -15803.22224745 eV + | Total energy, T -> 0 : -580.75774305 Ha -15803.22224745 eV <-- do not rely on this value for anything but (periodic) metals + | Electronic free energy : -580.75774305 Ha -15803.22224745 eV + + Derived energy quantities: + | Kinetic energy : 582.17774418 Ha 15841.86244414 eV + | Electrostatic energy : -1121.13605998 Ha -30507.66440505 eV + | Energy correction for multipole + | error in Hartree potential : -0.00656332 Ha -0.17859695 eV + | Sum of eigenvalues per atom : -4479.80050124 eV + | Total energy (T->0) per atom : -7901.61112373 eV <-- do not rely on this value for anything but (periodic) metals + | Electronic free energy per atom : -7901.61112373 eV + + atomic forces [eV/Ang]: + ----------------------- + atom # 1 + Hellmann-Feynman : -0.686109E-11 -0.104844E-11 0.152594E-10 + Ionic forces : 0.000000E+00 0.000000E+00 0.000000E+00 + Multipole : -0.658051E-12 -0.100556E-11 -0.604217E-12 + Pulay + GGA : 0.000000E+00 0.000000E+00 0.000000E+00 + Van der Waals : -0.215091E-05 -0.215091E-05 -0.215091E-05 + ---------------------------------------------------------------- + Total forces( 1) : -0.215091E-05 -0.215091E-05 -0.215089E-05 + atom # 2 + Hellmann-Feynman : 0.761733E-08 0.434183E-08 0.228068E-08 + Ionic forces : 0.000000E+00 0.000000E+00 0.000000E+00 + Multipole : 0.268741E-12 0.161313E-12 -0.811101E-12 + Pulay + GGA : 0.000000E+00 0.000000E+00 0.000000E+00 + Van der Waals : 0.215091E-05 0.215091E-05 0.215091E-05 + ---------------------------------------------------------------- + Total forces( 2) : 0.215852E-05 0.215525E-05 0.215319E-05 + + Timings for VdW correction (Tkatchenko-Scheffler 2009 or later): + | CPU time: 1.288 s, Wall clock time: 1.312 s. + Removing unitary transformations (pure translations, rotations) from forces on atoms. + Atomic forces before filtering: + | Net force on center of mass : 0.761008E-08 0.433994E-08 0.229452E-08 eV/A + Atomic forces after filtering: + | Net force on center of mass : 0.000000E+00 0.000000E+00 0.340283E-21 eV/A + + Energy and forces in a compact form: + | Total energy uncorrected : -0.158032222474505E+05 eV + | Total energy corrected : -0.158032222474505E+05 eV <-- do not rely on this value for anything but (periodic) metals + | Electronic free energy : -0.158032222474505E+05 eV + Total atomic forces (unitary forces cleaned) [eV/Ang]: + | 1 -0.215471770980899E-05 -0.215307717598031E-05 -0.215203775716765E-05 + | 2 0.215471770980899E-05 0.215307717598031E-05 0.215203775716765E-05 + + ------------------------------------ + Start decomposition of the XC Energy + ------------------------------------ + Hartree-Fock part : 0.000000000 Ha 0.000000000 eV + ------------------------------------ + X Energy : -40.685615538 Ha -1107.111928017 eV + C Energy GGA : -1.094295562 Ha -29.777297292 eV + Total XC Energy : -41.779911100 Ha -1136.889225309 eV + LDA X and C from self-consistent density + X Energy LDA : -37.632167773 Ha -1024.023386832 eV + C Energy LDA : -2.146483881 Ha -58.408798202 eV + ------------------------------------ + End decomposition of the XC Energy + ------------------------------------ + + Performing Mulliken charge analysis on all atoms. + Full analysis (per state, per k-point, etc.) will NOT be written to separate file 'Mulliken.out'. + This file can be requested by stating 'output mulliken' explicitly. + Summary of the per-atom charge analysis: + | + | atom electrons charge l=0 l=1 l=2 l=3 l=4 + | 1 14.000000 -0.000000 5.399638 8.330402 0.230614 0.034059 0.005287 + | 2 14.000000 0.000000 5.399638 8.330402 0.230614 0.034059 0.005287 + | + | Total 28.000000 -0.000000 + + Calculating angular momentum projected density of states ... + | Chemical potential is -5.537231 eV. + | writing projected DOS (shifted by the chemical potential) for species Si to file Si_l_proj_dos.dat. + | writing projected DOS (raw data) for species Si to file Si_l_proj_dos_raw.dat. + + Calculating atom-projected density of states ... + | Chemical potential is -5.537231 eV. + | writing projected DOS (shifted by the chemical potential) for species Si to file atom_projected_dos_Si0001.dat. + | writing projected DOS (raw data) for species Si to file atom_proj_dos_Si0001_raw.dat. + | writing projected DOS (shifted by the chemical potential) for species Si to file atom_projected_dos_Si0002.dat. + | writing projected DOS (raw data) for species Si to file atom_proj_dos_Si0002_raw.dat. + Post-scf processing of Kohn-Sham eigenvalues on a denser k-point grid. + | Using dos_kgrid_factors to calculate post-scf total density of states. + | Electron chemical potential: -5.537231257171 eV. + Integrating Hamiltonian matrix: batch-based integration. + Time summed over all CPUs for integration: real work 18.083 s, elapsed 18.933 s + n_k_index 1 myid 11 + n_k_index 1 myid 22 + n_k_index 1 myid 5 + n_k_index 1 myid 12 + n_k_index 1 myid 25 + n_k_index 1 myid 0 + n_k_index 1 myid 16 + n_k_index 1 myid 14 + n_k_index 1 myid 30 + n_k_index 1 myid 2 + n_k_index 1 myid 19 + n_k_index 1 myid 20 + n_k_index 1 myid 29 + n_k_index 1 myid 4 + n_k_index 1 myid 13 + n_k_index 1 myid 8 + n_k_index 1 myid 10 + n_k_index 1 myid 18 + n_k_index 1 myid 26 + n_k_index 1 myid 27 + n_k_index 1 myid 1 + n_k_index 1 myid 17 + n_k_index 1 myid 23 + n_k_index 1 myid 7 + n_k_index 1 myid 6 + Processing batch of k-points: 1 1 1 + n_k_index 1 myid 21 + n_k_index 1 myid 9 + n_k_index 1 myid 15 + n_k_index 1 myid 3 + n_k_index 1 myid 24 + n_k_index 1 myid 31 + n_k_index 1 myid 28 + Processing batch of k-points: 1 1 2 + Processing batch of k-points: 1 1 3 + Processing batch of k-points: 1 1 4 + Processing batch of k-points: 1 1 5 + Processing batch of k-points: 1 1 6 + Processing batch of k-points: 1 1 7 + Processing batch of k-points: 1 1 8 + Processing batch of k-points: 1 2 1 + Processing batch of k-points: 1 2 2 + Processing batch of k-points: 1 2 3 + Processing batch of k-points: 1 2 4 + Processing batch of k-points: 1 2 5 + Processing batch of k-points: 1 2 6 + Processing batch of k-points: 1 2 7 + Processing batch of k-points: 1 2 8 + Processing batch of k-points: 1 3 1 + Processing batch of k-points: 1 3 2 + Processing batch of k-points: 1 3 3 + Processing batch of k-points: 1 3 4 + Processing batch of k-points: 1 3 5 + Processing batch of k-points: 1 3 6 + Processing batch of k-points: 1 3 7 + Processing batch of k-points: 1 3 8 + Processing batch of k-points: 1 4 1 + Processing batch of k-points: 1 4 2 + Processing batch of k-points: 1 4 3 + Processing batch of k-points: 1 4 4 + Processing batch of k-points: 1 4 5 + Processing batch of k-points: 1 4 6 + Processing batch of k-points: 1 4 7 + Processing batch of k-points: 1 4 8 + Processing batch of k-points: 1 5 1 + Processing batch of k-points: 1 5 2 + Processing batch of k-points: 1 5 3 + Processing batch of k-points: 1 5 4 + Processing batch of k-points: 1 5 5 + Processing batch of k-points: 1 5 6 + Processing batch of k-points: 1 5 7 + Processing batch of k-points: 1 5 8 + Processing batch of k-points: 1 6 1 + Processing batch of k-points: 1 6 2 + Processing batch of k-points: 1 6 3 + Processing batch of k-points: 1 6 4 + Processing batch of k-points: 1 6 5 + Processing batch of k-points: 1 6 6 + Processing batch of k-points: 1 6 7 + Processing batch of k-points: 1 6 8 + Processing batch of k-points: 1 7 1 + Processing batch of k-points: 1 7 2 + Processing batch of k-points: 1 7 3 + Processing batch of k-points: 1 7 4 + Processing batch of k-points: 1 7 5 + Processing batch of k-points: 1 7 6 + Processing batch of k-points: 1 7 7 + Processing batch of k-points: 1 7 8 + Processing batch of k-points: 1 8 1 + Processing batch of k-points: 1 8 2 + Processing batch of k-points: 1 8 3 + Processing batch of k-points: 1 8 4 + Processing batch of k-points: 1 8 5 + Processing batch of k-points: 1 8 6 + Processing batch of k-points: 1 8 7 + Processing batch of k-points: 1 8 8 + Processing batch of k-points: 2 1 1 + Processing batch of k-points: 2 1 2 + Processing batch of k-points: 2 1 3 + Processing batch of k-points: 2 1 4 + Processing batch of k-points: 2 1 5 + Processing batch of k-points: 2 1 6 + Processing batch of k-points: 2 1 7 + Processing batch of k-points: 2 1 8 + Processing batch of k-points: 2 2 1 + Processing batch of k-points: 2 2 2 + Processing batch of k-points: 2 2 3 + Processing batch of k-points: 2 2 4 + Processing batch of k-points: 2 2 5 + Processing batch of k-points: 2 2 6 + Processing batch of k-points: 2 2 7 + Processing batch of k-points: 2 2 8 + Processing batch of k-points: 2 3 1 + Processing batch of k-points: 2 3 2 + Processing batch of k-points: 2 3 3 + Processing batch of k-points: 2 3 4 + Processing batch of k-points: 2 3 5 + Processing batch of k-points: 2 3 6 + Processing batch of k-points: 2 3 7 + Processing batch of k-points: 2 3 8 + Processing batch of k-points: 2 4 1 + Processing batch of k-points: 2 4 2 + Processing batch of k-points: 2 4 3 + Processing batch of k-points: 2 4 4 + Processing batch of k-points: 2 4 5 + Processing batch of k-points: 2 4 6 + Processing batch of k-points: 2 4 7 + Processing batch of k-points: 2 4 8 + Processing batch of k-points: 2 5 1 + Processing batch of k-points: 2 5 2 + Processing batch of k-points: 2 5 3 + Processing batch of k-points: 2 5 4 + Processing batch of k-points: 2 5 5 + Processing batch of k-points: 2 5 6 + Processing batch of k-points: 2 5 7 + Processing batch of k-points: 2 5 8 + Processing batch of k-points: 2 6 1 + Processing batch of k-points: 2 6 2 + Processing batch of k-points: 2 6 3 + Processing batch of k-points: 2 6 4 + Processing batch of k-points: 2 6 5 + Processing batch of k-points: 2 6 6 + Processing batch of k-points: 2 6 7 + Processing batch of k-points: 2 6 8 + Processing batch of k-points: 2 7 1 + Processing batch of k-points: 2 7 2 + Processing batch of k-points: 2 7 3 + Processing batch of k-points: 2 7 4 + Processing batch of k-points: 2 7 5 + Processing batch of k-points: 2 7 6 + Processing batch of k-points: 2 7 7 + Processing batch of k-points: 2 7 8 + Processing batch of k-points: 2 8 1 + Processing batch of k-points: 2 8 2 + Processing batch of k-points: 2 8 3 + Processing batch of k-points: 2 8 4 + Processing batch of k-points: 2 8 5 + Processing batch of k-points: 2 8 6 + Processing batch of k-points: 2 8 7 + Processing batch of k-points: 2 8 8 + Processing batch of k-points: 3 1 1 + Processing batch of k-points: 3 1 2 + Processing batch of k-points: 3 1 3 + Processing batch of k-points: 3 1 4 + Processing batch of k-points: 3 1 5 + Processing batch of k-points: 3 1 6 + Processing batch of k-points: 3 1 7 + Processing batch of k-points: 3 1 8 + Processing batch of k-points: 3 2 1 + Processing batch of k-points: 3 2 2 + Processing batch of k-points: 3 2 3 + Processing batch of k-points: 3 2 4 + Processing batch of k-points: 3 2 5 + Processing batch of k-points: 3 2 6 + Processing batch of k-points: 3 2 7 + Processing batch of k-points: 3 2 8 + Processing batch of k-points: 3 3 1 + Processing batch of k-points: 3 3 2 + Processing batch of k-points: 3 3 3 + Processing batch of k-points: 3 3 4 + Processing batch of k-points: 3 3 5 + Processing batch of k-points: 3 3 6 + Processing batch of k-points: 3 3 7 + Processing batch of k-points: 3 3 8 + Processing batch of k-points: 3 4 1 + Processing batch of k-points: 3 4 2 + Processing batch of k-points: 3 4 3 + Processing batch of k-points: 3 4 4 + Processing batch of k-points: 3 4 5 + Processing batch of k-points: 3 4 6 + Processing batch of k-points: 3 4 7 + Processing batch of k-points: 3 4 8 + Processing batch of k-points: 3 5 1 + Processing batch of k-points: 3 5 2 + Processing batch of k-points: 3 5 3 + Processing batch of k-points: 3 5 4 + Processing batch of k-points: 3 5 5 + Processing batch of k-points: 3 5 6 + Processing batch of k-points: 3 5 7 + Processing batch of k-points: 3 5 8 + Processing batch of k-points: 3 6 1 + Processing batch of k-points: 3 6 2 + Processing batch of k-points: 3 6 3 + Processing batch of k-points: 3 6 4 + Processing batch of k-points: 3 6 5 + Processing batch of k-points: 3 6 6 + Processing batch of k-points: 3 6 7 + Processing batch of k-points: 3 6 8 + Processing batch of k-points: 3 7 1 + Processing batch of k-points: 3 7 2 + Processing batch of k-points: 3 7 3 + Processing batch of k-points: 3 7 4 + Processing batch of k-points: 3 7 5 + Processing batch of k-points: 3 7 6 + Processing batch of k-points: 3 7 7 + Processing batch of k-points: 3 7 8 + Processing batch of k-points: 3 8 1 + Processing batch of k-points: 3 8 2 + Processing batch of k-points: 3 8 3 + Processing batch of k-points: 3 8 4 + Processing batch of k-points: 3 8 5 + Processing batch of k-points: 3 8 6 + Processing batch of k-points: 3 8 7 + Processing batch of k-points: 3 8 8 + Processing batch of k-points: 4 1 1 + Processing batch of k-points: 4 1 2 + Processing batch of k-points: 4 1 3 + Processing batch of k-points: 4 1 4 + Processing batch of k-points: 4 1 5 + Processing batch of k-points: 4 1 6 + Processing batch of k-points: 4 1 7 + Processing batch of k-points: 4 1 8 + Processing batch of k-points: 4 2 1 + Processing batch of k-points: 4 2 2 + Processing batch of k-points: 4 2 3 + Processing batch of k-points: 4 2 4 + Processing batch of k-points: 4 2 5 + Processing batch of k-points: 4 2 6 + Processing batch of k-points: 4 2 7 + Processing batch of k-points: 4 2 8 + Processing batch of k-points: 4 3 1 + Processing batch of k-points: 4 3 2 + Processing batch of k-points: 4 3 3 + Processing batch of k-points: 4 3 4 + Processing batch of k-points: 4 3 5 + Processing batch of k-points: 4 3 6 + Processing batch of k-points: 4 3 7 + Processing batch of k-points: 4 3 8 + Processing batch of k-points: 4 4 1 + Processing batch of k-points: 4 4 2 + Processing batch of k-points: 4 4 3 + Processing batch of k-points: 4 4 4 + Processing batch of k-points: 4 4 5 + Processing batch of k-points: 4 4 6 + Processing batch of k-points: 4 4 7 + Processing batch of k-points: 4 4 8 + Processing batch of k-points: 4 5 1 + Processing batch of k-points: 4 5 2 + Processing batch of k-points: 4 5 3 + Processing batch of k-points: 4 5 4 + Processing batch of k-points: 4 5 5 + Processing batch of k-points: 4 5 6 + Processing batch of k-points: 4 5 7 + Processing batch of k-points: 4 5 8 + Processing batch of k-points: 4 6 1 + Processing batch of k-points: 4 6 2 + Processing batch of k-points: 4 6 3 + Processing batch of k-points: 4 6 4 + Processing batch of k-points: 4 6 5 + Processing batch of k-points: 4 6 6 + Processing batch of k-points: 4 6 7 + Processing batch of k-points: 4 6 8 + Processing batch of k-points: 4 7 1 + Processing batch of k-points: 4 7 2 + Processing batch of k-points: 4 7 3 + Processing batch of k-points: 4 7 4 + Processing batch of k-points: 4 7 5 + Processing batch of k-points: 4 7 6 + Processing batch of k-points: 4 7 7 + Processing batch of k-points: 4 7 8 + Processing batch of k-points: 4 8 1 + Processing batch of k-points: 4 8 2 + Processing batch of k-points: 4 8 3 + Processing batch of k-points: 4 8 4 + Processing batch of k-points: 4 8 5 + Processing batch of k-points: 4 8 6 + Processing batch of k-points: 4 8 7 + Processing batch of k-points: 4 8 8 + Processing batch of k-points: 5 1 1 + Processing batch of k-points: 5 1 2 + Processing batch of k-points: 5 1 3 + Processing batch of k-points: 5 1 4 + Processing batch of k-points: 5 1 5 + Processing batch of k-points: 5 1 6 + Processing batch of k-points: 5 1 7 + Processing batch of k-points: 5 1 8 + Processing batch of k-points: 5 2 1 + Processing batch of k-points: 5 2 2 + Processing batch of k-points: 5 2 3 + Processing batch of k-points: 5 2 4 + Processing batch of k-points: 5 2 5 + Processing batch of k-points: 5 2 6 + Processing batch of k-points: 5 2 7 + Processing batch of k-points: 5 2 8 + Processing batch of k-points: 5 3 1 + Processing batch of k-points: 5 3 2 + Processing batch of k-points: 5 3 3 + Processing batch of k-points: 5 3 4 + Processing batch of k-points: 5 3 5 + Processing batch of k-points: 5 3 6 + Processing batch of k-points: 5 3 7 + Processing batch of k-points: 5 3 8 + Processing batch of k-points: 5 4 1 + Processing batch of k-points: 5 4 2 + Processing batch of k-points: 5 4 3 + Processing batch of k-points: 5 4 4 + Processing batch of k-points: 5 4 5 + Processing batch of k-points: 5 4 6 + Processing batch of k-points: 5 4 7 + Processing batch of k-points: 5 4 8 + Processing batch of k-points: 5 5 1 + Processing batch of k-points: 5 5 2 + Processing batch of k-points: 5 5 3 + Processing batch of k-points: 5 5 4 + Processing batch of k-points: 5 5 5 + Processing batch of k-points: 5 5 6 + Processing batch of k-points: 5 5 7 + Processing batch of k-points: 5 5 8 + Processing batch of k-points: 5 6 1 + Processing batch of k-points: 5 6 2 + Processing batch of k-points: 5 6 3 + Processing batch of k-points: 5 6 4 + Processing batch of k-points: 5 6 5 + Processing batch of k-points: 5 6 6 + Processing batch of k-points: 5 6 7 + Processing batch of k-points: 5 6 8 + Processing batch of k-points: 5 7 1 + Processing batch of k-points: 5 7 2 + Processing batch of k-points: 5 7 3 + Processing batch of k-points: 5 7 4 + Processing batch of k-points: 5 7 5 + Processing batch of k-points: 5 7 6 + Processing batch of k-points: 5 7 7 + Processing batch of k-points: 5 7 8 + Processing batch of k-points: 5 8 1 + Processing batch of k-points: 5 8 2 + Processing batch of k-points: 5 8 3 + Processing batch of k-points: 5 8 4 + Processing batch of k-points: 5 8 5 + Processing batch of k-points: 5 8 6 + Processing batch of k-points: 5 8 7 + Processing batch of k-points: 5 8 8 + Processing batch of k-points: 6 1 1 + Processing batch of k-points: 6 1 2 + Processing batch of k-points: 6 1 3 + Processing batch of k-points: 6 1 4 + Processing batch of k-points: 6 1 5 + Processing batch of k-points: 6 1 6 + Processing batch of k-points: 6 1 7 + Processing batch of k-points: 6 1 8 + Processing batch of k-points: 6 2 1 + Processing batch of k-points: 6 2 2 + Processing batch of k-points: 6 2 3 + Processing batch of k-points: 6 2 4 + Processing batch of k-points: 6 2 5 + Processing batch of k-points: 6 2 6 + Processing batch of k-points: 6 2 7 + Processing batch of k-points: 6 2 8 + Processing batch of k-points: 6 3 1 + Processing batch of k-points: 6 3 2 + Processing batch of k-points: 6 3 3 + Processing batch of k-points: 6 3 4 + Processing batch of k-points: 6 3 5 + Processing batch of k-points: 6 3 6 + Processing batch of k-points: 6 3 7 + Processing batch of k-points: 6 3 8 + Processing batch of k-points: 6 4 1 + Processing batch of k-points: 6 4 2 + Processing batch of k-points: 6 4 3 + Processing batch of k-points: 6 4 4 + Processing batch of k-points: 6 4 5 + Processing batch of k-points: 6 4 6 + Processing batch of k-points: 6 4 7 + Processing batch of k-points: 6 4 8 + Processing batch of k-points: 6 5 1 + Processing batch of k-points: 6 5 2 + Processing batch of k-points: 6 5 3 + Processing batch of k-points: 6 5 4 + Processing batch of k-points: 6 5 5 + Processing batch of k-points: 6 5 6 + Processing batch of k-points: 6 5 7 + Processing batch of k-points: 6 5 8 + Processing batch of k-points: 6 6 1 + Processing batch of k-points: 6 6 2 + Processing batch of k-points: 6 6 3 + Processing batch of k-points: 6 6 4 + Processing batch of k-points: 6 6 5 + Processing batch of k-points: 6 6 6 + Processing batch of k-points: 6 6 7 + Processing batch of k-points: 6 6 8 + Processing batch of k-points: 6 7 1 + Processing batch of k-points: 6 7 2 + Processing batch of k-points: 6 7 3 + Processing batch of k-points: 6 7 4 + Processing batch of k-points: 6 7 5 + Processing batch of k-points: 6 7 6 + Processing batch of k-points: 6 7 7 + Processing batch of k-points: 6 7 8 + Processing batch of k-points: 6 8 1 + Processing batch of k-points: 6 8 2 + Processing batch of k-points: 6 8 3 + Processing batch of k-points: 6 8 4 + Processing batch of k-points: 6 8 5 + Processing batch of k-points: 6 8 6 + Processing batch of k-points: 6 8 7 + Processing batch of k-points: 6 8 8 + Processing batch of k-points: 7 1 1 + Processing batch of k-points: 7 1 2 + Processing batch of k-points: 7 1 3 + Processing batch of k-points: 7 1 4 + Processing batch of k-points: 7 1 5 + Processing batch of k-points: 7 1 6 + Processing batch of k-points: 7 1 7 + Processing batch of k-points: 7 1 8 + Processing batch of k-points: 7 2 1 + Processing batch of k-points: 7 2 2 + Processing batch of k-points: 7 2 3 + Processing batch of k-points: 7 2 4 + Processing batch of k-points: 7 2 5 + Processing batch of k-points: 7 2 6 + Processing batch of k-points: 7 2 7 + Processing batch of k-points: 7 2 8 + Processing batch of k-points: 7 3 1 + Processing batch of k-points: 7 3 2 + Processing batch of k-points: 7 3 3 + Processing batch of k-points: 7 3 4 + Processing batch of k-points: 7 3 5 + Processing batch of k-points: 7 3 6 + Processing batch of k-points: 7 3 7 + Processing batch of k-points: 7 3 8 + Processing batch of k-points: 7 4 1 + Processing batch of k-points: 7 4 2 + Processing batch of k-points: 7 4 3 + Processing batch of k-points: 7 4 4 + Processing batch of k-points: 7 4 5 + Processing batch of k-points: 7 4 6 + Processing batch of k-points: 7 4 7 + Processing batch of k-points: 7 4 8 + Processing batch of k-points: 7 5 1 + Processing batch of k-points: 7 5 2 + Processing batch of k-points: 7 5 3 + Processing batch of k-points: 7 5 4 + Processing batch of k-points: 7 5 5 + Processing batch of k-points: 7 5 6 + Processing batch of k-points: 7 5 7 + Processing batch of k-points: 7 5 8 + Processing batch of k-points: 7 6 1 + Processing batch of k-points: 7 6 2 + Processing batch of k-points: 7 6 3 + Processing batch of k-points: 7 6 4 + Processing batch of k-points: 7 6 5 + Processing batch of k-points: 7 6 6 + Processing batch of k-points: 7 6 7 + Processing batch of k-points: 7 6 8 + Processing batch of k-points: 7 7 1 + Processing batch of k-points: 7 7 2 + Processing batch of k-points: 7 7 3 + Processing batch of k-points: 7 7 4 + Processing batch of k-points: 7 7 5 + Processing batch of k-points: 7 7 6 + Processing batch of k-points: 7 7 7 + Processing batch of k-points: 7 7 8 + Processing batch of k-points: 7 8 1 + Processing batch of k-points: 7 8 2 + Processing batch of k-points: 7 8 3 + Processing batch of k-points: 7 8 4 + Processing batch of k-points: 7 8 5 + Processing batch of k-points: 7 8 6 + Processing batch of k-points: 7 8 7 + Processing batch of k-points: 7 8 8 + Processing batch of k-points: 8 1 1 + Processing batch of k-points: 8 1 2 + Processing batch of k-points: 8 1 3 + Processing batch of k-points: 8 1 4 + Processing batch of k-points: 8 1 5 + Processing batch of k-points: 8 1 6 + Processing batch of k-points: 8 1 7 + Processing batch of k-points: 8 1 8 + Processing batch of k-points: 8 2 1 + Processing batch of k-points: 8 2 2 + Processing batch of k-points: 8 2 3 + Processing batch of k-points: 8 2 4 + Processing batch of k-points: 8 2 5 + Processing batch of k-points: 8 2 6 + Processing batch of k-points: 8 2 7 + Processing batch of k-points: 8 2 8 + Processing batch of k-points: 8 3 1 + Processing batch of k-points: 8 3 2 + Processing batch of k-points: 8 3 3 + Processing batch of k-points: 8 3 4 + Processing batch of k-points: 8 3 5 + Processing batch of k-points: 8 3 6 + Processing batch of k-points: 8 3 7 + Processing batch of k-points: 8 3 8 + Processing batch of k-points: 8 4 1 + Processing batch of k-points: 8 4 2 + Processing batch of k-points: 8 4 3 + Processing batch of k-points: 8 4 4 + Processing batch of k-points: 8 4 5 + Processing batch of k-points: 8 4 6 + Processing batch of k-points: 8 4 7 + Processing batch of k-points: 8 4 8 + Processing batch of k-points: 8 5 1 + Processing batch of k-points: 8 5 2 + Processing batch of k-points: 8 5 3 + Processing batch of k-points: 8 5 4 + Processing batch of k-points: 8 5 5 + Processing batch of k-points: 8 5 6 + Processing batch of k-points: 8 5 7 + Processing batch of k-points: 8 5 8 + Processing batch of k-points: 8 6 1 + Processing batch of k-points: 8 6 2 + Processing batch of k-points: 8 6 3 + Processing batch of k-points: 8 6 4 + Processing batch of k-points: 8 6 5 + Processing batch of k-points: 8 6 6 + Processing batch of k-points: 8 6 7 + Processing batch of k-points: 8 6 8 + Processing batch of k-points: 8 7 1 + Processing batch of k-points: 8 7 2 + Processing batch of k-points: 8 7 3 + Processing batch of k-points: 8 7 4 + Processing batch of k-points: 8 7 5 + Processing batch of k-points: 8 7 6 + Processing batch of k-points: 8 7 7 + Processing batch of k-points: 8 7 8 + Processing batch of k-points: 8 8 1 + Processing batch of k-points: 8 8 2 + Processing batch of k-points: 8 8 3 + Processing batch of k-points: 8 8 4 + Processing batch of k-points: 8 8 5 + Processing batch of k-points: 8 8 6 + Processing batch of k-points: 8 8 7 + Processing batch of k-points: 8 8 8 + | writing perturbative DOS (shifted by electron chemical potential) to file KS_dos_total.dat + | writing perturbative DOS (raw data) to file KS_dos_total_raw.dat + + Perturbative DOS : max(cpu_time) wall_clock(cpu1) + | Total Time : 314.252 314.965 + ------------------------------------------------------------ + + ------------------------------------------------------------------- + Writing the requested band structure output: + ------------------------------------------------------------------- + + Integrating Hamiltonian matrix: batch-based integration. + Time summed over all CPUs for integration: real work 18.084 s, elapsed 18.924 s + + Treating all 50 k-points in band plot segment # 1: + + +"Band gap" along reciprocal space direction number: 1 + | Lowest unoccupied state: -4.51049237 eV + | Highest occupied state : -6.04674219 eV + | Energy difference : 1.53624982 eV + + + Treating all 50 k-points in band plot segment # 2: + + +"Band gap" along reciprocal space direction number: 2 + | Lowest unoccupied state: -5.46117958 eV + | Highest occupied state : -6.04674219 eV + | Energy difference : 0.58556261 eV + + + Treating all 50 k-points in band plot segment # 3: + + +"Band gap" along reciprocal space direction number: 3 + | Lowest unoccupied state: -5.31586950 eV + | Highest occupied state : -8.90474329 eV + | Energy difference : 3.58887379 eV + + + Treating all 50 k-points in band plot segment # 4: + + +"Band gap" along reciprocal space direction number: 4 + | Lowest unoccupied state: -4.82848823 eV + | Highest occupied state : -8.47749367 eV + | Energy difference : 3.64900544 eV + + "Band gap" of total set of bands: + | Lowest unoccupied state: -5.46117958 eV + | Highest occupied state : -6.04674219 eV + | Energy difference : 0.58556261 eV + + + Band Structure : max(cpu_time) wall_clock(cpu1) + | Total Time : 0.704 0.899 + ------------------------------------------------------------ + +------------------------------------------------------------------------------ + Final output of selected total energy values: + + The following output summarizes some interesting total energy values + at the end of a run (AFTER all relaxation, molecular dynamics, etc.). + + | Total energy of the DFT / Hartree-Fock s.c.f. calculation : -15803.222247450 eV + | Final zero-broadening corrected energy (caution - metals only) : -15803.222247450 eV + | For reference only, the value of 1 Hartree used in FHI-aims is : 27.211384500 eV + + Before relying on these values, please be sure to understand exactly which + total energy value is referred to by a given number. Different objects may + all carry the same name 'total energy'. Definitions: + + Total energy of the DFT / Hartree-Fock s.c.f. calculation: + | Note that this energy does not include ANY quantities calculated after the + | s.c.f. cycle, in particular not ANY RPA, MP2, etc. many-body perturbation terms. + + Final zero-broadening corrected energy: + | For metallic systems only, a broadening of the occupation numbers at the Fermi + | level can be extrapolated back to zero broadening by an electron-gas inspired + | formula. For all systems that are not real metals, this value can be + | meaningless and should be avoided. + +------------------------------------------------------------------------------ + Methods described in the following list of references were used in this FHI-aims run. + If you publish the results, please make sure to cite these reference if they apply. + FHI-aims is an academic code, and for our developers (often, Ph.D. students + and postdocs), scientific credit in the community is essential. + Thank you for helping us! + + For any use of FHI-aims, please cite: + + Volker Blum, Ralf Gehrke, Felix Hanke, Paula Havu, Ville Havu, + Xinguo Ren, Karsten Reuter, and Matthias Scheffler + 'Ab initio molecular simulations with numeric atom-centered orbitals' + Computer Physics Communications 180, 2175-2196 (2009) + http://dx.doi.org/10.1016/j.cpc.2009.06.022 + + + For the real-space grid partitioning and parallelization used in this calculation, please cite: + + Ville Havu, Volker Blum, Paula Havu, and Matthias Scheffler, + 'Efficient O(N) integration for all-electron electronic structure calculation' + 'using numerically tabulated basis functions' + Journal of Computational Physics 228, 8367-8379 (2009). + http://dx.doi.org/10.1016/j.jcp.2009.08.008 + + + The high-level electronic structure method used in your calculation + employed our efficient localized resolution of identity for the Coulomb operator. + Some calculations, especially large-scale hybrid density functional theory, + are only possible thanks to this development. For this feature, please cite: + + Arvid Ihrig, Jürgen Wieferink, Igor Ying Zhang, Matti Ropo, Xinguo Ren, + Patrick Rinke, Matthias Scheffler, and Volker Blum, + 'Accurate localized resolution of identity approach for linear-scaling + hybrid density functionals and for many-body perturbation theory' + New Journal of Physics 117, 093020 (2015). + http://dx.doi.org/10.1088/1367-2630/17/9/093020 + + Of course, there are many other important community references, e.g., those cited in the + above references. Our list is limited to references that describe implementations in the + FHI-aims code. The reason is purely practical (length of this list) - please credit others as well. + +------------------------------------------------------------ + Leaving FHI-aims. + Date : 20170508, Time : 200920.018 + + Computational steps: + | Number of self-consistency cycles : 11 + + Detailed time accounting : max(cpu_time) wall_clock(cpu1) + | Total time : 352.902 s 353.612 s + | Preparation time : 0.244 s 0.255 s + | Boundary condition initalization : 0.300 s 0.301 s + | Grid partitioning : 0.120 s 0.130 s + | Preloading free-atom quantities on grid : 0.012 s 0.011 s + | Free-atom superposition energy : 0.016 s 0.017 s + | Total time for integrations : 7.708 s 7.716 s + | Total time for solution of K.-S. equations : 2.288 s 2.316 s + | Total time for density & force components : 11.009 s 10.990 s + | Total time for mixing & preconditioning : 0.656 s 0.647 s + | Total time for Hartree multipole update : 0.084 s 0.052 s + | Total time for Hartree multipole sum : 5.244 s 5.231 s + | Total time for total energy evaluation : 0.048 s 0.020 s + | Total time for scaled ZORA corrections : 0.000 s 0.000 s + | Total time for vdW correction : 1.288 s 1.312 s + | Total time for band structures, DOS : 315.548 s 315.864 s + + Have a nice day. +------------------------------------------------------------ diff --git a/tests/data/normalizers/dos/dos_si_fhiaims/band1001.out b/tests/data/normalizers/dos/dos_si_fhiaims/band1001.out new file mode 100644 index 0000000000000000000000000000000000000000..804ed078cebc68c67f103469890309e10d104b7e --- /dev/null +++ b/tests/data/normalizers/dos/dos_si_fhiaims/band1001.out @@ -0,0 +1,50 @@ + 1 0.5000000 0.5000000 0.5000000 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34804 2.00000 -134.34420 2.00000 -90.37588 2.00000 -90.37588 2.00000 -90.37295 2.00000 -90.35963 2.00000 -90.35666 2.00000 -90.35666 2.00000 -10.14779 2.00000 -7.48497 2.00000 -1.71455 2.00000 -1.71455 0.00000 1.02674 0.00000 2.87643 0.00000 2.87643 0.00000 7.93883 0.00000 10.20092 0.00000 10.20092 0.00000 10.98088 0.00000 11.13556 + 2 0.4897959 0.4897959 0.4897959 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34804 2.00000 -134.34420 2.00000 -90.37588 2.00000 -90.37588 2.00000 -90.37295 2.00000 -90.35963 2.00000 -90.35666 2.00000 -90.35666 2.00000 -10.15378 2.00000 -7.47640 2.00000 -1.71380 2.00000 -1.71380 0.00000 1.02761 0.00000 2.87726 0.00000 2.87726 0.00000 7.93977 0.00000 10.15549 0.00000 10.15549 0.00000 10.95785 0.00000 11.18404 + 3 0.4795918 0.4795918 0.4795918 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34805 2.00000 -134.34419 2.00000 -90.37587 2.00000 -90.37587 2.00000 -90.37296 2.00000 -90.35963 2.00000 -90.35666 2.00000 -90.35666 2.00000 -10.17152 2.00000 -7.45093 2.00000 -1.71155 2.00000 -1.71155 0.00000 1.03021 0.00000 2.87974 0.00000 2.87974 0.00000 7.94255 0.00000 10.03984 0.00000 10.03984 0.00000 10.89225 0.00000 11.30880 + 4 0.4693878 0.4693878 0.4693878 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34807 2.00000 -134.34418 2.00000 -90.37587 2.00000 -90.37587 2.00000 -90.37297 2.00000 -90.35962 2.00000 -90.35667 2.00000 -90.35667 2.00000 -10.20033 2.00000 -7.40924 2.00000 -1.70780 2.00000 -1.70780 0.00000 1.03454 0.00000 2.88385 0.00000 2.88385 0.00000 7.94705 0.00000 9.88687 0.00000 9.88687 0.00000 10.79245 0.00000 11.47692 + 5 0.4591837 0.4591837 0.4591837 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34809 2.00000 -134.34416 2.00000 -90.37586 2.00000 -90.37586 2.00000 -90.37298 2.00000 -90.35960 2.00000 -90.35667 2.00000 -90.35667 2.00000 -10.23920 2.00000 -7.35235 2.00000 -1.70255 2.00000 -1.70255 0.00000 1.04060 0.00000 2.88953 0.00000 2.88953 0.00000 7.95307 0.00000 9.71677 0.00000 9.71677 0.00000 10.66788 0.00000 11.66815 + 6 0.4489796 0.4489796 0.4489796 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34811 2.00000 -134.34413 2.00000 -90.37585 2.00000 -90.37585 2.00000 -90.37300 2.00000 -90.35958 2.00000 -90.35669 2.00000 -90.35669 2.00000 -10.28689 2.00000 -7.28149 2.00000 -1.69580 2.00000 -1.69580 0.00000 1.04838 0.00000 2.89670 0.00000 2.89670 0.00000 7.96027 0.00000 9.53942 0.00000 9.53942 0.00000 10.52658 0.00000 11.87252 + 7 0.4387755 0.4387755 0.4387755 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34814 2.00000 -134.34410 2.00000 -90.37584 2.00000 -90.37584 2.00000 -90.37302 2.00000 -90.35956 2.00000 -90.35670 2.00000 -90.35670 2.00000 -10.34210 2.00000 -7.19798 2.00000 -1.68755 2.00000 -1.68755 0.00000 1.05788 0.00000 2.90526 0.00000 2.90526 0.00000 7.96820 0.00000 9.35975 0.00000 9.35975 0.00000 10.37471 0.00000 12.08496 + 8 0.4285714 0.4285714 0.4285714 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34818 2.00000 -134.34407 2.00000 -90.37582 2.00000 -90.37582 2.00000 -90.37304 2.00000 -90.35954 2.00000 -90.35671 2.00000 -90.35671 2.00000 -10.40352 2.00000 -7.10315 2.00000 -1.67781 2.00000 -1.67781 0.00000 1.06909 0.00000 2.91508 0.00000 2.91508 0.00000 7.97622 0.00000 9.18042 0.00000 9.18042 0.00000 10.21686 0.00000 12.30263 + 9 0.4183673 0.4183673 0.4183673 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34822 2.00000 -134.34403 2.00000 -90.37580 2.00000 -90.37580 2.00000 -90.37307 2.00000 -90.35951 2.00000 -90.35673 2.00000 -90.35673 2.00000 -10.46994 2.00000 -6.99821 2.00000 -1.66658 2.00000 -1.66658 0.00000 1.08200 0.00000 2.92603 0.00000 2.92603 0.00000 7.98343 0.00000 9.00306 0.00000 9.00306 0.00000 10.05664 0.00000 12.52366 + 10 0.4081633 0.4081633 0.4081633 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34826 2.00000 -134.34398 2.00000 -90.37578 2.00000 -90.37578 2.00000 -90.37310 2.00000 -90.35948 2.00000 -90.35675 2.00000 -90.35675 2.00000 -10.54025 2.00000 -6.88430 2.00000 -1.65386 2.00000 -1.65386 0.00000 1.09660 0.00000 2.93793 0.00000 2.93793 0.00000 7.98860 0.00000 8.82871 0.00000 8.82871 0.00000 9.89712 0.00000 12.74663 + 11 0.3979592 0.3979592 0.3979592 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34831 2.00000 -134.34394 2.00000 -90.37576 2.00000 -90.37576 2.00000 -90.37314 2.00000 -90.35944 2.00000 -90.35677 2.00000 -90.35677 2.00000 -10.61350 2.00000 -6.76238 2.00000 -1.63965 2.00000 -1.63965 0.00000 1.11287 0.00000 2.95055 0.00000 2.95055 0.00000 7.99005 0.00000 8.65819 0.00000 8.65819 0.00000 9.74126 0.00000 12.97029 + 12 0.3877551 0.3877551 0.3877551 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34836 2.00000 -134.34389 2.00000 -90.37574 2.00000 -90.37574 2.00000 -90.37317 2.00000 -90.35940 2.00000 -90.35679 2.00000 -90.35679 2.00000 -10.68884 2.00000 -6.63331 2.00000 -1.62396 2.00000 -1.62396 0.00000 1.13080 0.00000 2.96369 0.00000 2.96369 0.00000 7.98547 0.00000 8.49209 0.00000 8.49209 0.00000 9.59221 0.00000 13.19337 + 13 0.3775510 0.3775510 0.3775510 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34841 2.00000 -134.34383 2.00000 -90.37571 2.00000 -90.37571 2.00000 -90.37321 2.00000 -90.35936 2.00000 -90.35682 2.00000 -90.35682 2.00000 -10.76558 2.00000 -6.49782 2.00000 -1.60679 2.00000 -1.60679 0.00000 1.15036 0.00000 2.97705 0.00000 2.97705 0.00000 7.97186 0.00000 8.33099 0.00000 8.33099 0.00000 9.45357 0.00000 13.41443 + 14 0.3673469 0.3673469 0.3673469 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34846 2.00000 -134.34378 2.00000 -90.37569 2.00000 -90.37569 2.00000 -90.37326 2.00000 -90.35932 2.00000 -90.35685 2.00000 -90.35685 2.00000 -10.84310 2.00000 -6.35655 2.00000 -1.58816 2.00000 -1.58816 0.00000 1.17155 0.00000 2.99035 0.00000 2.99035 0.00000 7.94552 0.00000 8.17536 0.00000 8.17536 0.00000 9.32940 0.00000 13.63175 + 15 0.3571429 0.3571429 0.3571429 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34852 2.00000 -134.34372 2.00000 -90.37566 2.00000 -90.37566 2.00000 -90.37330 2.00000 -90.35927 2.00000 -90.35688 2.00000 -90.35688 2.00000 -10.92091 2.00000 -6.21003 2.00000 -1.56807 2.00000 -1.56807 0.00000 1.19433 0.00000 3.00325 0.00000 3.00325 0.00000 7.90247 0.00000 8.02569 0.00000 8.02569 0.00000 9.22393 0.00000 13.84317 + 16 0.3469388 0.3469388 0.3469388 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34858 2.00000 -134.34366 2.00000 -90.37563 2.00000 -90.37563 2.00000 -90.37335 2.00000 -90.35923 2.00000 -90.35691 2.00000 -90.35691 2.00000 -10.99856 2.00000 -6.05872 2.00000 -1.54654 2.00000 -1.54654 0.00000 1.21867 0.00000 3.01538 0.00000 3.01538 0.00000 7.83926 0.00000 7.88245 0.00000 7.88245 0.00000 9.14064 0.00000 13.73069 + 17 0.3367347 0.3367347 0.3367347 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34864 2.00000 -134.34360 2.00000 -90.37559 2.00000 -90.37559 2.00000 -90.37339 2.00000 -90.35918 2.00000 -90.35694 2.00000 -90.35694 2.00000 -11.07571 2.00000 -5.90302 2.00000 -1.52357 2.00000 -1.52357 0.00000 1.24455 0.00000 3.02635 0.00000 3.02635 0.00000 7.74613 0.00000 7.74613 0.00000 7.75421 0.00000 9.08124 0.00000 13.57065 + 18 0.3265306 0.3265306 0.3265306 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34870 2.00000 -134.34354 2.00000 -90.37556 2.00000 -90.37556 2.00000 -90.37344 2.00000 -90.35913 2.00000 -90.35697 2.00000 -90.35697 2.00000 -11.15205 2.00000 -5.74328 2.00000 -1.49919 2.00000 -1.49919 0.00000 1.27193 0.00000 3.03572 0.00000 3.03572 0.00000 7.61719 0.00000 7.61719 0.00000 7.64795 0.00000 9.04494 0.00000 13.38408 + 19 0.3163265 0.3163265 0.3163265 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34876 2.00000 -134.34348 2.00000 -90.37553 2.00000 -90.37553 2.00000 -90.37349 2.00000 -90.35907 2.00000 -90.35701 2.00000 -90.35701 2.00000 -11.22731 2.00000 -5.57980 2.00000 -1.47341 2.00000 -1.47341 0.00000 1.30076 0.00000 3.04305 0.00000 3.04305 0.00000 7.49613 0.00000 7.49613 0.00000 7.52308 0.00000 9.02891 0.00000 13.18012 + 20 0.3061225 0.3061225 0.3061225 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34882 2.00000 -134.34342 2.00000 -90.37549 2.00000 -90.37549 2.00000 -90.37355 2.00000 -90.35902 2.00000 -90.35704 2.00000 -90.35704 2.00000 -11.30128 2.00000 -5.41285 2.00000 -1.44626 2.00000 -1.44626 0.00000 1.33101 0.00000 3.04786 0.00000 3.04786 0.00000 7.38308 0.00000 7.38343 0.00000 7.38343 0.00000 9.02930 0.00000 12.96583 + 21 0.2959184 0.2959184 0.2959184 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34888 2.00000 -134.34336 2.00000 -90.37545 2.00000 -90.37545 2.00000 -90.37360 2.00000 -90.35896 2.00000 -90.35708 2.00000 -90.35708 2.00000 -11.37376 2.00000 -5.24269 2.00000 -1.41776 2.00000 -1.41776 0.00000 1.36261 0.00000 3.04970 0.00000 3.04970 0.00000 7.23139 0.00000 7.27957 0.00000 7.27957 0.00000 9.04221 0.00000 12.74655 + 22 0.2857143 0.2857143 0.2857143 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34894 2.00000 -134.34330 2.00000 -90.37542 2.00000 -90.37542 2.00000 -90.37365 2.00000 -90.35891 2.00000 -90.35712 2.00000 -90.35712 2.00000 -11.44461 2.00000 -5.06952 2.00000 -1.38795 2.00000 -1.38795 0.00000 1.39550 0.00000 3.04809 0.00000 3.04809 0.00000 7.07087 0.00000 7.18499 0.00000 7.18499 0.00000 9.06412 0.00000 12.52637 + 23 0.2755102 0.2755102 0.2755102 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34900 2.00000 -134.34324 2.00000 -90.37538 2.00000 -90.37538 2.00000 -90.37371 2.00000 -90.35885 2.00000 -90.35715 2.00000 -90.35715 2.00000 -11.51367 2.00000 -4.89357 2.00000 -1.35687 2.00000 -1.35687 0.00000 1.42963 0.00000 3.04262 0.00000 3.04262 0.00000 6.90374 0.00000 7.10010 0.00000 7.10010 0.00000 9.09196 0.00000 12.30862 + 24 0.2653061 0.2653061 0.2653061 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34906 2.00000 -134.34318 2.00000 -90.37534 2.00000 -90.37534 2.00000 -90.37376 2.00000 -90.35880 2.00000 -90.35719 2.00000 -90.35719 2.00000 -11.58082 2.00000 -4.71503 2.00000 -1.32455 2.00000 -1.32455 0.00000 1.46491 0.00000 3.03289 0.00000 3.03289 0.00000 6.73164 0.00000 7.02525 0.00000 7.02525 0.00000 9.12297 0.00000 12.09622 + 25 0.2551020 0.2551020 0.2551020 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34912 2.00000 -134.34312 2.00000 -90.37530 2.00000 -90.37530 2.00000 -90.37382 2.00000 -90.35874 2.00000 -90.35723 2.00000 -90.35723 2.00000 -11.64597 2.00000 -4.53409 2.00000 -1.29105 2.00000 -1.29105 0.00000 1.50125 0.00000 3.01860 0.00000 3.01860 0.00000 6.55579 0.00000 6.96071 0.00000 6.96071 0.00000 9.15454 0.00000 11.89194 + 26 0.2448980 0.2448980 0.2448980 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34918 2.00000 -134.34306 2.00000 -90.37526 2.00000 -90.37526 2.00000 -90.37387 2.00000 -90.35869 2.00000 -90.35727 2.00000 -90.35727 2.00000 -11.70903 2.00000 -4.35095 2.00000 -1.25643 2.00000 -1.25643 0.00000 1.53857 0.00000 2.99951 0.00000 2.99951 0.00000 6.37707 0.00000 6.90666 0.00000 6.90666 0.00000 9.18396 0.00000 11.69864 + 27 0.2346939 0.2346939 0.2346939 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34924 2.00000 -134.34300 2.00000 -90.37522 2.00000 -90.37522 2.00000 -90.37392 2.00000 -90.35863 2.00000 -90.35731 2.00000 -90.35731 2.00000 -11.76990 2.00000 -4.16578 2.00000 -1.22075 2.00000 -1.22075 0.00000 1.57673 0.00000 2.97551 0.00000 2.97551 0.00000 6.19613 0.00000 6.86316 0.00000 6.86316 0.00000 9.20827 0.00000 11.51943 + 28 0.2244898 0.2244898 0.2244898 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34929 2.00000 -134.34295 2.00000 -90.37518 2.00000 -90.37518 2.00000 -90.37397 2.00000 -90.35858 2.00000 -90.35735 2.00000 -90.35735 2.00000 -11.82853 2.00000 -3.97880 2.00000 -1.18409 2.00000 -1.18409 0.00000 1.61563 0.00000 2.94659 0.00000 2.94659 0.00000 6.01347 0.00000 6.83011 0.00000 6.83011 0.00000 9.22424 0.00000 11.35775 + 29 0.2142857 0.2142857 0.2142857 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34935 2.00000 -134.34289 2.00000 -90.37514 2.00000 -90.37514 2.00000 -90.37403 2.00000 -90.35852 2.00000 -90.35739 2.00000 -90.35739 2.00000 -11.88484 2.00000 -3.79020 2.00000 -1.14654 2.00000 -1.14654 0.00000 1.65511 0.00000 2.91288 0.00000 2.91288 0.00000 5.82948 0.00000 6.80734 0.00000 6.80734 0.00000 9.22837 0.00000 11.21726 + 30 0.2040816 0.2040816 0.2040816 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34940 2.00000 -134.34284 2.00000 -90.37510 2.00000 -90.37510 2.00000 -90.37408 2.00000 -90.35847 2.00000 -90.35743 2.00000 -90.35743 2.00000 -11.93880 2.00000 -3.60019 2.00000 -1.10821 2.00000 -1.10821 0.00000 1.69501 0.00000 2.87459 0.00000 2.87459 0.00000 5.64450 0.00000 6.79448 0.00000 6.79448 0.00000 9.21730 0.00000 11.10149 + 31 0.1938775 0.1938775 0.1938775 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34945 2.00000 -134.34279 2.00000 -90.37506 2.00000 -90.37506 2.00000 -90.37413 2.00000 -90.35842 2.00000 -90.35747 2.00000 -90.35747 2.00000 -11.99034 2.00000 -3.40903 2.00000 -1.06920 2.00000 -1.06920 0.00000 1.73514 0.00000 2.83210 0.00000 2.83210 0.00000 5.45881 0.00000 6.79109 0.00000 6.79109 0.00000 9.18846 0.00000 11.01316 + 32 0.1836735 0.1836735 0.1836735 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34950 2.00000 -134.34274 2.00000 -90.37502 2.00000 -90.37502 2.00000 -90.37417 2.00000 -90.35837 2.00000 -90.35750 2.00000 -90.35750 2.00000 -12.03943 2.00000 -3.21695 2.00000 -1.02965 2.00000 -1.02965 0.00000 1.77530 0.00000 2.78584 0.00000 2.78584 0.00000 5.27271 0.00000 6.79658 0.00000 6.79658 0.00000 9.14087 0.00000 10.95340 + 33 0.1734694 0.1734694 0.1734694 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34955 2.00000 -134.34269 2.00000 -90.37499 2.00000 -90.37499 2.00000 -90.37422 2.00000 -90.35832 2.00000 -90.35754 2.00000 -90.35754 2.00000 -12.08603 2.00000 -3.02426 2.00000 -0.98970 2.00000 -0.98970 0.00000 1.81523 0.00000 2.73636 0.00000 2.73636 0.00000 5.08650 0.00000 6.81027 0.00000 6.81027 0.00000 9.07560 0.00000 10.92123 + 34 0.1632653 0.1632653 0.1632653 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34959 2.00000 -134.34265 2.00000 -90.37495 2.00000 -90.37495 2.00000 -90.37426 2.00000 -90.35828 2.00000 -90.35758 2.00000 -90.35758 2.00000 -12.13010 2.00000 -2.83129 2.00000 -0.94954 2.00000 -0.94954 0.00000 1.85466 0.00000 2.68425 0.00000 2.68425 0.00000 4.90052 0.00000 6.83141 0.00000 6.83141 0.00000 8.99558 0.00000 10.91378 + 35 0.1530612 0.1530612 0.1530612 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34963 2.00000 -134.34261 2.00000 -90.37492 2.00000 -90.37492 2.00000 -90.37431 2.00000 -90.35823 2.00000 -90.35761 2.00000 -90.35761 2.00000 -12.17162 2.00000 -2.63842 2.00000 -0.90935 2.00000 -0.90935 0.00000 1.89327 0.00000 2.63016 0.00000 2.63016 0.00000 4.71520 0.00000 6.85916 0.00000 6.85916 0.00000 8.90487 0.00000 10.92703 + 36 0.1428571 0.1428571 0.1428571 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34967 2.00000 -134.34257 2.00000 -90.37488 2.00000 -90.37488 2.00000 -90.37435 2.00000 -90.35819 2.00000 -90.35764 2.00000 -90.35764 2.00000 -12.21056 2.00000 -2.44609 2.00000 -0.86935 2.00000 -0.86935 0.00000 1.93069 0.00000 2.57478 0.00000 2.57478 0.00000 4.53104 0.00000 6.89263 0.00000 6.89263 0.00000 8.80775 0.00000 10.95663 + 37 0.1326531 0.1326531 0.1326531 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34971 2.00000 -134.34253 2.00000 -90.37485 2.00000 -90.37485 2.00000 -90.37439 2.00000 -90.35815 2.00000 -90.35767 2.00000 -90.35767 2.00000 -12.24689 2.00000 -2.25483 2.00000 -0.82979 2.00000 -0.82979 0.00000 1.96648 0.00000 2.51882 0.00000 2.51882 0.00000 4.34868 0.00000 6.93090 0.00000 6.93090 0.00000 8.70818 0.00000 10.99853 + 38 0.1224490 0.1224490 0.1224490 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34974 2.00000 -134.34249 2.00000 -90.37482 2.00000 -90.37482 2.00000 -90.37442 2.00000 -90.35811 2.00000 -90.35770 2.00000 -90.35770 2.00000 -12.28060 2.00000 -2.06529 2.00000 -0.79093 2.00000 -0.79093 0.00000 2.00013 0.00000 2.46298 0.00000 2.46298 0.00000 4.16890 0.00000 6.97296 0.00000 6.97296 0.00000 8.60951 0.00000 11.04918 + 39 0.1122449 0.1122449 0.1122449 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34978 2.00000 -134.34246 2.00000 -90.37479 2.00000 -90.37479 2.00000 -90.37445 2.00000 -90.35808 2.00000 -90.35773 2.00000 -90.35773 2.00000 -12.31166 2.00000 -1.87823 2.00000 -0.75308 2.00000 -0.75308 0.00000 2.03105 0.00000 2.40799 0.00000 2.40799 0.00000 3.99274 0.00000 7.01782 0.00000 7.01782 0.00000 8.51442 0.00000 11.10556 + 40 0.1020408 0.1020408 0.1020408 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34981 2.00000 -134.34243 2.00000 -90.37477 2.00000 -90.37477 2.00000 -90.37449 2.00000 -90.35805 2.00000 -90.35776 2.00000 -90.35776 2.00000 -12.34006 2.00000 -1.69461 2.00000 -0.71657 2.00000 -0.71657 0.00000 2.05853 0.00000 2.35458 0.00000 2.35458 0.00000 3.82150 0.00000 7.06440 0.00000 7.06440 0.00000 8.42504 0.00000 11.16514 + 41 0.0918367 0.0918367 0.0918367 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34983 2.00000 -134.34240 2.00000 -90.37474 2.00000 -90.37474 2.00000 -90.37451 2.00000 -90.35802 2.00000 -90.35778 2.00000 -90.35778 2.00000 -12.36578 2.00000 -1.51561 2.00000 -0.68176 2.00000 -0.68176 0.00000 2.08172 0.00000 2.30344 0.00000 2.30344 0.00000 3.65684 0.00000 7.11160 0.00000 7.11160 0.00000 8.34295 0.00000 11.22573 + 42 0.0816326 0.0816326 0.0816326 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34986 2.00000 -134.34238 2.00000 -90.37472 2.00000 -90.37472 2.00000 -90.37454 2.00000 -90.35799 2.00000 -90.35780 2.00000 -90.35780 2.00000 -12.38882 2.00000 -1.34272 2.00000 -0.64904 2.00000 -0.64904 0.00000 2.09966 0.00000 2.25529 0.00000 2.25529 0.00000 3.50083 0.00000 7.15830 0.00000 7.15830 0.00000 8.26930 0.00000 11.28541 + 43 0.0714286 0.0714286 0.0714286 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34988 2.00000 -134.34236 2.00000 -90.37470 2.00000 -90.37470 2.00000 -90.37456 2.00000 -90.35797 2.00000 -90.35782 2.00000 -90.35782 2.00000 -12.40916 2.00000 -1.17782 2.00000 -0.61880 2.00000 -0.61880 0.00000 2.11132 0.00000 2.21081 0.00000 2.21081 0.00000 3.35605 0.00000 7.20333 0.00000 7.20333 0.00000 8.20485 0.00000 11.34250 + 44 0.0612245 0.0612245 0.0612245 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34990 2.00000 -134.34234 2.00000 -90.37468 2.00000 -90.37468 2.00000 -90.37458 2.00000 -90.35795 2.00000 -90.35784 2.00000 -90.35784 2.00000 -12.42680 2.00000 -1.02324 2.00000 -0.59147 2.00000 -0.59147 0.00000 2.11570 0.00000 2.17065 0.00000 2.17065 0.00000 3.22546 0.00000 7.24552 0.00000 7.24552 0.00000 8.14997 0.00000 11.39544 + 45 0.0510204 0.0510204 0.0510204 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34991 2.00000 -134.34232 2.00000 -90.37467 2.00000 -90.37467 2.00000 -90.37460 2.00000 -90.35793 2.00000 -90.35785 2.00000 -90.35785 2.00000 -12.44173 2.00000 -0.88191 2.00000 -0.56746 2.00000 -0.56746 0.00000 2.11226 0.00000 2.13545 0.00000 2.13545 0.00000 3.11221 0.00000 7.28371 0.00000 7.28371 0.00000 8.10470 0.00000 11.44285 + 46 0.0408163 0.0408163 0.0408163 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34993 2.00000 -134.34231 2.00000 -90.37466 2.00000 -90.37466 2.00000 -90.37461 2.00000 -90.35791 2.00000 -90.35787 2.00000 -90.35787 2.00000 -12.45395 2.00000 -0.75736 2.00000 -0.54716 2.00000 -0.54716 0.00000 2.10152 0.00000 2.10576 0.00000 2.10576 0.00000 3.01902 0.00000 7.31679 0.00000 7.31679 0.00000 8.06879 0.00000 11.48350 + 47 0.0306122 0.0306122 0.0306122 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34994 2.00000 -134.34230 2.00000 -90.37465 2.00000 -90.37465 2.00000 -90.37462 2.00000 -90.35790 2.00000 -90.35787 2.00000 -90.35787 2.00000 -12.46345 2.00000 -0.65369 2.00000 -0.53094 2.00000 -0.53094 0.00000 2.08211 0.00000 2.08211 0.00000 2.08567 0.00000 2.94754 0.00000 7.34373 0.00000 7.34373 0.00000 8.04178 0.00000 11.51631 + 48 0.0204082 0.0204082 0.0204082 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34994 2.00000 -134.34229 2.00000 -90.37464 2.00000 -90.37464 2.00000 -90.37463 2.00000 -90.35789 2.00000 -90.35788 2.00000 -90.35788 2.00000 -12.47024 2.00000 -0.57529 2.00000 -0.51912 2.00000 -0.51912 0.00000 2.06489 0.00000 2.06489 0.00000 2.06876 0.00000 2.89787 0.00000 7.36366 0.00000 7.36366 0.00000 8.02308 0.00000 11.54041 + 49 0.0102041 0.0102041 0.0102041 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34995 2.00000 -134.34229 2.00000 -90.37464 2.00000 -90.37464 2.00000 -90.37463 2.00000 -90.35789 2.00000 -90.35789 2.00000 -90.35789 2.00000 -12.47431 2.00000 -0.52623 2.00000 -0.51193 2.00000 -0.51193 0.00000 2.05443 0.00000 2.05443 0.00000 2.05578 0.00000 2.86895 0.00000 7.37591 0.00000 7.37591 0.00000 8.01213 0.00000 11.55513 + 50 0.0000000 0.0000000 0.0000000 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34995 2.00000 -134.34228 2.00000 -90.37464 2.00000 -90.37464 2.00000 -90.37464 2.00000 -90.35789 2.00000 -90.35789 2.00000 -90.35789 2.00000 -12.47567 2.00000 -0.50951 2.00000 -0.50951 2.00000 -0.50951 0.00000 2.05092 0.00000 2.05092 0.00000 2.05092 0.00000 2.85949 0.00000 7.38004 0.00000 7.38004 0.00000 8.00853 0.00000 11.56009 diff --git a/tests/data/normalizers/dos/dos_si_fhiaims/band1002.out b/tests/data/normalizers/dos/dos_si_fhiaims/band1002.out new file mode 100644 index 0000000000000000000000000000000000000000..0a88cd5ca124c738bb041ac1cff693e9c90ccc54 --- /dev/null +++ b/tests/data/normalizers/dos/dos_si_fhiaims/band1002.out @@ -0,0 +1,50 @@ + 1 0.0000000 0.0000000 0.0000000 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34995 2.00000 -134.34228 2.00000 -90.37464 2.00000 -90.37464 2.00000 -90.37464 2.00000 -90.35789 2.00000 -90.35789 2.00000 -90.35789 2.00000 -12.47567 2.00000 -0.50951 2.00000 -0.50951 2.00000 -0.50951 0.00000 2.05092 0.00000 2.05092 0.00000 2.05092 0.00000 2.85949 0.00000 7.38004 0.00000 7.38004 0.00000 8.00853 0.00000 11.56009 + 2 0.0000000 0.0102041 0.0102041 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34995 2.00000 -134.34229 2.00000 -90.37464 2.00000 -90.37464 2.00000 -90.37463 2.00000 -90.35789 2.00000 -90.35788 2.00000 -90.35788 2.00000 -12.47386 2.00000 -0.52221 2.00000 -0.51754 2.00000 -0.51754 0.00000 2.04637 0.00000 2.06119 0.00000 2.06119 0.00000 2.87197 0.00000 7.36700 0.00000 7.38208 0.00000 8.01333 0.00000 11.56290 + 3 0.0000000 0.0204082 0.0204082 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34994 2.00000 -134.34229 2.00000 -90.37465 2.00000 -90.37465 2.00000 -90.37462 2.00000 -90.35790 2.00000 -90.35788 2.00000 -90.35788 2.00000 -12.46843 2.00000 -0.55973 2.00000 -0.54122 2.00000 -0.54122 0.00000 2.03280 0.00000 2.09161 0.00000 2.09161 0.00000 2.90875 0.00000 7.32854 0.00000 7.38819 0.00000 8.02797 0.00000 11.57134 + 4 0.0000000 0.0306122 0.0306122 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34993 2.00000 -134.34230 2.00000 -90.37466 2.00000 -90.37466 2.00000 -90.37460 2.00000 -90.35793 2.00000 -90.35786 2.00000 -90.35786 2.00000 -12.45938 2.00000 -0.62043 2.00000 -0.57945 2.00000 -0.57945 0.00000 2.01050 0.00000 2.14106 0.00000 2.14106 0.00000 2.96794 0.00000 7.26647 0.00000 7.39838 0.00000 8.05309 0.00000 11.58541 + 5 0.0000000 0.0408163 0.0408163 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34992 2.00000 -134.34232 2.00000 -90.37468 2.00000 -90.37468 2.00000 -90.37457 2.00000 -90.35796 2.00000 -90.35784 2.00000 -90.35784 2.00000 -12.44670 2.00000 -0.70193 2.00000 -0.63060 2.00000 -0.63060 0.00000 1.97990 0.00000 2.20791 0.00000 2.20791 0.00000 3.04672 0.00000 7.18359 0.00000 7.41265 0.00000 8.08951 0.00000 11.60512 + 6 0.0000000 0.0510204 0.0510204 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34990 2.00000 -134.34233 2.00000 -90.37471 2.00000 -90.37471 2.00000 -90.37453 2.00000 -90.35799 2.00000 -90.35782 2.00000 -90.35782 2.00000 -12.43039 2.00000 -0.80150 2.00000 -0.69280 2.00000 -0.69280 0.00000 1.94160 0.00000 2.29027 0.00000 2.29027 0.00000 3.14169 0.00000 7.08336 0.00000 7.43100 0.00000 8.13810 0.00000 11.63049 + 7 0.0000000 0.0612245 0.0612245 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34988 2.00000 -134.34236 2.00000 -90.37474 2.00000 -90.37474 2.00000 -90.37448 2.00000 -90.35804 2.00000 -90.35779 2.00000 -90.35779 2.00000 -12.41045 2.00000 -0.91639 2.00000 -0.76411 2.00000 -0.76411 0.00000 1.89626 0.00000 2.38618 0.00000 2.38618 0.00000 3.24911 0.00000 6.96973 0.00000 7.45341 0.00000 8.19951 0.00000 11.66152 + 8 0.0000000 0.0714286 0.0714286 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34986 2.00000 -134.34238 2.00000 -90.37478 2.00000 -90.37478 2.00000 -90.37443 2.00000 -90.35810 2.00000 -90.35775 2.00000 -90.35775 2.00000 -12.38687 2.00000 -1.04405 2.00000 -0.84270 2.00000 -0.84270 0.00000 1.84465 0.00000 2.49381 0.00000 2.49381 0.00000 3.36506 0.00000 6.84695 0.00000 7.47990 0.00000 8.27411 0.00000 11.69823 + 9 0.0000000 0.0816327 0.0816327 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34983 2.00000 -134.34241 2.00000 -90.37482 2.00000 -90.37482 2.00000 -90.37436 2.00000 -90.35816 2.00000 -90.35771 2.00000 -90.35771 2.00000 -12.35968 2.00000 -1.18221 2.00000 -0.92695 2.00000 -0.92695 0.00000 1.78754 0.00000 2.61150 0.00000 2.61150 0.00000 3.48535 0.00000 6.71962 0.00000 7.51047 0.00000 8.36194 0.00000 11.74061 + 10 0.0000000 0.0918367 0.0918367 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34979 2.00000 -134.34244 2.00000 -90.37486 2.00000 -90.37486 2.00000 -90.37429 2.00000 -90.35824 2.00000 -90.35766 2.00000 -90.35766 2.00000 -12.32885 2.00000 -1.32898 2.00000 -1.01544 2.00000 -1.01544 0.00000 1.72573 0.00000 2.73782 0.00000 2.73782 0.00000 3.60541 0.00000 6.59278 0.00000 7.54510 0.00000 8.46276 0.00000 11.78866 + 11 0.0000000 0.1020408 0.1020408 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34976 2.00000 -134.34248 2.00000 -90.37491 2.00000 -90.37491 2.00000 -90.37421 2.00000 -90.35832 2.00000 -90.35761 2.00000 -90.35761 2.00000 -12.29441 2.00000 -1.48277 2.00000 -1.10700 2.00000 -1.10700 0.00000 1.66000 0.00000 2.87156 0.00000 2.87156 0.00000 3.72001 0.00000 6.47213 0.00000 7.58380 0.00000 8.57611 0.00000 11.84235 + 12 0.0000000 0.1122449 0.1122449 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34972 2.00000 -134.34252 2.00000 -90.37497 2.00000 -90.37497 2.00000 -90.37412 2.00000 -90.35841 2.00000 -90.35756 2.00000 -90.35756 2.00000 -12.25635 2.00000 -1.64228 2.00000 -1.20061 2.00000 -1.20061 0.00000 1.59108 0.00000 3.01168 0.00000 3.01168 0.00000 3.82296 0.00000 6.36429 0.00000 7.62657 0.00000 8.70135 0.00000 11.90163 + 13 0.0000000 0.1224490 0.1224490 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34967 2.00000 -134.34257 2.00000 -90.37503 2.00000 -90.37503 2.00000 -90.37403 2.00000 -90.35850 2.00000 -90.35750 2.00000 -90.35750 2.00000 -12.21470 2.00000 -1.80646 2.00000 -1.29546 2.00000 -1.29546 0.00000 1.51968 0.00000 3.15735 0.00000 3.15735 0.00000 3.90707 0.00000 6.27688 0.00000 7.67340 0.00000 8.83774 0.00000 11.96643 + 14 0.0000000 0.1326531 0.1326531 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34962 2.00000 -134.34261 2.00000 -90.37509 2.00000 -90.37509 2.00000 -90.37392 2.00000 -90.35861 2.00000 -90.35744 2.00000 -90.35744 2.00000 -12.16945 2.00000 -1.97446 2.00000 -1.39087 2.00000 -1.39087 0.00000 1.44645 0.00000 3.30785 0.00000 3.30785 0.00000 3.96463 0.00000 6.21802 0.00000 7.72430 0.00000 8.98451 0.00000 12.03663 + 15 0.0000000 0.1428571 0.1428571 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34957 2.00000 -134.34266 2.00000 -90.37516 2.00000 -90.37516 2.00000 -90.37381 2.00000 -90.35872 2.00000 -90.35738 2.00000 -90.35738 2.00000 -12.12062 2.00000 -2.14559 2.00000 -1.48627 2.00000 -1.48627 0.00000 1.37198 0.00000 3.46258 0.00000 3.46258 0.00000 3.98875 0.00000 6.19496 0.00000 7.77925 0.00000 9.14085 0.00000 12.11208 + 16 0.0000000 0.1530612 0.1530612 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34952 2.00000 -134.34272 2.00000 -90.37523 2.00000 -90.37523 2.00000 -90.37369 2.00000 -90.35884 2.00000 -90.35731 2.00000 -90.35731 2.00000 -12.06822 2.00000 -2.31929 2.00000 -1.58119 2.00000 -1.58119 0.00000 1.29683 0.00000 3.62104 0.00000 3.62104 0.00000 3.97541 0.00000 6.21204 0.00000 7.83826 0.00000 9.30599 0.00000 12.19255 + 17 0.0000000 0.1632653 0.1632653 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34946 2.00000 -134.34278 2.00000 -90.37530 2.00000 -90.37530 2.00000 -90.37357 2.00000 -90.35897 2.00000 -90.35724 2.00000 -90.35724 2.00000 -12.01227 2.00000 -2.49510 2.00000 -1.67525 2.00000 -1.67525 0.00000 1.22148 0.00000 3.78283 0.00000 3.78283 0.00000 3.92498 0.00000 6.26925 0.00000 7.90133 0.00000 9.47913 0.00000 12.27776 + 18 0.0000000 0.1734694 0.1734694 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34940 2.00000 -134.34284 2.00000 -90.37537 2.00000 -90.37537 2.00000 -90.37343 2.00000 -90.35911 2.00000 -90.35717 2.00000 -90.35717 2.00000 -11.95277 2.00000 -2.67266 2.00000 -1.76811 2.00000 -1.76811 0.00000 1.14638 0.00000 3.84177 0.00000 3.94757 0.00000 3.94757 0.00000 6.36259 0.00000 7.96844 0.00000 9.65954 0.00000 12.36732 + 19 0.0000000 0.1836735 0.1836735 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34933 2.00000 -134.34291 2.00000 -90.37545 2.00000 -90.37545 2.00000 -90.37329 2.00000 -90.35925 2.00000 -90.35709 2.00000 -90.35709 2.00000 -11.88975 2.00000 -2.85163 2.00000 -1.85950 2.00000 -1.85950 0.00000 1.07195 0.00000 3.73224 0.00000 4.11498 0.00000 4.11498 0.00000 6.48593 0.00000 8.03961 0.00000 9.84648 0.00000 12.46074 + 20 0.0000000 0.1938775 0.1938775 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34926 2.00000 -134.34297 2.00000 -90.37552 2.00000 -90.37552 2.00000 -90.37314 2.00000 -90.35940 2.00000 -90.35702 2.00000 -90.35702 2.00000 -11.82322 2.00000 -3.03178 2.00000 -1.94919 2.00000 -1.94919 0.00000 0.99853 0.00000 3.60303 0.00000 4.28478 0.00000 4.28478 0.00000 6.63295 0.00000 8.11481 0.00000 10.03924 0.00000 12.55738 + 21 0.0000000 0.2040816 0.2040816 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34919 2.00000 -134.34305 2.00000 -90.37560 2.00000 -90.37560 2.00000 -90.37298 2.00000 -90.35956 2.00000 -90.35694 2.00000 -90.35694 2.00000 -11.75320 2.00000 -3.21288 2.00000 -2.03697 2.00000 -2.03697 0.00000 0.92647 0.00000 3.45995 0.00000 4.45677 0.00000 4.45677 0.00000 6.79817 0.00000 8.19406 0.00000 10.23712 0.00000 12.65640 + 22 0.0000000 0.2142857 0.2142857 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34912 2.00000 -134.34312 2.00000 -90.37568 2.00000 -90.37568 2.00000 -90.37282 2.00000 -90.35972 2.00000 -90.35686 2.00000 -90.35686 2.00000 -11.67971 2.00000 -3.39474 2.00000 -2.12267 2.00000 -2.12267 0.00000 0.85604 0.00000 3.30763 0.00000 4.63074 0.00000 4.63074 0.00000 6.97725 0.00000 8.27734 0.00000 10.43941 0.00000 12.75674 + 23 0.0000000 0.2244898 0.2244898 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34904 2.00000 -134.34320 2.00000 -90.37576 2.00000 -90.37576 2.00000 -90.37265 2.00000 -90.35990 2.00000 -90.35678 2.00000 -90.35678 2.00000 -11.60277 2.00000 -3.57721 2.00000 -2.20615 2.00000 -2.20615 0.00000 0.78753 0.00000 3.14968 0.00000 4.80653 0.00000 4.80653 0.00000 7.16688 0.00000 8.36466 0.00000 10.64537 0.00000 12.85705 + 24 0.0000000 0.2346939 0.2346939 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34896 2.00000 -134.34328 2.00000 -90.37584 2.00000 -90.37584 2.00000 -90.37247 2.00000 -90.36007 2.00000 -90.35670 2.00000 -90.35670 2.00000 -11.52239 2.00000 -3.76013 2.00000 -2.28727 2.00000 -2.28727 0.00000 0.72117 0.00000 2.98882 0.00000 4.98400 0.00000 4.98400 0.00000 7.36458 0.00000 8.45600 0.00000 10.85427 0.00000 12.95559 + 25 0.0000000 0.2448980 0.2448980 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34887 2.00000 -134.34336 2.00000 -90.37592 2.00000 -90.37592 2.00000 -90.37229 2.00000 -90.36026 2.00000 -90.35663 2.00000 -90.35663 2.00000 -11.43860 2.00000 -3.94339 2.00000 -2.36593 2.00000 -2.36593 0.00000 0.65718 0.00000 2.82713 0.00000 5.16303 0.00000 5.16303 0.00000 7.56846 0.00000 8.55137 0.00000 11.06529 0.00000 13.05016 + 26 0.0000000 0.2551020 0.2551020 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34879 2.00000 -134.34345 2.00000 -90.37600 2.00000 -90.37600 2.00000 -90.37210 2.00000 -90.36045 2.00000 -90.35655 2.00000 -90.35655 2.00000 -11.35143 2.00000 -4.12686 2.00000 -2.44203 2.00000 -2.44203 0.00000 0.59575 0.00000 2.66623 0.00000 5.34351 0.00000 5.34351 0.00000 7.77708 0.00000 8.65075 0.00000 11.27757 0.00000 13.13802 + 27 0.0000000 0.2653061 0.2653061 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34870 2.00000 -134.34354 2.00000 -90.37608 2.00000 -90.37608 2.00000 -90.37191 2.00000 -90.36065 2.00000 -90.35647 2.00000 -90.35647 2.00000 -11.26090 2.00000 -4.31043 2.00000 -2.51547 2.00000 -2.51547 0.00000 0.53708 0.00000 2.50734 0.00000 5.52535 0.00000 5.52535 0.00000 7.98930 0.00000 8.75415 0.00000 11.49013 0.00000 13.21580 + 28 0.0000000 0.2755102 0.2755102 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34861 2.00000 -134.34363 2.00000 -90.37615 2.00000 -90.37615 2.00000 -90.37171 2.00000 -90.36085 2.00000 -90.35639 2.00000 -90.35639 2.00000 -11.16704 2.00000 -4.49401 2.00000 -2.58619 2.00000 -2.58619 0.00000 0.48131 0.00000 2.35140 0.00000 5.70846 0.00000 5.70846 0.00000 8.20422 0.00000 8.86156 0.00000 11.70190 0.00000 13.27957 + 29 0.0000000 0.2857143 0.2857143 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34851 2.00000 -134.34373 2.00000 -90.37623 2.00000 -90.37623 2.00000 -90.37150 2.00000 -90.36106 2.00000 -90.35632 2.00000 -90.35632 2.00000 -11.06987 2.00000 -4.67748 2.00000 -2.65411 2.00000 -2.65411 0.00000 0.42862 0.00000 2.19914 0.00000 5.89279 0.00000 5.89279 0.00000 8.42111 0.00000 8.97297 0.00000 11.91165 0.00000 13.32495 + 30 0.0000000 0.2959184 0.2959184 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34841 2.00000 -134.34383 2.00000 -90.37630 2.00000 -90.37630 2.00000 -90.37129 2.00000 -90.36127 2.00000 -90.35625 2.00000 -90.35625 2.00000 -10.96942 2.00000 -4.86076 2.00000 -2.71918 2.00000 -2.71918 0.00000 0.37913 0.00000 2.05113 0.00000 6.07826 0.00000 6.07826 0.00000 8.63935 0.00000 9.08839 0.00000 12.11797 0.00000 13.34757 + 31 0.0000000 0.3061225 0.3061225 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34831 2.00000 -134.34393 2.00000 -90.37637 2.00000 -90.37637 2.00000 -90.37107 2.00000 -90.36149 2.00000 -90.35618 2.00000 -90.35618 2.00000 -10.86573 2.00000 -5.04374 2.00000 -2.78133 2.00000 -2.78133 0.00000 0.33298 0.00000 1.90779 0.00000 6.26484 0.00000 6.26484 0.00000 8.85841 0.00000 9.20779 0.00000 12.31923 0.00000 13.34366 + 32 0.0000000 0.3163265 0.3163265 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34821 2.00000 -134.34403 2.00000 -90.37644 2.00000 -90.37644 2.00000 -90.37085 2.00000 -90.36171 2.00000 -90.35611 2.00000 -90.35611 2.00000 -10.75883 2.00000 -5.22633 2.00000 -2.84054 2.00000 -2.84054 0.00000 0.29030 0.00000 1.76944 0.00000 6.45246 0.00000 6.45246 0.00000 9.07784 0.00000 9.33118 0.00000 12.51356 0.00000 13.31082 + 33 0.0000000 0.3265306 0.3265306 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34811 2.00000 -134.34413 2.00000 -90.37651 2.00000 -90.37651 2.00000 -90.37062 2.00000 -90.36194 2.00000 -90.35604 2.00000 -90.35604 2.00000 -10.64875 2.00000 -5.40844 2.00000 -2.89674 2.00000 -2.89674 0.00000 0.25118 0.00000 1.63632 0.00000 6.64109 0.00000 6.64109 0.00000 9.29724 0.00000 9.45856 0.00000 12.69879 0.00000 13.24853 + 34 0.0000000 0.3367347 0.3367347 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34800 2.00000 -134.34424 2.00000 -90.37658 2.00000 -90.37658 2.00000 -90.37039 2.00000 -90.36217 2.00000 -90.35598 2.00000 -90.35598 2.00000 -10.53553 2.00000 -5.58995 2.00000 -2.94990 2.00000 -2.94990 0.00000 0.21575 0.00000 1.50860 0.00000 6.83068 0.00000 6.83068 0.00000 9.51625 0.00000 9.58991 0.00000 12.87249 0.00000 13.15819 + 35 0.0000000 0.3469388 0.3469388 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34789 2.00000 -134.34435 2.00000 -90.37664 2.00000 -90.37664 2.00000 -90.37016 2.00000 -90.36241 2.00000 -90.35592 2.00000 -90.35592 2.00000 -10.41920 2.00000 -5.77078 2.00000 -2.99999 2.00000 -2.99999 0.00000 0.18410 0.00000 1.38640 0.00000 7.02119 0.00000 7.02119 0.00000 9.72522 0.00000 9.73456 0.00000 13.03195 0.00000 13.04276 + 36 0.0000000 0.3571429 0.3571429 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34778 2.00000 -134.34446 2.00000 -90.37670 2.00000 -90.37670 2.00000 -90.36992 2.00000 -90.36265 2.00000 -90.35586 2.00000 -90.35586 2.00000 -10.29982 2.00000 -5.95083 2.00000 -3.04697 2.00000 -3.04697 0.00000 0.15633 0.00000 1.26980 0.00000 7.21255 0.00000 7.21255 0.00000 9.86450 0.00000 9.95184 0.00000 12.90600 0.00000 12.90600 + 37 0.0000000 0.3673469 0.3673469 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34767 2.00000 -134.34457 2.00000 -90.37675 2.00000 -90.37675 2.00000 -90.36968 2.00000 -90.36289 2.00000 -90.35580 2.00000 -90.35580 2.00000 -10.17741 2.00000 -6.13000 2.00000 -3.09082 2.00000 -3.09082 0.00000 0.13252 0.00000 1.15885 0.00000 7.40470 0.00000 7.40470 0.00000 10.00774 0.00000 10.16782 0.00000 12.75184 0.00000 12.75184 + 38 0.0000000 0.3775510 0.3775510 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34756 2.00000 -134.34468 2.00000 -90.37681 2.00000 -90.37681 2.00000 -90.36943 2.00000 -90.36314 2.00000 -90.35575 2.00000 -90.35575 2.00000 -10.05203 2.00000 -6.30819 2.00000 -3.13151 2.00000 -3.13151 0.00000 0.11278 0.00000 1.05356 0.00000 7.59755 0.00000 7.59755 0.00000 10.15492 0.00000 10.38222 0.00000 12.58397 0.00000 12.58397 + 39 0.0000000 0.3877551 0.3877551 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34744 2.00000 -134.34480 2.00000 -90.37686 2.00000 -90.37686 2.00000 -90.36918 2.00000 -90.36339 2.00000 -90.35570 2.00000 -90.35570 2.00000 -9.92371 2.00000 -6.48530 2.00000 -3.16903 2.00000 -3.16903 0.00000 0.09718 0.00000 0.95394 0.00000 7.79099 0.00000 7.79099 0.00000 10.30604 0.00000 10.59477 0.00000 12.40563 0.00000 12.40563 + 40 0.0000000 0.3979592 0.3979592 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34733 2.00000 -134.34491 2.00000 -90.37690 2.00000 -90.37690 2.00000 -90.36893 2.00000 -90.36365 2.00000 -90.35566 2.00000 -90.35566 2.00000 -9.79252 2.00000 -6.66123 2.00000 -3.20334 2.00000 -3.20334 0.00000 0.08580 0.00000 0.85997 0.00000 7.98483 0.00000 7.98483 0.00000 10.46109 0.00000 10.80519 0.00000 12.21958 0.00000 12.21958 + 41 0.0000000 0.4081633 0.4081633 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34721 2.00000 -134.34503 2.00000 -90.37694 2.00000 -90.37694 2.00000 -90.36867 2.00000 -90.36390 2.00000 -90.35562 2.00000 -90.35562 2.00000 -9.65850 2.00000 -6.83588 2.00000 -3.23443 2.00000 -3.23443 0.00000 0.07874 0.00000 0.77162 0.00000 8.17885 0.00000 8.17885 0.00000 10.62006 0.00000 11.01318 0.00000 12.02815 0.00000 12.02815 + 42 0.0000000 0.4183674 0.4183674 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34709 2.00000 -134.34515 2.00000 -90.37698 2.00000 -90.37698 2.00000 -90.36841 2.00000 -90.36416 2.00000 -90.35558 2.00000 -90.35558 2.00000 -9.52170 2.00000 -7.00916 2.00000 -3.26229 2.00000 -3.26229 0.00000 0.07605 0.00000 0.68886 0.00000 8.37268 0.00000 8.37268 0.00000 10.78294 0.00000 11.21844 0.00000 11.83335 0.00000 11.83335 + 43 0.0000000 0.4285714 0.4285714 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34697 2.00000 -134.34527 2.00000 -90.37701 2.00000 -90.37701 2.00000 -90.36815 2.00000 -90.36442 2.00000 -90.35555 2.00000 -90.35555 2.00000 -9.38218 2.00000 -7.18097 2.00000 -3.28691 2.00000 -3.28691 0.00000 0.07783 0.00000 0.61164 0.00000 8.56578 0.00000 8.56578 0.00000 10.94973 0.00000 11.42061 0.00000 11.63704 0.00000 11.63704 + 44 0.0000000 0.4387755 0.4387755 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34685 2.00000 -134.34539 2.00000 -90.37704 2.00000 -90.37704 2.00000 -90.36789 2.00000 -90.36469 2.00000 -90.35552 2.00000 -90.35552 2.00000 -9.24000 2.00000 -7.35121 2.00000 -3.30826 2.00000 -3.30826 0.00000 0.08414 0.00000 0.53990 0.00000 8.75725 0.00000 8.75725 0.00000 11.12041 0.00000 11.44111 0.00000 11.44111 0.00000 11.61930 + 45 0.0000000 0.4489796 0.4489796 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34673 2.00000 -134.34551 2.00000 -90.37707 2.00000 -90.37707 2.00000 -90.36762 2.00000 -90.36495 2.00000 -90.35550 2.00000 -90.35550 2.00000 -9.09522 2.00000 -7.51979 2.00000 -3.32635 2.00000 -3.32635 0.00000 0.09506 0.00000 0.47360 0.00000 8.94566 0.00000 8.94566 0.00000 11.24781 0.00000 11.24781 0.00000 11.29497 0.00000 11.81404 + 46 0.0000000 0.4591837 0.4591837 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34661 2.00000 -134.34563 2.00000 -90.37709 2.00000 -90.37709 2.00000 -90.36736 2.00000 -90.36522 2.00000 -90.35548 2.00000 -90.35548 2.00000 -8.94790 2.00000 -7.68662 2.00000 -3.34116 2.00000 -3.34116 0.00000 0.11067 0.00000 0.41267 0.00000 9.12841 0.00000 9.12841 0.00000 11.06033 0.00000 11.06033 0.00000 11.47340 0.00000 12.00431 + 47 0.0000000 0.4693878 0.4693878 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34649 2.00000 -134.34575 2.00000 -90.37710 2.00000 -90.37710 2.00000 -90.36709 2.00000 -90.36548 2.00000 -90.35546 2.00000 -90.35546 2.00000 -8.79812 2.00000 -7.85160 2.00000 -3.35268 2.00000 -3.35268 0.00000 0.13103 0.00000 0.35704 0.00000 9.30063 0.00000 9.30063 0.00000 10.88399 0.00000 10.88399 0.00000 11.65568 0.00000 12.18945 + 48 0.0000000 0.4795918 0.4795918 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34637 2.00000 -134.34587 2.00000 -90.37711 2.00000 -90.37711 2.00000 -90.36682 2.00000 -90.36575 2.00000 -90.35545 2.00000 -90.35545 2.00000 -8.64593 2.00000 -8.01466 2.00000 -3.36092 2.00000 -3.36092 0.00000 0.15622 0.00000 0.30666 0.00000 9.45262 0.00000 9.45262 0.00000 10.72884 0.00000 10.72884 0.00000 11.84181 0.00000 12.36871 + 49 0.0000000 0.4897959 0.4897959 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34624 2.00000 -134.34600 2.00000 -90.37712 2.00000 -90.37712 2.00000 -90.36656 2.00000 -90.36602 2.00000 -90.35544 2.00000 -90.35544 2.00000 -8.49142 2.00000 -8.17570 2.00000 -3.36586 2.00000 -3.36586 0.00000 0.18630 0.00000 0.26146 0.00000 9.56519 0.00000 9.56519 0.00000 10.61429 0.00000 10.61429 0.00000 12.03176 0.00000 12.42309 + 50 0.0000000 0.5000000 0.5000000 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34612 2.00000 -134.34612 2.00000 -90.37712 2.00000 -90.37712 2.00000 -90.36629 2.00000 -90.36629 2.00000 -90.35544 2.00000 -90.35544 2.00000 -8.33465 2.00000 -8.33465 2.00000 -3.36751 2.00000 -3.36751 0.00000 0.22136 0.00000 0.22136 0.00000 9.60868 0.00000 9.60868 0.00000 10.57012 0.00000 10.57012 0.00000 12.22553 0.00000 12.22553 diff --git a/tests/data/normalizers/dos/dos_si_fhiaims/band1003.out b/tests/data/normalizers/dos/dos_si_fhiaims/band1003.out new file mode 100644 index 0000000000000000000000000000000000000000..18ca238cb8c331c0449f4d6d8cc01fc00a46fd4c --- /dev/null +++ b/tests/data/normalizers/dos/dos_si_fhiaims/band1003.out @@ -0,0 +1,50 @@ + 1 0.0000000 0.5000000 0.5000000 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34612 2.00000 -134.34612 2.00000 -90.37712 2.00000 -90.37712 2.00000 -90.36629 2.00000 -90.36629 2.00000 -90.35544 2.00000 -90.35544 2.00000 -8.33465 2.00000 -8.33465 2.00000 -3.36751 2.00000 -3.36751 0.00000 0.22136 0.00000 0.22136 0.00000 9.60868 0.00000 9.60868 0.00000 10.57012 0.00000 10.57012 0.00000 12.22553 0.00000 12.22553 + 2 0.0051020 0.5000000 0.5051020 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34612 2.00000 -134.34612 2.00000 -90.37712 2.00000 -90.37712 2.00000 -90.36629 2.00000 -90.36629 2.00000 -90.35544 2.00000 -90.35544 2.00000 -8.33449 2.00000 -8.33449 2.00000 -3.36891 2.00000 -3.36891 0.00000 0.22391 0.00000 0.22391 0.00000 9.60484 0.00000 9.60484 0.00000 10.56365 0.00000 10.56365 0.00000 12.23080 0.00000 12.23080 + 3 0.0102041 0.5000000 0.5102041 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34612 2.00000 -134.34612 2.00000 -90.37712 2.00000 -90.37712 2.00000 -90.36629 2.00000 -90.36629 2.00000 -90.35544 2.00000 -90.35544 2.00000 -8.33404 2.00000 -8.33404 2.00000 -3.37309 2.00000 -3.37309 0.00000 0.23155 0.00000 0.23155 0.00000 9.59316 0.00000 9.59316 0.00000 10.54499 0.00000 10.54499 0.00000 12.24564 0.00000 12.24564 + 4 0.0153061 0.5000000 0.5153061 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34612 2.00000 -134.34612 2.00000 -90.37712 2.00000 -90.37712 2.00000 -90.36629 2.00000 -90.36629 2.00000 -90.35544 2.00000 -90.35544 2.00000 -8.33328 2.00000 -8.33328 2.00000 -3.38000 2.00000 -3.38000 0.00000 0.24424 0.00000 0.24424 0.00000 9.57326 0.00000 9.57326 0.00000 10.51613 0.00000 10.51613 0.00000 12.26750 0.00000 12.26750 + 5 0.0204082 0.5000000 0.5204082 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34612 2.00000 -134.34612 2.00000 -90.37712 2.00000 -90.37712 2.00000 -90.36629 2.00000 -90.36629 2.00000 -90.35544 2.00000 -90.35544 2.00000 -8.33222 2.00000 -8.33222 2.00000 -3.38958 2.00000 -3.38958 0.00000 0.26190 0.00000 0.26190 0.00000 9.54453 0.00000 9.54453 0.00000 10.47995 0.00000 10.47995 0.00000 12.29301 0.00000 12.29301 + 6 0.0255102 0.5000000 0.5255102 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34612 2.00000 -134.34612 2.00000 -90.37712 2.00000 -90.37712 2.00000 -90.36629 2.00000 -90.36629 2.00000 -90.35544 2.00000 -90.35544 2.00000 -8.33086 2.00000 -8.33086 2.00000 -3.40174 2.00000 -3.40174 0.00000 0.28445 0.00000 0.28445 0.00000 9.50629 0.00000 9.50629 0.00000 10.43959 0.00000 10.43959 0.00000 12.31898 0.00000 12.31898 + 7 0.0306122 0.5000000 0.5306122 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34612 2.00000 -134.34612 2.00000 -90.37712 2.00000 -90.37712 2.00000 -90.36629 2.00000 -90.36629 2.00000 -90.35544 2.00000 -90.35544 2.00000 -8.32921 2.00000 -8.32921 2.00000 -3.41635 2.00000 -3.41635 0.00000 0.31177 0.00000 0.31177 0.00000 9.45793 0.00000 9.45793 0.00000 10.39805 0.00000 10.39805 0.00000 12.34321 0.00000 12.34321 + 8 0.0357143 0.5000000 0.5357143 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34612 2.00000 -134.34612 2.00000 -90.37712 2.00000 -90.37712 2.00000 -90.36629 2.00000 -90.36629 2.00000 -90.35544 2.00000 -90.35544 2.00000 -8.32727 2.00000 -8.32727 2.00000 -3.43328 2.00000 -3.43328 0.00000 0.34373 0.00000 0.34373 0.00000 9.39910 0.00000 9.39910 0.00000 10.35778 0.00000 10.35778 0.00000 12.36471 0.00000 12.36471 + 9 0.0408163 0.5000000 0.5408163 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34612 2.00000 -134.34612 2.00000 -90.37712 2.00000 -90.37712 2.00000 -90.36629 2.00000 -90.36629 2.00000 -90.35544 2.00000 -90.35544 2.00000 -8.32504 2.00000 -8.32504 2.00000 -3.45239 2.00000 -3.45239 0.00000 0.38018 0.00000 0.38018 0.00000 9.32981 0.00000 9.32981 0.00000 10.32053 0.00000 10.32053 0.00000 12.38340 0.00000 12.38340 + 10 0.0459184 0.5000000 0.5459184 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34612 2.00000 -134.34612 2.00000 -90.37712 2.00000 -90.37712 2.00000 -90.36629 2.00000 -90.36629 2.00000 -90.35544 2.00000 -90.35544 2.00000 -8.32255 2.00000 -8.32255 2.00000 -3.47349 2.00000 -3.47349 0.00000 0.42097 0.00000 0.42097 0.00000 9.25052 0.00000 9.25052 0.00000 10.28729 0.00000 10.28729 0.00000 12.39967 0.00000 12.39967 + 11 0.0510204 0.5000000 0.5510204 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34612 2.00000 -134.34612 2.00000 -90.37712 2.00000 -90.37712 2.00000 -90.36629 2.00000 -90.36629 2.00000 -90.35544 2.00000 -90.35544 2.00000 -8.31978 2.00000 -8.31978 2.00000 -3.49644 2.00000 -3.49644 0.00000 0.46592 0.00000 0.46592 0.00000 9.16205 0.00000 9.16205 0.00000 10.25842 0.00000 10.25842 0.00000 12.41406 0.00000 12.41406 + 12 0.0561224 0.5000000 0.5561224 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34612 2.00000 -134.34612 2.00000 -90.37712 2.00000 -90.37712 2.00000 -90.36629 2.00000 -90.36629 2.00000 -90.35544 2.00000 -90.35544 2.00000 -8.31676 2.00000 -8.31676 2.00000 -3.52104 2.00000 -3.52104 0.00000 0.51488 0.00000 0.51488 0.00000 9.06545 0.00000 9.06545 0.00000 10.23380 0.00000 10.23380 0.00000 12.42707 0.00000 12.42707 + 13 0.0612245 0.5000000 0.5612245 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34612 2.00000 -134.34612 2.00000 -90.37712 2.00000 -90.37712 2.00000 -90.36629 2.00000 -90.36629 2.00000 -90.35544 2.00000 -90.35544 2.00000 -8.31349 2.00000 -8.31349 2.00000 -3.54713 2.00000 -3.54713 0.00000 0.56766 0.00000 0.56766 0.00000 8.96183 0.00000 8.96183 0.00000 10.21306 0.00000 10.21306 0.00000 12.43910 0.00000 12.43910 + 14 0.0663265 0.5000000 0.5663265 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34612 2.00000 -134.34612 2.00000 -90.37712 2.00000 -90.37712 2.00000 -90.36629 2.00000 -90.36629 2.00000 -90.35544 2.00000 -90.35544 2.00000 -8.30998 2.00000 -8.30998 2.00000 -3.57452 2.00000 -3.57452 0.00000 0.62409 0.00000 0.62409 0.00000 8.85230 0.00000 8.85230 0.00000 10.19572 0.00000 10.19572 0.00000 12.45048 0.00000 12.45048 + 15 0.0714286 0.5000000 0.5714286 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34612 2.00000 -134.34612 2.00000 -90.37712 2.00000 -90.37712 2.00000 -90.36629 2.00000 -90.36629 2.00000 -90.35544 2.00000 -90.35544 2.00000 -8.30624 2.00000 -8.30624 2.00000 -3.60303 2.00000 -3.60303 0.00000 0.68400 0.00000 0.68400 0.00000 8.73785 0.00000 8.73785 0.00000 10.18125 0.00000 10.18125 0.00000 12.46144 0.00000 12.46144 + 16 0.0765306 0.5000000 0.5765306 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34612 2.00000 -134.34612 2.00000 -90.37712 2.00000 -90.37712 2.00000 -90.36629 2.00000 -90.36629 2.00000 -90.35544 2.00000 -90.35544 2.00000 -8.30229 2.00000 -8.30229 2.00000 -3.63249 2.00000 -3.63249 0.00000 0.74723 0.00000 0.74723 0.00000 8.61934 0.00000 8.61934 0.00000 10.16921 0.00000 10.16921 0.00000 12.47216 0.00000 12.47216 + 17 0.0816327 0.5000000 0.5816327 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34612 2.00000 -134.34612 2.00000 -90.37712 2.00000 -90.37712 2.00000 -90.36629 2.00000 -90.36629 2.00000 -90.35544 2.00000 -90.35544 2.00000 -8.29814 2.00000 -8.29814 2.00000 -3.66274 2.00000 -3.66274 0.00000 0.81362 0.00000 0.81362 0.00000 8.49753 0.00000 8.49753 0.00000 10.15917 0.00000 10.15917 0.00000 12.48274 0.00000 12.48274 + 18 0.0867347 0.5000000 0.5867347 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34612 2.00000 -134.34612 2.00000 -90.37712 2.00000 -90.37712 2.00000 -90.36629 2.00000 -90.36629 2.00000 -90.35544 2.00000 -90.35544 2.00000 -8.29380 2.00000 -8.29380 2.00000 -3.69361 2.00000 -3.69361 0.00000 0.88302 0.00000 0.88302 0.00000 8.37301 0.00000 8.37301 0.00000 10.15079 0.00000 10.15079 0.00000 12.49330 0.00000 12.49330 + 19 0.0918367 0.5000000 0.5918367 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34612 2.00000 -134.34612 2.00000 -90.37712 2.00000 -90.37712 2.00000 -90.36629 2.00000 -90.36629 2.00000 -90.35544 2.00000 -90.35544 2.00000 -8.28930 2.00000 -8.28930 2.00000 -3.72495 2.00000 -3.72495 0.00000 0.95527 0.00000 0.95527 0.00000 8.24631 0.00000 8.24631 0.00000 10.14378 0.00000 10.14378 0.00000 12.50387 0.00000 12.50387 + 20 0.0969388 0.5000000 0.5969388 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34612 2.00000 -134.34612 2.00000 -90.37712 2.00000 -90.37712 2.00000 -90.36629 2.00000 -90.36629 2.00000 -90.35544 2.00000 -90.35544 2.00000 -8.28464 2.00000 -8.28464 2.00000 -3.75660 2.00000 -3.75660 0.00000 1.03024 0.00000 1.03024 0.00000 8.11784 0.00000 8.11784 0.00000 10.13792 0.00000 10.13792 0.00000 12.51451 0.00000 12.51451 + 21 0.1020408 0.5000000 0.6020408 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34612 2.00000 -134.34612 2.00000 -90.37712 2.00000 -90.37712 2.00000 -90.36629 2.00000 -90.36629 2.00000 -90.35544 2.00000 -90.35544 2.00000 -8.27984 2.00000 -8.27984 2.00000 -3.78843 2.00000 -3.78843 0.00000 1.10779 0.00000 1.10779 0.00000 7.98797 0.00000 7.98797 0.00000 10.13302 0.00000 10.13302 0.00000 12.52523 0.00000 12.52523 + 22 0.1071429 0.5000000 0.6071429 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34612 2.00000 -134.34612 2.00000 -90.37712 2.00000 -90.37712 2.00000 -90.36629 2.00000 -90.36629 2.00000 -90.35544 2.00000 -90.35544 2.00000 -8.27492 2.00000 -8.27492 2.00000 -3.82030 2.00000 -3.82030 0.00000 1.18780 0.00000 1.18780 0.00000 7.85699 0.00000 7.85699 0.00000 10.12890 0.00000 10.12890 0.00000 12.53604 0.00000 12.53604 + 23 0.1122449 0.5000000 0.6122449 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34612 2.00000 -134.34612 2.00000 -90.37712 2.00000 -90.37712 2.00000 -90.36629 2.00000 -90.36629 2.00000 -90.35544 2.00000 -90.35544 2.00000 -8.26990 2.00000 -8.26990 2.00000 -3.85209 2.00000 -3.85209 0.00000 1.27015 0.00000 1.27015 0.00000 7.72515 0.00000 7.72515 0.00000 10.12546 0.00000 10.12546 0.00000 12.54695 0.00000 12.54695 + 24 0.1173469 0.5000000 0.6173469 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34612 2.00000 -134.34612 2.00000 -90.37712 2.00000 -90.37712 2.00000 -90.36629 2.00000 -90.36629 2.00000 -90.35544 2.00000 -90.35544 2.00000 -8.26479 2.00000 -8.26479 2.00000 -3.88367 2.00000 -3.88367 0.00000 1.35472 0.00000 1.35472 0.00000 7.59266 0.00000 7.59266 0.00000 10.12258 0.00000 10.12258 0.00000 12.55793 0.00000 12.55793 + 25 0.1224490 0.5000000 0.6224490 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34612 2.00000 -134.34612 2.00000 -90.37712 2.00000 -90.37712 2.00000 -90.36629 2.00000 -90.36629 2.00000 -90.35544 2.00000 -90.35544 2.00000 -8.25962 2.00000 -8.25962 2.00000 -3.91493 2.00000 -3.91493 0.00000 1.44142 0.00000 1.44142 0.00000 7.45970 0.00000 7.45970 0.00000 10.12018 0.00000 10.12018 0.00000 12.56898 0.00000 12.56898 + 26 0.1275510 0.5000000 0.6275510 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34612 2.00000 -134.34612 2.00000 -90.37712 2.00000 -90.37712 2.00000 -90.36629 2.00000 -90.36629 2.00000 -90.35544 2.00000 -90.35544 2.00000 -8.25441 2.00000 -8.25441 2.00000 -3.94577 2.00000 -3.94577 0.00000 1.53013 0.00000 1.53013 0.00000 7.32643 0.00000 7.32643 0.00000 10.11818 0.00000 10.11818 0.00000 12.58008 0.00000 12.58008 + 27 0.1326531 0.5000000 0.6326531 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34612 2.00000 -134.34612 2.00000 -90.37712 2.00000 -90.37712 2.00000 -90.36629 2.00000 -90.36629 2.00000 -90.35544 2.00000 -90.35544 2.00000 -8.24918 2.00000 -8.24918 2.00000 -3.97608 2.00000 -3.97608 0.00000 1.62077 0.00000 1.62077 0.00000 7.19299 0.00000 7.19299 0.00000 10.11653 0.00000 10.11653 0.00000 12.59120 0.00000 12.59120 + 28 0.1377551 0.5000000 0.6377551 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34612 2.00000 -134.34612 2.00000 -90.37712 2.00000 -90.37712 2.00000 -90.36629 2.00000 -90.36629 2.00000 -90.35544 2.00000 -90.35544 2.00000 -8.24395 2.00000 -8.24395 2.00000 -4.00576 2.00000 -4.00576 0.00000 1.71324 0.00000 1.71324 0.00000 7.05950 0.00000 7.05950 0.00000 10.11517 0.00000 10.11517 0.00000 12.60230 0.00000 12.60230 + 29 0.1428571 0.5000000 0.6428571 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34612 2.00000 -134.34612 2.00000 -90.37712 2.00000 -90.37712 2.00000 -90.36629 2.00000 -90.36629 2.00000 -90.35544 2.00000 -90.35544 2.00000 -8.23874 2.00000 -8.23874 2.00000 -4.03473 2.00000 -4.03473 0.00000 1.80745 0.00000 1.80745 0.00000 6.92607 0.00000 6.92607 0.00000 10.11406 0.00000 10.11406 0.00000 12.61336 0.00000 12.61336 + 30 0.1479592 0.5000000 0.6479592 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34612 2.00000 -134.34612 2.00000 -90.37712 2.00000 -90.37712 2.00000 -90.36629 2.00000 -90.36629 2.00000 -90.35544 2.00000 -90.35544 2.00000 -8.23357 2.00000 -8.23357 2.00000 -4.06290 2.00000 -4.06290 0.00000 1.90332 0.00000 1.90332 0.00000 6.79280 0.00000 6.79280 0.00000 10.11317 0.00000 10.11317 0.00000 12.62433 0.00000 12.62433 + 31 0.1530612 0.5000000 0.6530612 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34612 2.00000 -134.34612 2.00000 -90.37712 2.00000 -90.37712 2.00000 -90.36629 2.00000 -90.36629 2.00000 -90.35544 2.00000 -90.35544 2.00000 -8.22847 2.00000 -8.22847 2.00000 -4.09020 2.00000 -4.09020 0.00000 2.00076 0.00000 2.00076 0.00000 6.65979 0.00000 6.65979 0.00000 10.11246 0.00000 10.11246 0.00000 12.63518 0.00000 12.63518 + 32 0.1581633 0.5000000 0.6581633 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34612 2.00000 -134.34612 2.00000 -90.37712 2.00000 -90.37712 2.00000 -90.36629 2.00000 -90.36629 2.00000 -90.35544 2.00000 -90.35544 2.00000 -8.22346 2.00000 -8.22346 2.00000 -4.11654 2.00000 -4.11654 0.00000 2.09969 0.00000 2.09969 0.00000 6.52713 0.00000 6.52713 0.00000 10.11190 0.00000 10.11190 0.00000 12.64587 0.00000 12.64587 + 33 0.1632653 0.5000000 0.6632653 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34612 2.00000 -134.34612 2.00000 -90.37712 2.00000 -90.37712 2.00000 -90.36629 2.00000 -90.36629 2.00000 -90.35544 2.00000 -90.35544 2.00000 -8.21856 2.00000 -8.21856 2.00000 -4.14185 2.00000 -4.14185 0.00000 2.20002 0.00000 2.20002 0.00000 6.39490 0.00000 6.39490 0.00000 10.11147 0.00000 10.11147 0.00000 12.65634 0.00000 12.65634 + 34 0.1683673 0.5000000 0.6683673 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34612 2.00000 -134.34612 2.00000 -90.37712 2.00000 -90.37712 2.00000 -90.36629 2.00000 -90.36629 2.00000 -90.35544 2.00000 -90.35544 2.00000 -8.21379 2.00000 -8.21379 2.00000 -4.16608 2.00000 -4.16608 0.00000 2.30166 0.00000 2.30166 0.00000 6.26320 0.00000 6.26320 0.00000 10.11115 0.00000 10.11115 0.00000 12.66656 0.00000 12.66656 + 35 0.1734694 0.5000000 0.6734694 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34612 2.00000 -134.34612 2.00000 -90.37712 2.00000 -90.37712 2.00000 -90.36628 2.00000 -90.36628 2.00000 -90.35544 2.00000 -90.35544 2.00000 -8.20918 2.00000 -8.20918 2.00000 -4.18915 2.00000 -4.18915 0.00000 2.40453 0.00000 2.40453 0.00000 6.13212 0.00000 6.13212 0.00000 10.11093 0.00000 10.11093 0.00000 12.67648 0.00000 12.67648 + 36 0.1785714 0.5000000 0.6785714 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34612 2.00000 -134.34612 2.00000 -90.37712 2.00000 -90.37712 2.00000 -90.36628 2.00000 -90.36628 2.00000 -90.35544 2.00000 -90.35544 2.00000 -8.20475 2.00000 -8.20475 2.00000 -4.21100 2.00000 -4.21100 0.00000 2.50852 0.00000 2.50852 0.00000 6.00176 0.00000 6.00176 0.00000 10.11078 0.00000 10.11078 0.00000 12.68604 0.00000 12.68604 + 37 0.1836735 0.5000000 0.6836735 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34612 2.00000 -134.34612 2.00000 -90.37712 2.00000 -90.37712 2.00000 -90.36628 2.00000 -90.36628 2.00000 -90.35544 2.00000 -90.35544 2.00000 -8.20051 2.00000 -8.20051 2.00000 -4.23159 2.00000 -4.23159 0.00000 2.61351 0.00000 2.61351 0.00000 5.87223 0.00000 5.87223 0.00000 10.11069 0.00000 10.11069 0.00000 12.69521 0.00000 12.69521 + 38 0.1887755 0.5000000 0.6887755 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34612 2.00000 -134.34612 2.00000 -90.37712 2.00000 -90.37712 2.00000 -90.36628 2.00000 -90.36628 2.00000 -90.35544 2.00000 -90.35544 2.00000 -8.19650 2.00000 -8.19650 2.00000 -4.25086 2.00000 -4.25086 0.00000 2.71938 0.00000 2.71938 0.00000 5.74365 0.00000 5.74365 0.00000 10.11066 0.00000 10.11066 0.00000 12.70393 0.00000 12.70393 + 39 0.1938775 0.5000000 0.6938775 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34612 2.00000 -134.34612 2.00000 -90.37712 2.00000 -90.37712 2.00000 -90.36628 2.00000 -90.36628 2.00000 -90.35544 2.00000 -90.35544 2.00000 -8.19272 2.00000 -8.19272 2.00000 -4.26876 2.00000 -4.26876 0.00000 2.82596 0.00000 2.82596 0.00000 5.61620 0.00000 5.61620 0.00000 10.11066 0.00000 10.11066 0.00000 12.71216 0.00000 12.71216 + 40 0.1989796 0.5000000 0.6989796 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34612 2.00000 -134.34612 2.00000 -90.37712 2.00000 -90.37712 2.00000 -90.36628 2.00000 -90.36628 2.00000 -90.35544 2.00000 -90.35544 2.00000 -8.18920 2.00000 -8.18920 2.00000 -4.28526 2.00000 -4.28526 0.00000 2.93305 0.00000 2.93305 0.00000 5.49006 0.00000 5.49006 0.00000 10.11069 0.00000 10.11069 0.00000 12.71985 0.00000 12.71985 + 41 0.2040816 0.5000000 0.7040816 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34612 2.00000 -134.34612 2.00000 -90.37712 2.00000 -90.37712 2.00000 -90.36628 2.00000 -90.36628 2.00000 -90.35544 2.00000 -90.35544 2.00000 -8.18596 2.00000 -8.18596 2.00000 -4.30030 2.00000 -4.30030 0.00000 3.04038 0.00000 3.04038 0.00000 5.36551 0.00000 5.36551 0.00000 10.11074 0.00000 10.11074 0.00000 12.72696 0.00000 12.72696 + 42 0.2091837 0.5000000 0.7091837 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34612 2.00000 -134.34612 2.00000 -90.37712 2.00000 -90.37712 2.00000 -90.36628 2.00000 -90.36628 2.00000 -90.35544 2.00000 -90.35544 2.00000 -8.18301 2.00000 -8.18301 2.00000 -4.31386 2.00000 -4.31386 0.00000 3.14760 0.00000 3.14760 0.00000 5.24289 0.00000 5.24289 0.00000 10.11081 0.00000 10.11081 0.00000 12.73344 0.00000 12.73344 + 43 0.2142857 0.5000000 0.7142857 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34612 2.00000 -134.34612 2.00000 -90.37712 2.00000 -90.37712 2.00000 -90.36628 2.00000 -90.36628 2.00000 -90.35544 2.00000 -90.35544 2.00000 -8.18037 2.00000 -8.18037 2.00000 -4.32590 2.00000 -4.32590 0.00000 3.25418 0.00000 3.25418 0.00000 5.12273 0.00000 5.12273 0.00000 10.11088 0.00000 10.11088 0.00000 12.73926 0.00000 12.73926 + 44 0.2193878 0.5000000 0.7193878 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34612 2.00000 -134.34612 2.00000 -90.37712 2.00000 -90.37712 2.00000 -90.36628 2.00000 -90.36628 2.00000 -90.35544 2.00000 -90.35544 2.00000 -8.17806 2.00000 -8.17806 2.00000 -4.33639 2.00000 -4.33639 0.00000 3.35935 0.00000 3.35935 0.00000 5.00579 0.00000 5.00579 0.00000 10.11095 0.00000 10.11095 0.00000 12.74439 0.00000 12.74439 + 45 0.2244898 0.5000000 0.7244898 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34612 2.00000 -134.34612 2.00000 -90.37712 2.00000 -90.37712 2.00000 -90.36628 2.00000 -90.36628 2.00000 -90.35544 2.00000 -90.35544 2.00000 -8.17608 2.00000 -8.17608 2.00000 -4.34531 2.00000 -4.34531 0.00000 3.46190 0.00000 3.46190 0.00000 4.89330 0.00000 4.89330 0.00000 10.11102 0.00000 10.11102 0.00000 12.74878 0.00000 12.74878 + 46 0.2295918 0.5000000 0.7295918 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34612 2.00000 -134.34612 2.00000 -90.37712 2.00000 -90.37712 2.00000 -90.36628 2.00000 -90.36628 2.00000 -90.35544 2.00000 -90.35544 2.00000 -8.17444 2.00000 -8.17444 2.00000 -4.35264 2.00000 -4.35264 0.00000 3.55983 0.00000 3.55983 0.00000 4.78723 0.00000 4.78723 0.00000 10.11109 0.00000 10.11109 0.00000 12.75241 0.00000 12.75241 + 47 0.2346939 0.5000000 0.7346939 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34612 2.00000 -134.34612 2.00000 -90.37712 2.00000 -90.37712 2.00000 -90.36628 2.00000 -90.36628 2.00000 -90.35544 2.00000 -90.35544 2.00000 -8.17316 2.00000 -8.17316 2.00000 -4.35836 2.00000 -4.35836 0.00000 3.64975 0.00000 3.64975 0.00000 4.69098 0.00000 4.69098 0.00000 10.11114 0.00000 10.11114 0.00000 12.75526 0.00000 12.75526 + 48 0.2397959 0.5000000 0.7397959 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34612 2.00000 -134.34612 2.00000 -90.37712 2.00000 -90.37712 2.00000 -90.36628 2.00000 -90.36628 2.00000 -90.35544 2.00000 -90.35544 2.00000 -8.17224 2.00000 -8.17224 2.00000 -4.36245 2.00000 -4.36245 0.00000 3.72590 0.00000 3.72590 0.00000 4.61031 0.00000 4.61031 0.00000 10.11118 0.00000 10.11118 0.00000 12.75731 0.00000 12.75731 + 49 0.2448980 0.5000000 0.7448980 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34612 2.00000 -134.34612 2.00000 -90.37712 2.00000 -90.37712 2.00000 -90.36628 2.00000 -90.36628 2.00000 -90.35544 2.00000 -90.35544 2.00000 -8.17168 2.00000 -8.17168 2.00000 -4.36491 2.00000 -4.36491 0.00000 3.77917 0.00000 3.77917 0.00000 4.55433 0.00000 4.55433 0.00000 10.11120 0.00000 10.11120 0.00000 12.75855 0.00000 12.75855 + 50 0.2500000 0.5000000 0.7500000 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34612 2.00000 -134.34612 2.00000 -90.37712 2.00000 -90.37712 2.00000 -90.36628 2.00000 -90.36628 2.00000 -90.35544 2.00000 -90.35544 2.00000 -8.17150 2.00000 -8.17150 2.00000 -4.36574 2.00000 -4.36574 0.00000 3.79873 0.00000 3.79873 0.00000 4.53386 0.00000 4.53386 0.00000 10.11121 0.00000 10.11121 0.00000 12.75896 0.00000 12.75896 diff --git a/tests/data/normalizers/dos/dos_si_fhiaims/band1004.out b/tests/data/normalizers/dos/dos_si_fhiaims/band1004.out new file mode 100644 index 0000000000000000000000000000000000000000..7c4ec7f7499efebbfce2f3668910f31136a85683 --- /dev/null +++ b/tests/data/normalizers/dos/dos_si_fhiaims/band1004.out @@ -0,0 +1,50 @@ + 1 0.2500000 0.5000000 0.7500000 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34612 2.00000 -134.34612 2.00000 -90.37712 2.00000 -90.37712 2.00000 -90.36628 2.00000 -90.36628 2.00000 -90.35544 2.00000 -90.35544 2.00000 -8.17150 2.00000 -8.17150 2.00000 -4.36574 2.00000 -4.36574 0.00000 3.79873 0.00000 3.79873 0.00000 4.53386 0.00000 4.53386 0.00000 10.11121 0.00000 10.11121 0.00000 12.75896 0.00000 12.75896 + 2 0.2525510 0.4974490 0.7500000 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34614 2.00000 -134.34610 2.00000 -90.37713 2.00000 -90.37711 2.00000 -90.36635 2.00000 -90.36622 2.00000 -90.35544 2.00000 -90.35543 2.00000 -8.19471 2.00000 -8.14844 2.00000 -4.38323 2.00000 -4.34743 0.00000 3.77129 0.00000 3.81486 0.00000 4.52446 0.00000 4.55551 0.00000 10.06717 0.00000 10.15362 0.00000 12.71438 0.00000 12.80480 + 3 0.2551020 0.4948980 0.7500000 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34616 2.00000 -134.34608 2.00000 -90.37714 2.00000 -90.37711 2.00000 -90.36641 2.00000 -90.36616 2.00000 -90.35545 2.00000 -90.35542 2.00000 -8.21746 2.00000 -8.12616 2.00000 -4.40041 2.00000 -4.32779 0.00000 3.72581 0.00000 3.82789 0.00000 4.53424 0.00000 4.58099 0.00000 10.02207 0.00000 10.19367 0.00000 12.67148 0.00000 12.85164 + 4 0.2576531 0.4923469 0.7500000 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34618 2.00000 -134.34606 2.00000 -90.37714 2.00000 -90.37710 2.00000 -90.36647 2.00000 -90.36610 2.00000 -90.35546 2.00000 -90.35542 2.00000 -8.23974 2.00000 -8.10467 2.00000 -4.41729 2.00000 -4.30685 0.00000 3.66583 0.00000 3.83796 0.00000 4.55970 0.00000 4.61014 0.00000 9.97600 0.00000 10.23102 0.00000 12.63063 0.00000 12.89940 + 5 0.2602041 0.4897959 0.7500000 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34621 2.00000 -134.34604 2.00000 -90.37715 2.00000 -90.37709 2.00000 -90.36653 2.00000 -90.36604 2.00000 -90.35547 2.00000 -90.35541 2.00000 -8.26155 2.00000 -8.08396 2.00000 -4.43386 2.00000 -4.28461 0.00000 3.59526 0.00000 3.84531 0.00000 4.59691 0.00000 4.64274 0.00000 9.92899 0.00000 10.26532 0.00000 12.59220 0.00000 12.94802 + 6 0.2627551 0.4872449 0.7500000 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34623 2.00000 -134.34602 2.00000 -90.37716 2.00000 -90.37708 2.00000 -90.36658 2.00000 -90.36598 2.00000 -90.35548 2.00000 -90.35540 2.00000 -8.28289 2.00000 -8.06404 2.00000 -4.45011 2.00000 -4.26110 0.00000 3.51741 0.00000 3.85019 0.00000 4.64261 0.00000 4.67850 0.00000 9.88112 0.00000 10.29617 0.00000 12.55662 0.00000 12.99743 + 7 0.2653061 0.4846939 0.7500000 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34624 2.00000 -134.34600 2.00000 -90.37716 2.00000 -90.37707 2.00000 -90.36664 2.00000 -90.36593 2.00000 -90.35548 2.00000 -90.35540 2.00000 -8.30376 2.00000 -8.04490 2.00000 -4.46605 2.00000 -4.23633 0.00000 3.43466 0.00000 3.85290 0.00000 4.69442 0.00000 4.71715 0.00000 9.83243 0.00000 10.32317 0.00000 12.52432 0.00000 13.04758 + 8 0.2678571 0.4821429 0.7500000 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34626 2.00000 -134.34598 2.00000 -90.37717 2.00000 -90.37707 2.00000 -90.36670 2.00000 -90.36587 2.00000 -90.35549 2.00000 -90.35539 2.00000 -8.32415 2.00000 -8.02653 2.00000 -4.48165 2.00000 -4.21034 0.00000 3.34870 0.00000 3.85374 0.00000 4.75069 0.00000 4.75836 0.00000 9.78297 0.00000 10.34590 0.00000 12.49575 0.00000 13.09842 + 9 0.2704082 0.4795918 0.7500000 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34628 2.00000 -134.34596 2.00000 -90.37718 2.00000 -90.37706 2.00000 -90.36676 2.00000 -90.36581 2.00000 -90.35550 2.00000 -90.35539 2.00000 -8.34408 2.00000 -8.00893 2.00000 -4.49694 2.00000 -4.18315 0.00000 3.26065 0.00000 3.85298 0.00000 4.80186 0.00000 4.81030 0.00000 9.73277 0.00000 10.36394 0.00000 12.47136 0.00000 13.14988 + 10 0.2729592 0.4770408 0.7500000 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34630 2.00000 -134.34594 2.00000 -90.37718 2.00000 -90.37705 2.00000 -90.36681 2.00000 -90.36576 2.00000 -90.35551 2.00000 -90.35538 2.00000 -8.36353 2.00000 -7.99208 2.00000 -4.51189 2.00000 -4.15480 0.00000 3.17132 0.00000 3.85087 0.00000 4.84739 0.00000 4.87248 0.00000 9.68188 0.00000 10.37690 0.00000 12.45156 0.00000 13.20194 + 11 0.2755102 0.4744898 0.7500000 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34632 2.00000 -134.34592 2.00000 -90.37719 2.00000 -90.37704 2.00000 -90.36687 2.00000 -90.36570 2.00000 -90.35552 2.00000 -90.35537 2.00000 -8.38250 2.00000 -7.97599 2.00000 -4.52651 2.00000 -4.12532 0.00000 3.08126 0.00000 3.84764 0.00000 4.89470 0.00000 4.93669 0.00000 9.63032 0.00000 10.38443 0.00000 12.43675 0.00000 13.25454 + 12 0.2780612 0.4719388 0.7500000 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34634 2.00000 -134.34590 2.00000 -90.37719 2.00000 -90.37703 2.00000 -90.36692 2.00000 -90.36565 2.00000 -90.35553 2.00000 -90.35537 2.00000 -8.40100 2.00000 -7.96062 2.00000 -4.54080 2.00000 -4.09475 0.00000 2.99088 0.00000 3.84350 0.00000 4.94360 0.00000 5.00256 0.00000 9.57815 0.00000 10.38624 0.00000 12.42724 0.00000 13.30765 + 13 0.2806122 0.4693878 0.7500000 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34636 2.00000 -134.34589 2.00000 -90.37720 2.00000 -90.37702 2.00000 -90.36697 2.00000 -90.36559 2.00000 -90.35554 2.00000 -90.35536 2.00000 -8.41903 2.00000 -7.94598 2.00000 -4.55474 2.00000 -4.06313 0.00000 2.90048 0.00000 3.83860 0.00000 4.99389 0.00000 5.06981 0.00000 9.52537 0.00000 10.38213 0.00000 12.42327 0.00000 13.36123 + 14 0.2831633 0.4668367 0.7500000 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34637 2.00000 -134.34587 2.00000 -90.37720 2.00000 -90.37701 2.00000 -90.36703 2.00000 -90.36554 2.00000 -90.35555 2.00000 -90.35536 2.00000 -8.43658 2.00000 -7.93204 2.00000 -4.56835 2.00000 -4.03052 0.00000 2.81031 0.00000 3.83312 0.00000 5.04543 0.00000 5.13823 0.00000 9.47203 0.00000 10.37200 0.00000 12.42496 0.00000 13.41524 + 15 0.2857143 0.4642857 0.7500000 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34639 2.00000 -134.34585 2.00000 -90.37721 2.00000 -90.37700 2.00000 -90.36708 2.00000 -90.36549 2.00000 -90.35556 2.00000 -90.35535 2.00000 -8.45366 2.00000 -7.91879 2.00000 -4.58161 2.00000 -3.99697 0.00000 2.72054 0.00000 3.82716 0.00000 5.09808 0.00000 5.20767 0.00000 9.41814 0.00000 10.35585 0.00000 12.43235 0.00000 13.46965 + 16 0.2882653 0.4617347 0.7500000 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34640 2.00000 -134.34584 2.00000 -90.37722 2.00000 -90.37699 2.00000 -90.36713 2.00000 -90.36544 2.00000 -90.35557 2.00000 -90.35535 2.00000 -8.47026 2.00000 -7.90621 2.00000 -4.59452 2.00000 -3.96252 0.00000 2.63132 0.00000 3.82083 0.00000 5.15172 0.00000 5.27801 0.00000 9.36373 0.00000 10.33379 0.00000 12.44538 0.00000 13.52442 + 17 0.2908163 0.4591837 0.7500000 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34642 2.00000 -134.34582 2.00000 -90.37722 2.00000 -90.37698 2.00000 -90.36718 2.00000 -90.36539 2.00000 -90.35558 2.00000 -90.35534 2.00000 -8.48639 2.00000 -7.89429 2.00000 -4.60708 2.00000 -3.92723 0.00000 2.54280 0.00000 3.81424 0.00000 5.20624 0.00000 5.34916 0.00000 9.30883 0.00000 10.30601 0.00000 12.46386 0.00000 13.57953 + 18 0.2933673 0.4566327 0.7500000 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34644 2.00000 -134.34581 2.00000 -90.37723 2.00000 -90.37697 2.00000 -90.36723 2.00000 -90.36534 2.00000 -90.35559 2.00000 -90.35534 2.00000 -8.50203 2.00000 -7.88299 2.00000 -4.61930 2.00000 -3.89117 0.00000 2.45508 0.00000 3.80745 0.00000 5.26157 0.00000 5.42104 0.00000 9.25345 0.00000 10.27280 0.00000 12.48756 0.00000 13.63493 + 19 0.2959184 0.4540816 0.7500000 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34645 2.00000 -134.34579 2.00000 -90.37723 2.00000 -90.37696 2.00000 -90.36728 2.00000 -90.36529 2.00000 -90.35560 2.00000 -90.35533 2.00000 -8.51720 2.00000 -7.87231 2.00000 -4.63115 2.00000 -3.85440 0.00000 2.36827 0.00000 3.80054 0.00000 5.31761 0.00000 5.49358 0.00000 9.19763 0.00000 10.23447 0.00000 12.51619 0.00000 13.69061 + 20 0.2984694 0.4515306 0.7500000 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34647 2.00000 -134.34578 2.00000 -90.37724 2.00000 -90.37695 2.00000 -90.36732 2.00000 -90.36525 2.00000 -90.35561 2.00000 -90.35533 2.00000 -8.53190 2.00000 -7.86222 2.00000 -4.64266 2.00000 -3.81699 0.00000 2.28246 0.00000 3.79356 0.00000 5.37431 0.00000 5.56675 0.00000 9.14137 0.00000 10.19139 0.00000 12.54941 0.00000 13.74652 + 21 0.3010204 0.4489796 0.7500000 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34648 2.00000 -134.34576 2.00000 -90.37724 2.00000 -90.37694 2.00000 -90.36737 2.00000 -90.36520 2.00000 -90.35562 2.00000 -90.35532 2.00000 -8.54611 2.00000 -7.85271 2.00000 -4.65380 2.00000 -3.77901 0.00000 2.19774 0.00000 3.78656 0.00000 5.43159 0.00000 5.64049 0.00000 9.08471 0.00000 10.14396 0.00000 12.58686 0.00000 13.80264 + 22 0.3035714 0.4464286 0.7500000 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34649 2.00000 -134.34575 2.00000 -90.37724 2.00000 -90.37693 2.00000 -90.36741 2.00000 -90.36516 2.00000 -90.35563 2.00000 -90.35532 2.00000 -8.55985 2.00000 -7.84375 2.00000 -4.66458 2.00000 -3.74054 0.00000 2.11420 0.00000 3.77959 0.00000 5.48941 0.00000 5.71476 0.00000 9.02766 0.00000 10.09256 0.00000 12.62820 0.00000 13.85893 + 23 0.3061224 0.4438776 0.7500000 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34651 2.00000 -134.34574 2.00000 -90.37725 2.00000 -90.37692 2.00000 -90.36745 2.00000 -90.36512 2.00000 -90.35564 2.00000 -90.35531 2.00000 -8.57310 2.00000 -7.83532 2.00000 -4.67501 2.00000 -3.70167 0.00000 2.03194 0.00000 3.77267 0.00000 5.54771 0.00000 5.78955 0.00000 8.97024 0.00000 10.03756 0.00000 12.67308 0.00000 13.91537 + 24 0.3086735 0.4413265 0.7500000 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34652 2.00000 -134.34572 2.00000 -90.37725 2.00000 -90.37691 2.00000 -90.36750 2.00000 -90.36507 2.00000 -90.35565 2.00000 -90.35531 2.00000 -8.58588 2.00000 -7.82740 2.00000 -4.68506 2.00000 -3.66247 0.00000 1.95103 0.00000 3.76585 0.00000 5.60645 0.00000 5.86482 0.00000 8.91248 0.00000 9.97932 0.00000 12.72116 0.00000 13.97191 + 25 0.3112245 0.4387755 0.7500000 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34653 2.00000 -134.34571 2.00000 -90.37726 2.00000 -90.37690 2.00000 -90.36754 2.00000 -90.36503 2.00000 -90.35566 2.00000 -90.35530 2.00000 -8.59818 2.00000 -7.81997 2.00000 -4.69476 2.00000 -3.62305 0.00000 1.87156 0.00000 3.75914 0.00000 5.66558 0.00000 5.94053 0.00000 8.85439 0.00000 9.91818 0.00000 12.77216 0.00000 14.02852 + 26 0.3137755 0.4362245 0.7500000 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34654 2.00000 -134.34570 2.00000 -90.37726 2.00000 -90.37689 2.00000 -90.36758 2.00000 -90.36499 2.00000 -90.35567 2.00000 -90.35530 2.00000 -8.61000 2.00000 -7.81301 2.00000 -4.70408 2.00000 -3.58349 0.00000 1.79364 0.00000 3.75258 0.00000 5.72506 0.00000 6.01668 0.00000 8.79600 0.00000 9.85444 0.00000 12.82578 0.00000 14.08517 + 27 0.3163265 0.4336735 0.7500000 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34655 2.00000 -134.34569 2.00000 -90.37727 2.00000 -90.37688 2.00000 -90.36761 2.00000 -90.36496 2.00000 -90.35568 2.00000 -90.35530 2.00000 -8.62133 2.00000 -7.80650 2.00000 -4.71304 2.00000 -3.54391 0.00000 1.71736 0.00000 3.74618 0.00000 5.78485 0.00000 6.09323 0.00000 8.73733 0.00000 9.78839 0.00000 12.88177 0.00000 14.14181 + 28 0.3188775 0.4311225 0.7500000 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34656 2.00000 -134.34568 2.00000 -90.37727 2.00000 -90.37687 2.00000 -90.36765 2.00000 -90.36492 2.00000 -90.35569 2.00000 -90.35529 2.00000 -8.63219 2.00000 -7.80043 2.00000 -4.72162 2.00000 -3.50440 0.00000 1.64281 0.00000 3.73997 0.00000 5.84492 0.00000 6.17017 0.00000 8.67841 0.00000 9.72028 0.00000 12.93992 0.00000 14.19840 + 29 0.3214286 0.4285714 0.7500000 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34657 2.00000 -134.34567 2.00000 -90.37727 2.00000 -90.37686 2.00000 -90.36768 2.00000 -90.36489 2.00000 -90.35569 2.00000 -90.35529 2.00000 -8.64257 2.00000 -7.79476 2.00000 -4.72984 2.00000 -3.46509 0.00000 1.57010 0.00000 3.73395 0.00000 5.90522 0.00000 6.24746 0.00000 8.61925 0.00000 9.65036 0.00000 13.00000 0.00000 14.25488 + 30 0.3239796 0.4260204 0.7500000 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34658 2.00000 -134.34566 2.00000 -90.37728 2.00000 -90.37685 2.00000 -90.36772 2.00000 -90.36485 2.00000 -90.35570 2.00000 -90.35529 2.00000 -8.65246 2.00000 -7.78949 2.00000 -4.73767 2.00000 -3.42608 0.00000 1.49935 0.00000 3.72815 0.00000 5.96572 0.00000 6.32510 0.00000 8.55990 0.00000 9.57882 0.00000 13.06184 0.00000 14.31121 + 31 0.3265306 0.4234694 0.7500000 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34659 2.00000 -134.34565 2.00000 -90.37728 2.00000 -90.37684 2.00000 -90.36775 2.00000 -90.36482 2.00000 -90.35571 2.00000 -90.35528 2.00000 -8.66188 2.00000 -7.78459 2.00000 -4.74514 2.00000 -3.38752 0.00000 1.43067 0.00000 3.72257 0.00000 6.02636 0.00000 6.40305 0.00000 8.50039 0.00000 9.50587 0.00000 13.12527 0.00000 14.36733 + 32 0.3290816 0.4209184 0.7500000 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34660 2.00000 -134.34564 2.00000 -90.37728 2.00000 -90.37684 2.00000 -90.36778 2.00000 -90.36479 2.00000 -90.35572 2.00000 -90.35528 2.00000 -8.67081 2.00000 -7.78005 2.00000 -4.75223 2.00000 -3.34953 0.00000 1.36418 0.00000 3.71723 0.00000 6.08712 0.00000 6.48130 0.00000 8.44074 0.00000 9.43167 0.00000 13.19015 0.00000 14.42316 + 33 0.3316327 0.4183673 0.7500000 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34661 2.00000 -134.34563 2.00000 -90.37728 2.00000 -90.37683 2.00000 -90.36781 2.00000 -90.36476 2.00000 -90.35573 2.00000 -90.35528 2.00000 -8.67926 2.00000 -7.77585 2.00000 -4.75894 2.00000 -3.31225 0.00000 1.30001 0.00000 3.71214 0.00000 6.14794 0.00000 6.55981 0.00000 8.38100 0.00000 9.35639 0.00000 13.25634 0.00000 14.47863 + 34 0.3341837 0.4158163 0.7500000 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34662 2.00000 -134.34562 2.00000 -90.37729 2.00000 -90.37682 2.00000 -90.36784 2.00000 -90.36473 2.00000 -90.35573 2.00000 -90.35528 2.00000 -8.68723 2.00000 -7.77198 2.00000 -4.76528 2.00000 -3.27583 0.00000 1.23830 0.00000 3.70730 0.00000 6.20877 0.00000 6.63856 0.00000 8.32121 0.00000 9.28018 0.00000 13.32372 0.00000 14.53364 + 35 0.3367347 0.4132653 0.7500000 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34663 2.00000 -134.34561 2.00000 -90.37729 2.00000 -90.37681 2.00000 -90.36786 2.00000 -90.36471 2.00000 -90.35574 2.00000 -90.35527 2.00000 -8.69472 2.00000 -7.76842 2.00000 -4.77123 2.00000 -3.24042 0.00000 1.17919 0.00000 3.70272 0.00000 6.26955 0.00000 6.71752 0.00000 8.26144 0.00000 9.20318 0.00000 13.39219 0.00000 14.58809 + 36 0.3392857 0.4107143 0.7500000 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34663 2.00000 -134.34561 2.00000 -90.37729 2.00000 -90.37681 2.00000 -90.36789 2.00000 -90.36468 2.00000 -90.35575 2.00000 -90.35527 2.00000 -8.70172 2.00000 -7.76516 2.00000 -4.77681 2.00000 -3.20618 0.00000 1.12282 0.00000 3.69842 0.00000 6.33021 0.00000 6.79665 0.00000 8.20173 0.00000 9.12551 0.00000 13.46165 0.00000 14.64185 + 37 0.3418367 0.4081633 0.7500000 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34664 2.00000 -134.34560 2.00000 -90.37729 2.00000 -90.37680 2.00000 -90.36791 2.00000 -90.36466 2.00000 -90.35575 2.00000 -90.35527 2.00000 -8.70825 2.00000 -7.76218 2.00000 -4.78200 2.00000 -3.17327 0.00000 1.06936 0.00000 3.69439 0.00000 6.39066 0.00000 6.87589 0.00000 8.14218 0.00000 9.04731 0.00000 13.53199 0.00000 14.69478 + 38 0.3443878 0.4056122 0.7500000 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34665 2.00000 -134.34559 2.00000 -90.37730 2.00000 -90.37679 2.00000 -90.36793 2.00000 -90.36464 2.00000 -90.35576 2.00000 -90.35527 2.00000 -8.71429 2.00000 -7.75947 2.00000 -4.78682 2.00000 -3.14185 0.00000 1.01896 0.00000 3.69063 0.00000 6.45081 0.00000 6.95520 0.00000 8.08289 0.00000 8.96871 0.00000 13.60315 0.00000 14.74668 + 39 0.3469388 0.4030612 0.7500000 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34665 2.00000 -134.34559 2.00000 -90.37730 2.00000 -90.37679 2.00000 -90.36795 2.00000 -90.36462 2.00000 -90.35577 2.00000 -90.35526 2.00000 -8.71985 2.00000 -7.75702 2.00000 -4.79125 2.00000 -3.11211 0.00000 0.97178 0.00000 3.68717 0.00000 6.51052 0.00000 7.03451 0.00000 8.02397 0.00000 8.88984 0.00000 13.67504 0.00000 14.79735 + 40 0.3494898 0.4005102 0.7500000 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34666 2.00000 -134.34558 2.00000 -90.37730 2.00000 -90.37678 2.00000 -90.36797 2.00000 -90.36460 2.00000 -90.35577 2.00000 -90.35526 2.00000 -8.72492 2.00000 -7.75482 2.00000 -4.79530 2.00000 -3.08421 0.00000 0.92799 0.00000 3.68399 0.00000 6.56963 0.00000 7.11373 0.00000 7.96559 0.00000 8.81085 0.00000 13.74757 0.00000 14.84652 + 41 0.3520408 0.3979592 0.7500000 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34666 2.00000 -134.34558 2.00000 -90.37730 2.00000 -90.37678 2.00000 -90.36799 2.00000 -90.36458 2.00000 -90.35578 2.00000 -90.35526 2.00000 -8.72951 2.00000 -7.75286 2.00000 -4.79896 2.00000 -3.05832 0.00000 0.88774 0.00000 3.68111 0.00000 6.62792 0.00000 7.19272 0.00000 7.90796 0.00000 8.73193 0.00000 13.82067 0.00000 14.89387 + 42 0.3545918 0.3954082 0.7500000 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34667 2.00000 -134.34557 2.00000 -90.37730 2.00000 -90.37677 2.00000 -90.36800 2.00000 -90.36457 2.00000 -90.35578 2.00000 -90.35526 2.00000 -8.73362 2.00000 -7.75113 2.00000 -4.80224 2.00000 -3.03460 0.00000 0.85120 0.00000 3.67852 0.00000 6.68510 0.00000 7.27132 0.00000 7.85139 0.00000 8.65328 0.00000 13.89427 0.00000 14.93899 + 43 0.3571429 0.3928571 0.7500000 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34667 2.00000 -134.34557 2.00000 -90.37730 2.00000 -90.37677 2.00000 -90.36802 2.00000 -90.36455 2.00000 -90.35578 2.00000 -90.35526 2.00000 -8.73725 2.00000 -7.74962 2.00000 -4.80513 2.00000 -3.01323 0.00000 0.81853 0.00000 3.67623 0.00000 6.74076 0.00000 7.34926 0.00000 7.79626 0.00000 8.57520 0.00000 13.96826 0.00000 14.98143 + 44 0.3596939 0.3903061 0.7500000 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34667 2.00000 -134.34557 2.00000 -90.37731 2.00000 -90.37677 2.00000 -90.36803 2.00000 -90.36454 2.00000 -90.35579 2.00000 -90.35526 2.00000 -8.74039 2.00000 -7.74833 2.00000 -4.80765 2.00000 -2.99436 0.00000 0.78987 0.00000 3.67424 0.00000 6.79431 0.00000 7.42617 0.00000 7.74318 0.00000 8.49812 0.00000 14.04255 0.00000 14.94361 + 45 0.3622449 0.3877551 0.7500000 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34668 2.00000 -134.34557 2.00000 -90.37731 2.00000 -90.37676 2.00000 -90.36804 2.00000 -90.36453 2.00000 -90.35579 2.00000 -90.35526 2.00000 -8.74305 2.00000 -7.74724 2.00000 -4.80977 2.00000 -2.97812 0.00000 0.76537 0.00000 3.67255 0.00000 6.84493 0.00000 7.50138 0.00000 7.69296 0.00000 8.42271 0.00000 14.11702 0.00000 14.87250 + 46 0.3647959 0.3852041 0.7500000 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34668 2.00000 -134.34556 2.00000 -90.37731 2.00000 -90.37676 2.00000 -90.36805 2.00000 -90.36453 2.00000 -90.35579 2.00000 -90.35526 2.00000 -8.74522 2.00000 -7.74636 2.00000 -4.81151 2.00000 -2.96465 0.00000 0.74513 0.00000 3.67117 0.00000 6.89138 0.00000 7.57381 0.00000 7.64683 0.00000 8.35009 0.00000 14.19146 0.00000 14.80053 + 47 0.3673469 0.3826531 0.7500000 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34668 2.00000 -134.34556 2.00000 -90.37731 2.00000 -90.37676 2.00000 -90.36805 2.00000 -90.36452 2.00000 -90.35579 2.00000 -90.35525 2.00000 -8.74692 2.00000 -7.74568 2.00000 -4.81286 2.00000 -2.95405 0.00000 0.72928 0.00000 3.67010 0.00000 6.93193 0.00000 7.60654 0.00000 7.64142 0.00000 8.28231 0.00000 14.26553 0.00000 14.72821 + 48 0.3698980 0.3801020 0.7500000 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34668 2.00000 -134.34556 2.00000 -90.37731 2.00000 -90.37676 2.00000 -90.36806 2.00000 -90.36452 2.00000 -90.35580 2.00000 -90.35525 2.00000 -8.74812 2.00000 -7.74520 2.00000 -4.81383 2.00000 -2.94641 0.00000 0.71789 0.00000 3.66933 0.00000 6.96418 0.00000 7.57447 0.00000 7.70031 0.00000 8.22329 0.00000 14.33837 0.00000 14.65653 + 49 0.3724490 0.3775510 0.7500000 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34668 2.00000 -134.34556 2.00000 -90.37731 2.00000 -90.37676 2.00000 -90.36806 2.00000 -90.36451 2.00000 -90.35580 2.00000 -90.35525 2.00000 -8.74885 2.00000 -7.74491 2.00000 -4.81441 2.00000 -2.94180 0.00000 0.71103 0.00000 3.66886 0.00000 6.98529 0.00000 7.55347 0.00000 7.74319 0.00000 8.18033 0.00000 14.40667 0.00000 14.58890 + 50 0.3750000 0.3750000 0.7500000 2.00000 -1784.53478 2.00000 -1784.53478 2.00000 -134.34668 2.00000 -134.34556 2.00000 -90.37731 2.00000 -90.37676 2.00000 -90.36806 2.00000 -90.36451 2.00000 -90.35580 2.00000 -90.35525 2.00000 -8.74909 2.00000 -7.74482 2.00000 -4.81460 2.00000 -2.94026 0.00000 0.70874 0.00000 3.66871 0.00000 6.99268 0.00000 7.54611 0.00000 7.75950 0.00000 8.16399 0.00000 14.44669 0.00000 14.54909 diff --git a/tests/data/normalizers/dos/dos_si_fhiaims/control.in b/tests/data/normalizers/dos/dos_si_fhiaims/control.in new file mode 100644 index 0000000000000000000000000000000000000000..34b5f99bea0dfb8ca8b2a920dc11bff21b537d9c --- /dev/null +++ b/tests/data/normalizers/dos/dos_si_fhiaims/control.in @@ -0,0 +1,149 @@ +##### Physical settings ################ + + xc pbe + RI_method LVL_fast + charge 0.0 + spin none +# spin collinear +# default_initial_moment 1 +# default_initial_moment hund + relativistic atomic_zora scalar + many_body_dispersion +# vdw_correction_hirshfeld +# mbd_eigensolver lapack + + KS_method scalapack + basis_threshold 1.e-5 + empty_states 8 + +##### SCF settings ################ + + sc_accuracy_forces 1E-4 + sc_accuracy_rho 1E-5 + sc_accuracy_eev 1E-3 + sc_accuracy_etot 1E-6 + sc_iter_limit 600 + mixer pulay + n_max_pulay 6 + charge_mix_param 0.08 + occupation_type gaussian 0.01 + +# k-point grid + k_grid 10 10 10 +##### Relaxation################### + +# partition_type rho_r2 +# relax_geometry bfgs 0.01 +# relax_unit_cell full +# relax_unit_cell fixed_angles + +##### Output options ############# +# output mulliken +# output dipole + +# DOS + dos_kgrid_factors 8 8 8 + output dos -20 20 10000 0.1 + output atom_proj_dos -20 10000 160 0.1 + output species_proj_dos -20 20 10000 0.1 +# note 0.02 in the DOS parameters is Gaussian broadening. + +# output band structure + output band 0.5 0.5 0.5 0.0 0.0 0.0 50 L Gamma + output band 0.0 0.0 0.0 0.0 0.5 0.5 50 Gamma X + output band 0.0 0.5 0.5 0.25 0.5 0.75 50 X W + output band 0.25 0.5 0.75 0.375 0.375 0.75 50 W K + +################################################################################ +# +# FHI-aims code project +# VB, Fritz-Haber Institut, 2009 +# +# Suggested "light" defaults for Si atom (to be pasted into control.in file) +# Be sure to double-check any results obtained with these settings for post-processing, +# e.g., with the "tight" defaults and larger basis sets. +# +################################################################################ + species Si +# global species definitions + nucleus 14 + mass 28.0855 +# + l_hartree 6 +# + cut_pot 4.0 2.0 1.0 + basis_dep_cutoff 1e-4 +# + radial_base 42 7.0 + radial_multiplier 2 + angular_grids specified + division 0.4121 50 + division 0.7665 110 + division 1.0603 194 + division 1.2846 302 + division 1.4125 434 +# division 1.4810 590 +# division 1.5529 770 +# division 1.6284 974 +# division 2.6016 1202 +# outer_grid 974 + outer_grid 434 +################################################################################ +# +# Definition of "minimal" basis +# +################################################################################ +# valence basis states + valence 3 s 2. + valence 3 p 2. +# ion occupancy + ion_occ 3 s 1. + ion_occ 3 p 1. +################################################################################ +# +# Suggested additional basis functions. For production calculations, +# uncomment them one after another (the most important basis functions are +# listed first). +# +# Constructed for dimers: 1.75 A, 2.0 A, 2.25 A, 2.75 A, 3.75 A +# +################################################################################ +# "First tier" - improvements: -571.96 meV to -37.03 meV + hydro 3 d 4.2 + hydro 2 p 1.4 + hydro 4 f 6.2 + ionic 3 s auto +# "Second tier" - improvements: -16.76 meV to -3.03 meV + hydro 3 d 9 + hydro 5 g 9.4 +# hydro 4 p 4 +# hydro 1 s 0.65 +# "Third tier" - improvements: -3.89 meV to -0.60 meV +# ionic 3 d auto +# hydro 3 s 2.6 +# hydro 4 f 8.4 +# hydro 3 d 3.4 +# hydro 3 p 7.8 +# "Fourth tier" - improvements: -0.33 meV to -0.11 meV +# hydro 2 p 1.6 +# hydro 5 g 10.8 +# hydro 5 f 11.2 +# hydro 3 d 1 +# hydro 4 s 4.5 +# Further basis functions that fell out of the optimization - noise +# level... < -0.08 meV +# hydro 4 d 6.6 +# hydro 5 g 16.4 +# hydro 4 d 9 +################################################################################ +# +# For methods that use the localized form of the "resolution of identity" for +# the two-electron Coulomb operator (RI_method LVL), particularly Hartree-Fock and +# hybrid density functional calculations, the highest accuracy can be obtained by +# uncommenting the line beginning with "for_aux" below, thus adding an extra g radial +# function to the construction of the product basis set for the expansion. +# See Ref. New J. Phys. 17, 093020 (2015) for more information, particularly Figs. 1 and 6. +# +################################################################################ +# +# for_aux hydro 5 g 6.0 diff --git a/tests/data/normalizers/dos/dos_si_fhiaims/geometry.in b/tests/data/normalizers/dos/dos_si_fhiaims/geometry.in new file mode 100644 index 0000000000000000000000000000000000000000..4ed268a9a2d2b4baa27606f1f40a15de5e06307a --- /dev/null +++ b/tests/data/normalizers/dos/dos_si_fhiaims/geometry.in @@ -0,0 +1,7 @@ +# Diamond structure with lattice constant 5.431 AA. +lattice_vector 0.0000 2.7155 2.7155 +lattice_vector 2.7155 0.0000 2.7155 +lattice_vector 2.7155 2.7155 0.0000 + +atom_frac 0.0 0.0 0.0 Si +atom_frac 0.25 0.25 0.25 Si diff --git a/tests/data/normalizers/dos/dos_si_vasp/vasprun.xml.relax2.xz b/tests/data/normalizers/dos/dos_si_vasp/vasprun.xml.relax2.xz new file mode 100644 index 0000000000000000000000000000000000000000..cec7f72ad4583b81a6a9598749819bc1596c176a Binary files /dev/null and b/tests/data/normalizers/dos/dos_si_vasp/vasprun.xml.relax2.xz differ diff --git a/tests/normalizing/conftest.py b/tests/normalizing/conftest.py index 7ac56b49533452c46bd81f03ecc53f15d447883a..e1be2681cb3e2ed07c4e7761689a58800c58022e 100644 --- a/tests/normalizing/conftest.py +++ b/tests/normalizing/conftest.py @@ -193,6 +193,33 @@ def bands_polarized_gap_indirect() -> Backend: return backend +@pytest.fixture(scope='session') +def dos_si_vasp() -> Backend: + parser_name = "parsers/vasp" + filepath = "tests/data/normalizers/dos/dos_si_vasp/vasprun.xml.relax2.xz" + backend = parse_file((parser_name, filepath)) + backend = run_normalize(backend) + return backend + + +@pytest.fixture(scope='session') +def dos_si_exciting() -> Backend: + parser_name = "parsers/exciting" + filepath = "tests/data/normalizers/dos/dos_si_exciting/INFO.OUT" + backend = parse_file((parser_name, filepath)) + backend = run_normalize(backend) + return backend + + +@pytest.fixture(scope='session') +def dos_si_fhiaims() -> Backend: + parser_name = "parsers/fhi-aims" + filepath = "tests/data/normalizers/dos/dos_si_fhiaims/aims.log" + backend = parse_file((parser_name, filepath)) + backend = run_normalize(backend) + return backend + + @pytest.fixture(scope='session') def dos_polarized_vasp() -> Backend: parser_name = "parsers/vasp" diff --git a/tests/normalizing/test_dos.py b/tests/normalizing/test_dos.py index ac7fcc93698baac2b0019661f1e4c69a31f571b6..f0d91edf862cf303ca63bf493f4dfd0cb719903f 100644 --- a/tests/normalizing/test_dos.py +++ b/tests/normalizing/test_dos.py @@ -13,39 +13,77 @@ # limitations under the License. import numpy as np +# import matplotlib.pyplot as mpl -from tests.test_parsing import parse_file -from tests.normalizing.conftest import run_normalize +from nomad.parsing.legacy import Backend +from tests.normalizing.conftest import ( # pylint: disable=unused-import + dos_si_fhiaims, + dos_si_exciting, + dos_si_vasp, +) -from nomad_dos_fingerprints import DOSFingerprint, tanimoto_similarity +from nomad_dos_fingerprints import DOSFingerprint -vasp_parser_dos = ( - 'parsers/vasp', 'tests/data/parsers/vasp/vasp_dos.xml') - - -def test_dos_normalizer(): - """ - Ensure the DOS normalizer acted on the DOS values. We take a VASP example. - """ - backend = parse_file(vasp_parser_dos) - backend = run_normalize(backend) - - # Check if 'dos_values' were indeed normalized - # 'dvn' stands for 'dos_values_normalized' - backend_dvn = backend.get_value('dos_values_normalized', 0) - last_value = backend_dvn[0, -1] - expected = 1.7362195274239454e+47 - # Compare floats properly with numpy (delta tolerance involved) - assert np.allclose(last_value, expected) - +def test_fingerprint(dos_si_vasp): # Check if DOS fingerprint was created - backend_dos_fingerprint = backend['section_dos_fingerprint'][0] + backend_dos_fingerprint = dos_si_vasp["section_dos_fingerprint"][0] dos_fingerprint = DOSFingerprint().from_dict(dict( bins=backend_dos_fingerprint.bins, indices=backend_dos_fingerprint.indices, grid_id=backend_dos_fingerprint.grid_id, stepsize=backend_dos_fingerprint.stepsize, filling_factor=backend_dos_fingerprint.filling_factor)) + assert dos_fingerprint.get_similarity(dos_fingerprint) == 1 + assert dos_fingerprint.filling_factor != 0 + assert dos_fingerprint.filling_factor != 1 + + +# def test_dos_energies(dos_si_vasp: Backend, dos_si_exciting: Backend, dos_si_fhiaims: Backend): +# """For debugging. +# """ +# x_exciting = dos_si_exciting.get_value('dos_energies_normalized', 0) +# y_exciting = dos_si_exciting.get_value('dos_values_normalized', 0) +# x_vasp = dos_si_vasp.get_value('dos_energies_normalized', 0) +# y_vasp = dos_si_vasp.get_value('dos_values_normalized', 0) +# x_fhiaims = dos_si_fhiaims.get_value('dos_energies_normalized', 0) +# y_fhiaims = dos_si_fhiaims.get_value('dos_values_normalized', 0) +# mpl.plot(x_vasp, y_vasp[0], label="VASP") +# mpl.plot(x_exciting, y_exciting[0], label="exciting") +# mpl.plot(x_fhiaims, y_fhiaims[0], label="FHI-aims") +# mpl.legend() +# mpl.show() - assert tanimoto_similarity(dos_fingerprint, dos_fingerprint) == 1 + +def test_dos_magnitude(dos_si_vasp: Backend, dos_si_exciting: Backend, dos_si_fhiaims: Backend): + """ + Ensure the DOS normalizer acted on the DOS values. The order of magnitude + for normalized DOS values in VASP, exciting and FHIAims are currently + tested. + """ + dos_vasp = dos_si_vasp.get_value('dos_values_normalized', 0) + dos_exciting = dos_si_exciting.get_value('dos_values_normalized', 0) + dos_fhiaims = dos_si_fhiaims.get_value('dos_values_normalized', 0) + + dos_vasp_mean = mean_nonzero(dos_vasp) + dos_exciting_mean = mean_nonzero(dos_exciting) + dos_fhiaims_mean = mean_nonzero(dos_fhiaims) + + assert is_same_magnitude(dos_vasp_mean, dos_exciting_mean, dos_fhiaims_mean) + + +def mean_nonzero(dos: np.array): + """Returns the mean value of all nonzero elements in the given array. + """ + return dos[np.nonzero(dos)].mean() + + +def is_same_magnitude(*args): + """Used to test that all given floating point numbers are of the expected + order of magnitude. + """ + correct_magnitude = 1e18 + tolerance = 10 + values = np.array(args) + values_normalized = values / correct_magnitude + return ((values_normalized <= tolerance) & (values_normalized >= 1 / tolerance)).all()