diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..a09d516e --- /dev/null +++ b/.editorconfig @@ -0,0 +1,16 @@ +root = true + +[*] +end_of_line = lf +insert_final_newline = true +charset = utf-8 +indent_style = space +indent_size = 4 +max_line_length = 100 + +[Makefile] +indent_style = tab + +[{*.json,*.yml,*.yaml}] +indent_style = space +indent_size = 2 \ No newline at end of file diff --git a/.github/workflows/website.yaml b/.github/workflows/website.yaml new file mode 100644 index 00000000..afccbcdd --- /dev/null +++ b/.github/workflows/website.yaml @@ -0,0 +1,52 @@ +name: build_website + +on: + push: + branches: + - master + +permissions: + contents: write + deployments: write + pages: write + +jobs: + build: + runs-on: ubuntu-latest + + permissions: + contents: write + deployments: write + pages: write + + steps: + - uses: actions/checkout@v3 + + - name: Install development and distributions version + run: | + pip install --upgrade pip + pip install .[doc] + pip install pypandoc_binary + + - name: Setup pandoc + uses: siacodelabs/setup-pandoc@v1 + with: + xelatex: true. + + # didn't need to change anything here, but had to add sphinx.ext.githubpages + # to my conf.py extensions list. that fixes the broken uploads + - name: Building documentation + run: | + sphinx-apidoc -a -o ./docs/source/pyapi/ ./atomdb/ ./atomdb/test/ ./atomdb/data/ ./atomdb/datasets/ --separate + sphinx-build -M html docs/source _build + + # still need to build and set the PAT to get a rebuild on the pages job, + # apart from that quite clean and nice + - name: GitHub Pages Action + #if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }} + uses: peaceiris/actions-gh-pages@v3 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + publish_dir: _build/html + publish_branch: gh-pages + cname: atomdb.qcdevs.org diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml new file mode 100644 index 00000000..7075caaf --- /dev/null +++ b/.pre-commit-config.yaml @@ -0,0 +1,40 @@ +files: "atomdb/" +exclude: "examples/" +repos: +- repo: https://github.com/pre-commit/pre-commit-hooks + rev: v4.5.0 + hooks: + - id: check-added-large-files # prevents giant files from being commit + - id: check-ast # Check whether files parse as valid python. + - id: check-case-conflict # Checks conflict case-insensitive + - id: check-executables-have-shebangs + - id: check-json + - id: check-merge-conflict + - id: check-symlinks # Check for symlinks which don't point + - id: check-toml + - id: check-vcs-permalinks + - id: debug-statements # Check for debugger imports and py37 breakpt + - id: detect-private-key # Checks for the existence of private keys. + - id: destroyed-symlinks + - id: end-of-file-fixer # Makes sure files end in a newline + - id: fix-byte-order-marker # Removes UTF-8 byte order marker + - id: mixed-line-ending # Replaces or checks mixed line ending. + - id: pretty-format-json # Checks JSON are pretty + args: ["--autofix", "--no-sort-keys"] + - id: trailing-whitespace # Trims trailing whitespace. +- repo: https://github.com/Lucas-C/pre-commit-hooks + rev: v1.5.4 + hooks: + - id: remove-crlf +- repo: https://github.com/psf/black + rev: 24.1.1 + hooks: + - id: black +- repo: https://github.com/astral-sh/ruff-pre-commit + rev: 'v0.1.14' + hooks: + - id: ruff +- repo: https://github.com/python-jsonschema/check-jsonschema + rev: 0.27.3 + hooks: + - id: check-github-workflows diff --git a/MANIFEST.in b/MANIFEST.in index 25724086..9d34850c 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,5 +1,4 @@ include LICENSE include README.rst -include atomdb/datasets/*/data/* -include atomdb/datasets/*/raw_data/* +include atomdb/datasets/*/db/* diff --git a/atomdb/__init__.py b/atomdb/__init__.py index 92bb2aed..b061614c 100644 --- a/atomdb/__init__.py +++ b/atomdb/__init__.py @@ -24,6 +24,8 @@ from atomdb.promolecule import * +from atomdb.periodic import * + __version__ = version r"""AtomDB version string.""" diff --git a/atomdb/__main__.py b/atomdb/__main__.py index 3b9ebbfc..3d195bb7 100644 --- a/atomdb/__main__.py +++ b/atomdb/__main__.py @@ -24,18 +24,12 @@ # Initialize command line argument parser -parser = ArgumentParser( - prog="python -m atomdb", description="Compile and/or query an AtomDB entry" -) +parser = ArgumentParser(prog="python -m atomdb", description="Compile and/or query an AtomDB entry") # Specify positional arguments and options -parser.add_argument( - "-c", action="store_true", default=False, help="compile the specified entry" -) -parser.add_argument( - "-q", action="store_true", default=False, help="query the specified entry" -) +parser.add_argument("-c", action="store_true", default=False, help="compile the specified entry") +parser.add_argument("-q", action="store_true", default=False, help="query the specified entry") parser.add_argument("dataset", type=str, help="name of dataset") parser.add_argument("elem", type=str, help="element symbol") parser.add_argument("charge", type=int, help="charge") @@ -57,11 +51,7 @@ if args.c: atomdb.compile(args.elem, args.charge, args.mult, args.e, args.dataset) if args.q: - print( - atomdb.load( - args.elem, args.charge, args.mult, args.e, args.dataset - ).to_json() - ) + print(atomdb.load(args.elem, args.charge, args.mult, args.e, args.dataset).to_json()) # Exit successfully exit(0) diff --git a/atomdb/api.py b/atomdb/api.py index 8c945c0a..799809b2 100644 --- a/atomdb/api.py +++ b/atomdb/api.py @@ -97,7 +97,6 @@ def _array_to_bytes(array): r"""Convert a numpy.ndarray instance to bytes.""" return array.tobytes() - else: # Linux and friends def _array_to_bytes(array): @@ -108,6 +107,7 @@ def _array_to_bytes(array): @dataclass(eq=False, order=False) class SpeciesData: r"""Properties of atomic and ionic species corresponding to fields in MessagePack files.""" + # # Species info # @@ -163,7 +163,9 @@ def __init__(self, *args, **kwargs): r"""Initialize a Species Instance.""" # Initialize superclass SpeciesData.__init__(self, *args, **kwargs) - self.ao = _AtomicOrbitals(self._mo_occs_a, self._mo_occs_b, self._mo_energy_a, self._mo_energy_b) + self.ao = _AtomicOrbitals( + self._mo_occs_a, self._mo_occs_b, self._mo_energy_a, self._mo_energy_b + ) self._orb_dens_up = self._to_ndarray(self._orb_dens_up, self.ao.norba) self._orb_dens_dn = self._to_ndarray(self._orb_dens_dn, self.ao.norba) self._orb_ked_up = self._to_ndarray(self._orb_ked_up, self.ao.norba) @@ -177,14 +179,14 @@ def __init__(self, *args, **kwargs): self.charge = self.natom - self.nelec self.mult = self.nspin + 1 self.doc = get_docstring(self.dataset) - + def _to_ndarray(self, array1d, n): return array1d.reshape(n, -1) if array1d is not None else None # # Density splines # - def interpolate_dens(self, spin='ab', index=None, log=False): + def interpolate_dens(self, spin="ab", index=None, log=False): """Compute electron density Parameters @@ -197,85 +199,93 @@ def interpolate_dens(self, spin='ab', index=None, log=False): from 1 to the number basis functions. If ``None``, all orbitals of the given spin(s) are included, by default None log : bool, optional Whether the logarithm of the density is used for interpolation, by default False - + Returns ------- Callable[[np.ndarray(N,), int] -> np.ndarray(N,)] a callable function evaluating the density and its derivatives up to order 2 given a set of radial points (1-D array). - + Examples -------- - # Generate the interpolator for the atomic density and its derivatives + # Generate the interpolator for the atomic density and its derivatives >>> dens_spline = interpolate_dens(log=True) # Define a radial set of points to be interpolated >>> x = np.arange(0, 5) >>> dens = dens_spline(x) # interpolated density - >>> d_dens = dens_spline(x, deriv=1) # interpolated derivative of density + >>> d_dens = dens_spline(x, deriv=1) # interpolated derivative of density >>> d2_dens = dens_spline(x, deriv=2) # interpolated second derivative of density """ - if spin not in ['a', 'b', 'ab', 'm']: - raise ValueError(f"Incorrect `spin` parameter {spin}, choose one of `a`, `b`, `ab` or `m`.") - if spin in ['a', 'b', 'm'] and (self._orb_dens_up is None): + if spin not in ["a", "b", "ab", "m"]: + raise ValueError( + f"Incorrect `spin` parameter {spin}, choose one of `a`, `b`, `ab` or `m`." + ) + if spin in ["a", "b", "m"] and (self._orb_dens_up is None): raise ValueError(f"Density values for `{spin}` spin-orbitals unavailable.") if index is not None and (self._orb_dens_up is None): - raise ValueError("Can not perform indexing since densities per orbital is missing in this dataset.") + raise ValueError( + "Can not perform indexing since densities per orbital is missing in this dataset." + ) # Assign cases that require spin-densitiy data. Since these are always # stored as density per orbital they work for any `index` parameter case. - if spin == 'a': + if spin == "a": orbs_dens = self._orb_dens_up - elif spin == 'b': + elif spin == "b": orbs_dens = self._orb_dens_dn - elif spin == 'm': + elif spin == "m": orbs_dens = self._orb_dens_up - self._orb_dens_dn - - # Evaluate property values for interpolation. + + # Evaluate property values for interpolation. # Total density (ab) is evaluated from spin components when indexing is required if index is None: - if spin == 'ab': + if spin == "ab": value_array = self.dens_tot else: value_array = sum(orbs_dens, axis=0) else: - if spin == 'ab': + if spin == "ab": orbs_dens = self._orb_dens_up + self._orb_dens_dn - orbs_dens = orbs_dens[index] # M(K_orb,N) - value_array = sum(orbs_dens, axis=0) # (N,) - + orbs_dens = orbs_dens[index] # M(K_orb,N) + value_array = sum(orbs_dens, axis=0) # (N,) + return cubic_interp(self.rs, value_array, log=log) - def interpolate_ked(self, spin='ab', index=None, log=True): + def interpolate_ked(self, spin="ab", index=None, log=True): r"""Compute positive definite kinetic energy density.""" - if spin not in ['a', 'b', 'ab', 'm']: - raise ValueError(f"Incorrect `spin` parameter {spin}, choose one of `a`, `b`, `ab` or `m`.") - if spin in ['a', 'b', 'm'] and (self._orb_ked_up is None): + if spin not in ["a", "b", "ab", "m"]: + raise ValueError( + f"Incorrect `spin` parameter {spin}, choose one of `a`, `b`, `ab` or `m`." + ) + if spin in ["a", "b", "m"] and (self._orb_ked_up is None): raise ValueError(f"Kinetic energy density for `{spin}` spin-orbitals unavailable.") if index is not None and (self._orb_ked_up is None): - raise ValueError("Can not perform indexing since orbital densities are missing in this dataset.") + raise ValueError( + "Can not perform indexing since orbital densities are missing in this dataset." + ) # Assign cases that require spin-densitiy data. Since these are stored as density # per orbital they work for any `index` parameter case. - if spin == 'a': + if spin == "a": orbs_ked = self._orb_ked_up - elif spin == 'b': + elif spin == "b": orbs_ked = self._orb_ked_dn - elif spin == 'm': + elif spin == "m": orbs_ked = self._orb_ked_up - self._orb_ked_dn - - # Evaluate property values for interpolation. + + # Evaluate property values for interpolation. # Total density (ab) is evaluated from spin components when indexing is required if index is None: - if spin == 'ab': + if spin == "ab": value_array = self.ked_tot else: value_array = sum(orbs_ked, axis=0) else: - if spin == 'ab': + if spin == "ab": orbs_ked = self._orb_ked_up + self._orb_ked_dn - orbs_ked = orbs_ked[index] # M(K_orb,N) - value_array = sum(orbs_ked, axis=0) # (N,) - + orbs_ked = orbs_ked[index] # M(K_orb,N) + value_array = sum(orbs_ked, axis=0) # (N,) + return cubic_interp(self.rs, value_array, log=log) def to_dict(self): @@ -291,11 +301,7 @@ class _JSONEncoder(JSONEncoder): def default(self, obj): r"""Default encode function.""" - return ( - obj.tolist() - if isinstance(obj, ndarray) - else JSONEncoder.default(self, obj) - ) + return obj.tolist() if isinstance(obj, ndarray) else JSONEncoder.default(self, obj) @staticmethod def _msgfile(elem, charge, mult, nexc, dataset, datapath): @@ -305,35 +311,26 @@ def _msgfile(elem, charge, mult, nexc, dataset, datapath): def _dump(self, datapath): r"""Dump the Species instance to a MessagePack file in the database.""" # Get database entry filename - fn = Species._msgfile( - self.elem, self.charge, self.mult, self.nexc, self.dataset, datapath - ) + fn = Species._msgfile(self.elem, self.charge, self.mult, self.nexc, self.dataset, datapath) # Convert numpy arrays to raw bytes for dumping as msgpack msg = { - k: _array_to_bytes(v) if isinstance(v, ndarray) else v - for k, v in asdict(self).items() + k: _array_to_bytes(v) if isinstance(v, ndarray) else v for k, v in asdict(self).items() } # Dump msgpack entry to database with open(fn, "wb") as f: f.write(pack_msg(msg)) -def load( - elem, charge, mult, nexc=0, dataset=DEFAULT_DATASET, datapath=DEFAULT_DATAPATH -): +def load(elem, charge, mult, nexc=0, dataset=DEFAULT_DATASET, datapath=DEFAULT_DATAPATH): r"""Load an atomic or ionic species from the AtomDB database.""" # Load database msgpack entry with open(Species._msgfile(elem, charge, mult, nexc, dataset, datapath), "rb") as f: msg = unpack_msg(f) # Convert raw bytes back to numpy arrays, initialize the Species instance, return it - return Species( - **{k: frombuffer(v) if isinstance(v, bytes) else v for k, v in msg.items()} - ) + return Species(**{k: frombuffer(v) if isinstance(v, bytes) else v for k, v in msg.items()}) -def compile( - elem, charge, mult, nexc=0, dataset=DEFAULT_DATASET, datapath=DEFAULT_DATAPATH -): +def compile(elem, charge, mult, nexc=0, dataset=DEFAULT_DATASET, datapath=DEFAULT_DATAPATH): r"""Compile an atomic or ionic species into the AtomDB database.""" # Ensure directories exist makedirs(join(datapath, f"{dataset}/db"), exist_ok=True) @@ -344,9 +341,7 @@ def compile( submodule.run(elem, charge, mult, nexc, dataset, datapath)._dump(datapath) -def datafile( - suffix, elem, charge, mult, nexc=0, dataset=None, datapath=DEFAULT_DATAPATH -): +def datafile(suffix, elem, charge, mult, nexc=0, dataset=None, datapath=DEFAULT_DATAPATH): r"""Return the filename of a raw data file.""" # Check that all non-optional arguments are specified if dataset is None: @@ -388,14 +383,14 @@ def __init__(self, x, y, **kwargs): def __call__(self, x, deriv=0): r"""Compute the interpolation at some x-values. - + Parameters ---------- x : ndarray(M,) points to be interpolated. deriv: int, optional order of spline derivative to evaluate. Must be one of 0, 1 and 2, default is 0. - + Returns ------- ndarray(M,) @@ -403,7 +398,7 @@ def __call__(self, x, deriv=0): """ if deriv not in [0, 1, 2]: raise NotImplementedError - + y = exp(CubicSpline.__call__(self, x)) if deriv == 1: # d(rho(r)) = d(log(rho(r))) * rho(r) @@ -413,8 +408,8 @@ def __call__(self, x, deriv=0): # d^2(rho(r)) = d^2(log(rho(r))) * rho(r) + [d(rho(r))]^2/rho(r) dlogy = CubicSpline.__call__(self, x, nu=1) d2logy = CubicSpline.__call__(self, x, nu=2) - y = d2logy.flatten() * y + dlogy.flatten()**2 * y - + y = d2logy.flatten() * y + dlogy.flatten() ** 2 * y + return y @@ -427,14 +422,14 @@ def __init__(self, x, y, **kwargs): def __call__(self, x, deriv=0): r"""Compute the interpolation at some x-values. - + Parameters ---------- x : ndarray(M,) points to be interpolated. deriv: int, optional order of spline derivative to evaluate, default is 0. - + Returns ------- ndarray(M,) @@ -446,9 +441,7 @@ def __call__(self, x, deriv=0): def cubic_interp(x, y, log=False): r"""Create an interpolated cubic spline for the given data.""" cls = cubicspline_log if log else cubicspline_ - return cls( - x, y, axis=0, bc_type='not-a-knot', extrapolate=True - ) + return cls(x, y, axis=0, bc_type="not-a-knot", extrapolate=True) class _AtomicOrbitals(object): @@ -520,7 +513,7 @@ def get_element_data(elem): "str": (lambda s: s.strip()), "angstrom": (lambda s: float(s) * angstrom), "2angstrom": (lambda s: float(s) * angstrom / 2), - "angstrom**3": (lambda s: float(s) * angstrom ** 3), + "angstrom**3": (lambda s: float(s) * angstrom**3), "amu": (lambda s: float(s) * amu), } diff --git a/atomdb/data/c6cp04533b1.csv b/atomdb/data/c6cp04533b1.csv index 6c0cdaba..02fb79a2 100644 --- a/atomdb/data/c6cp04533b1.csv +++ b/atomdb/data/c6cp04533b1.csv @@ -1,354 +1,354 @@ -,,,,,,,Electron Removal Energies (Ionization Potentials) of Atoms and Atomic Ions (eV),,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -,,,,,,,,,,,Charge,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Atomic #,Element,Symbol,-2,-1,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103 -1,Hydrogen,H,,0.7541950,13.598443,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2,Helium,He,,0.0000000,24.587387,54.41776,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3,Lithium,Li,,0.6180490,5.391719,75.64,122.45429,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4,Beryllium,Be,,0.0000000,9.3227,18.21114,153.89661,217.71865,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -5,Boron,B,,0.2797230,8.29802,25.1548,37.93064,259.37521,340.2258,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6,Carbon,C,,1.2621180,11.2603,24.3833,47.8878,64.4939,392.087,489.99334,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7,Nitrogen,N,,0.0000000,14.5341,29.6013,47.44924,77.4735,97.8902,552.0718,667.046,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8,Oxygen,O,,1.4611134,13.61805,35.1211,54.9355,77.41353,113.899,138.1197,739.29,871.4101,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -9,Fluorine,F,,3.4011895,17.4228,34.9708,62.7084,87.1398,114.2428,157.1651,185.186,953.9112,1103.1176,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10,Neon,Ne,,0.0000000,21.56454,40.96296,63.45,97.12,126.21,157.93,207.2759,239.0989,1195.8286,1362.1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -11,Sodium,Na,,0.5479260,5.139076,47.2864,71.62,98.91,138.4,172.18,208.5,264.25,299.864,1465.121,1648.702,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -12,Magnesium,Mg,,0.0000000,7.646235,15.03527,80.1437,109.2655,141.27,186.76,225.02,265.96,328.06,367.5,1761.805,1962.665,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -13,Aluminum,Al,,0.4328300,5.985768,18.82855,28.44765,119.992,153.825,190.49,241.76,284.66,330.13,398.75,442,2085.98,2304.141,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -14,Silicon,Si,,1.3895210,8.15168,16.34584,33.49302,45.14181,166.767,205.27,246.5,303.54,351.12,401.37,476.36,523.42,2437.63,2673.182,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -15,Phosphorus,P,,0.7466090,10.48669,19.7695,30.2027,51.4439,65.0251,220.421,263.57,309.6,372.13,424.4,479.46,560.8,611.74,2816.91,3069.842,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -16,Sulfur,S,,2.0771040,10.36001,23.33788,34.79,47.222,72.5945,88.053,280.948,328.75,379.55,447.5,504.8,564.44,652.2,707.01,3223.78,3494.1892,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -17,Chlorine,Cl,,3.6127240,12.96763,23.8136,39.61,53.4652,67.8,97.03,114.1958,348.28,400.06,455.63,529.28,591.99,656.71,749.76,809.4,3658.521,3946.296,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -18,Argon,Ar,,0.0000000,15.75961,27.62966,40.74,59.81,75.02,91.009,124.323,143.46,422.45,478.69,538.96,618.26,686.1,755.74,854.77,918.03,4120.8857,4426.2296,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -19,Potassium,K,,0.5014590,4.3406633,31.63,45.806,60.91,82.66,99.4,117.56,154.88,175.8174,503.8,564.7,629.4,714.6,786.6,861.1,968,1033.4,4610.8,4934.046,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -20,Calcium,Ca,,0.0245500,6.11316,11.87172,50.9131,67.27,84.5,108.78,127.2,147.24,188.54,211.275,591.9,657.2,726.6,817.6,894.5,974,1087,1157.8,5128.8,5469.864,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -21,Scandium,Sc,,0.1880000,6.56149,12.79977,24.75666,73.4894,91.65,110.68,138,158.1,180.03,225.18,249.798,687.36,756.7,830.8,927.5,1009,1094,1213,1287.97,5674.8,6033.712,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -22,Titanium,Ti,,0.0790000,6.82812,13.5755,27.4917,43.2672,99.3,119.53,140.8,170.4,192.1,215.92,265.07,291.5,787.84,863.1,941.9,1044,1131,1221,1346,1425.4,6249,6625.82,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -23,Vanadium,V,,0.5260000,6.74619,14.618,29.311,46.709,65.2817,128.13,150.6,173.4,205.8,230.5,255.7,308.1,336.277,896,976,1060,1168,1260,1355,1486,1569.6,6851.3,7246.12,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -24,Chromium,Cr,,0.6758400,6.76651,16.4857,30.96,49.16,69.46,90.6349,160.18,184.7,209.3,244.4,270.8,298,354.8,384.168,1010.6,1097,1185,1299,1396,1496,1634,1721.4,7481.7,7894.81,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -25,Manganese,Mn,,0.0000000,7.43402,15.64,33.668,51.2,72.4,95.6,119.203,194.5,221.8,248.3,286,314.4,343.6,403,435.163,1134.7,1224,1317,1437,1539,1644,1788,1879.9,8140.6,8571.94,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -26,Iron,Fe,,0.1510000,7.9024,16.1877,30.652,54.8,75,99.1,124.98,151.06,233.6,262.1,290.2,330.8,361,392.2,457,489.256,1266,1358,1456,1582,1689,1799,1950,2023,8828,9277.69,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -27,Cobalt,Co,,0.6633000,7.88101,17.084,33.5,51.3,79.5,102,128.9,157.8,186.13,275.4,305,336,379,411,444,511.96,546.58,1397.2,1504.6,1603,1735,1846,1962,2119,2219,9544.1,10012.12,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -28,Nickel,Ni,,1.1571600,7.6398,18.16884,35.19,54.9,76.06,108,133,162,193,224.6,321,352,384,430,464,499,571.08,607.06,1541,1648,1756,1894,2011,2131,2295,2399.2,10288.8,10775.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -29,Copper,Cu,,1.2357800,7.72638,20.2924,36.841,57.38,79.8,103,139,166,199,232,265.3,369,401,435,484,520,557,633,670.588,1697,1804,1916,2060,2182,2308,2478,2587.5,11062.38,11567.617,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -30,Zinc,Zn,,0.0000000,9.394199,17.96439,39.723,59.4,82.6,108,134,174,203,238,274,310.8,419.7,454,490,542,579,619,698,738,1856,1961,2085,2214,2358,2491.5,2669.9,2781.996,11864.9394,12388.928,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -31,Gallium,Ga,,0.4300000,5.999301,20.51514,30.71,64,86.01,112.7,140.8,170,211,244,280,319,356,471.2,508.82,548.31,599.8,640,677,765.7,807.308,2010,2129,2258,2391,2543.9,2683,2868,2984.426,12696.5569,13239.488,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -32,Germanium,Ge,,1.2327120,7.89943,15.93461,34.2241,45.7131,93.5,115.9,144.9,176.4,212.5,252.1,286,326,367,407,527.9,567.29,609.06,662.8,710,744,837.1,880.444,2180.1,2304,2439,2575,2737.2,2881.9,3074,3194.293,13557.4202,14119.429,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -33,Arsenic,As,,0.8048000,9.7886,18.5892,28.351,50.13,62.63,127.6,147,180,213,247,296,333,375,418,460,587.6,628.82,672.9,728.9,774,814,911.7,956.791,2357,2486,2626,2766,2938,3088.1,3287,3411.643,14447.6778,15028.906,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -34,Selenium,Se,,2.0206046,9.75239,21.19,30.8204,42.945,68.3,81.7,155.4,184,219,255,291,342.9,383,426,473,517,650.5,693.38,739.8,798,845.8,887,989.6,1036.362,2540.7,2674,2820,2964,3146,3301.8,3507,3636.526,15367.4907,15968.083,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -35,Bromine,Br,,3.3635900,11.8138,21.591,36,47.3,59.7,88.6,103,192.8,224,261,301,338,393,436,481,530,577,716.3,760.99,809.8,870,920.8,963,1070.6,1119.169,2731,2870,3020,3169,3361,3523.1,3735,3868.986,16317.01,16937.126,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -36,Krypton,Kr,,0.0000000,13.99961,24.35984,36.95,52.5,64.7,78.5,111,125.802,230.85,268.2,308,350,391,447,492,541,592,641,786,833,884,937,998,1051,1151,1205.3,2928,3070,3227,3381,3584,3752,3971,4109.083,17296.42,17936.208,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -37,Rubidium,Rb,,0.4859160,4.177128,27.2895,40,52.6,71,84.4,99.2,136,150,277.1,313.1,356,400,443,502,550,601,654,706,857,905.3,958.9,1024,1080,1125,1242.5,1294.567,3133.3,3281,3442,3600,3815,3988,4214,4356.865,18305.883,18965.51,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -38,Strontium,Sr,,0.0520600,5.69485,11.0301,42.89,57,71.6,90.8,106,122.3,162,177,324.1,362,408,454,499,562,612,665,722,774,932,982.1,1038,1105,1165,1211,1333.4,1387.19,3344.7,3497,3664,3830,4053,4232,4465,4612.397,19345.587,20025.23,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -39,Yttrium,Y,,0.3070000,6.2173,12.224,20.52,60.597,77,93,116,129,146.2,191,206,374,414,463,512,559,624,677,733,790,847,1010,1061.9,1120.2,1190,1253,1300,1427.6,1483.118,3562.9,3720,3892,4060,4299,4484,4724,4875.73,20415.716,21115.55,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -40,Zirconium,Zr,,0.4270000,6.6339,13.1,22.99,34.34,80.348,96.27,112,133.7,153,172.02,214.9,236.25,426,470,520,573,622,690,745,803,863,922,1092,1144.7,1205.4,1277,1344,1392,1525.1,1582.371,3788,3950,4127,4300,4553,4744,4991,5146.935,21516.469,22236.68,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -41,Niobium,Nb,,0.8940000,6.75885,14,25.04,38.3,50.55,102.057,125,136,159.2,180,200.28,246.1,268.59,482.5,530,581,636,688,758,816,877,940,1000,1176,1230.6,1293.7,1368,1439,1500,1625.9,1684.969,4020.1,4187,4369,4540,4815,5011,5265,5426.065,22648.045,23388.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -42,Molybdenum,Mo,,0.7473000,7.09243,16.16,27.13,46.4,54.49,68.8276,125.664,143.6,164.12,186.4,209.3,230.28,279.1,302.6,544,570,636,702,767,833,902,968,1020,1082,1263,1323,1387,1449,1535,1601,1730.1,1790.932,4259,4430,4618,4800,5084,5287,5548,5713.194,23810.653,24572.15,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -43,Technetium,Tc,,0.5500000,7.28,15.26,29.54,41,57,72,88,150,169,189.9,214,239,262.08,311,338.55,604,655,713,773,829,904,968,1032,1102,1166,1354,1411.6,1479.5,1559,1638,1689,1838,1900.28,4505,4681,4874,5060,5361,5570,5838,6008.391,25004.532,25786.99,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -44,Ruthenium,Ru,,1.0760000,7.3605,16.76,28.47,45,59,76,93,110,178.4,198,219.9,245,271,295.9,348,376.25,670,723,784,845,905,981,1048,1115,1187,1253,1447,1506.7,1577,1659,1743,1794,1949,2013.037,4758,4939,5136,5330,5647,5862,6137,6311.72,26229.894,27033.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -45,Rhodium,Rh,,1.1428900,7.4589,18.08,31.06,42,63,80,97,115.1,135,207.51,228,252.1,277,306,331.58,389,416,739,794,857,921,984,1061,1131,1202,1274,1344,1544,1604.9,1677.6,1763,1851,1903,2063,2129.224,5018,5203,5406,5600,5940,6161,6444,6623.262,27486.982,28311.96,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -46,Palladium,Pd,,0.5621400,8.3369,19.43,32.93,46,61,84.1,101,120,141,160,238.57,260,286,311,342,369.1,427,458,810,869,933,1000,1065,1145,1218,1290,1366,1438,1644,1706.2,1781.3,1869,1962,2016,2181,2248.867,5284,5475,5683,5880,6242,6469,6759,6943.096,28776.033,29622.6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -47,Silver,Ag,,1.3044700,7.57623,21.47746,34.83,49,65,82,106,125,145,167,188,271.46,294,321,347,381,408.43,469,500.87,885,946,1013,1082,1149,1231,1308,1382,1460,1535,1747,1810.5,1888,1979,2077,2131,2302,2371.989,5558,5753,5966,6170,6551,6784,7082,7271.297,30097.317,30965.7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -48,Cadmium,Cd,,0.0000000,8.99382,16.90831,37.48,51,67.9,87,105,130.1,150,173,195,218,305,329,358,385,421,452.55,513,546.19,963,1026,1095,1167,1237,1320,1400,1477,1558,1635,1852,1917.9,1997.9,2091,2195,2250,2427,2498.615,5839,6039,6257,6460,6870,7109,7414,7607.945,31451.06,32341.49,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -49,Indium,In,,0.3839200,5.78636,18.8703,28.03,54,69.3,90,109,130.1,156,178,201,226,249,341,368,396,425,462,497.11,560,593.38,1043,1109,1181,1255,1328,1413,1496,1575,1659,1738,1961,2028.5,2111,2207,2317,2373,2555,2628.774,6126,6331,6554,6770,7196,7442,7754,7953.137,32837.59,33750.31,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50,Tin,Sn,,1.1120700,7.34392,14.6322,30.5026,40.73502,72.28,94,112.9,135,156,184,208,232,258,282,379,407,437,466,506,537,608,642.35,1127,1195,1269,1347,1421,1508,1596,1676,1763,1844,2074,2142.1,2227,2326,2443,2499,2687,2762.5,6421,6631,6859,7080,7531,7790,8103,8306.95,34257.141,35192.39,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -51,Antimony,Sb,,1.0474010,8.60839,16.63,25.3,44.2,56,108,117,139,162,185,214,238,265,292,317,420,447,479,510,552,584,657,693.26,1214,1285,1360,1441,1518,1606,1698,1781,1869,1954,2190,2266,2349,2428,2567,2654,2815,2900,6714,6929,7167,7390,7887,8140,8455,8669.48,35710.03,36668.05,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52,Tellurium,Te,,1.9708760,9.0096,18.6,27.96,37.41,58.75,70.7,137,143,167,191.1,215,245,272,299,328,354,461,491,522,555,599,633,709,746.12,1304,1377,1455,1538,1618,1707,1803,1889,1979,2066,2309,2386,2472,2552,2700,2788,2954,3041,7022,7243,7485,7714,8240,8499,8821,9040.83,37196.52,38177.56,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -53,Iodine,I,,3.0590463,10.45126,19.1313,33,40.36,51.517,74.37,87.61,150.81,171,197,220.9,247,279,307,335,365,393,505,535,569,601,649,683,762,800.76,1397,1472,1553,1639,1720,1812,1911,1999,2093,2181,2431,2510,2598,2680,2836,2930,3096,3185.5,7337,7600,7800,8044,8601,8867,9196,9421.1,38716.994,39721.41,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54,Xenon,Xe,,0.0000000,12.12984,20.975,32.123,42.2,54.14,66.703,91.6,105.9778,179.84,202,229.02,255,281,314,343,374,404,430,549,582,616,650,700,736,818,857.03,1493,1571,1653,1742,1826,1919,2023,2113,2209,2300,2556,2637,2726,2811,2975,3068,3243,3333.8,7660,7889,8144,8382,8971,9243,9581,9810.4,40271.722,41299.71,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55,Cesium,Cs,,0.4716400,3.893905,23.15744,33.195,43,56,69.1,82.9,110.09,125.61,213.3,233,261,289,316,352,382,413,445,476,597,629,666,700,753,791,875,916.07,1592,1672,1757,1848,1936,2029,2137,2230,2329,2422,2683,2767,2859,2945,3118,3214,3392,3485,7989,8224,8484,8726,9350,9629,9974,10208.78,41861.073,42912.99,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56,Barium,Ba,,0.1446200,5.211664,10.00383,35.84,47.03,58,71,86,101,130.53,146.52,241,267.1,296,325,354,390,422,455,488,520,646,679,717,752,809,846,935,976.6,1695,1776,1864,1958,2047,2142,2256,2349,2452,2547,2814,2901,2994,3081,3266,3363,3550,3640,8326,8565,8831,9077,9739,10023,10376,10616.42,43485.364,44561.47,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57,Lanthanum,La,,0.4700000,5.5769,11.059,19.1773,49.95,61.6,74,88,105,119,151.42,168.77,275,303,332,364,393,431,464,498,533,566,696,731,770,806,865,906,995,1039.09,1800,1884,1974,2069,2162,2259,2377,2473,2577,2674,2950,3036,3133,3222,3416,3515,3704,3800,8669,8914,9184,9437,10136,10426,10789,11033.4,45144.994,46245.6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58,Cerium,Ce,,0.6280000,5.5387,10.85,20.198,36.758,65.55,77.6,91,106,125,140,172,192.24,312,340,371,403,435,472,509,543,579,613,749,785,824,862,924,965,1060,1103.53,1908,1994,2087,2185,2280,2378,2500,2600,2706,2806,3087,3176,3274,3366,3570,3672,3865,3963,9020,9269,9545,9803,10542,10840,11210,11459.85,46840.304,47965.72,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59,Praseodymium,Pr,,0.9620000,5.473,10.55,21.624,38.98,57.53,82,97,112,131,148,162,196,217.02,350,378,412,445,478,516,554,590,627,663,803,840,880,920,985,1028,1124,1169.94,2019,2108,2202,2304,2400,2501,2628,2729,2838,2941,3227,3319,3419,3512,3729,3832,4030,4130,9378,9632,9913,10175,10959,11262,11641,11895.89,48571.71,49722.2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60,Neodymium,Nd,,0.1620000,5.525,10.72,22.1,40.4,60,84,99,114,136,152,168,195,221,243,389,420,453,489,522,562,602,638,678,714,859,896,939,978,1049,1092,1191,1238.42,2134,2224,2321,2425,2525,2627,2758,2861,2974,3078,3371,3465,3567,3662,3891,3997,4198,4302,9742,10002,10288,10555,11384,11694,12082,12341.66,50339.587,51515.58,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61,Promethium,Pm,,0.1290000,5.582,10.9,22.3,41.1,61.69,85,101,116,138,155,174,202,229,248,269,430,462,497,534,569,609,651,689,730,767,916,956,998,1040,1113,1158,1261,1308.7,2251,2344,2443,2549,2652,2755,2892,2997,3110,3219,3519,3613,3718,3816,4056,4166,4371,4476,10115,10378,10671,10942,11819,12136,12532,12797.26,52144.29,53346.1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62,Samarium,Sm,,0.1620000,5.6437,11.07,23.4,41.4,62.66,90,103,118,141,158,179,208,237,257,276,306.5,474,506,543,581,617,658,702,742,782,822,976,1016,1060,1103,1180,1226,1332,1381.6,2371,2466,2569,2676,2782,2887,3028,3137,3253,3363,3669,3766,3873,3971,4227,4337,4548,4655,10494,10762,11060,11337,12264,12588,12992,13262.85,53986.11,55214.23,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63,Europium,Eu,,0.1160000,5.67038,11.25,24.92,42.7,63,88,105,120,144,161,183,213,243,263,281,311,344.4,518,553,590,630,667,709,755,795,838,879,1037,1078,1124,1167,1249,1296,1406,1456.06,2495,2591,2697,2807,2914,3022,3168,3279,3398,3510,3823,3921,4031,4131,4400,4510,4729,4838,10880,11153,11457,11739,12718,13050,13462,13738.58,55865.9,57120.6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64,Gadolinium,Gd,,0.1370000,6.1498,12.09,20.63,44,64.76,89,106,123,144,165,183,213,246,268,288,319,352,380,565,601,639,680,719,761,810,851,895,937,1100,1142,1189,1233,1321,1368,1481,1532.35,2621,2720,2827,2941,3050,3160,3312,3424,3550,3660,3980,4080,4191,4294,4578,4693,4914,5025,11273,11552,11861,12147,13183,13521,13943,14224.57,57783.9,59065.52,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65,Terbium,Tb,,0.4360000,5.8638,11.52,21.91,39.79,66.5,90,108,125,143,168,186,216,250,270,294,325,358,393,426.6,613,651,690,732,772,816,866,909,954,997,1165,1208,1256,1301,1393,1443,1559,1610.38,2750,2852,2961,3078,3189,3300,3458,3573,3698,3814,4139,4242,4355,4460,4760,4877,5103,5217,11673,11957,12272,12563,13658,14003,14434,14721,59739.25,61049.64,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66,Dysprosium,Dy,,0.3520000,5.9389,11.67,22.8,41.47,62.08,93,110,127,152,170,192,224,259,279,300,332,366,399,431,465,664,702,743,786,827,872,924,969,1014,1059,1232,1275,1325,1371,1468,1520,1638,1691.74,2882,2987,3098,3217,3331,3445,3607,3725,3852,3970,4303,4407,4523,4629,4945,5066,5296,5412,12081,12370,12690,12986,14144,14495,14936,15228.06,61736.55,63073.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -67,Holmium,Ho,,0.3380000,6.0215,11.8,22.84,42.5,63.93,95,112,129,155,174,196,229,263,284,305,340,373,408,441,475,510,715,755,797,842,885,929,985,1029,1077,1122,1300,1346,1395,1443,1545,1598,1719,1773.57,3018,3125,3238,3359,3476,3592,3760,3880,4009,4131,4469,4576,4693,4802,5135,5258,5494,5611,12495,12790,13116,13417,14639,14998,15448,15745.77,63772.42,65136.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -68,Erbium,Er,,0.3120000,6.1077,11.93,22.74,42.7,65.1,96,114,131,158,177,201,235,268,290,311,345,381,415,450,486,520,555,770,810,853,899,943,989,1046,1092,1142,1188,1370,1416,1468,1516,1625,1678,1803,1859,3157,3265,3381,3505,3624,3742,3916,4038,4170,4294,4639,4748,4866,4978,5329,5455,5695,5815,12918,13217,13548,13855,15146,15511,15971,16274.56,65848.24,67241.85,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -69,Thulium,Tm,,0.0160000,6.18431,12.05,23.68,42.7,65.43,98,116,133,160,180,205,239,274,295,317,352,387,424,460,500,530,570,603,825,866,911,958,1004,1050,1110,1157,1207,1255,1442,1490,1542,1591,1706,1761,1889,1945.2,3300,3409,3528,3653,3775,3895,4075,4199,4335,4461,4812,4922,5044,5157,5527,5656,5901,6023,13347,13651,13988,14300,15663,16036,16500,16814.34,67965.26,69387.34,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -70,Ytterbium,Yb,,0.0000000,6.25416,12.176,25.05,43.56,65.58,99,117,135,163,182,209,244,279,301,324,360,396,431,469,505,540,580,620,651,882,924,971,1019,1065,1114,1175,1224,1275,1324,1516,1564,1618,1668,1789,1845,1978,2036.4,3443,3555,3677,3805,3929,4051,4238,4364,4502,4630,4988,5101,5224,5339,5731,5860,6111,6236,13784,14093,14435,14752,16191,16570,17050,17365.44,70123.04,71574.79,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -71,Lutetium,Lu,,0.3400000,5.42586,13.9,20.9594,45.25,66.8,98,117,136,159,185,205,238,276,305,328,361,399,438,476,520,560,600,640,670,713,941,985,1032,1081,1130,1178,1242,1292,1345,1395,1591,1641,1696,1747,1875,1933,2067,2125.5,3590,3706,3828,3960,4086,4211,4403,4532,4673,4803,5168,5282,5408,5525,5937,6070,6326,6452,14228,14542,14890,15211,16730,17120,17610,17928.05,72322.91,73804.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -72,Hafnium,Hf,,0.1140000,6.82507,15,23.3,33.33,68.375,98,118,138,157,187,209,230,270,310,334,359,399,440,481,520,560,610,650,690,730,772,1002,1047,1094,1146,1195,1245,1311,1362,1417,1467,1669,1719,1776,1827,1963,2022,2159,2218.9,3741,3858,3984,4118,4246,4372,4573,4703,4846,4980,5350,5468,5595,5713,6149,6284,6545,6674,14678,14999,15351,15680,17280,17680,18180,18502.32,74565.93,76077.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -73,Tantalum,Ta,,0.3230000,7.54957,16.2,23.1,35,48.272,94.011,119,139,159,180,213,235,262,304,338,363,396,439,482,530,570,620,660,700,740,790,832,1064,1110,1160,1211,1262,1313,1382,1434,1490,1542,1748,1799,1857,1910,2053,2113,2254,2314.7,3898.7,4014,4143,4278,4410,4537,4745,4877,5024,5159,5537,5655,5785,5907,6364,6502,6769,6900,15137,15461,15820,16150,17840,18250,18760,19088.51,76852.02,78394.7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -74,Tungsten,W,,0.8162600,7.86403,16.1,26.02,38.21,51.59,64.766,122.01,141.2,160.2,179,208.9,231.6,258.3,290.7,325.3,361.9,387.9,420.7,462.1,502.6,543.4,594.5,640.6,686,734.1,784.4,833.4,881.4,1132.2,1180,1230.4,1283.4,1335.1,1386.8,1459.9,1512.4,1569.1,1622,1829.8,1882.9,1940.6,1994.8,2149.1,2210,2354,2414.11,4057,4180,4309,4446,4578,4709,4927,5063,5209,5348,5719,5840,5970,6093,6600,6735,7000,7130,15566,15896,16252,16588,18476,18872,19362,19686.74,79181.93,80755.6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -75,Rhenium,Re,,0.1500000,7.83352,16.6,27,39.1,51.9,67,82.71,144.4,165,187,208,236,268,291,330,377,403,429,476,520,570,620,670,720,760,810,860,910,953,1194,1242,1294,1349,1402,1454,1530,1583,1641,1696,1912,1966,2025,2080,2240,2302,2450,2514.54,4214,4335,4468,4609,4745,4877,5099,5236,5388,5528,5919,6042,6176,6300,6810,6952,7230,7366,16080,16410,16780,17120,19000,19420,19950,20297.4,81556.9,83162.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -76,Osmium,Os,,1.0778000,8.43823,17,25,41,55,70.1,85.1,102.024,168.7,190,213,235,269,300,320,367,410,436,470,520,570,620,670,720,770,820,870,920,970,1015,1262,1311,1364,1420,1474,1528,1606,1660,1720,1776,1996,2052,2112,2168,2336,2400,2552,2615.5,4374,4501,4635,4779,4917,5052,5280,5421,5575,5717,6115,6240,6376,6503,7039,7185,7468,7610,16560,16900,17270,17620,19600,20030,20570,20920.6,83976.2,85614.4,,,,,,,,,,,,,,,,,,,,,,,,,,,, -77,Iridium,Ir,,1.5643600,8.96702,17,28,40,57,72,89,105,123,194.8,217,240,264,303,329,356,407,445,472,510,560,610,670,720,770,820,870,920,980,1030,1080,1331,1381,1436,1493,1548,1603,1684,1739,1801,1857,2083,2139,2201,2258,2435,2500,2656,2720.4,4540,4668,4806,4952,5092,5229,5466,5609,5765,5910,6315,6441,6580,6708,7274,7421,7710,7850,17040,17390,17770,18120,20210,20650,21200,21556.6,86438.9,88113.3,,,,,,,,,,,,,,,,,,,,,,,,,,, -78,Platinum,Pt,,2.1251000,8.9588,18.563,29,43,56,75,91,109,126,144.9,220.4,245,269,293,332,358,392,445,479,507,550,610,660,710,760,820,870,930,980,1040,1090,1140,1402,1454,1509,1567,1624,1680,1763,1821,1883,1941,2171,2228,2291,2350,2536,2603,2762,2827.8,4715,4839,4980,5128,5270,5410,5654,5800,5959,6106,6517,6646,6787,6918,7512,7660,7960,8100,17540,17890,18280,18630,20840,21280,21840,22205.7,88955.17,90660,,,,,,,,,,,,,,,,,,,,,,,,,, -79,Gold,Au,,2.3086100,9.22553,20.2,30,45,60,74,94,112,130.1,149,168.2,200,275,299,324,365,392,433,487,520,550,600,650,710,760,820,870,930,990,1040,1100,1150,1210,1475,1527,1584,1644,1702,1758,1845,1904,1967,2026,2261,2320,2383,2443,2640,2708,2870,2941,4888,5013,5156,5307,5452,5594,5846,5994,6156,6305,6724,6854,6997,7130,7760,7910,8210,8360,18040,18400,18790,19150,21470,21920,22500,22868.12,91515.82,93254.3,,,,,,,,,,,,,,,,,,,,,,,,, -80,Mercury,Hg,,0.0000000,10.4375,18.7568,34.2,48.55,61.2,76.6,93,113.9,134,153,173,192.7,276.9,307,332,357,402,429,477,530,560,590,650,710,760,820,880,930,990,1050,1110,1160,1220,1280,1549,1603,1661,1723,1780,1839,1928,1989,2052,2113,2354,2412,2478,2539,2745,2815,2981,3049.9,5055,5191,5335,5490,5636,5780,6041,6192,6356,6508,6933,7066,7211,7350,8000,8160,8470,8620,18550,18910,19310,19680,22120,22580,23170,23544.1,94124.7,95897.7,,,,,,,,,,,,,,,,,,,,,,,, -81,Thallium,Tl,,0.3770000,6.108194,20.4283,29.83,51.14,62.6,80,98,116,135,158,177,198,218.3,306.9,340,366,392,439,467,520,570,600,640,700,760,820,880,930,990,1060,1110,1170,1230,1290,1350,1625,1681,1740,1802,1862,1920,2014,2075,2140,2202,2447,2508,2574,2635,2854,2925,3094,3164.7,5234,5371,5518,5674,5824,5969,6241,6392,6560,6714,7146,7281,7430,7560,8260,8420,8730,8880,19070,19440,19840,20210,22780,23260,23850,24234.1,96783.2,98591.6,,,,,,,,,,,,,,,,,,,,,,, -82,Lead,Pb,,0.3640000,7.41663,15.03248,31.9373,42.32,68.8,82.9,100.1,120,138,158,182,203,224,245.1,338.1,374,401,428,478,507,570,610,650,690,750,810,870,930,990,1050,1120,1180,1240,1300,1360,1430,1704,1760,1819,1884,1945,2004,2101,2163,2230,2292,2543,2605,2671,2735,2965,3036,3211,3282.1,5414,5555,5703,5862,6015,6160,6442,6597,6767,6924,7362,7500,7650,7790,8520,8680,9000,9150,19590,19970,20380,20750,23460,23940,24550,24938,99491.85,101336.4,,,,,,,,,,,,,,,,,,,,,, -83,Bismuth,Bi,,0.9423620,7.2855,16.703,25.56,45.3,56,88.3,103,122,143,161.1,183,208,229,252,272.6,370.2,409,436,464,520,550,620,660,690,750,810,870,930,990,1060,1120,1180,1250,1310,1380,1440,1500,1784,1840,1902,1967,2029,2090,2190,2253,2321,2385,2641,2703,2771,2835,3078,3151,3329,3401.8,5599,5740,5892,6054,6208,6358,6648,6804,6977,7137,7580,7720,7870,8010,8780,8950,9270,9430,20130,20500,20920,21300,24150,24640,25260,25656.9,102251.76,104132.8,,,,,,,,,,,,,,,,,,,,, -84,Polonium,Po,,1.9000000,8.414,19.3,27,36,57,69.1,108,125,146.1,166,190,209,235,257,281,304,416,444,473,502,560,590,670,700,740,800,860,930,990,1060,1120,1180,1250,1320,1380,1440,1510,1570,1865,1923,1986,2052,2115,2177,2281,2345,2414,2480,2740,2803,2873,2938,3194,3268,3450,3524.2,5785,5930,6084,6248,6405,6557,6856,7015,7191,7350,7810,7940,8100,8240,9050,9220,9550,9710,20670,21050,21470,21860,24860,25360,25990,26390.4,105064.3,106982.7,,,,,,,,,,,,,,,,,,,, -85,Astatine,At,,2.8000000,9.31751,17.88,26.58,39.65,50.39,72,85.1,130.1,149,169,192.1,212,236,263,287,311,335,452,481,510,540,600,630,720,750,790,860,920,990,1050,1120,1180,1250,1320,1380,1450,1510,1590,1650,1948,2007,2071,2139,2203,2266,2373,2439,2510,2576,2841,2905,2977,3042,3312,3388,3573,3649,5980,6122,6279,6445,6604,6759,7068,7230,7410,7570,8030,8180,8330,8480,9330,9500,9830,9990,21210,21600,22030,22420,25580,26080,26730,27139,107923.4,109886,,,,,,,,,,,,,,,,,,, -86,Radon,Rn,,0.0000000,10.7485,21.4,29.4,36.9,52.9,64,88,102,154,173.9,195,218,240,264,293,317,342,367,488,519,549,579,643,680,760,800,850,920,980,1050,1120,1180,1250,1310,1390,1460,1520,1590,1660,1720,2033,2094,2158,2227,2293,2357,2467,2535,2606,2674,2944,3010,3082,3149,3433,3510,3699,3777,6169,6318,6476,6646,6807,6964,7283,7450,7630,7800,8260,8410,8570,8710,9610,9780,10120,10290,21770,22160,22600,23000,26310,26830,27490,27903.1,110842,112843.7,,,,,,,,,,,,,,,,,, -87,Francium,Fr,,0.4860000,4.072741,22.4,33,39.1,50,67,80,106,120,179,200,222.1,245,269,293,324,349,375,400,530,560,590,620,690,720,820,850,910,980,1040,1110,1180,1250,1320,1380,1460,1530,1600,1670,1740,1810,2119,2182,2247,2317,2384,2450,2564,2631,2706,2774,3049,3115,3190,3257,3556,3635,3828,3907,6365,6516,6678,6849,7013,7172,7500,7670,7850,8020,8500,8640,8800,8950,9890,10070,10420,10580,22330,22730,23170,23570,27060,27590,28260,28683.4,113817.2,115859,,,,,,,,,,,,,,,,, -88,Radium,Ra,,0.1000000,5.278423,10.14715,31,41,52.9,64,82,97,124,140,204.9,227,250,274,299,324,356,382,409,435,570,600,630,660,740,770,860,900,970,1040,1110,1180,1250,1320,1390,1460,1530,1610,1680,1750,1820,1880,2208,2271,2338,2409,2477,2544,2662,2731,2806,2876,3155,3224,3300,3368,3682,3762,3959,4040,6565,6718,6881,7056,7222,7380,7720,7890,8080,8250,8730,8880,9040,9200,10190,10360,10720,10890,22900,23300,23750,24160,27830,28370,29050,29479.8,116848.7,118931.3,,,,,,,,,,,,,,,, -89,Actinium,Ac,,0.3500000,5.17,11.75,17.431,44.8,55,67,79,98.9,113.9,143.9,161.1,233,255,279,305,330,355,390,416,444,470,610,640,670,710,780,820,920,950,1030,1100,1170,1240,1310,1380,1460,1530,1610,1680,1750,1820,1900,1970,2298,2362,2430,2503,2572,2639,2762,2833,2908,2980,3264,3334,3409,3479,3811,3893,4093,4175,6767,6923,7088,7265,7430,7600,7950,8120,8310,8480,8970,9120,9290,9440,10480,10660,11030,11200,23480,23890,24340,24760,28610,29160,29850,30293,119939,122062.9,,,,,,,,,,,,,,, -90,Thorium,Th,,0.3680000,6.3067,11.9,20,28.8,58,69.1,82,95,118,133,165,181,262,285,310,336,362,389,424,451,480,508,650,680,720,750,830,900,970,1010,1090,1160,1240,1310,1380,1460,1530,1600,1680,1760,1830,1910,2000,2060,2390,2455,2524,2598,2669,2737,2860,2935,3013,3086,3375,3445,3522,3593,3943,4025,4230,4313,6972,7130,7299,7480,7650,7820,8180,8350,8550,8720,9220,9370,9540,9690,10790,10970,11340,11510,24060,24480,24940,25360,29410,29970,30680,31122.8,123086.4,125253.4,,,,,,,,,,,,,, -91,Protactinium,Pa,,0.3840000,5.89,11.9,19,30.9,44.3,72,85.1,98.9,111,137,153,187,203,292,316,342,369,395,423,460,488,518,546,690,720,760,790,880,920,1020,1060,1150,1220,1300,1370,1450,1520,1600,1670,1760,1830,1910,2000,2060,2130,2483,2550,2620,2696,2766,2837,2968,3040,3119,3193,3488,3558,3637,3709,4077,4161,4370,4454,7181,7341,7510,7690,7870,8040,8410,8590,8780,8960,9460,9620,9790,9950,11100,11280,11660,11840,24660,25080,25540,25970,30230,30800,31520,31971.6,126296.6,128507,,,,,,,,,,,,, -92,Uranium,U,,0.3730000,6.1941,10.6,19.8,36.7,46,60,89,101,116,129,158,173,210,227,323,348,375,402,431,458,497,525,557,585,730,770,800,840,930,970,1070,1110,1210,1290,1360,1440,1520,1590,1670,1750,1830,1910,1990,2070,2140,2220,2578,2646,2718,2794,2867,2938,3073,3147,3228,3301,3602,3675,3753,3827,4214,4299,4510,4598,7393,7550,7730,7910,8090,8260,8650,8830,9030,9210,9720,9870,10040,10200,11410,11600,11990,12160,25260,25680,26150,26590,31060,31640,32400,32836.5,129570.3,131821,,,,,,,,,,,, -93,Neptunium,Np,,0.3130000,6.2657,11.5,19.7,33.8,48,65,92,107,121,136,151,179,196,233,252,355,382,408,438,466,495,535,565,596,626,770,810,850,880,980,1020,1130,1170,1280,1360,1430,1510,1590,1670,1740,1820,1910,1990,2070,2140,2230,2310,2675,2745,2817,2894,2969,3041,3181,3255,3338,3413,3718,3792,3872,3947,4353,4441,4658,4744,7610,7770,7950,8130,8310,8480,8890,9070,9270,9450,9970,10130,10300,10460,11740,11930,12320,12500,25870,26300,26770,27210,31910,32500,33300,33722.2,132901.8,135202,,,,,,,,,,, -94,Plutonium,Pu,,0.0850000,6.026,11.2,21,35,49,80,95,109,124,139,159,179,200,219,258,278,389,416,444,474,503,532,575,605,637,668,820,850,890,930,1030,1070,1180,1220,1340,1420,1500,1580,1660,1740,1820,1890,1990,2070,2150,2230,2310,2390,2774,2844,2918,2997,3072,3146,3290,3366,3449,3527,3836,3911,3993,4068,4496,4585,4807,4890,7820,7990,8170,8360,8540,8720,9130,9310,9520,9700,10230,10390,10570,10730,12060,12260,12660,12840,26480,26920,27400,27840,32800,33400,34100,34625.8,136299.2,138646,,,,,,,,,, -95,Americium,Am,,0.076,5.9738,11.7,21.7,36.8,50,67.9,95,110,126,141,162,184,206,225,242,284,305,424,451,481,511,541,571,616,646,680,711,860,900,940,980,1090,1130,1240,1280,1410,1490,1570,1650,1740,1820,1900,1980,2070,2160,2240,2320,2410,2480,2874,2946,3021,3101,3178,3251,3402,3479,3563,3641,3956,4033,4115,4191,4642,4733,4960,5050,8040,8210,8400,8590,8770,8950,9380,9560,9770,9960,10490,10650,10830,11000,12400,12600,13000,13190,27110,27550,28040,28500,33700,34300,35100,35549.4,139769.5,142161,,,,,,,,, -96,Curium,Cm,,0.3210000,5.9914,10,20.1,37.7,51,69.1,97,112,128,144,167,190,212,235,253,272,311,332,460,489,518,550,580,611,657,689,723,755,910,950,990,1030,1140,1180,1300,1340,1480,1560,1640,1730,1810,1890,1980,2060,2160,2240,2320,2410,2490,2580,2976,3050,3125,3207,3284,3360,3515,3593,3679,3758,4078,4156,4239,4317,4791,4880,5110,5200,8270,8440,8620,8820,9000,9180,9630,9820,10020,10220,10760,10920,11100,11270,12740,12950,13360,13550,27740,28180,28700,29100,34600,35200,36000,36493,143299.6,145743,,,,,,,, -97,Berkelium,Bk,,0.0310000,6.1979,11.9,21.6,36,56,70.1,90,114,130,147,171,195,218,240,259,279,303,339,361,497,526,557,590,621,652,700,733,768,800,960,1000,1040,1080,1200,1240,1360,1410,1550,1630,1720,1800,1890,1970,2050,2140,2240,2320,2410,2490,2580,2670,3080,3154,3232,3315,3393,3469,3630,3709,3797,3877,4202,4281,4365,4445,4940,5040,5270,5360,8500,8670,8850,9050,9240,9420,9880,10070,10280,10480,11020,11190,11380,11540,13090,13300,13720,13910,28380,28800,29300,29800,35500,36200,37000,37457.6,146904.7,149398,,,,,,, -98,Californium,Cf,,0.0180000,6.2817,11.8,22.4,37.7,51.9,75,91,112.9,133,152,178,202,225,247,265,286,310,334,368,390,536,566,597,630,662,695,744,778,814,847,1010,1050,1090,1120,1250,1300,1420,1460,1620,1700,1790,1880,1960,2050,2130,2220,2320,2410,2490,2580,2670,2750,3186,3261,3340,3424,3503,3581,3747,3828,3915,3998,4329,4407,4494,4574,5100,5190,5430,5520,8730,8900,9090,9290,9480,9660,10140,10330,10550,10740,11300,11470,11650,11820,13450,13660,14080,14280,29000,29500,30000,30500,36500,37100,37900,38443.5,150579.3,153124,,,,,, -99,Einsteinium,Es,,0.0020000,6.42,12,22.7,38.8,54.1,71,97,112.9,137,157,180,206,231,252,270,294,317,342,367,398,421,576,606,638,672,705,738,790,824,861,895,1060,1100,1140,1180,1310,1360,1480,1530,1690,1780,1870,1950,2040,2130,2220,2300,2410,2490,2580,2680,2760,2900,3294,3370,3449,3535,3616,3694,3866,3947,4038,4120,4456,4537,4620,4700,5260,5350,5600,5690,8960,9140,9330,9530,9720,9910,10400,10590,10810,11010,11570,11740,11930,12110,13810,14030,14460,14700,29700,30100,30700,31100,37400,38100,38900,39451.4,154328,156926,,,,, -100,Fermium,Fm,,0.0000000,6.5,10,23.2,39.3,55,74,93,120,136,162,185,209,237,257,276,300,326,351,377,402,430,453,616,647,680,716,749,782,837,871,909,944,1110,1150,1190,1230,1370,1420,1550,1600,1770,1860,1940,2030,2120,2210,2300,2390,2490,2590,2680,2760,2850,2950,3403,3480,3561,3647,3730,3810,3986,4070,4160,4245,4586,4670,4760,4840,5420,5510,5760,5860,9200,9370,9570,9770,9970,10160,10660,10860,11080,11280,11850,12020,12220,12390,14180,14400,14800,15000,30300,30800,31300,31800,38400,39100,40000,40482.2,158152.5,160804,,,, -101,Mendelevium,Md,,0.0000000,6.58,10,24.3,40,54.1,76,96,115.1,143.9,162,187,215,240,260,282,307,334,360,386,412,438,462,486,659,690,723,760,794,828,885,920,958,994,1160,1200,1250,1290,1430,1480,1620,1660,1840,1930,2020,2110,2200,2290,2380,2480,2580,2680,2760,2860,2950,3050,3513,3592,3675,3762,3845,3926,4109,4194,4286,4371,4720,4800,4890,4970,5580,5680,5930,6030,9430,9620,9810,10020,10220,10410,10930,11130,11360,11560,12140,12310,12500,12680,14560,14800,15200,15400,31000,31500,32000,32500,39500,40100,41000,41548,,164764,,, -102,Nobelium,No,,0.0000000,6.65,12.5,25.8,41.5,60,74,97,119,140,170,187,216,246,267,290,312,341,367,394,420,448,475,496,520,701,734,768,805,840,875,934,969,1010,1045,1220,1260,1300,1340,1500,1550,1680,1730,1920,2010,2110,2200,2290,2380,2470,2570,2680,2760,2860,2950,3050,3140,3627,3705,3790,3878,3962,4045,4234,4320,4413,4500,4850,4930,5030,5110,5750,5850,6110,6210,9680,9860,10060,10270,10470,10660,11200,11410,11630,11840,12420,12600,12800,12980,15000,15200,15600,15800,31700,32200,32700,33200,40500,41200,42100,42632,,168806,, -103,Lawrencium,Lr,,0.465,5.354223992,14.3,21.4,43.6,56,80,96,121,143,165,197,216,244,269,290,320,344,374,403,431,460,487,510,540,560,745,779,814,852,888,922,985,1020,1061,1098,1280,1320,1360,1410,1570,1620,1760,1810,2010,2100,2190,2290,2380,2470,2570,2670,2780,2860,2960,3060,3150,3250,3741,3821,3906,3996,4082,4165,4360,4448,4540,4630,4990,5070,5160,5250,5920,6030,6290,6390,9920,10110,10310,10520,10720,10920,11480,11680,11910,12120,12710,12890,13090,13300,15300,15600,16000,16200,32400,32900,33400,33900,41600,42300,43200,43759,,172930, -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -,,,,,,,Chemical Potentials of Atoms and Atomic Ions (eV) from the Parr-Pearson-Mulliken formula,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -,,,,,,,,,,,Charge,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Atomic #,Element,Symbol,-2,-1,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,,,,, -1,Hydrogen,H,-2.28,-2.46,-7.18,-56.00,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2,Helium,He,-,0.38,-12.29,-39.50,-90.00,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3,Lithium,Li,1.72,-0.69,-3.00,-40.52,-99.05,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4,Beryllium,Be,4.36,1.70,-4.66,-13.77,-86.05,-185.81,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -5,Boron,B,5.62,2.08,-4.29,-16.73,-31.54,-148.65,-299.80,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6,Carbon,C,8.41,2.08,-6.26,-17.82,-36.14,-56.19,-228.29,-441.04,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7,Nitrogen,N,9.95,3.40,-7.27,-22.07,-38.53,-62.46,-87.68,-324.98,-609.56,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8,Oxygen,O,3.87,2.79,-7.54,-24.37,-45.03,-66.17,-95.66,-126.01,-438.70,-805.35,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -9,Fluorine,F,3.70,-1.91,-10.41,-26.20,-48.84,-74.92,-100.69,-135.70,-171.18,-569.55,-1028.51,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10,Neon,Ne,2.77,1.44,-10.78,-31.26,-52.21,-80.29,-111.67,-142.07,-182.60,-223.19,-717.46,-1279.01,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -11,Sodium,Na,4.51,0.41,-2.84,-26.21,-59.45,-85.27,-118.66,-155.29,-190.34,-236.38,-282.06,-882.49,-1556.91,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -12,Magnesium,Mg,5.58,1.88,-3.82,-11.34,-47.59,-94.70,-125.27,-164.02,-205.89,-245.49,-297.01,-347.78,-1064.65,-1862.24,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -13,Aluminum,Al,6.44,1.69,-3.21,-12.41,-23.64,-74.22,-136.91,-172.16,-216.13,-263.21,-307.40,-364.44,-420.38,-1263.99,-2195.06,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -14,Silicon,Si,7.97,1.59,-4.77,-12.25,-24.92,-39.32,-105.95,-186.02,-225.89,-275.02,-327.33,-376.25,-438.87,-499.89,-1480.53,-2555.41,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -15,Phosphorus,P,8.44,2.01,-5.62,-15.13,-24.99,-40.82,-58.23,-142.72,-242.00,-286.59,-340.87,-398.27,-451.93,-520.13,-586.27,-1714.33,-2943.38,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -16,Sulfur,S,3.59,1.28,-6.22,-16.85,-29.06,-41.01,-59.91,-80.32,-184.50,-304.85,-354.15,-413.53,-476.15,-534.62,-608.32,-679.61,-1965.40,-3358.98,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -17,Chlorine,Cl,2.51,-1.82,-8.29,-18.39,-31.71,-46.54,-60.63,-82.42,-105.61,-231.24,-374.17,-427.85,-492.46,-560.64,-624.35,-703.24,-779.58,-2233.96,-3802.41,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -18,Argon,Ar,-0.11,-0.65,-7.88,-21.69,-34.18,-50.28,-67.42,-83.01,-107.67,-133.89,-282.96,-450.57,-508.83,-578.61,-652.18,-720.92,-805.26,-886.40,-2519.46,-4273.56,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -19,Potassium,K,0.49,-1.47,-2.42,-17.99,-38.72,-53.36,-71.79,-91.03,-108.48,-136.22,-165.35,-339.81,-534.25,-597.05,-672.00,-750.60,-823.85,-914.55,-1000.70,-2822.10,-4772.42,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -20,Calcium,Ca,0.39,-2.48,-3.07,-8.99,-31.39,-59.09,-75.89,-96.64,-117.99,-137.22,-167.89,-199.91,-401.59,-624.55,-691.90,-772.10,-856.05,-934.25,-1030.50,-1122.40,-3143.30,-5299.33,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -21,Scandium,Sc,-,0.81,-3.38,-9.68,-18.78,-49.12,-82.57,-101.17,-124.34,-148.05,-169.07,-202.61,-237.49,-468.58,-722.03,-793.75,-879.15,-968.25,-1051.50,-1153.50,-1250.49,-3481.39,-5854.26,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -22,Titanium,Ti,-0.39,-1.12,-3.45,-10.20,-20.53,-35.38,-71.28,-109.42,-130.17,-155.60,-181.25,-204.01,-240.50,-278.29,-539.67,-825.47,-902.50,-992.95,-1087.50,-1176.00,-1283.50,-1385.70,-3837.20,-6437.41,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -23,Vanadium,V,-,-1.08,-3.64,-10.68,-21.96,-38.01,-56.00,-96.71,-139.37,-162.00,-189.60,-218.15,-243.10,-281.90,-322.19,-616.14,-936.00,-1018.00,-1114.00,-1214.00,-1307.50,-1420.50,-1527.80,-4210.45,-7048.71,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -24,Chromium,Cr,-1.64,-2.30,-3.72,-11.63,-23.72,-40.06,-59.31,-80.05,-125.41,-172.44,-197.00,-226.85,-257.60,-284.40,-326.40,-369.48,-697.38,-1053.80,-1141.00,-1242.00,-1347.50,-1446.00,-1565.00,-1677.70,-4601.55,-7688.26,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -25,Manganese,Mn,-0.24,-2.53,-3.72,-11.54,-24.65,-42.43,-61.80,-84.00,-107.40,-156.85,-208.15,-235.05,-267.15,-300.20,-329.00,-373.30,-419.08,-784.93,-1179.35,-1270.50,-1377.00,-1488.00,-1591.50,-1716.00,-1833.95,-5010.25,-8356.27,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -26,Iron,Fe,2.40,-4.00,-4.03,-12.05,-23.42,-42.73,-64.90,-87.05,-112.04,-138.02,-192.33,-247.85,-276.15,-310.50,-345.90,-376.60,-424.60,-473.13,-877.63,-1312.00,-1407.00,-1519.00,-1635.50,-1744.00,-1874.50,-1986.50,-5425.50,-9052.85,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -27,Cobalt,Co,6.73,-0.72,-4.27,-12.48,-25.29,-42.40,-65.40,-90.75,-115.45,-143.35,-171.97,-230.77,-290.20,-320.50,-357.50,-395.00,-427.50,-477.98,-529.27,-971.89,-1450.90,-1553.80,-1669.00,-1790.50,-1904.00,-2040.50,-2169.00,-5881.55,-9778.11,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -28,Nickel,Ni,4.80,1.68,-4.40,-12.90,-26.68,-45.05,-65.48,-92.03,-120.50,-147.50,-177.50,-208.80,-272.80,-336.50,-368.00,-407.00,-447.00,-481.50,-535.04,-589.07,-1074.03,-1594.50,-1702.00,-1825.00,-1952.50,-2071.00,-2213.00,-2347.10,-6344.00,-10532.10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -29,Copper,Cu,6.88,0.18,-4.48,-14.01,-28.57,-47.11,-68.59,-91.40,-121.00,-152.50,-182.50,-215.50,-248.65,-317.15,-385.00,-418.00,-459.50,-502.00,-538.50,-595.00,-651.79,-1183.79,-1750.50,-1860.00,-1988.00,-2121.00,-2245.00,-2393.00,-2532.75,-6824.94,-11315.00,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -30,Zinc,Zn,6.88,2.65,-4.70,-13.68,-28.84,-49.56,-71.00,-95.30,-121.00,-154.00,-188.50,-220.50,-256.00,-292.40,-365.25,-436.85,-472.00,-516.00,-560.50,-599.00,-658.50,-718.00,-1297.00,-1908.50,-2023.00,-2149.50,-2286.00,-2424.75,-2580.70,-2725.95,-7323.47,-12126.93,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -31,Gallium,Ga,8.03,2.07,-3.21,-13.26,-25.61,-47.36,-75.01,-99.36,-126.75,-155.40,-190.50,-227.50,-262.00,-299.50,-337.50,-413.60,-490.01,-528.57,-574.06,-619.90,-658.50,-721.35,-786.50,-1408.65,-2069.50,-2193.50,-2324.50,-2467.45,-2613.45,-2775.50,-2926.21,-7840.49,-12968.02,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -32,Germanium,Ge,8.76,0.97,-4.57,-11.92,-25.08,-39.97,-69.61,-104.70,-130.40,-160.65,-194.45,-232.30,-269.05,-306.00,-346.50,-387.00,-467.45,-547.60,-588.18,-635.93,-686.40,-727.00,-790.55,-858.77,-1530.27,-2242.05,-2371.50,-2507.00,-2656.10,-2809.55,-2977.95,-3134.15,-8375.86,-13838.42,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -33,Arsenic,As,9.18,1.87,-5.30,-14.19,-23.47,-39.24,-56.38,-95.12,-137.30,-163.50,-196.50,-230.00,-271.50,-314.50,-354.00,-396.50,-439.00,-523.80,-608.21,-650.86,-700.90,-751.45,-794.00,-862.85,-934.25,-1656.90,-2421.50,-2556.00,-2696.00,-2852.00,-3013.05,-3187.55,-3349.32,-8929.66,-14738.29,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -34,Selenium,Se,3.68,0.70,-5.88,-15.47,-26.01,-36.88,-55.62,-75.00,-118.55,-169.70,-201.50,-237.00,-273.00,-316.95,-362.95,-404.50,-449.50,-495.00,-583.75,-671.94,-716.59,-768.90,-821.90,-866.40,-938.30,-1012.98,-1788.53,-2607.35,-2747.00,-2892.00,-3055.00,-3223.90,-3404.40,-3571.76,-9502.01,-15667.79,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -35,Bromine,Br,4.26,-0.88,-7.59,-16.70,-28.80,-41.65,-53.50,-74.15,-95.80,-147.90,-208.40,-242.50,-281.00,-319.50,-365.50,-414.50,-458.50,-505.50,-553.50,-646.65,-738.65,-785.40,-839.90,-895.40,-941.90,-1016.80,-1094.88,-1925.08,-2800.50,-2945.00,-3094.50,-3265.00,-3442.05,-3629.05,-3801.99,-10093.00,-16627.07,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -36,Krypton,Kr,2.41,0.47,-7.00,-19.18,-30.65,-44.73,-58.60,-71.60,-94.75,-118.40,-178.33,-249.53,-288.10,-329.00,-370.50,-419.00,-469.50,-516.50,-566.50,-616.50,-713.50,-809.50,-858.50,-910.50,-967.50,-1024.50,-1101.00,-1178.15,-2066.65,-2999.00,-3148.50,-3304.00,-3482.50,-3668.00,-3861.50,-4040.04,-10702.75,-17616.31,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -37,Rubidium,Rb,0.43,-0.37,-2.33,-15.73,-33.64,-46.30,-61.80,-77.70,-91.80,-117.60,-143.00,-213.55,-295.10,-334.55,-378.00,-421.50,-472.50,-526.00,-575.50,-627.50,-680.00,-781.50,-881.15,-932.10,-991.45,-1052.00,-1102.50,-1183.75,-1268.53,-2213.93,-3207.15,-3361.50,-3521.00,-3707.50,-3901.50,-4101.00,-4285.43,-11331.37,-18635.70,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -38,Strontium,Sr,0.56,-2.34,-2.88,-8.36,-26.96,-49.95,-64.30,-81.20,-98.40,-114.15,-142.15,-169.50,-250.55,-343.05,-385.00,-431.00,-476.50,-530.50,-587.00,-638.50,-693.50,-748.00,-853.00,-957.05,-1010.05,-1071.50,-1135.00,-1188.00,-1272.20,-1360.30,-2365.95,-3420.85,-3580.50,-3747.00,-3941.50,-4142.50,-4348.50,-4538.70,-11978.99,-19685.41,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -39,Yttrium,Y,2.95,-1.46,-3.27,-9.22,-16.37,-40.56,-68.80,-85.00,-104.50,-122.50,-137.60,-168.60,-198.50,-290.00,-394.00,-438.50,-487.50,-535.50,-591.50,-650.50,-705.00,-761.50,-818.50,-928.50,-1035.95,-1091.05,-1155.10,-1221.50,-1276.50,-1363.80,-1455.36,-2523.01,-3641.45,-3806.00,-3976.00,-4179.50,-4391.50,-4604.00,-4799.87,-12645.72,-20765.63,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -40,Zirconium,Zr,1.35,0.69,-3.53,-9.87,-18.05,-28.67,-57.34,-88.31,-104.14,-122.85,-143.35,-162.51,-193.46,-225.58,-331.13,-448.00,-495.00,-546.50,-597.50,-656.00,-717.50,-774.00,-833.00,-892.50,-1007.00,-1118.35,-1175.05,-1241.20,-1310.50,-1368.00,-1458.55,-1553.74,-2685.19,-3869.00,-4038.50,-4213.50,-4426.50,-4648.50,-4867.50,-5068.97,-13331.70,-21876.57,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -41,Niobium,Nb,3.14,-0.76,-3.83,-10.38,-19.52,-31.67,-44.43,-76.30,-113.53,-130.50,-147.60,-169.60,-190.14,-223.19,-257.35,-375.55,-506.25,-555.50,-608.50,-662.00,-723.00,-787.00,-846.50,-908.50,-970.00,-1088.00,-1203.30,-1262.15,-1330.85,-1403.50,-1469.50,-1562.95,-1655.43,-2852.53,-4103.55,-4278.00,-4454.50,-4677.50,-4913.00,-5138.00,-5345.53,-14037.06,-23018.42,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -42,Molybdenum,Mo,3.98,-0.56,-3.92,-11.63,-21.65,-36.77,-50.45,-61.66,-97.25,-134.63,-153.86,-175.26,-197.85,-219.79,-254.69,-290.85,-423.30,-557.00,-603.00,-669.00,-734.50,-800.00,-867.50,-935.00,-994.00,-1051.00,-1172.50,-1293.00,-1355.00,-1418.00,-1492.00,-1568.00,-1665.55,-1760.52,-3024.97,-4344.50,-4524.00,-4709.00,-4942.00,-5185.50,-5417.50,-5630.60,-14761.92,-24191.40,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -43,Technetium,Tc,6.70,-1.42,-3.91,-11.27,-22.40,-35.27,-49.00,-64.50,-80.00,-119.00,-159.50,-179.45,-201.95,-226.50,-250.54,-286.54,-324.78,-471.28,-629.50,-684.00,-743.00,-801.00,-866.50,-936.00,-1000.00,-1067.00,-1134.00,-1260.00,-1382.80,-1445.55,-1519.25,-1598.50,-1663.50,-1763.50,-1869.14,-3202.64,-4593.00,-4777.50,-4967.00,-5210.50,-5465.50,-5704.00,-5923.20,-15506.46,-25395.76,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -44,Ruthenium,Ru,15.66,0.17,-4.22,-12.06,-22.62,-36.74,-52.00,-67.50,-84.50,-101.50,-144.20,-188.20,-208.95,-232.45,-258.00,-283.45,-321.95,-362.13,-523.13,-696.50,-753.50,-814.50,-875.00,-943.00,-1014.50,-1081.50,-1151.00,-1220.00,-1350.00,-1476.85,-1541.85,-1618.00,-1701.00,-1768.50,-1871.50,-1981.02,-3385.52,-4848.50,-5037.50,-5233.00,-5488.50,-5754.50,-5999.50,-6224.36,-16270.81,-26631.70,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -45,Rhodium,Rh,7.30,3.11,-4.30,-12.77,-24.57,-36.53,-52.50,-71.50,-88.50,-106.05,-125.05,-171.26,-217.76,-240.05,-264.55,-291.50,-318.79,-360.29,-402.50,-577.50,-766.50,-825.50,-889.00,-952.50,-1022.50,-1096.00,-1166.50,-1238.00,-1309.00,-1444.00,-1574.45,-1641.25,-1720.30,-1807.00,-1877.00,-1983.00,-2096.11,-3573.61,-5110.50,-5304.50,-5503.00,-5770.00,-6050.50,-6302.50,-6533.63,-17055.12,-27899.47,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -46,Palladium,Pd,5.75,1.75,-4.44,-13.88,-26.18,-39.47,-53.50,-72.55,-92.55,-110.50,-130.50,-150.50,-199.29,-249.29,-273.00,-298.50,-326.50,-355.55,-398.05,-442.50,-634.00,-839.50,-901.00,-966.50,-1032.50,-1105.00,-1181.50,-1254.00,-1328.00,-1402.00,-1541.00,-1675.10,-1743.75,-1825.15,-1915.50,-1989.00,-2098.50,-2214.93,-3766.43,-5379.50,-5579.00,-5781.50,-6061.00,-6355.50,-6614.00,-6851.05,-17859.56,-29199.32,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -47,Silver,Ag,7.54,0.43,-4.44,-14.53,-28.15,-41.92,-57.00,-73.50,-94.00,-115.50,-135.00,-156.00,-177.50,-229.73,-282.73,-307.50,-334.00,-364.00,-394.72,-438.72,-484.94,-692.94,-915.50,-979.50,-1047.50,-1115.50,-1190.00,-1269.50,-1345.00,-1421.00,-1497.50,-1641.00,-1778.75,-1849.25,-1933.50,-2028.00,-2104.00,-2216.50,-2336.99,-3964.99,-5655.50,-5859.50,-6068.00,-6360.50,-6667.50,-6933.00,-7176.65,-18684.31,-30531.51,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -48,Cadmium,Cd,8.34,2.44,-4.50,-12.95,-27.19,-44.24,-59.45,-77.45,-96.00,-117.55,-140.05,-161.50,-184.00,-206.50,-261.50,-317.00,-343.50,-371.50,-403.00,-436.78,-482.78,-529.60,-754.60,-994.50,-1060.50,-1131.00,-1202.00,-1278.50,-1360.00,-1438.50,-1517.50,-1596.50,-1743.50,-1884.95,-1957.90,-2044.45,-2143.00,-2222.50,-2338.50,-2462.81,-4168.81,-5939.00,-6148.00,-6358.50,-6665.00,-6989.50,-7261.50,-7510.97,-19529.50,-31896.28,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -49,Indium,In,10.25,0.65,-3.09,-12.33,-23.45,-41.02,-61.65,-79.65,-99.50,-119.55,-143.05,-167.00,-189.50,-213.50,-237.50,-295.00,-354.50,-382.00,-410.50,-443.50,-479.56,-528.56,-576.69,-818.19,-1076.00,-1145.00,-1218.00,-1291.50,-1370.50,-1454.50,-1535.50,-1617.00,-1698.50,-1849.50,-1994.75,-2069.75,-2159.00,-2262.00,-2345.00,-2464.00,-2591.89,-4377.39,-6228.50,-6442.50,-6662.00,-6983.00,-7319.00,-7598.00,-7853.57,-20395.36,-33293.95,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50,Tin,Sn,9.03,1.69,-4.23,-10.99,-22.57,-35.62,-56.51,-83.14,-103.45,-123.95,-145.50,-170.00,-196.00,-220.00,-245.00,-270.00,-330.50,-393.00,-422.00,-451.50,-486.00,-521.50,-572.50,-625.18,-884.68,-1161.00,-1232.00,-1308.00,-1384.00,-1464.50,-1552.00,-1636.00,-1719.50,-1803.50,-1959.00,-2108.05,-2184.55,-2276.50,-2384.50,-2471.00,-2593.00,-2724.75,-4591.75,-6526.00,-6745.00,-6969.50,-7305.50,-7660.50,-7946.50,-8204.98,-21282.05,-34724.77,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -51,Antimony,Sb,8.35,2.01,-4.82,-12.62,-20.97,-34.75,-50.10,-82.00,-112.50,-128.00,-150.50,-173.50,-199.50,-226.00,-251.50,-278.50,-304.50,-368.50,-433.50,-463.00,-494.50,-531.00,-568.00,-620.50,-675.13,-953.63,-1249.50,-1322.50,-1400.50,-1479.50,-1562.00,-1652.00,-1739.50,-1825.00,-1911.50,-2072.00,-2228.00,-2307.50,-2388.50,-2497.50,-2610.50,-2734.50,-2857.50,-4807.00,-6821.50,-7048.00,-7278.50,-7638.50,-8013.50,-8297.50,-8562.24,-22189.76,-36189.04,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52,Tellurium,Te,6.69,0.95,-5.49,-13.80,-23.28,-32.69,-48.08,-64.73,-103.85,-140.00,-155.00,-179.05,-203.05,-230.00,-258.50,-285.50,-313.50,-341.00,-407.50,-476.00,-506.50,-538.50,-577.00,-616.00,-671.00,-727.56,-1025.06,-1340.50,-1416.00,-1496.50,-1578.00,-1662.50,-1755.00,-1846.00,-1934.00,-2022.50,-2187.50,-2347.50,-2429.00,-2512.00,-2626.00,-2744.00,-2871.00,-2997.50,-5031.50,-7132.50,-7364.00,-7599.50,-7977.00,-8369.50,-8660.00,-8930.92,-23118.68,-37687.04,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -53,Iodine,I,8.35,-1.62,-6.75,-14.79,-26.07,-36.68,-45.94,-62.94,-80.99,-119.21,-160.91,-184.00,-208.95,-233.95,-263.00,-293.00,-321.00,-350.00,-379.00,-449.00,-520.00,-552.00,-585.00,-625.00,-666.00,-722.50,-781.38,-1098.88,-1434.50,-1512.50,-1596.00,-1679.50,-1766.00,-1861.50,-1955.00,-2046.00,-2137.00,-2306.00,-2470.50,-2554.00,-2639.00,-2758.00,-2883.00,-3013.00,-3140.75,-5261.25,-7468.50,-7700.00,-7922.00,-8322.50,-8734.00,-9031.50,-9308.55,-24069.05,-39219.20,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54,Xenon,Xe,7.86,-1.47,-6.07,-16.55,-26.55,-37.16,-48.17,-60.42,-79.15,-98.79,-142.91,-190.92,-215.51,-242.01,-268.00,-297.50,-328.50,-358.50,-389.00,-417.00,-489.50,-565.50,-599.00,-633.00,-675.00,-718.00,-777.00,-837.52,-1175.02,-1532.00,-1612.00,-1697.50,-1784.00,-1872.50,-1971.00,-2068.00,-2161.00,-2254.50,-2428.00,-2596.50,-2681.50,-2768.50,-2893.00,-3021.50,-3155.50,-3288.40,-5496.90,-7774.50,-8016.50,-8263.00,-8676.50,-9107.00,-9412.00,-9695.70,-25041.06,-40785.72,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55,Cesium,Cs,2.34,-2.04,-2.18,-13.53,-28.18,-38.10,-49.50,-62.55,-76.00,-96.50,-117.85,-169.46,-223.15,-247.00,-275.00,-302.50,-334.00,-367.00,-397.50,-429.00,-460.50,-536.50,-613.00,-647.50,-683.00,-726.50,-772.00,-833.00,-895.54,-1254.04,-1632.00,-1714.50,-1802.50,-1892.00,-1982.50,-2083.00,-2183.50,-2279.50,-2375.50,-2552.50,-2725.00,-2813.00,-2902.00,-3031.50,-3166.00,-3303.00,-3438.50,-5737.00,-8106.50,-8354.00,-8605.00,-9038.00,-9489.50,-9801.50,-10091.39,-26034.93,-42387.03,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56,Barium,Ba,-2.88,-3.10,-2.68,-7.61,-22.92,-41.44,-52.52,-64.50,-78.50,-93.50,-115.77,-138.53,-193.76,-254.05,-281.55,-310.50,-339.50,-372.00,-406.00,-438.50,-471.50,-504.00,-583.00,-662.50,-698.00,-734.50,-780.50,-827.50,-890.50,-955.80,-1335.80,-1735.50,-1820.00,-1911.00,-2002.50,-2094.50,-2199.00,-2302.50,-2400.50,-2499.50,-2680.50,-2857.50,-2947.50,-3037.50,-3173.50,-3314.50,-3456.50,-3595.00,-5983.00,-8445.50,-8698.00,-8954.00,-9408.00,-9881.00,-10199.50,-10496.21,-27050.89,-44023.42,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57,Lanthanum,La,2.11,-0.45,-3.03,-8.32,-15.12,-34.56,-55.78,-67.80,-81.00,-96.50,-112.00,-135.21,-160.10,-221.89,-289.00,-317.50,-348.00,-378.50,-412.00,-447.50,-481.00,-515.50,-549.50,-631.00,-713.50,-750.50,-788.00,-835.50,-885.50,-950.50,-1017.05,-1419.55,-1842.00,-1929.00,-2021.50,-2115.50,-2210.50,-2318.00,-2425.00,-2525.00,-2625.50,-2812.00,-2993.00,-3084.50,-3177.50,-3319.00,-3465.50,-3609.50,-3752.00,-6234.50,-8791.50,-9049.00,-9310.50,-9786.50,-10281.00,-10607.50,-10911.20,-28089.20,-45695.30,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58,Cerium,Ce,-3.62,-3.63,-3.09,-8.19,-15.52,-28.48,-51.15,-71.58,-84.30,-98.50,-115.50,-132.50,-156.00,-182.12,-252.12,-326.00,-355.50,-387.00,-419.00,-453.50,-490.50,-526.00,-561.00,-596.00,-681.00,-767.00,-804.50,-843.00,-893.00,-944.50,-1012.50,-1081.77,-1505.77,-1951.00,-2040.50,-2136.00,-2232.50,-2329.00,-2439.00,-2550.00,-2653.00,-2756.00,-2946.50,-3131.50,-3225.00,-3320.00,-3468.00,-3621.00,-3768.50,-3914.00,-6491.50,-9144.50,-9407.00,-9674.00,-10172.50,-10691.00,-11025.00,-11334.93,-29150.08,-47403.01,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59,Praseodymium,Pr,-2.16,-2.68,-3.22,-8.01,-16.09,-30.30,-48.26,-69.77,-89.50,-104.50,-121.50,-139.50,-155.00,-179.00,-206.51,-283.51,-364.00,-395.00,-428.50,-461.50,-497.00,-535.00,-572.00,-608.50,-645.00,-733.00,-821.50,-860.00,-900.00,-952.50,-1006.50,-1076.00,-1146.97,-1594.47,-2063.50,-2155.00,-2253.00,-2352.00,-2450.50,-2564.50,-2678.50,-2783.50,-2889.50,-3084.00,-3273.00,-3369.00,-3465.50,-3620.50,-3780.50,-3931.00,-4080.00,-6754.00,-9505.00,-9772.50,-10044.00,-10567.00,-11110.50,-11451.50,-11768.45,-30233.80,-49146.96,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60,Neodymium,Nd,8.44,-2.18,-2.85,-8.12,-16.41,-31.25,-50.20,-72.00,-91.50,-106.50,-125.00,-144.00,-160.00,-181.50,-208.00,-232.00,-316.00,-404.50,-436.50,-471.00,-505.50,-542.00,-582.00,-620.00,-658.00,-696.00,-786.50,-877.50,-917.50,-958.50,-1013.50,-1070.50,-1141.50,-1214.71,-1686.21,-2179.00,-2272.50,-2373.00,-2475.00,-2576.00,-2692.50,-2809.50,-2917.50,-3026.00,-3224.50,-3418.00,-3516.00,-3614.50,-3776.50,-3944.00,-4097.50,-4250.00,-7022.00,-9872.00,-10145.00,-10421.50,-10969.50,-11539.00,-11888.00,-12211.83,-31340.62,-50927.58,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61,Promethium,Pm,12.44,-2.70,-2.86,-8.24,-16.60,-31.70,-51.40,-73.35,-93.00,-108.50,-127.00,-146.50,-164.50,-188.00,-215.50,-238.50,-258.50,-349.50,-446.00,-479.50,-515.50,-551.50,-589.00,-630.00,-670.00,-709.50,-748.50,-841.50,-936.00,-977.00,-1019.00,-1076.50,-1135.50,-1209.50,-1284.85,-1779.85,-2297.50,-2393.50,-2496.00,-2600.50,-2703.50,-2823.50,-2944.50,-3053.50,-3164.50,-3369.00,-3566.00,-3665.50,-3767.00,-3936.00,-4111.00,-4268.50,-4423.50,-7295.50,-10246.50,-10524.50,-10806.50,-11380.50,-11977.50,-12334.00,-12664.63,-32470.78,-52745.20,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62,Samarium,Sm,4.03,-2.12,-2.91,-8.36,-17.24,-32.40,-52.03,-76.33,-96.50,-110.50,-129.50,-149.50,-168.50,-193.50,-222.50,-247.00,-266.50,-291.25,-390.25,-490.00,-524.50,-562.00,-599.00,-637.50,-680.00,-722.00,-762.00,-802.00,-899.00,-996.00,-1038.00,-1081.50,-1141.50,-1203.00,-1279.00,-1356.80,-1876.30,-2418.50,-2517.50,-2622.50,-2729.00,-2834.50,-2957.50,-3082.50,-3195.00,-3308.00,-3516.00,-3717.50,-3819.50,-3922.00,-4099.00,-4282.00,-4442.50,-4601.50,-7574.50,-10628.00,-10911.00,-11198.50,-11800.50,-12426.00,-12790.00,-13127.43,-33624.48,-54600.17,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63,Europium,Eu,5.25,-3.08,-2.90,-8.46,-18.09,-33.81,-52.85,-75.50,-96.50,-112.50,-132.00,-152.50,-172.00,-198.00,-228.00,-253.00,-272.00,-296.00,-327.70,-431.20,-535.50,-571.50,-610.00,-648.50,-688.00,-732.00,-775.00,-816.50,-858.50,-958.00,-1057.50,-1101.00,-1145.50,-1208.00,-1272.50,-1351.00,-1431.03,-1975.53,-2543.00,-2644.00,-2752.00,-2860.50,-2968.00,-3095.00,-3223.50,-3338.50,-3454.00,-3666.50,-3872.00,-3976.00,-4081.00,-4265.50,-4455.00,-4619.50,-4783.50,-7859.00,-11016.50,-11305.00,-11598.00,-12228.50,-12884.00,-13256.00,-13600.29,-34802.24,-56493.25,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64,Gadolinium,Gd,5.38,-3.01,-3.15,-9.12,-16.36,-32.32,-54.38,-76.88,-97.50,-114.50,-133.50,-154.50,-174.00,-198.00,-229.50,-257.00,-278.00,-303.50,-335.50,-366.00,-472.50,-583.00,-620.00,-659.50,-699.50,-740.00,-785.50,-830.50,-873.00,-916.00,-1018.50,-1121.00,-1165.50,-1211.00,-1277.00,-1344.50,-1424.50,-1506.68,-2076.68,-2670.50,-2773.50,-2884.00,-2995.50,-3105.00,-3236.00,-3368.00,-3487.00,-3605.00,-3820.00,-4030.00,-4135.50,-4242.50,-4436.00,-4635.50,-4803.50,-4969.50,-8149.00,-11412.50,-11706.50,-12004.00,-12665.00,-13352.00,-13732.00,-14083.79,-36004.24,-58424.71,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65,Terbium,Tb,2.71,-2.94,-3.15,-8.69,-16.72,-30.85,-53.15,-78.25,-99.00,-116.50,-134.00,-155.50,-177.00,-201.00,-233.00,-260.00,-282.00,-309.50,-341.50,-375.50,-409.80,-519.80,-632.00,-670.50,-711.00,-752.00,-794.00,-841.00,-887.50,-931.50,-975.50,-1081.00,-1186.50,-1232.00,-1278.50,-1347.00,-1418.00,-1501.00,-1584.69,-2180.19,-2801.00,-2906.50,-3019.50,-3133.50,-3244.50,-3379.00,-3515.50,-3635.50,-3756.00,-3976.50,-4190.50,-4298.50,-4407.50,-4610.00,-4818.50,-4990.00,-5160.00,-8445.00,-11815.00,-12114.50,-12417.50,-13110.50,-13830.50,-14218.50,-14577.50,-37230.13,-60394.45,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66,Dysprosium,Dy,2.35,0.07,-3.15,-8.80,-17.24,-32.14,-51.78,-77.54,-101.50,-118.50,-139.50,-161.00,-181.00,-208.00,-241.50,-269.00,-289.50,-316.00,-349.00,-382.50,-415.00,-448.00,-564.50,-683.00,-722.50,-764.50,-806.50,-849.50,-898.00,-946.50,-991.50,-1036.50,-1145.50,-1253.50,-1300.00,-1348.00,-1419.50,-1494.00,-1579.00,-1664.87,-2286.87,-2934.50,-3042.50,-3157.50,-3274.00,-3388.00,-3526.00,-3666.00,-3788.50,-3911.00,-4136.50,-4355.00,-4465.00,-4576.00,-4787.00,-5005.50,-5181.00,-5354.00,-8746.50,-12225.50,-12530.00,-12838.00,-13565.00,-14319.50,-14715.50,-15082.03,-38482.31,-62405.03,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -67,Holmium,Ho,3.86,-1.54,-3.18,-8.91,-17.32,-32.67,-53.22,-79.47,-103.50,-120.50,-142.00,-164.50,-185.00,-212.50,-246.00,-273.50,-294.50,-322.50,-356.50,-390.50,-424.50,-458.00,-492.50,-612.50,-735.00,-776.00,-819.50,-863.50,-907.00,-957.00,-1007.00,-1053.00,-1099.50,-1211.00,-1323.00,-1370.50,-1419.00,-1494.00,-1571.50,-1658.50,-1746.29,-2395.79,-3071.50,-3181.50,-3298.50,-3417.50,-3534.00,-3676.00,-3820.00,-3944.50,-4070.00,-4300.00,-4522.50,-4634.50,-4747.50,-4968.50,-5196.50,-5376.00,-5552.50,-9053.00,-12642.50,-12953.00,-13266.50,-14028.00,-14818.50,-15223.00,-15596.89,-39759.10,-64454.61,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -68,Erbium,Er,2.95,0.47,-3.21,-9.02,-17.34,-32.72,-53.90,-80.55,-105.00,-122.50,-144.50,-167.50,-189.00,-218.00,-251.50,-279.00,-300.50,-328.00,-363.00,-398.00,-432.50,-468.00,-503.00,-537.50,-662.50,-790.00,-831.50,-876.00,-921.00,-966.00,-1017.50,-1069.00,-1117.00,-1165.00,-1279.00,-1393.00,-1442.00,-1492.00,-1570.50,-1651.50,-1740.50,-1831.00,-2508.00,-3211.00,-3323.00,-3443.00,-3564.50,-3683.00,-3829.00,-3977.00,-4104.00,-4232.00,-4466.50,-4693.50,-4807.00,-4922.00,-5153.50,-5392.00,-5575.00,-5755.00,-9366.50,-13067.50,-13382.50,-13701.50,-14500.50,-15328.50,-15741.00,-16122.78,-41061.40,-66545.05,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -69,Thulium,Tm,11.69,1.08,-3.10,-9.12,-17.87,-33.19,-54.07,-81.72,-107.00,-124.50,-146.50,-170.00,-192.50,-222.00,-256.50,-284.50,-306.00,-334.50,-369.50,-405.50,-442.00,-480.00,-515.00,-550.00,-586.50,-714.00,-845.50,-888.50,-934.50,-981.00,-1027.00,-1080.00,-1133.50,-1182.00,-1231.00,-1348.50,-1466.00,-1516.00,-1566.50,-1648.50,-1733.50,-1825.00,-1917.10,-2622.60,-3354.50,-3468.50,-3590.50,-3714.00,-3835.00,-3985.00,-4137.00,-4267.00,-4398.00,-4636.50,-4867.00,-4983.00,-5100.50,-5342.00,-5591.50,-5778.50,-5962.00,-9685.00,-13499.00,-13819.50,-14144.00,-14981.50,-15849.50,-16268.00,-16657.17,-42389.80,-68676.30,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -70,Ytterbium,Yb,12.57,2.81,-3.13,-9.22,-18.61,-34.31,-54.57,-82.29,-108.00,-126.00,-149.00,-172.50,-195.50,-226.50,-261.50,-290.00,-312.50,-342.00,-378.00,-413.50,-450.00,-487.00,-522.50,-560.00,-600.00,-635.50,-766.50,-903.00,-947.50,-995.00,-1042.00,-1089.50,-1144.50,-1199.50,-1249.50,-1299.50,-1420.00,-1540.00,-1591.00,-1643.00,-1728.50,-1817.00,-1911.50,-2007.20,-2739.70,-3499.00,-3616.00,-3741.00,-3867.00,-3990.00,-4144.50,-4301.00,-4433.00,-4566.00,-4809.00,-5044.50,-5162.50,-5281.50,-5535.00,-5795.50,-5985.50,-6173.50,-10010.00,-13938.50,-14264.00,-14593.50,-15471.50,-16380.50,-16810.00,-17207.72,-43744.24,-70848.92,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -71,Lutetium,Lu,10.02,2.59,-2.88,-9.66,-17.43,-33.10,-56.03,-82.40,-107.50,-126.50,-147.50,-172.00,-195.00,-221.50,-257.00,-290.50,-316.50,-344.50,-380.00,-418.50,-457.00,-498.00,-540.00,-580.00,-620.00,-655.00,-691.50,-827.00,-963.00,-1008.50,-1056.50,-1105.50,-1154.00,-1210.00,-1267.00,-1318.50,-1370.00,-1493.00,-1616.00,-1668.50,-1721.50,-1811.00,-1904.00,-2000.00,-2096.25,-2857.75,-3648.00,-3767.00,-3894.00,-4023.00,-4148.50,-4307.00,-4467.50,-4602.50,-4738.00,-4985.50,-5225.00,-5345.00,-5466.50,-5731.00,-6003.50,-6198.00,-6389.00,-10340.00,-14385.00,-14716.00,-15050.50,-15970.50,-16925.00,-17365.00,-17769.03,-45125.48,-73063.86,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -72,Hafnium,Hf,8.74,1.79,-3.47,-10.91,-19.15,-28.32,-50.85,-83.19,-108.00,-128.00,-147.50,-172.00,-198.00,-219.50,-250.00,-290.00,-322.00,-346.50,-379.00,-419.50,-460.50,-500.50,-540.00,-585.00,-630.00,-670.00,-710.00,-751.00,-887.00,-1024.50,-1070.50,-1120.00,-1170.50,-1220.00,-1278.00,-1336.50,-1389.50,-1442.00,-1568.00,-1694.00,-1747.50,-1801.50,-1895.00,-1992.50,-2090.50,-2188.95,-2979.95,-3799.50,-3921.00,-4051.00,-4182.00,-4309.00,-4472.50,-4638.00,-4774.50,-4913.00,-5165.00,-5409.00,-5531.50,-5654.00,-5931.00,-6216.50,-6414.50,-6609.50,-10676.00,-14838.50,-15175.00,-15515.50,-16480.00,-17480.00,-17930.00,-18341.16,-46534.13,-75321.87,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -73,Tantalum,Ta,9.13,0.64,-3.94,-11.87,-19.65,-29.05,-41.64,-71.14,-106.51,-129.00,-149.00,-169.50,-196.50,-224.00,-248.50,-283.00,-321.00,-350.50,-379.50,-417.50,-460.50,-506.00,-550.00,-595.00,-640.00,-680.00,-720.00,-765.00,-811.00,-948.00,-1087.00,-1135.00,-1185.50,-1236.50,-1287.50,-1347.50,-1408.00,-1462.00,-1516.00,-1645.00,-1773.50,-1828.00,-1883.50,-1981.50,-2083.00,-2183.50,-2284.35,-3106.70,-3956.35,-4078.50,-4210.50,-4344.00,-4473.50,-4641.00,-4811.00,-4950.50,-5091.50,-5348.00,-5596.00,-5720.00,-5846.00,-6135.50,-6433.00,-6635.50,-6834.50,-11018.50,-15299.00,-15640.50,-15985.00,-16995.00,-18045.00,-18505.00,-18924.26,-47970.27,-77623.36,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -74,Tungsten,W,3.79,2.14,-4.35,-11.98,-21.06,-32.12,-44.90,-58.18,-93.39,-131.61,-150.70,-169.60,-193.95,-220.25,-244.95,-274.50,-308.00,-343.60,-374.90,-404.30,-441.40,-482.35,-523.00,-568.95,-617.55,-663.30,-710.05,-759.25,-808.90,-857.40,-1006.80,-1156.10,-1205.20,-1256.90,-1309.25,-1360.95,-1423.35,-1486.15,-1540.75,-1595.55,-1725.90,-1856.35,-1911.75,-1967.70,-2071.95,-2179.55,-2282.00,-2384.06,-3235.56,-4118.50,-4244.50,-4377.50,-4512.00,-4643.50,-4818.00,-4995.00,-5136.00,-5278.50,-5533.50,-5779.50,-5905.00,-6031.50,-6346.50,-6667.50,-6867.50,-7065.00,-11348.00,-15731.00,-16074.00,-16420.00,-17532.00,-18674.00,-19117.00,-19524.37,-49434.34,-79968.77,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -75,Rhenium,Re,3.38,0.15,-4.00,-12.22,-21.80,-33.05,-45.50,-59.45,-74.86,-113.56,-154.70,-176.00,-197.50,-222.00,-252.00,-279.50,-310.50,-353.50,-390.00,-416.00,-452.50,-498.00,-545.00,-595.00,-645.00,-695.00,-740.00,-785.00,-835.00,-885.00,-931.50,-1073.50,-1218.00,-1268.00,-1321.50,-1375.50,-1428.00,-1492.00,-1556.50,-1612.00,-1668.50,-1804.00,-1939.00,-1995.50,-2052.50,-2160.00,-2271.00,-2376.00,-2482.27,-3364.27,-4274.50,-4401.50,-4538.50,-4677.00,-4811.00,-4988.00,-5167.50,-5312.00,-5458.00,-5723.50,-5980.50,-6109.00,-6238.00,-6555.00,-6881.00,-7091.00,-7298.00,-11723.00,-16245.00,-16595.00,-16950.00,-18060.00,-19210.00,-19685.00,-20123.70,-50927.15,-82359.60,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -76,Osmium,Os,7.03,-1.18,-4.76,-12.72,-21.00,-33.00,-48.00,-62.55,-77.60,-93.56,-135.36,-179.35,-201.50,-224.00,-252.00,-284.50,-310.00,-343.50,-388.50,-423.00,-453.00,-495.00,-545.00,-595.00,-645.00,-695.00,-745.00,-795.00,-845.00,-895.00,-945.00,-992.50,-1138.50,-1286.50,-1337.50,-1392.00,-1447.00,-1501.00,-1567.00,-1633.00,-1690.00,-1748.00,-1886.00,-2024.00,-2082.00,-2140.00,-2252.00,-2368.00,-2476.00,-2583.75,-3494.75,-4437.50,-4568.00,-4707.00,-4848.00,-4984.50,-5166.00,-5350.50,-5498.00,-5646.00,-5916.00,-6177.50,-6308.00,-6439.50,-6771.00,-7112.00,-7326.50,-7539.00,-12085.00,-16730.00,-17085.00,-17445.00,-18610.00,-19815.00,-20300.00,-20745.30,-52448.40,-84795.30,,,,,,,,,,,,,,,,,,,,,,,,,,,, -77,Iridium,Ir,8.22,0.39,-5.27,-12.98,-22.50,-34.00,-48.50,-64.50,-80.50,-97.00,-114.00,-158.90,-205.90,-228.50,-252.00,-283.50,-316.00,-342.50,-381.50,-426.00,-458.50,-491.00,-535.00,-585.00,-640.00,-695.00,-745.00,-795.00,-845.00,-895.00,-950.00,-1005.00,-1055.00,-1205.50,-1356.00,-1408.50,-1464.50,-1520.50,-1575.50,-1643.50,-1711.50,-1770.00,-1829.00,-1970.00,-2111.00,-2170.00,-2229.50,-2346.50,-2467.50,-2578.00,-2688.20,-3630.20,-4604.00,-4737.00,-4879.00,-5022.00,-5160.50,-5347.50,-5537.50,-5687.00,-5837.50,-6112.50,-6378.00,-6510.50,-6644.00,-6991.00,-7347.50,-7565.50,-7780.00,-12445.00,-17215.00,-17580.00,-17945.00,-19165.00,-20430.00,-20925.00,-21378.30,-53997.75,-87276.10,,,,,,,,,,,,,,,,,,,,,,,,,,, -78,Platinum,Pt,6.96,0.53,-5.54,-13.76,-23.78,-36.00,-49.50,-65.50,-83.00,-100.00,-117.50,-135.45,-182.65,-232.70,-257.00,-281.00,-312.50,-345.00,-375.00,-418.50,-462.00,-493.00,-528.50,-580.00,-635.00,-685.00,-735.00,-790.00,-845.00,-900.00,-955.00,-1010.00,-1065.00,-1115.00,-1271.00,-1428.00,-1481.50,-1538.00,-1595.50,-1652.00,-1721.50,-1792.00,-1852.00,-1912.00,-2056.00,-2199.50,-2259.50,-2320.50,-2443.00,-2569.50,-2682.50,-2794.90,-3771.40,-4777.00,-4909.50,-5054.00,-5199.00,-5340.00,-5532.00,-5727.00,-5879.50,-6032.50,-6311.50,-6581.50,-6716.50,-6852.50,-7215.00,-7586.00,-7810.00,-8030.00,-12820.00,-17715.00,-18085.00,-18455.00,-19735.00,-21060.00,-21560.00,-22022.85,-55580.44,-89807.59,,,,,,,,,,,,,,,,,,,,,,,,,, -79,Gold,Au,8.28,0.40,-5.77,-14.71,-25.10,-37.50,-52.50,-67.00,-84.00,-103.00,-121.05,-139.55,-158.60,-184.10,-237.50,-287.00,-311.50,-344.50,-378.50,-412.50,-460.00,-503.50,-535.00,-575.00,-625.00,-680.00,-735.00,-790.00,-845.00,-900.00,-960.00,-1015.00,-1070.00,-1125.00,-1180.00,-1342.50,-1501.00,-1555.50,-1614.00,-1673.00,-1730.00,-1801.50,-1874.50,-1935.50,-1996.50,-2143.50,-2290.50,-2351.50,-2413.00,-2541.50,-2674.00,-2789.00,-2905.50,-3914.50,-4950.50,-5084.50,-5231.50,-5379.50,-5523.00,-5720.00,-5920.00,-6075.00,-6230.50,-6514.50,-6789.00,-6925.50,-7063.50,-7445.00,-7835.00,-8060.00,-8285.00,-13200.00,-18220.00,-18595.00,-18970.00,-20310.00,-21695.00,-22210.00,-22684.06,-57191.97,-92385.06,,,,,,,,,,,,,,,,,,,,,,,,, -80,Mercury,Hg,9.40,3.13,-5.22,-14.60,-26.48,-41.38,-54.88,-68.90,-84.80,-103.45,-123.95,-143.50,-163.00,-182.85,-234.80,-291.95,-319.50,-344.50,-379.50,-415.50,-453.00,-503.50,-545.00,-575.00,-620.00,-680.00,-735.00,-790.00,-850.00,-905.00,-960.00,-1020.00,-1080.00,-1135.00,-1190.00,-1250.00,-1414.50,-1576.00,-1632.00,-1692.00,-1751.50,-1809.50,-1883.50,-1958.50,-2020.50,-2082.50,-2233.50,-2383.00,-2445.00,-2508.50,-2642.00,-2780.00,-2898.00,-3015.45,-4052.45,-5123.00,-5263.00,-5412.50,-5563.00,-5708.00,-5910.50,-6116.50,-6274.00,-6432.00,-6720.50,-6999.50,-7138.50,-7280.50,-7675.00,-8080.00,-8315.00,-8545.00,-13585.00,-18730.00,-19110.00,-19495.00,-20900.00,-22350.00,-22875.00,-23357.05,-58834.40,-95011.20,,,,,,,,,,,,,,,,,,,,,,,, -81,Thallium,Tl,21.29,2.00,-3.24,-13.27,-25.13,-40.49,-56.87,-71.30,-89.00,-107.00,-125.50,-146.50,-167.50,-187.50,-208.15,-262.60,-323.45,-353.00,-379.00,-415.50,-453.00,-493.50,-545.00,-585.00,-620.00,-670.00,-730.00,-790.00,-850.00,-905.00,-960.00,-1025.00,-1085.00,-1140.00,-1200.00,-1260.00,-1320.00,-1487.50,-1653.00,-1710.50,-1771.00,-1832.00,-1891.00,-1967.00,-2044.50,-2107.50,-2171.00,-2324.50,-2477.50,-2541.00,-2604.50,-2744.50,-2889.50,-3009.50,-3129.35,-4199.35,-5302.50,-5444.50,-5596.00,-5749.00,-5896.50,-6105.00,-6316.50,-6476.00,-6637.00,-6930.00,-7213.50,-7355.50,-7495.00,-7910.00,-8340.00,-8575.00,-8805.00,-13975.00,-19255.00,-19640.00,-20025.00,-21495.00,-23020.00,-23555.00,-24042.05,-60508.65,-97687.40,,,,,,,,,,,,,,,,,,,,,,, -82,Lead,Pb,9.53,4.22,-3.88,-11.22,-23.48,-37.13,-55.56,-75.85,-91.50,-110.05,-129.00,-148.00,-170.00,-192.50,-213.50,-234.55,-291.60,-356.05,-387.50,-414.50,-453.00,-492.50,-538.50,-590.00,-630.00,-670.00,-720.00,-780.00,-840.00,-900.00,-960.00,-1020.00,-1085.00,-1150.00,-1210.00,-1270.00,-1330.00,-1395.00,-1567.00,-1732.00,-1789.50,-1851.50,-1914.50,-1974.50,-2052.50,-2132.00,-2196.50,-2261.00,-2417.50,-2574.00,-2638.00,-2703.00,-2850.00,-3000.50,-3123.50,-3246.55,-4348.05,-5484.50,-5629.00,-5782.50,-5938.50,-6087.50,-6301.00,-6519.50,-6682.00,-6845.50,-7143.00,-7431.00,-7575.00,-7720.00,-8155.00,-8600.00,-8840.00,-9075.00,-14370.00,-19780.00,-20175.00,-20565.00,-22105.00,-23700.00,-24245.00,-24744.00,-62214.93,-100414.13,,,,,,,,,,,,,,,,,,,,,, -83,Bismuth,Bi,17.99,0.74,-4.12,-11.99,-21.13,-35.43,-50.65,-72.15,-95.65,-112.50,-132.50,-152.05,-172.05,-195.50,-218.50,-240.50,-262.30,-321.40,-389.60,-422.50,-450.00,-492.00,-535.00,-585.00,-640.00,-675.00,-720.00,-780.00,-840.00,-900.00,-960.00,-1025.00,-1090.00,-1150.00,-1215.00,-1280.00,-1345.00,-1410.00,-1470.00,-1642.00,-1812.00,-1871.00,-1934.50,-1998.00,-2059.50,-2140.00,-2221.50,-2287.00,-2353.00,-2513.00,-2672.00,-2737.00,-2803.00,-2956.50,-3114.50,-3240.00,-3365.40,-4500.40,-5669.50,-5816.00,-5973.00,-6131.00,-6283.00,-6503.00,-6726.00,-6890.50,-7057.00,-7358.50,-7650.00,-7795.00,-7940.00,-8395.00,-8865.00,-9110.00,-9350.00,-14780.00,-20315.00,-20710.00,-21110.00,-22725.00,-24395.00,-24950.00,-25458.45,-63954.33,-103192.28,,,,,,,,,,,,,,,,,,,,, -84,Polonium,Po,13.46,3.27,-5.15,-13.86,-23.15,-31.50,-46.50,-63.05,-88.55,-116.50,-135.55,-156.05,-178.00,-199.50,-222.00,-246.00,-269.00,-292.50,-360.00,-430.00,-458.50,-487.50,-531.00,-575.00,-630.00,-685.00,-720.00,-770.00,-830.00,-895.00,-960.00,-1025.00,-1090.00,-1150.00,-1215.00,-1285.00,-1350.00,-1410.00,-1475.00,-1540.00,-1717.50,-1894.00,-1954.50,-2019.00,-2083.50,-2146.00,-2229.00,-2313.00,-2379.50,-2447.00,-2610.00,-2771.50,-2838.00,-2905.50,-3066.00,-3231.00,-3359.00,-3487.10,-4654.60,-5857.50,-6007.00,-6166.00,-6326.50,-6481.00,-6706.50,-6935.50,-7103.00,-7270.50,-7580.00,-7875.00,-8020.00,-8170.00,-8645.00,-9135.00,-9385.00,-9630.00,-15190.00,-20860.00,-21260.00,-21665.00,-23360.00,-25110.00,-25675.00,-26190.20,-65727.35,-106023.50,,,,,,,,,,,,,,,,,,,, -85,Astatine,At,6.26,0.24,-6.05,-13.60,-22.23,-33.12,-45.02,-61.20,-78.55,-107.60,-139.55,-159.00,-180.55,-202.05,-224.00,-249.50,-275.00,-299.00,-323.00,-393.50,-466.50,-495.50,-525.00,-570.00,-615.00,-675.00,-735.00,-770.00,-825.00,-890.00,-955.00,-1020.00,-1085.00,-1150.00,-1215.00,-1285.00,-1350.00,-1415.00,-1480.00,-1550.00,-1620.00,-1799.00,-1977.50,-2039.00,-2105.00,-2171.00,-2234.50,-2319.50,-2406.00,-2474.50,-2543.00,-2708.50,-2873.00,-2941.00,-3009.50,-3177.00,-3350.00,-3480.50,-3611.00,-4814.50,-6051.00,-6200.50,-6362.00,-6524.50,-6681.50,-6913.50,-7149.00,-7320.00,-7490.00,-7800.00,-8105.00,-8255.00,-8405.00,-8905.00,-9415.00,-9665.00,-9910.00,-15600.00,-21405.00,-21815.00,-22225.00,-24000.00,-25830.00,-26405.00,-26934.50,-67531.20,-108904.70,,,,,,,,,,,,,,,,,,, -86,Radon,Rn,8.34,0.51,-5.38,-16.07,-25.40,-33.15,-44.90,-58.45,-76.00,-95.00,-128.00,-163.95,-184.45,-206.50,-229.00,-252.00,-278.50,-305.00,-329.50,-354.50,-427.50,-503.50,-534.00,-564.00,-611.00,-661.50,-720.00,-780.00,-825.00,-885.00,-950.00,-1015.00,-1085.00,-1150.00,-1215.00,-1280.00,-1350.00,-1425.00,-1490.00,-1555.00,-1625.00,-1690.00,-1876.50,-2063.50,-2126.00,-2192.50,-2260.00,-2325.00,-2412.00,-2501.00,-2570.50,-2640.00,-2809.00,-2977.00,-3046.00,-3115.50,-3291.00,-3471.50,-3604.50,-3738.00,-4973.00,-6243.50,-6397.00,-6561.00,-6726.50,-6885.50,-7123.50,-7366.50,-7540.00,-7715.00,-8030.00,-8335.00,-8490.00,-8640.00,-9160.00,-9695.00,-9950.00,-10205.00,-16030.00,-21965.00,-22380.00,-22800.00,-24655.00,-26570.00,-27160.00,-27696.55,-69372.55,-111842.85,,,,,,,,,,,,,,,,,, -87,Francium,Fr,15.21,0.22,-2.28,-13.24,-27.70,-36.05,-44.55,-58.50,-73.50,-93.00,-113.00,-149.50,-189.50,-211.05,-233.55,-257.00,-281.00,-308.50,-336.50,-362.00,-387.50,-465.00,-545.00,-575.00,-605.00,-655.00,-705.00,-770.00,-835.00,-880.00,-945.00,-1010.00,-1075.00,-1145.00,-1215.00,-1285.00,-1350.00,-1420.00,-1495.00,-1565.00,-1635.00,-1705.00,-1775.00,-1964.50,-2150.50,-2214.50,-2282.00,-2350.50,-2417.00,-2507.00,-2597.50,-2668.50,-2740.00,-2911.50,-3082.00,-3152.50,-3223.50,-3406.50,-3595.50,-3731.50,-3867.50,-5136.00,-6440.50,-6597.00,-6763.50,-6931.00,-7092.50,-7336.00,-7585.00,-7760.00,-7935.00,-8260.00,-8570.00,-8720.00,-8875.00,-9420.00,-9980.00,-10245.00,-10500.00,-16455.00,-22530.00,-22950.00,-23370.00,-25315.00,-27325.00,-27925.00,-28471.70,-71250.30,-114838.10,,,,,,,,,,,,,,,,, -88,Radium,Ra,6.80,-0.14,-2.69,-7.71,-20.57,-36.00,-46.95,-58.45,-73.00,-89.50,-110.50,-132.00,-172.45,-215.95,-238.50,-262.00,-286.50,-311.50,-340.00,-369.00,-395.50,-422.00,-502.50,-585.00,-615.00,-645.00,-700.00,-755.00,-815.00,-880.00,-935.00,-1005.00,-1075.00,-1145.00,-1215.00,-1285.00,-1355.00,-1425.00,-1495.00,-1570.00,-1645.00,-1715.00,-1785.00,-1850.00,-2044.00,-2239.50,-2304.50,-2373.50,-2443.00,-2510.50,-2603.00,-2696.50,-2768.50,-2841.00,-3015.50,-3189.50,-3262.00,-3334.00,-3525.00,-3722.00,-3860.50,-3999.50,-5302.50,-6641.50,-6799.50,-6968.50,-7139.00,-7301.00,-7550.00,-7805.00,-7985.00,-8165.00,-8490.00,-8805.00,-8960.00,-9120.00,-9695.00,-10275.00,-10540.00,-10805.00,-16895.00,-23100.00,-23525.00,-23955.00,-25995.00,-28100.00,-28710.00,-29264.90,-73164.25,-117890.00,,,,,,,,,,,,,,,, -89,Actinium,Ac,0.24,-1.36,-2.76,-8.46,-14.59,-31.12,-49.90,-61.00,-73.00,-88.95,-106.40,-128.90,-152.50,-197.05,-244.00,-267.00,-292.00,-317.50,-342.50,-372.50,-403.00,-430.00,-457.00,-540.00,-625.00,-655.00,-690.00,-745.00,-800.00,-870.00,-935.00,-990.00,-1065.00,-1135.00,-1205.00,-1275.00,-1345.00,-1420.00,-1495.00,-1570.00,-1645.00,-1715.00,-1785.00,-1860.00,-1935.00,-2134.00,-2330.00,-2396.00,-2466.50,-2537.50,-2605.50,-2700.50,-2797.50,-2870.50,-2944.00,-3122.00,-3299.00,-3371.50,-3444.00,-3645.00,-3852.00,-3993.00,-4134.00,-5471.00,-6845.00,-7005.50,-7176.50,-7347.50,-7515.00,-7775.00,-8035.00,-8215.00,-8395.00,-8725.00,-9045.00,-9205.00,-9365.00,-9960.00,-10570.00,-10845.00,-11115.00,-17340.00,-23685.00,-24115.00,-24550.00,-26685.00,-28885.00,-29505.00,-30071.50,-75116.00,-121000.95,,,,,,,,,,,,,,, -90,Thorium,Th,2.53,-1.38,-3.35,-9.10,-15.95,-24.40,-43.40,-63.55,-75.55,-88.50,-106.50,-125.50,-149.00,-173.00,-221.50,-273.50,-297.50,-323.00,-349.00,-375.50,-406.50,-437.50,-465.50,-494.00,-579.00,-665.00,-700.00,-735.00,-790.00,-865.00,-935.00,-990.00,-1050.00,-1125.00,-1200.00,-1275.00,-1345.00,-1420.00,-1495.00,-1565.00,-1640.00,-1720.00,-1795.00,-1870.00,-1955.00,-2030.00,-2225.00,-2422.50,-2489.50,-2561.00,-2633.50,-2703.00,-2798.50,-2897.50,-2974.00,-3049.50,-3230.50,-3410.00,-3483.50,-3557.50,-3768.00,-3984.00,-4127.50,-4271.50,-5642.50,-7051.00,-7214.50,-7389.50,-7565.00,-7735.00,-8000.00,-8265.00,-8450.00,-8635.00,-8970.00,-9295.00,-9455.00,-9615.00,-10240.00,-10880.00,-11155.00,-11425.00,-17785.00,-24270.00,-24710.00,-25150.00,-27385.00,-29690.00,-30325.00,-30901.40,-77104.60,-124169.90,,,,,,,,,,,,,, -91,Protactinium,Pa,-1.24,-1.39,-3.14,-8.90,-15.45,-24.95,-37.60,-58.15,-78.55,-92.00,-104.95,-124.00,-145.00,-170.00,-195.00,-247.50,-304.00,-329.00,-355.50,-382.00,-409.00,-441.50,-474.00,-503.00,-532.00,-618.00,-705.00,-740.00,-775.00,-835.00,-900.00,-970.00,-1040.00,-1105.00,-1185.00,-1260.00,-1335.00,-1410.00,-1485.00,-1560.00,-1635.00,-1715.00,-1795.00,-1870.00,-1955.00,-2030.00,-2095.00,-2306.50,-2516.50,-2585.00,-2658.00,-2731.00,-2801.50,-2902.50,-3004.00,-3079.50,-3156.00,-3340.50,-3523.00,-3597.50,-3673.00,-3893.00,-4119.00,-4265.50,-4412.00,-5817.50,-7261.00,-7425.50,-7600.00,-7780.00,-7955.00,-8225.00,-8500.00,-8685.00,-8870.00,-9210.00,-9540.00,-9705.00,-9870.00,-10525.00,-11190.00,-11470.00,-11750.00,-18250.00,-24870.00,-25310.00,-25755.00,-28100.00,-30515.00,-31160.00,-31745.80,-79134.10,-127401.80,,,,,,,,,,,,, -92,Uranium,U,6.41,-1.60,-3.29,-8.40,-15.20,-28.25,-41.35,-53.00,-74.50,-95.00,-108.50,-122.50,-143.50,-165.50,-191.50,-218.50,-275.00,-335.50,-361.50,-388.50,-416.50,-444.50,-477.50,-511.00,-541.00,-571.00,-657.50,-750.00,-785.00,-820.00,-885.00,-950.00,-1020.00,-1090.00,-1160.00,-1250.00,-1325.00,-1400.00,-1480.00,-1555.00,-1630.00,-1710.00,-1790.00,-1870.00,-1950.00,-2030.00,-2105.00,-2180.00,-2399.00,-2612.00,-2682.00,-2756.00,-2830.50,-2902.50,-3005.50,-3110.00,-3187.50,-3264.50,-3451.50,-3638.50,-3714.00,-3790.00,-4020.50,-4256.50,-4404.50,-4554.00,-5995.50,-7471.50,-7640.00,-7820.00,-8000.00,-8175.00,-8455.00,-8740.00,-8930.00,-9120.00,-9465.00,-9795.00,-9955.00,-10120.00,-10805.00,-11505.00,-11795.00,-12075.00,-18710.00,-25470.00,-25915.00,-26370.00,-28825.00,-31350.00,-32020.00,-32618.25,-81203.40,-130695.65,,,,,,,,,,,, -93,Neptunium,Np,1.83,-1.35,-3.29,-8.88,-15.60,-26.75,-40.90,-56.50,-78.50,-99.50,-114.00,-128.50,-143.50,-165.00,-187.50,-214.50,-242.50,-303.50,-368.50,-395.00,-423.00,-452.00,-480.50,-515.00,-550.00,-580.50,-611.00,-698.00,-790.00,-830.00,-865.00,-930.00,-1000.00,-1075.00,-1150.00,-1225.00,-1320.00,-1395.00,-1470.00,-1550.00,-1630.00,-1705.00,-1780.00,-1865.00,-1950.00,-2030.00,-2105.00,-2185.00,-2270.00,-2492.50,-2710.00,-2781.00,-2855.50,-2931.50,-3005.00,-3111.00,-3218.00,-3296.50,-3375.50,-3565.50,-3755.00,-3832.00,-3909.50,-4150.00,-4397.00,-4549.50,-4701.00,-6177.00,-7690.00,-7860.00,-8040.00,-8220.00,-8395.00,-8685.00,-8980.00,-9170.00,-9360.00,-9710.00,-10050.00,-10215.00,-10380.00,-11100.00,-11835.00,-12125.00,-12410.00,-19185.00,-26085.00,-26535.00,-26990.00,-29560.00,-32205.00,-32900.00,-33511.10,-83312.00,-134051.90,,,,,,,,,,, -94,Plutonium,Pu,0.22,-2.70,-3.07,-8.61,-16.10,-28.00,-42.00,-64.50,-87.50,-102.00,-116.50,-131.50,-149.00,-169.00,-189.50,-209.50,-238.50,-268.00,-333.50,-402.50,-430.00,-459.00,-488.50,-517.50,-553.50,-590.00,-621.00,-652.50,-744.00,-835.00,-870.00,-910.00,-980.00,-1050.00,-1125.00,-1200.00,-1280.00,-1380.00,-1460.00,-1540.00,-1620.00,-1700.00,-1780.00,-1855.00,-1940.00,-2030.00,-2110.00,-2190.00,-2270.00,-2350.00,-2582.00,-2809.00,-2881.00,-2957.50,-3034.50,-3109.00,-3218.00,-3328.00,-3407.50,-3488.00,-3681.50,-3873.50,-3952.00,-4030.50,-4282.00,-4540.50,-4696.00,-4848.50,-6355.00,-7905.00,-8080.00,-8265.00,-8450.00,-8630.00,-8925.00,-9220.00,-9415.00,-9610.00,-9965.00,-10310.00,-10480.00,-10650.00,-11395.00,-12160.00,-12460.00,-12750.00,-19660.00,-26700.00,-27160.00,-27620.00,-30320.00,-33100.00,-33750.00,-34362.90,-85462.50,-137472.60,,,,,,,,,, -95,Americium,Am,0.66,-0.93,-3.03,-8.84,-16.70,-29.25,-43.40,-58.95,-81.45,-102.50,-118.00,-133.50,-151.50,-173.00,-195.00,-215.50,-233.50,-263.00,-294.50,-364.50,-437.50,-466.00,-496.00,-526.00,-556.00,-593.50,-631.00,-663.00,-695.50,-785.50,-880.00,-920.00,-960.00,-1035.00,-1110.00,-1185.00,-1260.00,-1345.00,-1450.00,-1530.00,-1610.00,-1695.00,-1780.00,-1860.00,-1940.00,-2025.00,-2115.00,-2200.00,-2280.00,-2365.00,-2445.00,-2677.00,-2910.00,-2983.50,-3061.00,-3139.50,-3214.50,-3326.50,-3440.50,-3521.00,-3602.00,-3798.50,-3994.50,-4074.00,-4153.00,-4416.50,-4687.50,-4846.50,-5005.00,-6545.00,-8125.00,-8305.00,-8495.00,-8680.00,-8860.00,-9165.00,-9470.00,-9665.00,-9865.00,-10225.00,-10570.00,-10740.00,-10915.00,-11700.00,-12500.00,-12800.00,-13095.00,-20150.00,-27330.00,-27795.00,-28270.00,-31100.00,-34000.00,-34700.00,-35324.70,-87659.45,-140965.25,,,,,,,,, -96,Curium,Cm,1.27,-0.92,-3.16,-8.00,-15.05,-28.90,-44.35,-60.05,-83.05,-104.50,-120.00,-136.00,-155.50,-178.50,-201.00,-223.50,-244.00,-262.50,-291.50,-321.50,-396.00,-474.50,-503.50,-534.00,-565.00,-595.50,-634.00,-673.00,-706.00,-739.00,-832.50,-930.00,-970.00,-1010.00,-1085.00,-1160.00,-1240.00,-1320.00,-1410.00,-1520.00,-1600.00,-1685.00,-1770.00,-1850.00,-1935.00,-2020.00,-2110.00,-2200.00,-2280.00,-2365.00,-2450.00,-2535.00,-2778.00,-3013.00,-3087.50,-3166.00,-3245.50,-3322.00,-3437.50,-3554.00,-3636.00,-3718.50,-3918.00,-4117.00,-4197.50,-4278.00,-4554.00,-4835.50,-4995.00,-5155.00,-6735.00,-8355.00,-8530.00,-8720.00,-8910.00,-9090.00,-9405.00,-9725.00,-9920.00,-10120.00,-10490.00,-10840.00,-11010.00,-11185.00,-12005.00,-12845.00,-13155.00,-13455.00,-20645.00,-27960.00,-28440.00,-28900.00,-31850.00,-34900.00,-35600.00,-36246.50,-89896.30,-144521.30,,,,,,,, -97,Berkelium,Bk,-,-,-3.11,-9.05,-16.75,-28.80,-46.00,-63.05,-80.05,-102.00,-122.00,-138.50,-159.00,-183.00,-206.50,-229.00,-249.50,-269.00,-291.00,-321.00,-350.00,-429.00,-511.50,-541.50,-573.50,-605.50,-636.50,-676.00,-716.50,-750.50,-784.00,-880.00,-980.00,-1020.00,-1060.00,-1140.00,-1220.00,-1300.00,-1385.00,-1480.00,-1590.00,-1675.00,-1760.00,-1845.00,-1930.00,-2010.00,-2095.00,-2190.00,-2280.00,-2365.00,-2450.00,-2535.00,-2625.00,-2875.00,-3117.00,-3193.00,-3273.50,-3354.00,-3431.00,-3549.50,-3669.50,-3753.00,-3837.00,-4039.50,-4241.50,-4323.00,-4405.00,-4692.50,-4990.00,-5155.00,-5315.00,-6930.00,-8585.00,-8760.00,-8950.00,-9145.00,-9330.00,-9650.00,-9975.00,-10175.00,-10380.00,-10750.00,-11105.00,-11285.00,-11460.00,-12315.00,-13195.00,-13510.00,-13815.00,-21145.00,-28590.00,-29050.00,-29550.00,-32650.00,-35850.00,-36600.00,-37228.80,-92181.15,-148151.35,,,,,,, -98,Californium,Cf,-,-,-3.15,-9.04,-17.10,-30.05,-44.80,-63.45,-83.00,-101.95,-122.95,-142.50,-165.00,-190.00,-213.50,-236.00,-256.00,-275.50,-298.00,-322.00,-351.00,-379.00,-463.00,-551.00,-581.50,-613.50,-646.00,-678.50,-719.50,-761.00,-796.00,-830.50,-928.50,-1030.00,-1070.00,-1105.00,-1185.00,-1275.00,-1360.00,-1440.00,-1540.00,-1660.00,-1745.00,-1835.00,-1920.00,-2005.00,-2090.00,-2175.00,-2270.00,-2365.00,-2450.00,-2535.00,-2625.00,-2710.00,-2968.00,-3223.50,-3300.50,-3382.00,-3463.50,-3542.00,-3664.00,-3787.50,-3871.50,-3956.50,-4163.50,-4368.00,-4450.50,-4534.00,-4837.00,-5145.00,-5310.00,-5475.00,-7125.00,-8815.00,-8995.00,-9190.00,-9385.00,-9570.00,-9900.00,-10235.00,-10440.00,-10645.00,-11020.00,-11385.00,-11560.00,-11735.00,-12635.00,-13555.00,-13870.00,-14180.00,-21640.00,-29250.00,-29750.00,-30250.00,-33500.00,-36800.00,-37500.00,-38171.75,-94511.40,-151851.65,,,,,, -99,Einsteinium,Es,-,-,-3.21,-9.21,-17.35,-30.75,-46.45,-62.55,-84.00,-104.95,-124.95,-147.00,-168.50,-193.00,-218.50,-241.50,-261.00,-282.00,-305.50,-329.50,-354.50,-382.50,-409.50,-498.50,-591.00,-622.00,-655.00,-688.50,-721.50,-764.00,-807.00,-842.50,-878.00,-977.50,-1080.00,-1120.00,-1160.00,-1245.00,-1335.00,-1420.00,-1505.00,-1610.00,-1735.00,-1825.00,-1910.00,-1995.00,-2085.00,-2175.00,-2260.00,-2355.00,-2450.00,-2535.00,-2630.00,-2720.00,-2830.00,-3097.00,-3332.00,-3409.50,-3492.00,-3575.50,-3655.00,-3780.00,-3906.50,-3992.50,-4079.00,-4288.00,-4496.50,-4578.50,-4660.00,-4980.00,-5305.00,-5475.00,-5645.00,-7325.00,-9050.00,-9235.00,-9430.00,-9625.00,-9815.00,-10155.00,-10495.00,-10700.00,-10910.00,-11290.00,-11655.00,-11835.00,-12020.00,-12960.00,-13920.00,-14245.00,-14580.00,-22200.00,-29900.00,-30400.00,-30900.00,-34250.00,-37750.00,-38500.00,-39175.70,-96889.70,-155627.00,,,,, -100,Fermium,Fm,-,-,-,-8.25,-16.60,-31.25,-47.15,-64.50,-83.50,-106.50,-128.00,-149.00,-173.50,-197.00,-223.00,-247.00,-266.50,-288.00,-313.00,-338.50,-364.00,-389.50,-416.00,-441.50,-534.50,-631.50,-663.50,-698.00,-732.50,-765.50,-809.50,-854.00,-890.00,-926.50,-1027.00,-1130.00,-1170.00,-1210.00,-1300.00,-1395.00,-1485.00,-1575.00,-1685.00,-1815.00,-1900.00,-1985.00,-2075.00,-2165.00,-2255.00,-2345.00,-2440.00,-2540.00,-2635.00,-2720.00,-2805.00,-2900.00,-3176.50,-3441.50,-3520.50,-3604.00,-3688.50,-3770.00,-3898.00,-4028.00,-4115.00,-4202.50,-4415.50,-4628.00,-4715.00,-4800.00,-5130.00,-5465.00,-5635.00,-5810.00,-7530.00,-9285.00,-9470.00,-9670.00,-9870.00,-10065.00,-10410.00,-10760.00,-10970.00,-11180.00,-11565.00,-11935.00,-12120.00,-12305.00,-13285.00,-14290.00,-14600.00,-14900.00,-22650.00,-30550.00,-31050.00,-31550.00,-35100.00,-38750.00,-39550.00,-40241.10,-99317.35,,,,, -101,Mendelevium,Md,-,-,-,-8.29,-17.15,-32.15,-47.05,-65.05,-86.00,-105.55,-129.50,-152.95,-174.50,-201.00,-227.50,-250.00,-271.00,-294.50,-320.50,-347.00,-373.00,-399.00,-425.00,-450.00,-474.00,-572.50,-674.50,-706.50,-741.50,-777.00,-811.00,-856.50,-902.50,-939.00,-976.00,-1077.00,-1180.00,-1225.00,-1270.00,-1360.00,-1455.00,-1550.00,-1640.00,-1750.00,-1885.00,-1975.00,-2065.00,-2155.00,-2245.00,-2335.00,-2430.00,-2530.00,-2630.00,-2720.00,-2810.00,-2905.00,-3000.00,-3281.50,-3552.50,-3633.50,-3718.50,-3803.50,-3885.50,-4017.50,-4151.50,-4240.00,-4328.50,-4545.50,-4760.00,-4845.00,-4930.00,-5275.00,-5630.00,-5805.00,-5980.00,-7730.00,-9525.00,-9715.00,-9915.00,-10120.00,-10315.00,-10670.00,-11030.00,-11245.00,-11460.00,-11850.00,-12225.00,-12405.00,-12590.00,-13620.00,-14680.00,-15000.00,-15300.00,-23200.00,-31250.00,-31750.00,-32250.00,-36000.00,-39800.00,-40550.00,-41274.00,,,,, -102,Nobelium,No,-,-,-,-9.58,-19.15,-33.65,-50.75,-67.00,-85.50,-108.00,-129.50,-155.00,-178.50,-201.50,-231.00,-256.50,-278.50,-301.00,-326.50,-354.00,-380.50,-407.00,-434.00,-461.50,-485.50,-508.00,-610.50,-717.50,-751.00,-786.50,-822.50,-857.50,-904.50,-951.50,-989.50,-1027.50,-1132.50,-1240.00,-1280.00,-1320.00,-1420.00,-1525.00,-1615.00,-1705.00,-1825.00,-1965.00,-2060.00,-2155.00,-2245.00,-2335.00,-2425.00,-2520.00,-2625.00,-2720.00,-2810.00,-2905.00,-3000.00,-3095.00,-3383.50,-3666.00,-3747.50,-3834.00,-3920.00,-4003.50,-4139.50,-4277.00,-4366.50,-4456.50,-4675.00,-4890.00,-4980.00,-5070.00,-5430.00,-5800.00,-5980.00,-6160.00,-7945.00,-9770.00,-9960.00,-10165.00,-10370.00,-10565.00,-10930.00,-11305.00,-11520.00,-11735.00,-12130.00,-12510.00,-12700.00,-12890.00,-13990.00,-15100.00,-15400.00,-15700.00,-23750.00,-31950.00,-32450.00,-32950.00,-36850.00,-40850.00,-41650.00,,,,, -103,Lawrencium,Lr,-,-,-2.91,-9.83,-17.85,-32.50,-49.80,-68.00,-88.00,-108.50,-132.00,-154.00,-181.00,-206.50,-230.00,-256.50,-279.50,-305.00,-332.00,-359.00,-388.50,-417.00,-445.50,-473.50,-498.50,-525.00,-550.00,-652.50,-762.00,-796.50,-833.00,-870.00,-905.00,-953.50,-1002.50,-1040.50,-1079.50,-1189.00,-1300.00,-1340.00,-1385.00,-1490.00,-1595.00,-1690.00,-1785.00,-1910.00,-2055.00,-2145.00,-2240.00,-2335.00,-2425.00,-2520.00,-2620.00,-2725.00,-2820.00,-2910.00,-3010.00,-3105.00,-3200.00,-3495.50,-3781.00,-3863.50,-3951.00,-4039.00,-4123.50,-4262.50,-4404.00,-4494.00,-4585.00,-4810.00,-5030.00,-5115.00,-5205.00,-5585.00,-5975.00,-6160.00,-6340.00,-8155.00,-10015.00,-10210.00,-10415.00,-10620.00,-10820.00,-11200.00,-11580.00,-11795.00,-12015.00,-12415.00,-12800.00,-12990.00,-13195.00,-14300.00,-15450.00,-15800.00,-16100.00,-24300.00,-32650.00,-33150.00,-33650.00,-37750.00,-41950.00,,,,, -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -,,,,,,,Chemical Hardness of Atoms and Atomic Ions (eV) from the Parr-Pearson formula,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -,,,,,,,,,,,Charge,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Atomic #,Element,Symbol,-2,-1,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,,,,, -1,Hydrogen,H,0.00,-,12.84,92.00,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2,Helium,He,0.00,0.52,24.59,29.83,135.00,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3,Lithium,Li,0.00,1.90,4.77,70.25,46.81,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4,Beryllium,Be,0.00,2.70,9.32,8.89,135.69,63.82,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -5,Boron,B,0.00,5.68,8.02,16.86,12.78,221.44,80.85,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6,Carbon,C,0.00,8.02,10.00,13.12,23.50,16.61,327.59,97.91,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7,Nitrogen,N,2.60,6.46,14.53,15.07,17.85,30.02,20.42,454.18,114.97,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8,Oxygen,O,5.40,9.61,12.16,21.50,19.81,22.48,36.49,24.22,601.17,132.12,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -9,Fluorine,F,0.00,5.39,14.02,17.55,27.74,24.43,27.10,42.92,28.02,768.73,149.21,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10,Neon,Ne,0.00,1.39,21.56,19.40,22.49,33.67,29.09,31.72,49.35,31.82,956.73,166.37,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -11,Sodium,Na,0.00,3.63,4.59,42.15,24.33,27.29,39.49,33.78,36.32,55.75,35.61,1165.26,183.58,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -12,Magnesium,Mg,1.80,2.52,7.65,7.39,65.11,29.12,32.00,45.49,38.26,40.94,62.10,39.44,1394.31,200.86,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -13,Aluminum,Al,1.50,5.16,5.55,12.84,9.62,91.54,33.83,36.67,51.27,42.90,45.47,68.62,43.25,1643.98,218.16,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -14,Silicon,Si,2.30,5.97,6.76,8.19,17.15,11.65,121.63,38.50,41.23,57.04,47.58,50.25,74.99,47.06,1914.21,235.55,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -15,Phosphorus,P,3.80,6.67,9.74,9.28,10.43,21.24,13.58,155.40,43.15,46.03,62.53,52.27,55.06,81.34,50.94,2205.17,252.93,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -16,Sulfur,S,0.00,7.71,8.28,12.98,11.45,12.43,25.37,15.46,192.90,47.80,50.80,67.95,57.30,59.64,87.76,54.81,2516.77,270.41,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -17,Chlorine,Cl,0.00,5.43,9.35,10.85,15.80,13.86,14.33,29.23,17.17,234.08,51.78,55.57,73.65,62.71,64.72,93.05,59.64,2849.12,287.78,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -18,Argon,Ar,0.00,9.12,15.76,11.87,13.11,19.07,15.21,15.99,33.31,19.14,278.99,56.24,60.27,79.30,67.84,69.64,99.03,63.26,3202.86,305.34,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -19,Potassium,K,0.00,-,3.84,27.29,14.18,15.10,21.75,16.74,18.16,37.32,20.94,327.98,60.90,64.70,85.20,72.00,74.50,106.90,65.40,3577.40,323.25,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -20,Calcium,Ca,0.00,-,6.09,5.76,39.04,16.36,17.23,24.28,18.42,20.04,41.30,22.74,380.63,65.30,69.40,91.00,76.90,79.50,113.00,70.80,3971.00,341.06,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -21,Scandium,Sc,0.00,-,6.37,6.24,11.96,48.73,18.16,19.03,27.32,20.10,21.93,45.15,24.62,437.56,69.34,74.10,96.70,81.50,85.00,119.00,74.97,4386.83,358.91,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -22,Titanium,Ti,0.00,-,6.75,6.75,13.92,15.78,56.03,20.23,21.27,29.60,21.70,23.82,49.15,26.43,496.34,75.26,78.80,102.10,87.00,90.00,125.00,79.40,4823.60,376.82,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -23,Vanadium,V,0.00,-,6.22,7.87,14.69,17.40,18.57,62.85,22.47,22.80,32.40,24.70,25.20,52.40,28.18,559.72,80.00,84.00,108.00,92.00,95.00,131.00,83.60,5281.70,394.82,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -24,Chromium,Cr,0.00,0.31,6.09,9.72,14.47,18.20,20.30,21.17,69.55,24.52,24.60,35.10,26.40,27.20,56.80,29.37,626.43,86.40,88.00,114.00,97.00,100.00,138.00,87.40,5760.30,413.11,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -25,Manganese,Mn,0.00,4.51,7.43,8.21,18.03,17.53,21.20,23.20,23.60,75.30,27.30,26.50,37.70,28.40,29.20,59.40,32.16,699.54,89.30,93.00,120.00,102.00,105.00,144.00,91.90,6260.70,431.34,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -26,Iron,Fe,0.00,-,7.75,8.29,14.46,24.15,20.20,24.10,25.88,26.08,82.54,28.50,28.10,40.60,30.20,31.20,64.80,32.26,776.74,92.00,98.00,126.00,107.00,110.00,151.00,73.00,6805.00,449.69,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -27,Cobalt,Co,6.00,3.64,7.22,9.20,16.42,17.80,28.20,22.50,26.90,28.90,28.33,89.27,29.60,31.00,43.00,32.00,33.00,67.96,34.62,850.62,107.40,98.40,132.00,111.00,116.00,157.00,100.00,7325.10,468.02,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -28,Nickel,Ni,0.00,5.67,6.48,10.53,17.02,19.71,21.16,31.94,25.00,29.00,31.00,31.60,96.40,31.00,32.00,46.00,34.00,35.00,72.08,35.98,933.94,107.00,108.00,138.00,117.00,120.00,164.00,104.20,7889.60,486.60,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -29,Copper,Cu,0.00,5.24,6.49,12.57,16.55,20.54,22.42,23.20,36.00,27.00,33.00,33.00,33.30,103.70,32.00,34.00,49.00,36.00,37.00,76.00,37.59,1026.41,107.00,112.00,144.00,122.00,126.00,170.00,109.50,8474.88,505.24,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -30,Zinc,Zn,0.00,2.62,9.39,8.57,21.76,19.68,23.20,25.40,26.00,40.00,29.00,35.00,36.00,36.80,108.90,34.30,36.00,52.00,37.00,40.00,79.00,40.00,1118.00,105.00,124.00,129.00,144.00,133.50,178.40,112.10,9082.94,523.99,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -31,Gallium,Ga,0.00,5.00,5.57,14.52,10.19,33.29,22.01,26.69,28.10,29.20,41.00,33.00,36.00,39.00,37.00,115.20,37.62,39.49,51.49,40.20,37.00,88.70,41.61,1202.69,119.00,129.00,133.00,152.90,139.10,185.00,116.43,9712.13,542.93,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -32,Germanium,Ge,3.30,4.42,6.67,8.04,18.29,11.49,47.79,22.40,29.00,31.50,36.10,39.60,33.90,40.00,41.00,40.00,120.90,39.39,41.77,53.74,47.20,34.00,93.10,43.34,1299.66,123.90,135.00,136.00,162.20,144.70,192.10,120.29,10363.13,562.01,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -33,Arsenic,As,0.40,6.93,8.98,8.80,9.76,21.78,12.50,64.97,19.40,33.00,33.00,34.00,49.00,37.00,42.00,43.00,42.00,127.60,41.22,44.08,56.00,45.10,40.00,97.70,45.09,1400.21,129.00,140.00,140.00,172.00,150.10,198.90,124.64,11036.03,581.23,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -34,Selenium,Se,0.00,5.45,7.73,11.44,9.63,12.12,25.36,13.40,73.70,28.60,35.00,36.00,36.00,51.90,40.10,43.00,47.00,44.00,133.50,42.88,46.42,58.20,47.80,41.20,102.60,46.76,1504.34,133.30,146.00,144.00,182.00,155.80,205.20,129.53,11730.96,600.59,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -35,Bromine,Br,0.00,5.57,8.45,9.78,14.41,11.30,12.40,28.90,14.40,89.80,31.20,37.00,40.00,37.00,55.00,43.00,45.00,49.00,47.00,139.30,44.69,48.81,60.20,50.80,42.20,107.60,48.57,1611.83,139.00,150.00,149.00,192.00,162.10,211.90,133.99,12448.02,620.12,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -36,Krypton,Kr,0.00,5.68,14.00,10.36,12.59,15.55,12.20,13.80,32.50,14.80,105.05,37.35,39.80,42.00,41.00,56.00,45.00,49.00,51.00,49.00,145.00,47.00,51.00,53.00,61.00,53.00,100.00,54.30,1722.70,142.00,157.00,154.00,203.00,168.00,219.00,138.08,13187.34,639.79,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -37,Rubidium,Rb,0.00,1.12,3.69,23.11,12.71,12.60,18.40,13.40,14.80,36.80,14.00,127.10,36.00,42.90,44.00,43.00,59.00,48.00,51.00,53.00,52.00,151.00,48.30,53.60,65.10,56.00,45.00,117.50,52.07,1838.73,147.70,161.00,158.00,215.00,173.00,226.00,142.87,13949.02,659.63,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -38,Strontium,Sr,0.00,0.55,5.64,5.34,31.86,14.11,14.60,19.20,15.20,16.30,39.70,15.00,147.10,37.90,46.00,46.00,45.00,63.00,50.00,53.00,57.00,52.00,158.00,50.10,55.90,67.00,60.00,46.00,122.40,53.79,1957.51,152.30,167.00,166.00,223.00,179.00,233.00,147.40,14733.19,679.64,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -39,Yttrium,Y,0.00,1.03,5.91,6.01,8.30,40.08,16.40,16.00,23.00,13.00,17.20,44.80,15.00,168.00,40.00,49.00,49.00,47.00,65.00,53.00,56.00,57.00,57.00,163.00,51.90,58.30,69.80,63.00,47.00,127.60,55.52,2079.78,157.10,172.00,168.00,239.00,185.00,240.00,151.73,15539.99,699.83,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -40,Zirconium,Zr,0.00,2.94,6.21,6.47,9.89,11.35,46.01,15.92,15.73,21.70,19.30,19.02,42.88,21.35,189.75,44.00,50.00,53.00,49.00,68.00,55.00,58.00,60.00,59.00,170.00,52.70,60.70,71.60,67.00,48.00,133.10,57.27,2205.63,162.00,177.00,173.00,253.00,191.00,247.00,155.94,16369.53,720.21,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -41,Niobium,Nb,0.00,2.49,5.86,7.24,11.04,13.26,12.25,51.51,22.94,11.00,23.20,20.80,20.28,45.82,22.49,213.91,47.50,51.00,55.00,52.00,70.00,58.00,61.00,63.00,60.00,176.00,54.60,63.10,74.30,71.00,61.00,125.90,59.07,2335.13,166.90,182.00,171.00,275.00,196.00,254.00,161.07,17221.98,740.76,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -42,Molybdenum,Mo,0.00,4.00,6.35,9.07,10.97,19.27,8.09,14.34,56.84,17.94,20.52,22.28,22.90,20.98,48.82,23.50,241.40,26.00,66.00,66.00,65.00,66.00,69.00,66.00,52.00,62.00,181.00,60.00,64.00,62.00,86.00,66.00,129.10,60.83,2468.07,171.00,188.00,182.00,284.00,203.00,261.00,165.19,18097.46,761.50,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -43,Technetium,Tc,0.00,4.13,6.73,7.98,14.28,11.46,16.00,15.00,16.00,62.00,19.00,20.90,24.10,25.00,23.08,48.92,27.55,265.45,51.00,58.00,60.00,56.00,75.00,64.00,64.00,70.00,64.00,188.00,57.60,67.90,79.50,79.00,51.00,149.00,62.28,2604.72,176.00,193.00,186.00,301.00,209.00,268.00,170.39,18996.14,782.46,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -44,Ruthenium,Ru,0.00,2.48,6.28,9.40,11.71,16.53,14.00,17.00,17.00,17.00,68.40,19.60,21.90,25.10,26.00,24.90,52.10,28.25,293.75,53.00,61.00,61.00,60.00,76.00,67.00,67.00,72.00,66.00,194.00,59.70,70.30,82.00,84.00,51.00,155.00,64.04,2744.96,181.00,197.00,194.00,317.00,215.00,275.00,174.72,19918.17,803.61,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -45,Rhodium,Rh,2.90,-,6.32,10.62,12.98,10.94,21.00,17.00,17.00,18.10,19.90,72.51,20.49,24.10,24.90,29.00,25.58,57.42,27.00,323.00,55.00,63.00,64.00,63.00,77.00,70.00,71.00,72.00,70.00,200.00,60.90,72.70,85.40,88.00,52.00,160.00,66.22,2888.78,185.00,203.00,194.00,340.00,221.00,283.00,179.26,20863.72,824.98,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -46,Palladium,Pd,0.00,5.80,7.77,11.09,13.50,13.07,15.00,23.10,16.90,19.00,21.00,19.00,78.57,21.43,26.00,25.00,31.00,27.10,57.90,31.00,352.00,59.00,64.00,67.00,65.00,80.00,73.00,72.00,76.00,72.00,206.00,62.20,75.10,87.70,93.00,54.00,165.00,67.87,3035.13,191.00,208.00,197.00,362.00,227.00,290.00,184.10,21832.94,846.57,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -47,Silver,Ag,0.00,5.79,6.27,13.90,13.35,14.17,16.00,17.00,24.00,19.00,20.00,22.00,21.00,83.46,22.54,27.00,26.00,34.00,27.43,60.57,31.87,384.13,61.00,67.00,69.00,67.00,82.00,77.00,74.00,78.00,75.00,212.00,63.50,77.50,91.00,98.00,54.00,171.00,69.99,3186.01,195.00,213.00,204.00,381.00,233.00,298.00,189.30,22826.02,868.38,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -48,Cadmium,Cd,0.00,3.17,8.99,7.91,20.57,13.52,16.90,19.10,18.00,25.10,19.90,23.00,22.00,23.00,87.00,24.00,29.00,27.00,36.00,31.55,60.45,33.19,416.81,63.00,69.00,72.00,70.00,83.00,80.00,77.00,81.00,77.00,217.00,65.90,80.00,93.10,104.00,55.00,177.00,71.61,3340.39,200.00,218.00,203.00,410.00,239.00,305.00,193.95,23843.12,890.43,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -49,Indium,In,2.60,2.06,5.40,13.08,9.16,25.97,15.30,20.70,19.00,21.10,25.90,22.00,23.00,25.00,23.00,92.00,27.00,28.00,29.00,37.00,35.11,62.89,33.38,449.62,66.00,72.00,74.00,73.00,85.00,83.00,79.00,84.00,79.00,223.00,67.50,82.50,96.00,110.00,56.00,182.00,73.77,3497.23,205.00,223.00,216.00,426.00,246.00,312.00,199.14,24884.45,912.72,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50,Tin,Sn,5.40,5.59,6.23,7.29,15.87,10.23,31.54,21.72,18.90,22.10,21.00,28.00,24.00,24.00,26.00,24.00,97.00,28.00,30.00,29.00,40.00,31.00,71.00,34.35,484.65,68.00,74.00,78.00,74.00,87.00,88.00,80.00,87.00,81.00,230.00,68.10,84.90,99.00,117.00,56.00,188.00,75.50,3658.50,210.00,228.00,221.00,451.00,259.00,313.00,203.95,25950.19,935.25,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -51,Antimony,Sb,3.60,7.13,7.56,8.02,8.67,18.90,11.80,52.00,9.00,22.00,23.00,23.00,29.00,24.00,27.00,27.00,25.00,103.00,27.00,32.00,31.00,42.00,32.00,73.00,36.26,520.74,71.00,75.00,81.00,77.00,88.00,92.00,83.00,88.00,85.00,236.00,76.00,83.00,79.00,139.00,87.00,161.00,85.00,3814.00,215.00,238.00,223.00,497.00,253.00,315.00,214.48,27040.55,958.02,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52,Tellurium,Te,0.00,5.83,7.04,9.59,9.36,9.45,21.34,11.95,66.30,6.00,24.00,24.10,23.90,30.00,27.00,27.00,29.00,26.00,107.00,30.00,31.00,33.00,44.00,34.00,76.00,37.12,557.88,73.00,78.00,83.00,80.00,89.00,96.00,86.00,90.00,87.00,243.00,77.00,86.00,80.00,148.00,88.00,166.00,87.00,3981.00,221.00,242.00,229.00,526.00,259.00,322.00,219.83,28155.69,981.04,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -53,Iodine,I,1.70,6.84,7.39,8.68,13.87,7.36,11.16,22.85,13.24,63.20,20.19,26.00,23.90,26.10,32.00,28.00,28.00,30.00,28.00,112.00,30.00,34.00,32.00,48.00,34.00,79.00,38.76,596.24,75.00,81.00,86.00,81.00,92.00,99.00,88.00,94.00,88.00,250.00,79.00,88.00,82.00,156.00,94.00,166.00,89.50,4151.50,263.00,200.00,244.00,557.00,266.00,329.00,225.10,29295.89,1004.42,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54,Xenon,Xe,0.00,2.16,12.13,8.85,11.15,10.08,11.94,12.56,24.90,14.38,73.86,22.16,27.02,25.98,26.00,33.00,29.00,31.00,30.00,26.00,119.00,33.00,34.00,34.00,50.00,36.00,82.00,39.03,635.97,78.00,82.00,89.00,84.00,93.00,104.00,90.00,96.00,91.00,256.00,81.00,89.00,85.00,164.00,93.00,175.00,90.80,4326.20,229.00,255.00,238.00,589.00,272.00,338.00,229.40,30461.32,1027.99,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55,Cesium,Cs,0.00,-,3.42,19.26,10.04,9.81,13.00,13.10,13.80,27.19,15.52,87.69,19.70,28.00,28.00,27.00,36.00,30.00,31.00,32.00,31.00,121.00,32.00,37.00,34.00,53.00,38.00,84.00,41.07,675.93,80.00,85.00,91.00,88.00,93.00,108.00,93.00,99.00,93.00,261.00,84.00,92.00,86.00,173.00,96.00,178.00,93.00,4504.00,235.00,260.00,242.00,624.00,279.00,345.00,234.78,31652.29,1051.92,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56,Barium,Ba,0.00,0.10,5.07,4.79,25.84,11.19,10.97,13.00,15.00,15.00,29.53,15.99,94.48,26.10,28.90,29.00,29.00,36.00,32.00,33.00,33.00,32.00,126.00,33.00,38.00,35.00,57.00,37.00,89.00,41.60,718.40,81.00,88.00,94.00,89.00,95.00,114.00,93.00,103.00,95.00,267.00,87.00,93.00,87.00,185.00,97.00,187.00,90.00,4686.00,239.00,266.00,246.00,662.00,284.00,353.00,240.42,32868.94,1076.11,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57,Lanthanum,La,0.00,-,5.11,5.48,8.12,30.77,11.65,12.40,14.00,17.00,14.00,32.42,17.35,106.23,28.00,29.00,32.00,29.00,38.00,33.00,34.00,35.00,33.00,130.00,35.00,39.00,36.00,59.00,41.00,89.00,44.09,760.91,84.00,90.00,95.00,93.00,97.00,118.00,96.00,104.00,97.00,276.00,86.00,97.00,89.00,194.00,99.00,189.00,96.00,4869.00,245.00,270.00,253.00,699.00,290.00,363.00,244.40,34111.59,1100.61,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58,Cerium,Ce,0.00,-,4.91,5.31,9.35,16.56,28.79,12.05,13.40,15.00,19.00,15.00,32.00,20.24,119.76,28.00,31.00,32.00,32.00,37.00,37.00,34.00,36.00,34.00,136.00,36.00,39.00,38.00,62.00,41.00,95.00,43.53,804.47,86.00,93.00,98.00,95.00,98.00,122.00,100.00,106.00,100.00,281.00,89.00,98.00,92.00,204.00,102.00,193.00,98.00,5057.00,249.00,276.00,258.00,739.00,298.00,370.00,249.85,35380.45,1125.42,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59,Praseodymium,Pr,0.00,-,4.51,5.08,11.07,17.36,18.55,24.47,15.00,15.00,19.00,17.00,14.00,34.00,21.02,132.98,28.00,34.00,33.00,33.00,38.00,38.00,36.00,37.00,36.00,140.00,37.00,40.00,40.00,65.00,43.00,96.00,45.94,849.06,89.00,94.00,102.00,96.00,101.00,127.00,101.00,109.00,103.00,286.00,92.00,100.00,93.00,217.00,103.00,198.00,100.00,5248.00,254.00,281.00,262.00,784.00,303.00,379.00,254.89,36675.82,1150.49,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60,Neodymium,Nd,0.00,-,5.36,5.20,11.38,18.30,19.60,24.00,15.00,15.00,22.00,16.00,16.00,27.00,26.00,22.00,146.00,31.00,33.00,36.00,33.00,40.00,40.00,36.00,40.00,36.00,145.00,37.00,43.00,39.00,71.00,43.00,99.00,47.42,895.58,90.00,97.00,104.00,100.00,102.00,131.00,103.00,113.00,104.00,293.00,94.00,102.00,95.00,229.00,106.00,201.00,104.00,5440.00,260.00,286.00,267.00,829.00,310.00,388.00,259.66,37997.93,1175.99,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61,Promethium,Pm,0.00,4.03,5.45,5.32,11.40,18.80,20.59,23.31,16.00,15.00,22.00,17.00,19.00,28.00,27.00,19.00,21.00,161.00,32.00,35.00,37.00,35.00,40.00,42.00,38.00,41.00,37.00,149.00,40.00,42.00,42.00,73.00,45.00,103.00,47.70,942.30,93.00,99.00,106.00,103.00,103.00,137.00,105.00,113.00,109.00,300.00,94.00,105.00,98.00,240.00,110.00,205.00,105.00,5639.00,263.00,293.00,271.00,877.00,317.00,396.00,265.26,39347.03,1201.81,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62,Samarium,Sm,0.00,-,5.48,5.43,12.33,18.00,21.26,27.34,13.00,15.00,23.00,17.00,21.00,29.00,29.00,20.00,19.00,30.50,167.50,32.00,37.00,38.00,36.00,41.00,44.00,40.00,40.00,40.00,154.00,40.00,44.00,43.00,77.00,46.00,106.00,49.60,989.40,95.00,103.00,107.00,106.00,105.00,141.00,109.00,116.00,110.00,306.00,97.00,107.00,98.00,256.00,110.00,211.00,107.00,5839.00,268.00,298.00,277.00,927.00,324.00,404.00,270.85,40723.26,1228.12,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63,Europium,Eu,0.00,1.11,5.55,5.58,13.67,17.78,20.30,25.00,17.00,15.00,24.00,17.00,22.00,30.00,30.00,20.00,18.00,30.00,33.40,173.60,35.00,37.00,40.00,37.00,42.00,46.00,40.00,43.00,41.00,158.00,41.00,46.00,43.00,82.00,47.00,110.00,50.06,1038.94,96.00,106.00,110.00,107.00,108.00,146.00,111.00,119.00,112.00,313.00,98.00,110.00,100.00,269.00,110.00,219.00,109.00,6042.00,273.00,304.00,282.00,979.00,332.00,412.00,276.58,42127.32,1254.70,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64,Gadolinium,Gd,0.00,1.92,6.01,5.94,8.54,23.37,20.76,24.24,17.00,17.00,21.00,21.00,18.00,30.00,33.00,22.00,20.00,31.00,33.00,28.00,185.00,36.00,38.00,41.00,39.00,42.00,49.00,41.00,44.00,42.00,163.00,42.00,47.00,44.00,88.00,47.00,113.00,51.35,1088.65,99.00,107.00,114.00,109.00,110.00,152.00,112.00,126.00,110.00,320.00,100.00,111.00,103.00,284.00,115.00,221.00,111.00,6248.00,279.00,309.00,286.00,1036.00,338.00,422.00,281.57,43559.33,1281.62,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65,Terbium,Tb,0.00,2.67,5.43,5.66,10.39,17.88,26.71,23.50,18.00,17.00,18.00,25.00,18.00,30.00,34.00,20.00,24.00,31.00,33.00,35.00,33.60,186.40,38.00,39.00,42.00,40.00,44.00,50.00,43.00,45.00,43.00,168.00,43.00,48.00,45.00,92.00,50.00,116.00,51.38,1139.62,102.00,109.00,117.00,111.00,111.00,158.00,115.00,125.00,116.00,325.00,103.00,113.00,105.00,300.00,117.00,226.00,114.00,6456.00,284.00,315.00,291.00,1095.00,345.00,431.00,287.00,45018.25,1310.39,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66,Dysprosium,Dy,0.00,1.00,5.59,5.73,11.13,18.67,20.61,30.92,17.00,17.00,25.00,18.00,22.00,32.00,35.00,20.00,21.00,32.00,34.00,33.00,32.00,34.00,199.00,38.00,41.00,43.00,41.00,45.00,52.00,45.00,45.00,45.00,173.00,43.00,50.00,46.00,97.00,52.00,118.00,53.74,1190.26,105.00,111.00,119.00,114.00,114.00,162.00,118.00,127.00,118.00,333.00,104.00,116.00,106.00,316.00,121.00,230.00,116.00,6669.00,289.00,320.00,296.00,1158.00,351.00,441.00,292.06,46508.49,1336.95,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -67,Holmium,Ho,0.00,-,5.68,5.78,11.04,19.66,21.43,31.07,17.00,17.00,26.00,19.00,22.00,33.00,34.00,21.00,21.00,35.00,33.00,35.00,33.00,34.00,35.00,205.00,40.00,42.00,45.00,43.00,44.00,56.00,44.00,48.00,45.00,178.00,46.00,49.00,48.00,102.00,53.00,121.00,54.57,1244.43,107.00,113.00,121.00,117.00,116.00,168.00,120.00,129.00,122.00,338.00,107.00,117.00,109.00,333.00,123.00,236.00,117.00,6884.00,295.00,326.00,301.00,1222.00,359.00,450.00,297.77,48026.65,1364.38,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -68,Erbium,Er,0.00,2.92,5.80,5.82,10.81,19.96,22.40,30.90,18.00,17.00,27.00,19.00,24.00,34.00,33.00,22.00,21.00,34.00,36.00,34.00,35.00,36.00,34.00,35.00,215.00,40.00,43.00,46.00,44.00,46.00,57.00,46.00,50.00,46.00,182.00,46.00,52.00,48.00,109.00,53.00,125.00,56.00,1298.00,108.00,116.00,124.00,119.00,118.00,174.00,122.00,132.00,124.00,345.00,109.00,118.00,112.00,351.00,126.00,240.00,120.00,7103.00,299.00,331.00,307.00,1291.00,365.00,460.00,303.56,49573.68,1393.61,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -69,Thulium,Tm,0.50,2.23,6.17,5.87,11.63,19.02,22.73,32.57,18.00,17.00,27.00,20.00,25.00,34.00,35.00,21.00,22.00,35.00,35.00,37.00,36.00,40.00,30.00,40.00,33.00,222.00,41.00,45.00,47.00,46.00,46.00,60.00,47.00,50.00,48.00,187.00,48.00,52.00,49.00,115.00,55.00,128.00,56.20,1354.80,109.00,119.00,125.00,122.00,120.00,180.00,124.00,136.00,126.00,351.00,110.00,122.00,113.00,370.00,129.00,245.00,122.00,7324.00,304.00,337.00,312.00,1363.00,373.00,464.00,314.34,51150.92,1422.08,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -70,Ytterbium,Yb,0.00,3.53,6.25,5.92,12.87,18.51,22.02,33.42,18.00,18.00,28.00,19.00,27.00,35.00,35.00,22.00,23.00,36.00,36.00,35.00,38.00,36.00,35.00,40.00,40.00,31.00,231.00,42.00,47.00,48.00,46.00,49.00,61.00,49.00,51.00,49.00,192.00,48.00,54.00,50.00,121.00,56.00,133.00,58.40,1406.60,112.00,122.00,128.00,124.00,122.00,187.00,126.00,138.00,128.00,358.00,113.00,123.00,115.00,392.00,129.00,251.00,125.00,7548.00,309.00,342.00,317.00,1439.00,379.00,480.00,315.44,52757.60,1451.75,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -71,Lutetium,Lu,0.70,-,5.09,8.47,7.06,24.29,21.55,31.20,19.00,19.00,23.00,26.00,20.00,33.00,38.00,29.00,23.00,33.00,38.00,39.00,38.00,44.00,40.00,40.00,40.00,30.00,43.00,228.00,44.00,47.00,49.00,49.00,48.00,64.00,50.00,53.00,50.00,196.00,50.00,55.00,51.00,128.00,58.00,134.00,58.50,1464.50,116.00,122.00,132.00,126.00,125.00,192.00,129.00,141.00,130.00,365.00,114.00,126.00,117.00,412.00,133.00,256.00,126.00,7776.00,314.00,348.00,321.00,1519.00,390.00,490.00,318.05,54394.86,1481.89,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -72,Hafnium,Hf,0.00,6.60,6.71,8.17,8.30,10.03,35.05,29.63,20.00,20.00,19.00,30.00,22.00,21.00,40.00,40.00,24.00,25.00,40.00,41.00,41.00,39.00,40.00,50.00,40.00,40.00,40.00,42.00,230.00,45.00,47.00,52.00,49.00,50.00,66.00,51.00,55.00,50.00,202.00,50.00,57.00,51.00,136.00,59.00,137.00,59.90,1522.10,117.00,126.00,134.00,128.00,126.00,201.00,130.00,143.00,134.00,370.00,118.00,127.00,118.00,436.00,135.00,261.00,129.00,8004.00,321.00,352.00,329.00,1600.00,400.00,500.00,322.32,56063.61,1511.87,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -73,Tantalum,Ta,4.30,5.30,7.23,8.65,6.90,11.90,13.27,45.74,24.99,20.00,20.00,21.00,33.00,22.00,27.00,42.00,34.00,25.00,33.00,43.00,43.00,48.00,40.00,50.00,40.00,40.00,40.00,50.00,42.00,232.00,46.00,50.00,51.00,51.00,51.00,69.00,52.00,56.00,52.00,206.00,51.00,58.00,53.00,143.00,60.00,141.00,60.70,1584.00,115.30,129.00,135.00,132.00,127.00,208.00,132.00,147.00,135.00,378.00,118.00,130.00,122.00,457.00,138.00,267.00,131.00,8237.00,324.00,359.00,330.00,1690.00,410.00,510.00,328.51,57763.51,1542.68,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -74,Tungsten,W,0.00,5.91,7.05,8.24,9.92,12.19,13.38,13.18,57.24,19.19,19.00,18.80,29.90,22.70,26.70,32.40,34.60,36.60,26.00,32.80,41.40,40.50,40.80,51.10,46.10,45.40,48.10,50.30,49.00,48.00,250.80,47.80,50.40,53.00,51.70,51.70,73.10,52.50,56.70,52.90,207.80,53.10,57.70,54.20,154.30,60.90,144.00,60.11,1642.89,123.00,129.00,137.00,132.00,131.00,218.00,136.00,146.00,139.00,371.00,121.00,130.00,123.00,507.00,135.00,265.00,130.00,8436.00,330.00,356.00,336.00,1888.00,396.00,490.00,324.74,59495.19,1573.67,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -75,Rhenium,Re,0.00,1.98,7.68,8.77,10.40,12.10,12.80,15.10,15.71,61.69,20.60,22.00,21.00,28.00,32.00,23.00,39.00,47.00,26.00,26.00,47.00,44.00,50.00,50.00,50.00,50.00,40.00,50.00,50.00,50.00,43.00,241.00,48.00,52.00,55.00,53.00,52.00,76.00,53.00,58.00,55.00,216.00,54.00,59.00,55.00,160.00,62.00,148.00,64.54,1699.46,121.00,133.00,141.00,136.00,132.00,222.00,137.00,152.00,140.00,391.00,123.00,134.00,124.00,510.00,142.00,278.00,136.00,8714.00,330.00,370.00,340.00,1880.00,420.00,530.00,347.40,61259.50,1605.40,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -76,Osmium,Os,2.30,3.16,7.36,8.56,8.00,16.00,14.00,15.10,15.00,16.92,66.68,21.30,23.00,22.00,34.00,31.00,20.00,47.00,43.00,26.00,34.00,50.00,50.00,50.00,50.00,50.00,50.00,50.00,50.00,50.00,50.00,45.00,247.00,49.00,53.00,56.00,54.00,54.00,78.00,54.00,60.00,56.00,220.00,56.00,60.00,56.00,168.00,64.00,152.00,63.50,1758.50,127.00,134.00,144.00,138.00,135.00,228.00,141.00,154.00,142.00,398.00,125.00,136.00,127.00,536.00,146.00,283.00,142.00,8950.00,340.00,370.00,350.00,1980.00,430.00,540.00,350.60,63055.60,1638.20,,,,,,,,,,,,,,,,,,,,,,,,,,,, -77,Iridium,Ir,2.90,6.68,7.40,8.03,11.00,12.00,17.00,15.00,17.00,16.00,18.00,71.80,22.20,23.00,24.00,39.00,26.00,27.00,51.00,38.00,27.00,38.00,50.00,50.00,60.00,50.00,50.00,50.00,50.00,50.00,60.00,50.00,50.00,251.00,50.00,55.00,57.00,55.00,55.00,81.00,55.00,62.00,56.00,226.00,56.00,62.00,57.00,177.00,65.00,156.00,64.40,1819.60,128.00,138.00,146.00,140.00,137.00,237.00,143.00,156.00,145.00,405.00,126.00,139.00,128.00,566.00,147.00,289.00,140.00,9190.00,350.00,380.00,350.00,2090.00,440.00,550.00,356.60,64882.30,1674.40,,,,,,,,,,,,,,,,,,,,,,,,,,, -78,Platinum,Pt,0.00,5.32,6.83,9.60,10.44,14.00,13.00,19.00,16.00,18.00,17.00,18.90,75.50,24.60,24.00,24.00,39.00,26.00,34.00,53.00,34.00,28.00,43.00,60.00,50.00,50.00,50.00,60.00,50.00,60.00,50.00,60.00,50.00,50.00,262.00,52.00,55.00,58.00,57.00,56.00,83.00,58.00,62.00,58.00,230.00,57.00,63.00,59.00,186.00,67.00,159.00,65.80,1887.20,124.00,141.00,148.00,142.00,140.00,244.00,146.00,159.00,147.00,411.00,129.00,141.00,131.00,594.00,148.00,300.00,140.00,9440.00,350.00,390.00,350.00,2210.00,440.00,560.00,365.70,66749.47,1704.83,,,,,,,,,,,,,,,,,,,,,,,,,, -79,Gold,Au,0.00,5.41,6.92,10.97,9.80,15.00,15.00,14.00,20.00,18.00,18.10,18.90,19.20,31.80,75.00,24.00,25.00,41.00,27.00,41.00,54.00,33.00,30.00,50.00,50.00,60.00,50.00,60.00,50.00,60.00,60.00,50.00,60.00,50.00,60.00,265.00,52.00,57.00,60.00,58.00,56.00,87.00,59.00,63.00,59.00,235.00,59.00,63.00,60.00,197.00,68.00,162.00,71.00,1947.00,125.00,143.00,151.00,145.00,142.00,252.00,148.00,162.00,149.00,419.00,130.00,143.00,133.00,630.00,150.00,300.00,150.00,9680.00,360.00,390.00,360.00,2320.00,450.00,580.00,368.12,68647.70,1738.48,,,,,,,,,,,,,,,,,,,,,,,,, -80,Mercury,Hg,0.90,3.71,10.44,8.32,15.44,14.35,12.65,15.40,16.40,20.90,20.10,19.00,20.00,19.70,84.20,30.10,25.00,25.00,45.00,27.00,48.00,53.00,30.00,30.00,60.00,60.00,50.00,60.00,60.00,50.00,60.00,60.00,60.00,50.00,60.00,60.00,269.00,54.00,58.00,62.00,57.00,59.00,89.00,61.00,63.00,61.00,241.00,58.00,66.00,61.00,206.00,70.00,166.00,68.90,2005.10,136.00,144.00,155.00,146.00,144.00,261.00,151.00,164.00,152.00,425.00,133.00,145.00,139.00,650.00,160.00,310.00,150.00,9930.00,360.00,400.00,370.00,2440.00,460.00,590.00,374.10,70580.60,1773.00,,,,,,,,,,,,,,,,,,,,,,,, -81,Thallium,Tl,0.00,4.74,5.73,14.32,9.40,21.31,11.46,17.40,18.00,18.00,19.00,23.00,19.00,21.00,20.30,88.60,33.10,26.00,26.00,47.00,28.00,53.00,50.00,30.00,40.00,60.00,60.00,60.00,60.00,50.00,60.00,70.00,50.00,60.00,60.00,60.00,60.00,275.00,56.00,59.00,62.00,60.00,58.00,94.00,61.00,65.00,62.00,245.00,61.00,66.00,61.00,219.00,71.00,169.00,70.70,2069.30,137.00,147.00,156.00,150.00,145.00,272.00,151.00,168.00,154.00,432.00,135.00,149.00,130.00,700.00,160.00,310.00,150.00,10190.00,370.00,400.00,370.00,2570.00,480.00,590.00,384.10,72549.10,1808.40,,,,,,,,,,,,,,,,,,,,,,, -82,Lead,Pb,0.00,-,7.05,7.62,16.90,10.38,26.48,14.10,17.20,19.90,18.00,20.00,24.00,21.00,21.00,21.10,93.00,35.90,27.00,27.00,50.00,29.00,63.00,40.00,40.00,40.00,60.00,60.00,60.00,60.00,60.00,60.00,70.00,60.00,60.00,60.00,60.00,70.00,274.00,56.00,59.00,65.00,61.00,59.00,97.00,62.00,67.00,62.00,251.00,62.00,66.00,64.00,230.00,71.00,175.00,71.10,2131.90,141.00,148.00,159.00,153.00,145.00,282.00,155.00,170.00,157.00,438.00,138.00,150.00,140.00,730.00,160.00,320.00,150.00,10440.00,380.00,410.00,370.00,2710.00,480.00,610.00,388.00,74553.85,1844.55,,,,,,,,,,,,,,,,,,,,,, -83,Bismuth,Bi,0.00,3.37,6.34,9.42,8.86,19.74,10.70,32.30,14.70,19.00,21.00,18.10,21.90,25.00,21.00,23.00,20.60,97.60,38.80,27.00,28.00,56.00,30.00,70.00,40.00,30.00,60.00,60.00,60.00,60.00,60.00,70.00,60.00,60.00,70.00,60.00,70.00,60.00,60.00,284.00,56.00,62.00,65.00,62.00,61.00,100.00,63.00,68.00,64.00,256.00,62.00,68.00,64.00,243.00,73.00,178.00,72.80,2197.20,141.00,152.00,162.00,154.00,150.00,290.00,156.00,173.00,160.00,443.00,140.00,150.00,140.00,770.00,170.00,320.00,160.00,10700.00,370.00,420.00,380.00,2850.00,490.00,620.00,396.90,76594.86,1881.04,,,,,,,,,,,,,,,,,,,,, -84,Polonium,Po,0.00,-,6.51,10.89,7.70,9.00,21.00,12.10,38.90,17.00,21.10,19.90,24.00,19.00,26.00,22.00,24.00,23.00,112.00,28.00,29.00,29.00,58.00,30.00,80.00,30.00,40.00,60.00,60.00,70.00,60.00,70.00,60.00,60.00,70.00,70.00,60.00,60.00,70.00,60.00,295.00,58.00,63.00,66.00,63.00,62.00,104.00,64.00,69.00,66.00,260.00,63.00,70.00,65.00,256.00,74.00,182.00,74.20,2260.80,145.00,154.00,164.00,157.00,152.00,299.00,159.00,176.00,159.00,460.00,130.00,160.00,140.00,810.00,170.00,330.00,160.00,10960.00,380.00,420.00,390.00,3000.00,500.00,630.00,400.40,78673.90,1918.40,,,,,,,,,,,,,,,,,,,, -85,Astatine,At,0.00,6.06,6.52,8.56,8.70,13.07,10.74,21.61,13.10,45.00,18.90,20.00,23.10,19.90,24.00,27.00,24.00,24.00,24.00,117.00,29.00,29.00,30.00,60.00,30.00,90.00,30.00,40.00,70.00,60.00,70.00,60.00,70.00,60.00,70.00,70.00,60.00,70.00,60.00,80.00,60.00,298.00,59.00,64.00,68.00,64.00,63.00,107.00,66.00,71.00,66.00,265.00,64.00,72.00,65.00,270.00,76.00,185.00,76.00,2331.00,142.00,157.00,166.00,159.00,155.00,309.00,162.00,180.00,160.00,460.00,150.00,150.00,150.00,850.00,170.00,330.00,160.00,11220.00,390.00,430.00,390.00,3160.00,500.00,650.00,409.00,80784.40,1962.60,,,,,,,,,,,,,,,,,,, -86,Radon,Rn,0.00,4.80,10.75,10.65,8.00,7.50,16.00,11.10,24.00,14.00,52.00,19.90,21.10,23.00,22.00,24.00,29.00,24.00,25.00,25.00,121.00,31.00,30.00,30.00,64.00,37.00,80.00,40.00,50.00,70.00,60.00,70.00,70.00,60.00,70.00,60.00,80.00,70.00,60.00,70.00,70.00,60.00,313.00,61.00,64.00,69.00,66.00,64.00,110.00,68.00,71.00,68.00,270.00,66.00,72.00,67.00,284.00,77.00,189.00,78.00,2392.00,149.00,158.00,170.00,161.00,157.00,319.00,167.00,180.00,170.00,460.00,150.00,160.00,140.00,900.00,170.00,340.00,170.00,11480.00,390.00,440.00,400.00,3310.00,520.00,660.00,413.10,82938.90,2001.70,,,,,,,,,,,,,,,,,, -87,Francium,Fr,0.00,1.41,3.59,18.33,10.60,6.10,10.90,17.00,13.00,26.00,14.00,59.00,21.00,22.10,22.90,24.00,24.00,31.00,25.00,26.00,25.00,130.00,30.00,30.00,30.00,70.00,30.00,100.00,30.00,60.00,70.00,60.00,70.00,70.00,70.00,70.00,60.00,80.00,70.00,70.00,70.00,70.00,70.00,309.00,63.00,65.00,70.00,67.00,66.00,114.00,67.00,75.00,68.00,275.00,66.00,75.00,67.00,299.00,79.00,193.00,79.00,2458.00,151.00,162.00,171.00,164.00,159.00,328.00,170.00,180.00,170.00,480.00,140.00,160.00,150.00,940.00,180.00,350.00,160.00,11750.00,400.00,440.00,400.00,3490.00,530.00,670.00,423.40,85133.80,2041.80,,,,,,,,,,,,,,,,, -88,Radium,Ra,0.00,0.00,5.18,4.87,20.85,10.00,11.90,11.10,18.00,15.00,27.00,16.00,64.90,22.10,23.00,24.00,25.00,25.00,32.00,26.00,27.00,26.00,135.00,30.00,30.00,30.00,80.00,30.00,90.00,40.00,70.00,70.00,70.00,70.00,70.00,70.00,70.00,70.00,70.00,80.00,70.00,70.00,70.00,60.00,328.00,63.00,67.00,71.00,68.00,67.00,118.00,69.00,75.00,70.00,279.00,69.00,76.00,68.00,314.00,80.00,197.00,81.00,2525.00,153.00,163.00,175.00,166.00,158.00,340.00,170.00,190.00,170.00,480.00,150.00,160.00,160.00,990.00,170.00,360.00,170.00,12010.00,400.00,450.00,410.00,3670.00,540.00,680.00,429.80,87368.90,2082.60,,,,,,,,,,,,,,,, -89,Actinium,Ac,0.00,3.47,4.82,6.58,5.68,27.37,10.20,12.00,12.00,19.90,15.00,30.00,17.20,71.90,22.00,24.00,26.00,25.00,25.00,35.00,26.00,28.00,26.00,140.00,30.00,30.00,40.00,70.00,40.00,100.00,30.00,80.00,70.00,70.00,70.00,70.00,70.00,80.00,70.00,80.00,70.00,70.00,70.00,80.00,70.00,328.00,64.00,68.00,73.00,69.00,67.00,123.00,71.00,75.00,72.00,284.00,70.00,75.00,70.00,332.00,82.00,200.00,82.00,2592.00,156.00,165.00,177.00,165.00,170.00,350.00,170.00,190.00,170.00,490.00,150.00,170.00,150.00,1040.00,180.00,370.00,170.00,12280.00,410.00,450.00,420.00,3850.00,550.00,690.00,443.00,89646.00,2123.90,,,,,,,,,,,,,,, -90,Thorium,Th,0.00,-,5.94,5.59,8.10,8.80,29.20,11.10,12.90,13.00,23.00,15.00,32.00,16.00,81.00,23.00,25.00,26.00,26.00,27.00,35.00,27.00,29.00,28.00,142.00,30.00,40.00,30.00,80.00,70.00,70.00,40.00,80.00,70.00,80.00,70.00,70.00,80.00,70.00,70.00,80.00,80.00,70.00,80.00,90.00,60.00,330.00,65.00,69.00,74.00,71.00,68.00,123.00,75.00,78.00,73.00,289.00,70.00,77.00,71.00,350.00,82.00,205.00,83.00,2659.00,158.00,169.00,181.00,170.00,170.00,360.00,170.00,200.00,170.00,500.00,150.00,170.00,150.00,1100.00,180.00,370.00,170.00,12550.00,420.00,460.00,420.00,4050.00,560.00,710.00,442.80,91963.60,2167.00,,,,,,,,,,,,,, -91,Protactinium,Pa,0.00,1.18,5.51,6.01,7.10,11.90,13.40,27.70,13.10,13.80,12.10,26.00,16.00,34.00,16.00,89.00,24.00,26.00,27.00,26.00,28.00,37.00,28.00,30.00,28.00,144.00,30.00,40.00,30.00,90.00,40.00,100.00,40.00,90.00,70.00,80.00,70.00,80.00,70.00,80.00,70.00,90.00,70.00,80.00,90.00,60.00,70.00,353.00,67.00,70.00,76.00,70.00,71.00,131.00,72.00,79.00,74.00,295.00,70.00,79.00,72.00,368.00,84.00,209.00,84.00,2727.00,160.00,169.00,180.00,180.00,170.00,370.00,180.00,190.00,180.00,500.00,160.00,170.00,160.00,1150.00,180.00,380.00,180.00,12820.00,420.00,460.00,430.00,4260.00,570.00,720.00,451.60,94325.00,2210.40,,,,,,,,,,,,, -92,Uranium,U,0.00,-,5.82,4.41,9.20,16.90,9.30,14.00,29.00,12.00,15.00,13.00,29.00,15.00,37.00,17.00,96.00,25.00,27.00,27.00,29.00,27.00,39.00,28.00,32.00,28.00,145.00,40.00,30.00,40.00,90.00,40.00,100.00,40.00,100.00,80.00,70.00,80.00,80.00,70.00,80.00,80.00,80.00,80.00,80.00,80.00,70.00,80.00,358.00,68.00,72.00,76.00,73.00,71.00,135.00,74.00,81.00,73.00,301.00,73.00,78.00,74.00,387.00,85.00,211.00,88.00,2795.00,157.00,180.00,180.00,180.00,170.00,390.00,180.00,200.00,180.00,510.00,150.00,170.00,160.00,1210.00,190.00,390.00,170.00,13100.00,420.00,470.00,440.00,4470.00,580.00,760.00,436.50,96733.80,2250.70,,,,,,,,,,,, -93,Neptunium,Np,0.00,-,5.95,5.23,8.20,14.10,14.20,17.00,27.00,15.00,14.00,15.00,15.00,28.00,17.00,37.00,19.00,103.00,27.00,26.00,30.00,28.00,29.00,40.00,30.00,31.00,30.00,144.00,40.00,40.00,30.00,100.00,40.00,110.00,40.00,110.00,80.00,70.00,80.00,80.00,80.00,70.00,80.00,90.00,80.00,80.00,70.00,90.00,80.00,365.00,70.00,72.00,77.00,75.00,72.00,140.00,74.00,83.00,75.00,305.00,74.00,80.00,75.00,406.00,88.00,217.00,86.00,2866.00,160.00,180.00,180.00,180.00,170.00,410.00,180.00,200.00,180.00,520.00,160.00,170.00,160.00,1280.00,190.00,390.00,180.00,13370.00,430.00,470.00,440.00,4700.00,590.00,800.00,422.20,99179.60,2300.20,,,,,,,,,,, -94,Plutonium,Pu,0.00,-,5.94,5.17,9.80,14.00,14.00,31.00,15.00,14.00,15.00,15.00,20.00,20.00,21.00,19.00,39.00,20.00,111.00,27.00,28.00,30.00,29.00,29.00,43.00,30.00,32.00,31.00,152.00,30.00,40.00,40.00,100.00,40.00,110.00,40.00,120.00,80.00,80.00,80.00,80.00,80.00,80.00,70.00,100.00,80.00,80.00,80.00,80.00,80.00,384.00,70.00,74.00,79.00,75.00,74.00,144.00,76.00,83.00,78.00,309.00,75.00,82.00,75.00,428.00,89.00,222.00,83.00,2930.00,170.00,180.00,190.00,180.00,180.00,410.00,180.00,210.00,180.00,530.00,160.00,180.00,160.00,1330.00,200.00,400.00,180.00,13640.00,440.00,480.00,440.00,4960.00,600.00,700.00,525.80,101673.40,2346.80,,,,,,,,,, -95,Americium,Am,0.00,-,5.90,5.73,10.00,15.10,13.20,17.90,27.10,15.00,16.00,15.00,21.00,22.00,22.00,19.00,17.00,42.00,21.00,119.00,27.00,30.00,30.00,30.00,30.00,45.00,30.00,34.00,31.00,149.00,40.00,40.00,40.00,110.00,40.00,110.00,40.00,130.00,80.00,80.00,80.00,90.00,80.00,80.00,80.00,90.00,90.00,80.00,80.00,90.00,70.00,394.00,72.00,75.00,80.00,77.00,73.00,151.00,77.00,84.00,78.00,315.00,77.00,82.00,76.00,451.00,91.00,227.00,90.00,2990.00,170.00,190.00,190.00,180.00,180.00,430.00,180.00,210.00,190.00,530.00,160.00,180.00,170.00,1400.00,200.00,400.00,190.00,13920.00,440.00,490.00,460.00,5200.00,600.00,800.00,449.40,104220.10,2391.50,,,,,,,,, -96,Curium,Cm,-,0.52,5.67,4.01,10.10,17.60,13.30,18.10,27.90,15.00,16.00,16.00,23.00,23.00,22.00,23.00,18.00,19.00,39.00,21.00,128.00,29.00,29.00,32.00,30.00,31.00,46.00,32.00,34.00,32.00,155.00,40.00,40.00,40.00,110.00,40.00,120.00,40.00,140.00,80.00,80.00,90.00,80.00,80.00,90.00,80.00,100.00,80.00,80.00,90.00,80.00,90.00,396.00,74.00,75.00,82.00,77.00,76.00,155.00,78.00,86.00,79.00,320.00,78.00,83.00,78.00,474.00,89.00,230.00,90.00,3070.00,170.00,180.00,200.00,180.00,180.00,450.00,190.00,200.00,200.00,540.00,160.00,180.00,170.00,1470.00,210.00,410.00,190.00,14190.00,440.00,520.00,400.00,5500.00,600.00,800.00,493.00,106806.60,2443.40,,,,,,,, -97,Berkelium,Bk,-,-,6.17,5.70,9.70,14.40,20.00,14.10,19.90,24.00,16.00,17.00,24.00,24.00,23.00,22.00,19.00,20.00,24.00,36.00,22.00,136.00,29.00,31.00,33.00,31.00,31.00,48.00,33.00,35.00,32.00,160.00,40.00,40.00,40.00,120.00,40.00,120.00,50.00,140.00,80.00,90.00,80.00,90.00,80.00,80.00,90.00,100.00,80.00,90.00,80.00,90.00,90.00,410.00,74.00,78.00,83.00,78.00,76.00,161.00,79.00,88.00,80.00,325.00,79.00,84.00,80.00,495.00,100.00,230.00,90.00,3140.00,170.00,180.00,200.00,190.00,180.00,460.00,190.00,210.00,200.00,540.00,170.00,190.00,160.00,1550.00,210.00,420.00,190.00,14470.00,420.00,500.00,500.00,5700.00,700.00,800.00,457.60,109447.10,2493.30,,,,,,, -98,Californium,Cf,-,-,6.26,5.52,10.60,15.30,14.20,23.10,16.00,21.90,20.10,19.00,26.00,24.00,23.00,22.00,18.00,21.00,24.00,24.00,34.00,22.00,146.00,30.00,31.00,33.00,32.00,33.00,49.00,34.00,36.00,33.00,163.00,40.00,40.00,30.00,130.00,50.00,120.00,40.00,160.00,80.00,90.00,90.00,80.00,90.00,80.00,90.00,100.00,90.00,80.00,90.00,90.00,80.00,436.00,75.00,79.00,84.00,79.00,78.00,166.00,81.00,87.00,83.00,331.00,78.00,87.00,80.00,526.00,90.00,240.00,90.00,3210.00,170.00,190.00,200.00,190.00,180.00,480.00,190.00,220.00,190.00,560.00,170.00,180.00,170.00,1630.00,210.00,420.00,200.00,14720.00,500.00,500.00,500.00,6000.00,600.00,800.00,543.50,112135.80,2544.70,,,,,, -99,Einsteinium,Es,-,-,6.42,5.58,10.70,16.10,15.30,16.90,26.00,15.90,24.10,20.00,23.00,26.00,25.00,21.00,18.00,24.00,23.00,25.00,25.00,31.00,23.00,155.00,30.00,32.00,34.00,33.00,33.00,52.00,34.00,37.00,34.00,165.00,40.00,40.00,40.00,130.00,50.00,120.00,50.00,160.00,90.00,90.00,80.00,90.00,90.00,90.00,80.00,110.00,80.00,90.00,100.00,80.00,140.00,394.00,76.00,79.00,86.00,81.00,78.00,172.00,81.00,91.00,82.00,336.00,81.00,83.00,80.00,560.00,90.00,250.00,90.00,3270.00,180.00,190.00,200.00,190.00,190.00,490.00,190.00,220.00,200.00,560.00,170.00,190.00,180.00,1700.00,220.00,430.00,240.00,15000.00,400.00,600.00,400.00,6300.00,700.00,800.00,551.40,114876.60,2598.00,,,,, -100,Fermium,Fm,-,-,-,3.50,13.20,16.10,15.70,19.00,19.00,27.00,16.00,26.00,23.00,24.00,28.00,20.00,19.00,24.00,26.00,25.00,26.00,25.00,28.00,23.00,163.00,31.00,33.00,36.00,33.00,33.00,55.00,34.00,38.00,35.00,166.00,40.00,40.00,40.00,140.00,50.00,130.00,50.00,170.00,90.00,80.00,90.00,90.00,90.00,90.00,90.00,100.00,100.00,90.00,80.00,90.00,100.00,453.00,77.00,81.00,86.00,83.00,80.00,176.00,84.00,90.00,85.00,341.00,84.00,90.00,80.00,580.00,90.00,250.00,100.00,3340.00,170.00,200.00,200.00,200.00,190.00,500.00,200.00,220.00,200.00,570.00,170.00,200.00,170.00,1790.00,220.00,400.00,200.00,15300.00,500.00,500.00,500.00,6600.00,700.00,900.00,482.20,117670.30,,,,, -101,Mendelevium,Md,-,-,-,3.42,14.30,15.70,14.10,21.90,20.00,19.10,28.80,18.10,25.00,28.00,25.00,20.00,22.00,25.00,27.00,26.00,26.00,26.00,26.00,24.00,24.00,173.00,31.00,33.00,37.00,34.00,34.00,57.00,35.00,38.00,36.00,166.00,40.00,50.00,40.00,140.00,50.00,140.00,40.00,180.00,90.00,90.00,90.00,90.00,90.00,90.00,100.00,100.00,100.00,80.00,100.00,90.00,100.00,463.00,79.00,83.00,87.00,83.00,81.00,183.00,85.00,92.00,85.00,349.00,80.00,90.00,80.00,610.00,100.00,250.00,100.00,3400.00,190.00,190.00,210.00,200.00,190.00,520.00,200.00,230.00,200.00,580.00,170.00,190.00,180.00,1880.00,240.00,400.00,200.00,15600.00,500.00,500.00,500.00,7000.00,600.00,900.00,548.00,,,,, -102,Nobelium,No,-,-,-,5.85,13.30,15.70,18.50,14.00,23.00,22.00,21.00,30.00,17.00,29.00,30.00,21.00,23.00,22.00,29.00,26.00,27.00,26.00,28.00,27.00,21.00,24.00,181.00,33.00,34.00,37.00,35.00,35.00,59.00,35.00,41.00,35.00,175.00,40.00,40.00,40.00,160.00,50.00,130.00,50.00,190.00,90.00,100.00,90.00,90.00,90.00,90.00,100.00,110.00,80.00,100.00,90.00,100.00,90.00,487.00,78.00,85.00,88.00,84.00,83.00,189.00,86.00,93.00,87.00,350.00,80.00,100.00,80.00,640.00,100.00,260.00,100.00,3470.00,180.00,200.00,210.00,200.00,190.00,540.00,210.00,220.00,210.00,580.00,180.00,200.00,180.00,2020.00,200.00,400.00,200.00,15900.00,500.00,500.00,500.00,7300.00,700.00,900.00,,,,, -103,Lawrencium,Lr,-,-,4.89,8.95,7.10,22.20,12.40,24.00,16.00,25.00,22.00,22.00,32.00,19.00,28.00,25.00,21.00,30.00,24.00,30.00,29.00,28.00,29.00,27.00,23.00,30.00,20.00,185.00,34.00,35.00,38.00,36.00,34.00,63.00,35.00,41.00,37.00,182.00,40.00,40.00,50.00,160.00,50.00,140.00,50.00,200.00,90.00,90.00,100.00,90.00,90.00,100.00,100.00,110.00,80.00,100.00,100.00,90.00,100.00,491.00,80.00,85.00,90.00,86.00,83.00,195.00,88.00,92.00,90.00,360.00,80.00,90.00,90.00,670.00,110.00,260.00,100.00,3530.00,190.00,200.00,210.00,200.00,200.00,560.00,200.00,230.00,210.00,590.00,180.00,200.00,210.00,2000.00,300.00,400.00,200.00,16200.00,500.00,500.00,500.00,7700.00,700.00,,,,, -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,Electron Removal Energies (Ionization Potentials) of Atoms and Atomic Ions (eV),,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,Charge,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Atomic #,Element,Symbol,-2,-1,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103 +1,Hydrogen,H,,0.7541950,13.598443,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2,Helium,He,,0.0000000,24.587387,54.41776,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3,Lithium,Li,,0.6180490,5.391719,75.64,122.45429,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4,Beryllium,Be,,0.0000000,9.3227,18.21114,153.89661,217.71865,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5,Boron,B,,0.2797230,8.29802,25.1548,37.93064,259.37521,340.2258,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6,Carbon,C,,1.2621180,11.2603,24.3833,47.8878,64.4939,392.087,489.99334,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7,Nitrogen,N,,0.0000000,14.5341,29.6013,47.44924,77.4735,97.8902,552.0718,667.046,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +8,Oxygen,O,,1.4611134,13.61805,35.1211,54.9355,77.41353,113.899,138.1197,739.29,871.4101,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +9,Fluorine,F,,3.4011895,17.4228,34.9708,62.7084,87.1398,114.2428,157.1651,185.186,953.9112,1103.1176,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +10,Neon,Ne,,0.0000000,21.56454,40.96296,63.45,97.12,126.21,157.93,207.2759,239.0989,1195.8286,1362.1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +11,Sodium,Na,,0.5479260,5.139076,47.2864,71.62,98.91,138.4,172.18,208.5,264.25,299.864,1465.121,1648.702,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +12,Magnesium,Mg,,0.0000000,7.646235,15.03527,80.1437,109.2655,141.27,186.76,225.02,265.96,328.06,367.5,1761.805,1962.665,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +13,Aluminum,Al,,0.4328300,5.985768,18.82855,28.44765,119.992,153.825,190.49,241.76,284.66,330.13,398.75,442,2085.98,2304.141,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +14,Silicon,Si,,1.3895210,8.15168,16.34584,33.49302,45.14181,166.767,205.27,246.5,303.54,351.12,401.37,476.36,523.42,2437.63,2673.182,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +15,Phosphorus,P,,0.7466090,10.48669,19.7695,30.2027,51.4439,65.0251,220.421,263.57,309.6,372.13,424.4,479.46,560.8,611.74,2816.91,3069.842,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +16,Sulfur,S,,2.0771040,10.36001,23.33788,34.79,47.222,72.5945,88.053,280.948,328.75,379.55,447.5,504.8,564.44,652.2,707.01,3223.78,3494.1892,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +17,Chlorine,Cl,,3.6127240,12.96763,23.8136,39.61,53.4652,67.8,97.03,114.1958,348.28,400.06,455.63,529.28,591.99,656.71,749.76,809.4,3658.521,3946.296,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +18,Argon,Ar,,0.0000000,15.75961,27.62966,40.74,59.81,75.02,91.009,124.323,143.46,422.45,478.69,538.96,618.26,686.1,755.74,854.77,918.03,4120.8857,4426.2296,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +19,Potassium,K,,0.5014590,4.3406633,31.63,45.806,60.91,82.66,99.4,117.56,154.88,175.8174,503.8,564.7,629.4,714.6,786.6,861.1,968,1033.4,4610.8,4934.046,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +20,Calcium,Ca,,0.0245500,6.11316,11.87172,50.9131,67.27,84.5,108.78,127.2,147.24,188.54,211.275,591.9,657.2,726.6,817.6,894.5,974,1087,1157.8,5128.8,5469.864,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +21,Scandium,Sc,,0.1880000,6.56149,12.79977,24.75666,73.4894,91.65,110.68,138,158.1,180.03,225.18,249.798,687.36,756.7,830.8,927.5,1009,1094,1213,1287.97,5674.8,6033.712,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +22,Titanium,Ti,,0.0790000,6.82812,13.5755,27.4917,43.2672,99.3,119.53,140.8,170.4,192.1,215.92,265.07,291.5,787.84,863.1,941.9,1044,1131,1221,1346,1425.4,6249,6625.82,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +23,Vanadium,V,,0.5260000,6.74619,14.618,29.311,46.709,65.2817,128.13,150.6,173.4,205.8,230.5,255.7,308.1,336.277,896,976,1060,1168,1260,1355,1486,1569.6,6851.3,7246.12,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +24,Chromium,Cr,,0.6758400,6.76651,16.4857,30.96,49.16,69.46,90.6349,160.18,184.7,209.3,244.4,270.8,298,354.8,384.168,1010.6,1097,1185,1299,1396,1496,1634,1721.4,7481.7,7894.81,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +25,Manganese,Mn,,0.0000000,7.43402,15.64,33.668,51.2,72.4,95.6,119.203,194.5,221.8,248.3,286,314.4,343.6,403,435.163,1134.7,1224,1317,1437,1539,1644,1788,1879.9,8140.6,8571.94,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +26,Iron,Fe,,0.1510000,7.9024,16.1877,30.652,54.8,75,99.1,124.98,151.06,233.6,262.1,290.2,330.8,361,392.2,457,489.256,1266,1358,1456,1582,1689,1799,1950,2023,8828,9277.69,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +27,Cobalt,Co,,0.6633000,7.88101,17.084,33.5,51.3,79.5,102,128.9,157.8,186.13,275.4,305,336,379,411,444,511.96,546.58,1397.2,1504.6,1603,1735,1846,1962,2119,2219,9544.1,10012.12,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +28,Nickel,Ni,,1.1571600,7.6398,18.16884,35.19,54.9,76.06,108,133,162,193,224.6,321,352,384,430,464,499,571.08,607.06,1541,1648,1756,1894,2011,2131,2295,2399.2,10288.8,10775.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +29,Copper,Cu,,1.2357800,7.72638,20.2924,36.841,57.38,79.8,103,139,166,199,232,265.3,369,401,435,484,520,557,633,670.588,1697,1804,1916,2060,2182,2308,2478,2587.5,11062.38,11567.617,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +30,Zinc,Zn,,0.0000000,9.394199,17.96439,39.723,59.4,82.6,108,134,174,203,238,274,310.8,419.7,454,490,542,579,619,698,738,1856,1961,2085,2214,2358,2491.5,2669.9,2781.996,11864.9394,12388.928,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +31,Gallium,Ga,,0.4300000,5.999301,20.51514,30.71,64,86.01,112.7,140.8,170,211,244,280,319,356,471.2,508.82,548.31,599.8,640,677,765.7,807.308,2010,2129,2258,2391,2543.9,2683,2868,2984.426,12696.5569,13239.488,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +32,Germanium,Ge,,1.2327120,7.89943,15.93461,34.2241,45.7131,93.5,115.9,144.9,176.4,212.5,252.1,286,326,367,407,527.9,567.29,609.06,662.8,710,744,837.1,880.444,2180.1,2304,2439,2575,2737.2,2881.9,3074,3194.293,13557.4202,14119.429,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +33,Arsenic,As,,0.8048000,9.7886,18.5892,28.351,50.13,62.63,127.6,147,180,213,247,296,333,375,418,460,587.6,628.82,672.9,728.9,774,814,911.7,956.791,2357,2486,2626,2766,2938,3088.1,3287,3411.643,14447.6778,15028.906,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +34,Selenium,Se,,2.0206046,9.75239,21.19,30.8204,42.945,68.3,81.7,155.4,184,219,255,291,342.9,383,426,473,517,650.5,693.38,739.8,798,845.8,887,989.6,1036.362,2540.7,2674,2820,2964,3146,3301.8,3507,3636.526,15367.4907,15968.083,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +35,Bromine,Br,,3.3635900,11.8138,21.591,36,47.3,59.7,88.6,103,192.8,224,261,301,338,393,436,481,530,577,716.3,760.99,809.8,870,920.8,963,1070.6,1119.169,2731,2870,3020,3169,3361,3523.1,3735,3868.986,16317.01,16937.126,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +36,Krypton,Kr,,0.0000000,13.99961,24.35984,36.95,52.5,64.7,78.5,111,125.802,230.85,268.2,308,350,391,447,492,541,592,641,786,833,884,937,998,1051,1151,1205.3,2928,3070,3227,3381,3584,3752,3971,4109.083,17296.42,17936.208,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +37,Rubidium,Rb,,0.4859160,4.177128,27.2895,40,52.6,71,84.4,99.2,136,150,277.1,313.1,356,400,443,502,550,601,654,706,857,905.3,958.9,1024,1080,1125,1242.5,1294.567,3133.3,3281,3442,3600,3815,3988,4214,4356.865,18305.883,18965.51,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +38,Strontium,Sr,,0.0520600,5.69485,11.0301,42.89,57,71.6,90.8,106,122.3,162,177,324.1,362,408,454,499,562,612,665,722,774,932,982.1,1038,1105,1165,1211,1333.4,1387.19,3344.7,3497,3664,3830,4053,4232,4465,4612.397,19345.587,20025.23,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +39,Yttrium,Y,,0.3070000,6.2173,12.224,20.52,60.597,77,93,116,129,146.2,191,206,374,414,463,512,559,624,677,733,790,847,1010,1061.9,1120.2,1190,1253,1300,1427.6,1483.118,3562.9,3720,3892,4060,4299,4484,4724,4875.73,20415.716,21115.55,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +40,Zirconium,Zr,,0.4270000,6.6339,13.1,22.99,34.34,80.348,96.27,112,133.7,153,172.02,214.9,236.25,426,470,520,573,622,690,745,803,863,922,1092,1144.7,1205.4,1277,1344,1392,1525.1,1582.371,3788,3950,4127,4300,4553,4744,4991,5146.935,21516.469,22236.68,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +41,Niobium,Nb,,0.8940000,6.75885,14,25.04,38.3,50.55,102.057,125,136,159.2,180,200.28,246.1,268.59,482.5,530,581,636,688,758,816,877,940,1000,1176,1230.6,1293.7,1368,1439,1500,1625.9,1684.969,4020.1,4187,4369,4540,4815,5011,5265,5426.065,22648.045,23388.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +42,Molybdenum,Mo,,0.7473000,7.09243,16.16,27.13,46.4,54.49,68.8276,125.664,143.6,164.12,186.4,209.3,230.28,279.1,302.6,544,570,636,702,767,833,902,968,1020,1082,1263,1323,1387,1449,1535,1601,1730.1,1790.932,4259,4430,4618,4800,5084,5287,5548,5713.194,23810.653,24572.15,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +43,Technetium,Tc,,0.5500000,7.28,15.26,29.54,41,57,72,88,150,169,189.9,214,239,262.08,311,338.55,604,655,713,773,829,904,968,1032,1102,1166,1354,1411.6,1479.5,1559,1638,1689,1838,1900.28,4505,4681,4874,5060,5361,5570,5838,6008.391,25004.532,25786.99,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +44,Ruthenium,Ru,,1.0760000,7.3605,16.76,28.47,45,59,76,93,110,178.4,198,219.9,245,271,295.9,348,376.25,670,723,784,845,905,981,1048,1115,1187,1253,1447,1506.7,1577,1659,1743,1794,1949,2013.037,4758,4939,5136,5330,5647,5862,6137,6311.72,26229.894,27033.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +45,Rhodium,Rh,,1.1428900,7.4589,18.08,31.06,42,63,80,97,115.1,135,207.51,228,252.1,277,306,331.58,389,416,739,794,857,921,984,1061,1131,1202,1274,1344,1544,1604.9,1677.6,1763,1851,1903,2063,2129.224,5018,5203,5406,5600,5940,6161,6444,6623.262,27486.982,28311.96,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +46,Palladium,Pd,,0.5621400,8.3369,19.43,32.93,46,61,84.1,101,120,141,160,238.57,260,286,311,342,369.1,427,458,810,869,933,1000,1065,1145,1218,1290,1366,1438,1644,1706.2,1781.3,1869,1962,2016,2181,2248.867,5284,5475,5683,5880,6242,6469,6759,6943.096,28776.033,29622.6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +47,Silver,Ag,,1.3044700,7.57623,21.47746,34.83,49,65,82,106,125,145,167,188,271.46,294,321,347,381,408.43,469,500.87,885,946,1013,1082,1149,1231,1308,1382,1460,1535,1747,1810.5,1888,1979,2077,2131,2302,2371.989,5558,5753,5966,6170,6551,6784,7082,7271.297,30097.317,30965.7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +48,Cadmium,Cd,,0.0000000,8.99382,16.90831,37.48,51,67.9,87,105,130.1,150,173,195,218,305,329,358,385,421,452.55,513,546.19,963,1026,1095,1167,1237,1320,1400,1477,1558,1635,1852,1917.9,1997.9,2091,2195,2250,2427,2498.615,5839,6039,6257,6460,6870,7109,7414,7607.945,31451.06,32341.49,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +49,Indium,In,,0.3839200,5.78636,18.8703,28.03,54,69.3,90,109,130.1,156,178,201,226,249,341,368,396,425,462,497.11,560,593.38,1043,1109,1181,1255,1328,1413,1496,1575,1659,1738,1961,2028.5,2111,2207,2317,2373,2555,2628.774,6126,6331,6554,6770,7196,7442,7754,7953.137,32837.59,33750.31,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +50,Tin,Sn,,1.1120700,7.34392,14.6322,30.5026,40.73502,72.28,94,112.9,135,156,184,208,232,258,282,379,407,437,466,506,537,608,642.35,1127,1195,1269,1347,1421,1508,1596,1676,1763,1844,2074,2142.1,2227,2326,2443,2499,2687,2762.5,6421,6631,6859,7080,7531,7790,8103,8306.95,34257.141,35192.39,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +51,Antimony,Sb,,1.0474010,8.60839,16.63,25.3,44.2,56,108,117,139,162,185,214,238,265,292,317,420,447,479,510,552,584,657,693.26,1214,1285,1360,1441,1518,1606,1698,1781,1869,1954,2190,2266,2349,2428,2567,2654,2815,2900,6714,6929,7167,7390,7887,8140,8455,8669.48,35710.03,36668.05,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +52,Tellurium,Te,,1.9708760,9.0096,18.6,27.96,37.41,58.75,70.7,137,143,167,191.1,215,245,272,299,328,354,461,491,522,555,599,633,709,746.12,1304,1377,1455,1538,1618,1707,1803,1889,1979,2066,2309,2386,2472,2552,2700,2788,2954,3041,7022,7243,7485,7714,8240,8499,8821,9040.83,37196.52,38177.56,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +53,Iodine,I,,3.0590463,10.45126,19.1313,33,40.36,51.517,74.37,87.61,150.81,171,197,220.9,247,279,307,335,365,393,505,535,569,601,649,683,762,800.76,1397,1472,1553,1639,1720,1812,1911,1999,2093,2181,2431,2510,2598,2680,2836,2930,3096,3185.5,7337,7600,7800,8044,8601,8867,9196,9421.1,38716.994,39721.41,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +54,Xenon,Xe,,0.0000000,12.12984,20.975,32.123,42.2,54.14,66.703,91.6,105.9778,179.84,202,229.02,255,281,314,343,374,404,430,549,582,616,650,700,736,818,857.03,1493,1571,1653,1742,1826,1919,2023,2113,2209,2300,2556,2637,2726,2811,2975,3068,3243,3333.8,7660,7889,8144,8382,8971,9243,9581,9810.4,40271.722,41299.71,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +55,Cesium,Cs,,0.4716400,3.893905,23.15744,33.195,43,56,69.1,82.9,110.09,125.61,213.3,233,261,289,316,352,382,413,445,476,597,629,666,700,753,791,875,916.07,1592,1672,1757,1848,1936,2029,2137,2230,2329,2422,2683,2767,2859,2945,3118,3214,3392,3485,7989,8224,8484,8726,9350,9629,9974,10208.78,41861.073,42912.99,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +56,Barium,Ba,,0.1446200,5.211664,10.00383,35.84,47.03,58,71,86,101,130.53,146.52,241,267.1,296,325,354,390,422,455,488,520,646,679,717,752,809,846,935,976.6,1695,1776,1864,1958,2047,2142,2256,2349,2452,2547,2814,2901,2994,3081,3266,3363,3550,3640,8326,8565,8831,9077,9739,10023,10376,10616.42,43485.364,44561.47,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +57,Lanthanum,La,,0.4700000,5.5769,11.059,19.1773,49.95,61.6,74,88,105,119,151.42,168.77,275,303,332,364,393,431,464,498,533,566,696,731,770,806,865,906,995,1039.09,1800,1884,1974,2069,2162,2259,2377,2473,2577,2674,2950,3036,3133,3222,3416,3515,3704,3800,8669,8914,9184,9437,10136,10426,10789,11033.4,45144.994,46245.6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +58,Cerium,Ce,,0.6280000,5.5387,10.85,20.198,36.758,65.55,77.6,91,106,125,140,172,192.24,312,340,371,403,435,472,509,543,579,613,749,785,824,862,924,965,1060,1103.53,1908,1994,2087,2185,2280,2378,2500,2600,2706,2806,3087,3176,3274,3366,3570,3672,3865,3963,9020,9269,9545,9803,10542,10840,11210,11459.85,46840.304,47965.72,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +59,Praseodymium,Pr,,0.9620000,5.473,10.55,21.624,38.98,57.53,82,97,112,131,148,162,196,217.02,350,378,412,445,478,516,554,590,627,663,803,840,880,920,985,1028,1124,1169.94,2019,2108,2202,2304,2400,2501,2628,2729,2838,2941,3227,3319,3419,3512,3729,3832,4030,4130,9378,9632,9913,10175,10959,11262,11641,11895.89,48571.71,49722.2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +60,Neodymium,Nd,,0.1620000,5.525,10.72,22.1,40.4,60,84,99,114,136,152,168,195,221,243,389,420,453,489,522,562,602,638,678,714,859,896,939,978,1049,1092,1191,1238.42,2134,2224,2321,2425,2525,2627,2758,2861,2974,3078,3371,3465,3567,3662,3891,3997,4198,4302,9742,10002,10288,10555,11384,11694,12082,12341.66,50339.587,51515.58,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +61,Promethium,Pm,,0.1290000,5.582,10.9,22.3,41.1,61.69,85,101,116,138,155,174,202,229,248,269,430,462,497,534,569,609,651,689,730,767,916,956,998,1040,1113,1158,1261,1308.7,2251,2344,2443,2549,2652,2755,2892,2997,3110,3219,3519,3613,3718,3816,4056,4166,4371,4476,10115,10378,10671,10942,11819,12136,12532,12797.26,52144.29,53346.1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +62,Samarium,Sm,,0.1620000,5.6437,11.07,23.4,41.4,62.66,90,103,118,141,158,179,208,237,257,276,306.5,474,506,543,581,617,658,702,742,782,822,976,1016,1060,1103,1180,1226,1332,1381.6,2371,2466,2569,2676,2782,2887,3028,3137,3253,3363,3669,3766,3873,3971,4227,4337,4548,4655,10494,10762,11060,11337,12264,12588,12992,13262.85,53986.11,55214.23,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +63,Europium,Eu,,0.1160000,5.67038,11.25,24.92,42.7,63,88,105,120,144,161,183,213,243,263,281,311,344.4,518,553,590,630,667,709,755,795,838,879,1037,1078,1124,1167,1249,1296,1406,1456.06,2495,2591,2697,2807,2914,3022,3168,3279,3398,3510,3823,3921,4031,4131,4400,4510,4729,4838,10880,11153,11457,11739,12718,13050,13462,13738.58,55865.9,57120.6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +64,Gadolinium,Gd,,0.1370000,6.1498,12.09,20.63,44,64.76,89,106,123,144,165,183,213,246,268,288,319,352,380,565,601,639,680,719,761,810,851,895,937,1100,1142,1189,1233,1321,1368,1481,1532.35,2621,2720,2827,2941,3050,3160,3312,3424,3550,3660,3980,4080,4191,4294,4578,4693,4914,5025,11273,11552,11861,12147,13183,13521,13943,14224.57,57783.9,59065.52,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +65,Terbium,Tb,,0.4360000,5.8638,11.52,21.91,39.79,66.5,90,108,125,143,168,186,216,250,270,294,325,358,393,426.6,613,651,690,732,772,816,866,909,954,997,1165,1208,1256,1301,1393,1443,1559,1610.38,2750,2852,2961,3078,3189,3300,3458,3573,3698,3814,4139,4242,4355,4460,4760,4877,5103,5217,11673,11957,12272,12563,13658,14003,14434,14721,59739.25,61049.64,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +66,Dysprosium,Dy,,0.3520000,5.9389,11.67,22.8,41.47,62.08,93,110,127,152,170,192,224,259,279,300,332,366,399,431,465,664,702,743,786,827,872,924,969,1014,1059,1232,1275,1325,1371,1468,1520,1638,1691.74,2882,2987,3098,3217,3331,3445,3607,3725,3852,3970,4303,4407,4523,4629,4945,5066,5296,5412,12081,12370,12690,12986,14144,14495,14936,15228.06,61736.55,63073.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +67,Holmium,Ho,,0.3380000,6.0215,11.8,22.84,42.5,63.93,95,112,129,155,174,196,229,263,284,305,340,373,408,441,475,510,715,755,797,842,885,929,985,1029,1077,1122,1300,1346,1395,1443,1545,1598,1719,1773.57,3018,3125,3238,3359,3476,3592,3760,3880,4009,4131,4469,4576,4693,4802,5135,5258,5494,5611,12495,12790,13116,13417,14639,14998,15448,15745.77,63772.42,65136.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +68,Erbium,Er,,0.3120000,6.1077,11.93,22.74,42.7,65.1,96,114,131,158,177,201,235,268,290,311,345,381,415,450,486,520,555,770,810,853,899,943,989,1046,1092,1142,1188,1370,1416,1468,1516,1625,1678,1803,1859,3157,3265,3381,3505,3624,3742,3916,4038,4170,4294,4639,4748,4866,4978,5329,5455,5695,5815,12918,13217,13548,13855,15146,15511,15971,16274.56,65848.24,67241.85,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +69,Thulium,Tm,,0.0160000,6.18431,12.05,23.68,42.7,65.43,98,116,133,160,180,205,239,274,295,317,352,387,424,460,500,530,570,603,825,866,911,958,1004,1050,1110,1157,1207,1255,1442,1490,1542,1591,1706,1761,1889,1945.2,3300,3409,3528,3653,3775,3895,4075,4199,4335,4461,4812,4922,5044,5157,5527,5656,5901,6023,13347,13651,13988,14300,15663,16036,16500,16814.34,67965.26,69387.34,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +70,Ytterbium,Yb,,0.0000000,6.25416,12.176,25.05,43.56,65.58,99,117,135,163,182,209,244,279,301,324,360,396,431,469,505,540,580,620,651,882,924,971,1019,1065,1114,1175,1224,1275,1324,1516,1564,1618,1668,1789,1845,1978,2036.4,3443,3555,3677,3805,3929,4051,4238,4364,4502,4630,4988,5101,5224,5339,5731,5860,6111,6236,13784,14093,14435,14752,16191,16570,17050,17365.44,70123.04,71574.79,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +71,Lutetium,Lu,,0.3400000,5.42586,13.9,20.9594,45.25,66.8,98,117,136,159,185,205,238,276,305,328,361,399,438,476,520,560,600,640,670,713,941,985,1032,1081,1130,1178,1242,1292,1345,1395,1591,1641,1696,1747,1875,1933,2067,2125.5,3590,3706,3828,3960,4086,4211,4403,4532,4673,4803,5168,5282,5408,5525,5937,6070,6326,6452,14228,14542,14890,15211,16730,17120,17610,17928.05,72322.91,73804.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +72,Hafnium,Hf,,0.1140000,6.82507,15,23.3,33.33,68.375,98,118,138,157,187,209,230,270,310,334,359,399,440,481,520,560,610,650,690,730,772,1002,1047,1094,1146,1195,1245,1311,1362,1417,1467,1669,1719,1776,1827,1963,2022,2159,2218.9,3741,3858,3984,4118,4246,4372,4573,4703,4846,4980,5350,5468,5595,5713,6149,6284,6545,6674,14678,14999,15351,15680,17280,17680,18180,18502.32,74565.93,76077.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +73,Tantalum,Ta,,0.3230000,7.54957,16.2,23.1,35,48.272,94.011,119,139,159,180,213,235,262,304,338,363,396,439,482,530,570,620,660,700,740,790,832,1064,1110,1160,1211,1262,1313,1382,1434,1490,1542,1748,1799,1857,1910,2053,2113,2254,2314.7,3898.7,4014,4143,4278,4410,4537,4745,4877,5024,5159,5537,5655,5785,5907,6364,6502,6769,6900,15137,15461,15820,16150,17840,18250,18760,19088.51,76852.02,78394.7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +74,Tungsten,W,,0.8162600,7.86403,16.1,26.02,38.21,51.59,64.766,122.01,141.2,160.2,179,208.9,231.6,258.3,290.7,325.3,361.9,387.9,420.7,462.1,502.6,543.4,594.5,640.6,686,734.1,784.4,833.4,881.4,1132.2,1180,1230.4,1283.4,1335.1,1386.8,1459.9,1512.4,1569.1,1622,1829.8,1882.9,1940.6,1994.8,2149.1,2210,2354,2414.11,4057,4180,4309,4446,4578,4709,4927,5063,5209,5348,5719,5840,5970,6093,6600,6735,7000,7130,15566,15896,16252,16588,18476,18872,19362,19686.74,79181.93,80755.6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +75,Rhenium,Re,,0.1500000,7.83352,16.6,27,39.1,51.9,67,82.71,144.4,165,187,208,236,268,291,330,377,403,429,476,520,570,620,670,720,760,810,860,910,953,1194,1242,1294,1349,1402,1454,1530,1583,1641,1696,1912,1966,2025,2080,2240,2302,2450,2514.54,4214,4335,4468,4609,4745,4877,5099,5236,5388,5528,5919,6042,6176,6300,6810,6952,7230,7366,16080,16410,16780,17120,19000,19420,19950,20297.4,81556.9,83162.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +76,Osmium,Os,,1.0778000,8.43823,17,25,41,55,70.1,85.1,102.024,168.7,190,213,235,269,300,320,367,410,436,470,520,570,620,670,720,770,820,870,920,970,1015,1262,1311,1364,1420,1474,1528,1606,1660,1720,1776,1996,2052,2112,2168,2336,2400,2552,2615.5,4374,4501,4635,4779,4917,5052,5280,5421,5575,5717,6115,6240,6376,6503,7039,7185,7468,7610,16560,16900,17270,17620,19600,20030,20570,20920.6,83976.2,85614.4,,,,,,,,,,,,,,,,,,,,,,,,,,,, +77,Iridium,Ir,,1.5643600,8.96702,17,28,40,57,72,89,105,123,194.8,217,240,264,303,329,356,407,445,472,510,560,610,670,720,770,820,870,920,980,1030,1080,1331,1381,1436,1493,1548,1603,1684,1739,1801,1857,2083,2139,2201,2258,2435,2500,2656,2720.4,4540,4668,4806,4952,5092,5229,5466,5609,5765,5910,6315,6441,6580,6708,7274,7421,7710,7850,17040,17390,17770,18120,20210,20650,21200,21556.6,86438.9,88113.3,,,,,,,,,,,,,,,,,,,,,,,,,,, +78,Platinum,Pt,,2.1251000,8.9588,18.563,29,43,56,75,91,109,126,144.9,220.4,245,269,293,332,358,392,445,479,507,550,610,660,710,760,820,870,930,980,1040,1090,1140,1402,1454,1509,1567,1624,1680,1763,1821,1883,1941,2171,2228,2291,2350,2536,2603,2762,2827.8,4715,4839,4980,5128,5270,5410,5654,5800,5959,6106,6517,6646,6787,6918,7512,7660,7960,8100,17540,17890,18280,18630,20840,21280,21840,22205.7,88955.17,90660,,,,,,,,,,,,,,,,,,,,,,,,,, +79,Gold,Au,,2.3086100,9.22553,20.2,30,45,60,74,94,112,130.1,149,168.2,200,275,299,324,365,392,433,487,520,550,600,650,710,760,820,870,930,990,1040,1100,1150,1210,1475,1527,1584,1644,1702,1758,1845,1904,1967,2026,2261,2320,2383,2443,2640,2708,2870,2941,4888,5013,5156,5307,5452,5594,5846,5994,6156,6305,6724,6854,6997,7130,7760,7910,8210,8360,18040,18400,18790,19150,21470,21920,22500,22868.12,91515.82,93254.3,,,,,,,,,,,,,,,,,,,,,,,,, +80,Mercury,Hg,,0.0000000,10.4375,18.7568,34.2,48.55,61.2,76.6,93,113.9,134,153,173,192.7,276.9,307,332,357,402,429,477,530,560,590,650,710,760,820,880,930,990,1050,1110,1160,1220,1280,1549,1603,1661,1723,1780,1839,1928,1989,2052,2113,2354,2412,2478,2539,2745,2815,2981,3049.9,5055,5191,5335,5490,5636,5780,6041,6192,6356,6508,6933,7066,7211,7350,8000,8160,8470,8620,18550,18910,19310,19680,22120,22580,23170,23544.1,94124.7,95897.7,,,,,,,,,,,,,,,,,,,,,,,, +81,Thallium,Tl,,0.3770000,6.108194,20.4283,29.83,51.14,62.6,80,98,116,135,158,177,198,218.3,306.9,340,366,392,439,467,520,570,600,640,700,760,820,880,930,990,1060,1110,1170,1230,1290,1350,1625,1681,1740,1802,1862,1920,2014,2075,2140,2202,2447,2508,2574,2635,2854,2925,3094,3164.7,5234,5371,5518,5674,5824,5969,6241,6392,6560,6714,7146,7281,7430,7560,8260,8420,8730,8880,19070,19440,19840,20210,22780,23260,23850,24234.1,96783.2,98591.6,,,,,,,,,,,,,,,,,,,,,,, +82,Lead,Pb,,0.3640000,7.41663,15.03248,31.9373,42.32,68.8,82.9,100.1,120,138,158,182,203,224,245.1,338.1,374,401,428,478,507,570,610,650,690,750,810,870,930,990,1050,1120,1180,1240,1300,1360,1430,1704,1760,1819,1884,1945,2004,2101,2163,2230,2292,2543,2605,2671,2735,2965,3036,3211,3282.1,5414,5555,5703,5862,6015,6160,6442,6597,6767,6924,7362,7500,7650,7790,8520,8680,9000,9150,19590,19970,20380,20750,23460,23940,24550,24938,99491.85,101336.4,,,,,,,,,,,,,,,,,,,,,, +83,Bismuth,Bi,,0.9423620,7.2855,16.703,25.56,45.3,56,88.3,103,122,143,161.1,183,208,229,252,272.6,370.2,409,436,464,520,550,620,660,690,750,810,870,930,990,1060,1120,1180,1250,1310,1380,1440,1500,1784,1840,1902,1967,2029,2090,2190,2253,2321,2385,2641,2703,2771,2835,3078,3151,3329,3401.8,5599,5740,5892,6054,6208,6358,6648,6804,6977,7137,7580,7720,7870,8010,8780,8950,9270,9430,20130,20500,20920,21300,24150,24640,25260,25656.9,102251.76,104132.8,,,,,,,,,,,,,,,,,,,,, +84,Polonium,Po,,1.9000000,8.414,19.3,27,36,57,69.1,108,125,146.1,166,190,209,235,257,281,304,416,444,473,502,560,590,670,700,740,800,860,930,990,1060,1120,1180,1250,1320,1380,1440,1510,1570,1865,1923,1986,2052,2115,2177,2281,2345,2414,2480,2740,2803,2873,2938,3194,3268,3450,3524.2,5785,5930,6084,6248,6405,6557,6856,7015,7191,7350,7810,7940,8100,8240,9050,9220,9550,9710,20670,21050,21470,21860,24860,25360,25990,26390.4,105064.3,106982.7,,,,,,,,,,,,,,,,,,,, +85,Astatine,At,,2.8000000,9.31751,17.88,26.58,39.65,50.39,72,85.1,130.1,149,169,192.1,212,236,263,287,311,335,452,481,510,540,600,630,720,750,790,860,920,990,1050,1120,1180,1250,1320,1380,1450,1510,1590,1650,1948,2007,2071,2139,2203,2266,2373,2439,2510,2576,2841,2905,2977,3042,3312,3388,3573,3649,5980,6122,6279,6445,6604,6759,7068,7230,7410,7570,8030,8180,8330,8480,9330,9500,9830,9990,21210,21600,22030,22420,25580,26080,26730,27139,107923.4,109886,,,,,,,,,,,,,,,,,,, +86,Radon,Rn,,0.0000000,10.7485,21.4,29.4,36.9,52.9,64,88,102,154,173.9,195,218,240,264,293,317,342,367,488,519,549,579,643,680,760,800,850,920,980,1050,1120,1180,1250,1310,1390,1460,1520,1590,1660,1720,2033,2094,2158,2227,2293,2357,2467,2535,2606,2674,2944,3010,3082,3149,3433,3510,3699,3777,6169,6318,6476,6646,6807,6964,7283,7450,7630,7800,8260,8410,8570,8710,9610,9780,10120,10290,21770,22160,22600,23000,26310,26830,27490,27903.1,110842,112843.7,,,,,,,,,,,,,,,,,, +87,Francium,Fr,,0.4860000,4.072741,22.4,33,39.1,50,67,80,106,120,179,200,222.1,245,269,293,324,349,375,400,530,560,590,620,690,720,820,850,910,980,1040,1110,1180,1250,1320,1380,1460,1530,1600,1670,1740,1810,2119,2182,2247,2317,2384,2450,2564,2631,2706,2774,3049,3115,3190,3257,3556,3635,3828,3907,6365,6516,6678,6849,7013,7172,7500,7670,7850,8020,8500,8640,8800,8950,9890,10070,10420,10580,22330,22730,23170,23570,27060,27590,28260,28683.4,113817.2,115859,,,,,,,,,,,,,,,,, +88,Radium,Ra,,0.1000000,5.278423,10.14715,31,41,52.9,64,82,97,124,140,204.9,227,250,274,299,324,356,382,409,435,570,600,630,660,740,770,860,900,970,1040,1110,1180,1250,1320,1390,1460,1530,1610,1680,1750,1820,1880,2208,2271,2338,2409,2477,2544,2662,2731,2806,2876,3155,3224,3300,3368,3682,3762,3959,4040,6565,6718,6881,7056,7222,7380,7720,7890,8080,8250,8730,8880,9040,9200,10190,10360,10720,10890,22900,23300,23750,24160,27830,28370,29050,29479.8,116848.7,118931.3,,,,,,,,,,,,,,,, +89,Actinium,Ac,,0.3500000,5.17,11.75,17.431,44.8,55,67,79,98.9,113.9,143.9,161.1,233,255,279,305,330,355,390,416,444,470,610,640,670,710,780,820,920,950,1030,1100,1170,1240,1310,1380,1460,1530,1610,1680,1750,1820,1900,1970,2298,2362,2430,2503,2572,2639,2762,2833,2908,2980,3264,3334,3409,3479,3811,3893,4093,4175,6767,6923,7088,7265,7430,7600,7950,8120,8310,8480,8970,9120,9290,9440,10480,10660,11030,11200,23480,23890,24340,24760,28610,29160,29850,30293,119939,122062.9,,,,,,,,,,,,,,, +90,Thorium,Th,,0.3680000,6.3067,11.9,20,28.8,58,69.1,82,95,118,133,165,181,262,285,310,336,362,389,424,451,480,508,650,680,720,750,830,900,970,1010,1090,1160,1240,1310,1380,1460,1530,1600,1680,1760,1830,1910,2000,2060,2390,2455,2524,2598,2669,2737,2860,2935,3013,3086,3375,3445,3522,3593,3943,4025,4230,4313,6972,7130,7299,7480,7650,7820,8180,8350,8550,8720,9220,9370,9540,9690,10790,10970,11340,11510,24060,24480,24940,25360,29410,29970,30680,31122.8,123086.4,125253.4,,,,,,,,,,,,,, +91,Protactinium,Pa,,0.3840000,5.89,11.9,19,30.9,44.3,72,85.1,98.9,111,137,153,187,203,292,316,342,369,395,423,460,488,518,546,690,720,760,790,880,920,1020,1060,1150,1220,1300,1370,1450,1520,1600,1670,1760,1830,1910,2000,2060,2130,2483,2550,2620,2696,2766,2837,2968,3040,3119,3193,3488,3558,3637,3709,4077,4161,4370,4454,7181,7341,7510,7690,7870,8040,8410,8590,8780,8960,9460,9620,9790,9950,11100,11280,11660,11840,24660,25080,25540,25970,30230,30800,31520,31971.6,126296.6,128507,,,,,,,,,,,,, +92,Uranium,U,,0.3730000,6.1941,10.6,19.8,36.7,46,60,89,101,116,129,158,173,210,227,323,348,375,402,431,458,497,525,557,585,730,770,800,840,930,970,1070,1110,1210,1290,1360,1440,1520,1590,1670,1750,1830,1910,1990,2070,2140,2220,2578,2646,2718,2794,2867,2938,3073,3147,3228,3301,3602,3675,3753,3827,4214,4299,4510,4598,7393,7550,7730,7910,8090,8260,8650,8830,9030,9210,9720,9870,10040,10200,11410,11600,11990,12160,25260,25680,26150,26590,31060,31640,32400,32836.5,129570.3,131821,,,,,,,,,,,, +93,Neptunium,Np,,0.3130000,6.2657,11.5,19.7,33.8,48,65,92,107,121,136,151,179,196,233,252,355,382,408,438,466,495,535,565,596,626,770,810,850,880,980,1020,1130,1170,1280,1360,1430,1510,1590,1670,1740,1820,1910,1990,2070,2140,2230,2310,2675,2745,2817,2894,2969,3041,3181,3255,3338,3413,3718,3792,3872,3947,4353,4441,4658,4744,7610,7770,7950,8130,8310,8480,8890,9070,9270,9450,9970,10130,10300,10460,11740,11930,12320,12500,25870,26300,26770,27210,31910,32500,33300,33722.2,132901.8,135202,,,,,,,,,,, +94,Plutonium,Pu,,0.0850000,6.026,11.2,21,35,49,80,95,109,124,139,159,179,200,219,258,278,389,416,444,474,503,532,575,605,637,668,820,850,890,930,1030,1070,1180,1220,1340,1420,1500,1580,1660,1740,1820,1890,1990,2070,2150,2230,2310,2390,2774,2844,2918,2997,3072,3146,3290,3366,3449,3527,3836,3911,3993,4068,4496,4585,4807,4890,7820,7990,8170,8360,8540,8720,9130,9310,9520,9700,10230,10390,10570,10730,12060,12260,12660,12840,26480,26920,27400,27840,32800,33400,34100,34625.8,136299.2,138646,,,,,,,,,, +95,Americium,Am,,0.076,5.9738,11.7,21.7,36.8,50,67.9,95,110,126,141,162,184,206,225,242,284,305,424,451,481,511,541,571,616,646,680,711,860,900,940,980,1090,1130,1240,1280,1410,1490,1570,1650,1740,1820,1900,1980,2070,2160,2240,2320,2410,2480,2874,2946,3021,3101,3178,3251,3402,3479,3563,3641,3956,4033,4115,4191,4642,4733,4960,5050,8040,8210,8400,8590,8770,8950,9380,9560,9770,9960,10490,10650,10830,11000,12400,12600,13000,13190,27110,27550,28040,28500,33700,34300,35100,35549.4,139769.5,142161,,,,,,,,, +96,Curium,Cm,,0.3210000,5.9914,10,20.1,37.7,51,69.1,97,112,128,144,167,190,212,235,253,272,311,332,460,489,518,550,580,611,657,689,723,755,910,950,990,1030,1140,1180,1300,1340,1480,1560,1640,1730,1810,1890,1980,2060,2160,2240,2320,2410,2490,2580,2976,3050,3125,3207,3284,3360,3515,3593,3679,3758,4078,4156,4239,4317,4791,4880,5110,5200,8270,8440,8620,8820,9000,9180,9630,9820,10020,10220,10760,10920,11100,11270,12740,12950,13360,13550,27740,28180,28700,29100,34600,35200,36000,36493,143299.6,145743,,,,,,,, +97,Berkelium,Bk,,0.0310000,6.1979,11.9,21.6,36,56,70.1,90,114,130,147,171,195,218,240,259,279,303,339,361,497,526,557,590,621,652,700,733,768,800,960,1000,1040,1080,1200,1240,1360,1410,1550,1630,1720,1800,1890,1970,2050,2140,2240,2320,2410,2490,2580,2670,3080,3154,3232,3315,3393,3469,3630,3709,3797,3877,4202,4281,4365,4445,4940,5040,5270,5360,8500,8670,8850,9050,9240,9420,9880,10070,10280,10480,11020,11190,11380,11540,13090,13300,13720,13910,28380,28800,29300,29800,35500,36200,37000,37457.6,146904.7,149398,,,,,,, +98,Californium,Cf,,0.0180000,6.2817,11.8,22.4,37.7,51.9,75,91,112.9,133,152,178,202,225,247,265,286,310,334,368,390,536,566,597,630,662,695,744,778,814,847,1010,1050,1090,1120,1250,1300,1420,1460,1620,1700,1790,1880,1960,2050,2130,2220,2320,2410,2490,2580,2670,2750,3186,3261,3340,3424,3503,3581,3747,3828,3915,3998,4329,4407,4494,4574,5100,5190,5430,5520,8730,8900,9090,9290,9480,9660,10140,10330,10550,10740,11300,11470,11650,11820,13450,13660,14080,14280,29000,29500,30000,30500,36500,37100,37900,38443.5,150579.3,153124,,,,,, +99,Einsteinium,Es,,0.0020000,6.42,12,22.7,38.8,54.1,71,97,112.9,137,157,180,206,231,252,270,294,317,342,367,398,421,576,606,638,672,705,738,790,824,861,895,1060,1100,1140,1180,1310,1360,1480,1530,1690,1780,1870,1950,2040,2130,2220,2300,2410,2490,2580,2680,2760,2900,3294,3370,3449,3535,3616,3694,3866,3947,4038,4120,4456,4537,4620,4700,5260,5350,5600,5690,8960,9140,9330,9530,9720,9910,10400,10590,10810,11010,11570,11740,11930,12110,13810,14030,14460,14700,29700,30100,30700,31100,37400,38100,38900,39451.4,154328,156926,,,,, +100,Fermium,Fm,,0.0000000,6.5,10,23.2,39.3,55,74,93,120,136,162,185,209,237,257,276,300,326,351,377,402,430,453,616,647,680,716,749,782,837,871,909,944,1110,1150,1190,1230,1370,1420,1550,1600,1770,1860,1940,2030,2120,2210,2300,2390,2490,2590,2680,2760,2850,2950,3403,3480,3561,3647,3730,3810,3986,4070,4160,4245,4586,4670,4760,4840,5420,5510,5760,5860,9200,9370,9570,9770,9970,10160,10660,10860,11080,11280,11850,12020,12220,12390,14180,14400,14800,15000,30300,30800,31300,31800,38400,39100,40000,40482.2,158152.5,160804,,,, +101,Mendelevium,Md,,0.0000000,6.58,10,24.3,40,54.1,76,96,115.1,143.9,162,187,215,240,260,282,307,334,360,386,412,438,462,486,659,690,723,760,794,828,885,920,958,994,1160,1200,1250,1290,1430,1480,1620,1660,1840,1930,2020,2110,2200,2290,2380,2480,2580,2680,2760,2860,2950,3050,3513,3592,3675,3762,3845,3926,4109,4194,4286,4371,4720,4800,4890,4970,5580,5680,5930,6030,9430,9620,9810,10020,10220,10410,10930,11130,11360,11560,12140,12310,12500,12680,14560,14800,15200,15400,31000,31500,32000,32500,39500,40100,41000,41548,,164764,,, +102,Nobelium,No,,0.0000000,6.65,12.5,25.8,41.5,60,74,97,119,140,170,187,216,246,267,290,312,341,367,394,420,448,475,496,520,701,734,768,805,840,875,934,969,1010,1045,1220,1260,1300,1340,1500,1550,1680,1730,1920,2010,2110,2200,2290,2380,2470,2570,2680,2760,2860,2950,3050,3140,3627,3705,3790,3878,3962,4045,4234,4320,4413,4500,4850,4930,5030,5110,5750,5850,6110,6210,9680,9860,10060,10270,10470,10660,11200,11410,11630,11840,12420,12600,12800,12980,15000,15200,15600,15800,31700,32200,32700,33200,40500,41200,42100,42632,,168806,, +103,Lawrencium,Lr,,0.465,5.354223992,14.3,21.4,43.6,56,80,96,121,143,165,197,216,244,269,290,320,344,374,403,431,460,487,510,540,560,745,779,814,852,888,922,985,1020,1061,1098,1280,1320,1360,1410,1570,1620,1760,1810,2010,2100,2190,2290,2380,2470,2570,2670,2780,2860,2960,3060,3150,3250,3741,3821,3906,3996,4082,4165,4360,4448,4540,4630,4990,5070,5160,5250,5920,6030,6290,6390,9920,10110,10310,10520,10720,10920,11480,11680,11910,12120,12710,12890,13090,13300,15300,15600,16000,16200,32400,32900,33400,33900,41600,42300,43200,43759,,172930, +,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,Chemical Potentials of Atoms and Atomic Ions (eV) from the Parr-Pearson-Mulliken formula,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,Charge,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Atomic #,Element,Symbol,-2,-1,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,,,,, +1,Hydrogen,H,-2.28,-2.46,-7.18,-56.00,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2,Helium,He,-,0.38,-12.29,-39.50,-90.00,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3,Lithium,Li,1.72,-0.69,-3.00,-40.52,-99.05,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4,Beryllium,Be,4.36,1.70,-4.66,-13.77,-86.05,-185.81,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5,Boron,B,5.62,2.08,-4.29,-16.73,-31.54,-148.65,-299.80,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6,Carbon,C,8.41,2.08,-6.26,-17.82,-36.14,-56.19,-228.29,-441.04,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7,Nitrogen,N,9.95,3.40,-7.27,-22.07,-38.53,-62.46,-87.68,-324.98,-609.56,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +8,Oxygen,O,3.87,2.79,-7.54,-24.37,-45.03,-66.17,-95.66,-126.01,-438.70,-805.35,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +9,Fluorine,F,3.70,-1.91,-10.41,-26.20,-48.84,-74.92,-100.69,-135.70,-171.18,-569.55,-1028.51,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +10,Neon,Ne,2.77,1.44,-10.78,-31.26,-52.21,-80.29,-111.67,-142.07,-182.60,-223.19,-717.46,-1279.01,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +11,Sodium,Na,4.51,0.41,-2.84,-26.21,-59.45,-85.27,-118.66,-155.29,-190.34,-236.38,-282.06,-882.49,-1556.91,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +12,Magnesium,Mg,5.58,1.88,-3.82,-11.34,-47.59,-94.70,-125.27,-164.02,-205.89,-245.49,-297.01,-347.78,-1064.65,-1862.24,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +13,Aluminum,Al,6.44,1.69,-3.21,-12.41,-23.64,-74.22,-136.91,-172.16,-216.13,-263.21,-307.40,-364.44,-420.38,-1263.99,-2195.06,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +14,Silicon,Si,7.97,1.59,-4.77,-12.25,-24.92,-39.32,-105.95,-186.02,-225.89,-275.02,-327.33,-376.25,-438.87,-499.89,-1480.53,-2555.41,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +15,Phosphorus,P,8.44,2.01,-5.62,-15.13,-24.99,-40.82,-58.23,-142.72,-242.00,-286.59,-340.87,-398.27,-451.93,-520.13,-586.27,-1714.33,-2943.38,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +16,Sulfur,S,3.59,1.28,-6.22,-16.85,-29.06,-41.01,-59.91,-80.32,-184.50,-304.85,-354.15,-413.53,-476.15,-534.62,-608.32,-679.61,-1965.40,-3358.98,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +17,Chlorine,Cl,2.51,-1.82,-8.29,-18.39,-31.71,-46.54,-60.63,-82.42,-105.61,-231.24,-374.17,-427.85,-492.46,-560.64,-624.35,-703.24,-779.58,-2233.96,-3802.41,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +18,Argon,Ar,-0.11,-0.65,-7.88,-21.69,-34.18,-50.28,-67.42,-83.01,-107.67,-133.89,-282.96,-450.57,-508.83,-578.61,-652.18,-720.92,-805.26,-886.40,-2519.46,-4273.56,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +19,Potassium,K,0.49,-1.47,-2.42,-17.99,-38.72,-53.36,-71.79,-91.03,-108.48,-136.22,-165.35,-339.81,-534.25,-597.05,-672.00,-750.60,-823.85,-914.55,-1000.70,-2822.10,-4772.42,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +20,Calcium,Ca,0.39,-2.48,-3.07,-8.99,-31.39,-59.09,-75.89,-96.64,-117.99,-137.22,-167.89,-199.91,-401.59,-624.55,-691.90,-772.10,-856.05,-934.25,-1030.50,-1122.40,-3143.30,-5299.33,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +21,Scandium,Sc,-,0.81,-3.38,-9.68,-18.78,-49.12,-82.57,-101.17,-124.34,-148.05,-169.07,-202.61,-237.49,-468.58,-722.03,-793.75,-879.15,-968.25,-1051.50,-1153.50,-1250.49,-3481.39,-5854.26,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +22,Titanium,Ti,-0.39,-1.12,-3.45,-10.20,-20.53,-35.38,-71.28,-109.42,-130.17,-155.60,-181.25,-204.01,-240.50,-278.29,-539.67,-825.47,-902.50,-992.95,-1087.50,-1176.00,-1283.50,-1385.70,-3837.20,-6437.41,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +23,Vanadium,V,-,-1.08,-3.64,-10.68,-21.96,-38.01,-56.00,-96.71,-139.37,-162.00,-189.60,-218.15,-243.10,-281.90,-322.19,-616.14,-936.00,-1018.00,-1114.00,-1214.00,-1307.50,-1420.50,-1527.80,-4210.45,-7048.71,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +24,Chromium,Cr,-1.64,-2.30,-3.72,-11.63,-23.72,-40.06,-59.31,-80.05,-125.41,-172.44,-197.00,-226.85,-257.60,-284.40,-326.40,-369.48,-697.38,-1053.80,-1141.00,-1242.00,-1347.50,-1446.00,-1565.00,-1677.70,-4601.55,-7688.26,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +25,Manganese,Mn,-0.24,-2.53,-3.72,-11.54,-24.65,-42.43,-61.80,-84.00,-107.40,-156.85,-208.15,-235.05,-267.15,-300.20,-329.00,-373.30,-419.08,-784.93,-1179.35,-1270.50,-1377.00,-1488.00,-1591.50,-1716.00,-1833.95,-5010.25,-8356.27,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +26,Iron,Fe,2.40,-4.00,-4.03,-12.05,-23.42,-42.73,-64.90,-87.05,-112.04,-138.02,-192.33,-247.85,-276.15,-310.50,-345.90,-376.60,-424.60,-473.13,-877.63,-1312.00,-1407.00,-1519.00,-1635.50,-1744.00,-1874.50,-1986.50,-5425.50,-9052.85,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +27,Cobalt,Co,6.73,-0.72,-4.27,-12.48,-25.29,-42.40,-65.40,-90.75,-115.45,-143.35,-171.97,-230.77,-290.20,-320.50,-357.50,-395.00,-427.50,-477.98,-529.27,-971.89,-1450.90,-1553.80,-1669.00,-1790.50,-1904.00,-2040.50,-2169.00,-5881.55,-9778.11,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +28,Nickel,Ni,4.80,1.68,-4.40,-12.90,-26.68,-45.05,-65.48,-92.03,-120.50,-147.50,-177.50,-208.80,-272.80,-336.50,-368.00,-407.00,-447.00,-481.50,-535.04,-589.07,-1074.03,-1594.50,-1702.00,-1825.00,-1952.50,-2071.00,-2213.00,-2347.10,-6344.00,-10532.10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +29,Copper,Cu,6.88,0.18,-4.48,-14.01,-28.57,-47.11,-68.59,-91.40,-121.00,-152.50,-182.50,-215.50,-248.65,-317.15,-385.00,-418.00,-459.50,-502.00,-538.50,-595.00,-651.79,-1183.79,-1750.50,-1860.00,-1988.00,-2121.00,-2245.00,-2393.00,-2532.75,-6824.94,-11315.00,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +30,Zinc,Zn,6.88,2.65,-4.70,-13.68,-28.84,-49.56,-71.00,-95.30,-121.00,-154.00,-188.50,-220.50,-256.00,-292.40,-365.25,-436.85,-472.00,-516.00,-560.50,-599.00,-658.50,-718.00,-1297.00,-1908.50,-2023.00,-2149.50,-2286.00,-2424.75,-2580.70,-2725.95,-7323.47,-12126.93,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +31,Gallium,Ga,8.03,2.07,-3.21,-13.26,-25.61,-47.36,-75.01,-99.36,-126.75,-155.40,-190.50,-227.50,-262.00,-299.50,-337.50,-413.60,-490.01,-528.57,-574.06,-619.90,-658.50,-721.35,-786.50,-1408.65,-2069.50,-2193.50,-2324.50,-2467.45,-2613.45,-2775.50,-2926.21,-7840.49,-12968.02,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +32,Germanium,Ge,8.76,0.97,-4.57,-11.92,-25.08,-39.97,-69.61,-104.70,-130.40,-160.65,-194.45,-232.30,-269.05,-306.00,-346.50,-387.00,-467.45,-547.60,-588.18,-635.93,-686.40,-727.00,-790.55,-858.77,-1530.27,-2242.05,-2371.50,-2507.00,-2656.10,-2809.55,-2977.95,-3134.15,-8375.86,-13838.42,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +33,Arsenic,As,9.18,1.87,-5.30,-14.19,-23.47,-39.24,-56.38,-95.12,-137.30,-163.50,-196.50,-230.00,-271.50,-314.50,-354.00,-396.50,-439.00,-523.80,-608.21,-650.86,-700.90,-751.45,-794.00,-862.85,-934.25,-1656.90,-2421.50,-2556.00,-2696.00,-2852.00,-3013.05,-3187.55,-3349.32,-8929.66,-14738.29,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +34,Selenium,Se,3.68,0.70,-5.88,-15.47,-26.01,-36.88,-55.62,-75.00,-118.55,-169.70,-201.50,-237.00,-273.00,-316.95,-362.95,-404.50,-449.50,-495.00,-583.75,-671.94,-716.59,-768.90,-821.90,-866.40,-938.30,-1012.98,-1788.53,-2607.35,-2747.00,-2892.00,-3055.00,-3223.90,-3404.40,-3571.76,-9502.01,-15667.79,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +35,Bromine,Br,4.26,-0.88,-7.59,-16.70,-28.80,-41.65,-53.50,-74.15,-95.80,-147.90,-208.40,-242.50,-281.00,-319.50,-365.50,-414.50,-458.50,-505.50,-553.50,-646.65,-738.65,-785.40,-839.90,-895.40,-941.90,-1016.80,-1094.88,-1925.08,-2800.50,-2945.00,-3094.50,-3265.00,-3442.05,-3629.05,-3801.99,-10093.00,-16627.07,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +36,Krypton,Kr,2.41,0.47,-7.00,-19.18,-30.65,-44.73,-58.60,-71.60,-94.75,-118.40,-178.33,-249.53,-288.10,-329.00,-370.50,-419.00,-469.50,-516.50,-566.50,-616.50,-713.50,-809.50,-858.50,-910.50,-967.50,-1024.50,-1101.00,-1178.15,-2066.65,-2999.00,-3148.50,-3304.00,-3482.50,-3668.00,-3861.50,-4040.04,-10702.75,-17616.31,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +37,Rubidium,Rb,0.43,-0.37,-2.33,-15.73,-33.64,-46.30,-61.80,-77.70,-91.80,-117.60,-143.00,-213.55,-295.10,-334.55,-378.00,-421.50,-472.50,-526.00,-575.50,-627.50,-680.00,-781.50,-881.15,-932.10,-991.45,-1052.00,-1102.50,-1183.75,-1268.53,-2213.93,-3207.15,-3361.50,-3521.00,-3707.50,-3901.50,-4101.00,-4285.43,-11331.37,-18635.70,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +38,Strontium,Sr,0.56,-2.34,-2.88,-8.36,-26.96,-49.95,-64.30,-81.20,-98.40,-114.15,-142.15,-169.50,-250.55,-343.05,-385.00,-431.00,-476.50,-530.50,-587.00,-638.50,-693.50,-748.00,-853.00,-957.05,-1010.05,-1071.50,-1135.00,-1188.00,-1272.20,-1360.30,-2365.95,-3420.85,-3580.50,-3747.00,-3941.50,-4142.50,-4348.50,-4538.70,-11978.99,-19685.41,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +39,Yttrium,Y,2.95,-1.46,-3.27,-9.22,-16.37,-40.56,-68.80,-85.00,-104.50,-122.50,-137.60,-168.60,-198.50,-290.00,-394.00,-438.50,-487.50,-535.50,-591.50,-650.50,-705.00,-761.50,-818.50,-928.50,-1035.95,-1091.05,-1155.10,-1221.50,-1276.50,-1363.80,-1455.36,-2523.01,-3641.45,-3806.00,-3976.00,-4179.50,-4391.50,-4604.00,-4799.87,-12645.72,-20765.63,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +40,Zirconium,Zr,1.35,0.69,-3.53,-9.87,-18.05,-28.67,-57.34,-88.31,-104.14,-122.85,-143.35,-162.51,-193.46,-225.58,-331.13,-448.00,-495.00,-546.50,-597.50,-656.00,-717.50,-774.00,-833.00,-892.50,-1007.00,-1118.35,-1175.05,-1241.20,-1310.50,-1368.00,-1458.55,-1553.74,-2685.19,-3869.00,-4038.50,-4213.50,-4426.50,-4648.50,-4867.50,-5068.97,-13331.70,-21876.57,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +41,Niobium,Nb,3.14,-0.76,-3.83,-10.38,-19.52,-31.67,-44.43,-76.30,-113.53,-130.50,-147.60,-169.60,-190.14,-223.19,-257.35,-375.55,-506.25,-555.50,-608.50,-662.00,-723.00,-787.00,-846.50,-908.50,-970.00,-1088.00,-1203.30,-1262.15,-1330.85,-1403.50,-1469.50,-1562.95,-1655.43,-2852.53,-4103.55,-4278.00,-4454.50,-4677.50,-4913.00,-5138.00,-5345.53,-14037.06,-23018.42,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +42,Molybdenum,Mo,3.98,-0.56,-3.92,-11.63,-21.65,-36.77,-50.45,-61.66,-97.25,-134.63,-153.86,-175.26,-197.85,-219.79,-254.69,-290.85,-423.30,-557.00,-603.00,-669.00,-734.50,-800.00,-867.50,-935.00,-994.00,-1051.00,-1172.50,-1293.00,-1355.00,-1418.00,-1492.00,-1568.00,-1665.55,-1760.52,-3024.97,-4344.50,-4524.00,-4709.00,-4942.00,-5185.50,-5417.50,-5630.60,-14761.92,-24191.40,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +43,Technetium,Tc,6.70,-1.42,-3.91,-11.27,-22.40,-35.27,-49.00,-64.50,-80.00,-119.00,-159.50,-179.45,-201.95,-226.50,-250.54,-286.54,-324.78,-471.28,-629.50,-684.00,-743.00,-801.00,-866.50,-936.00,-1000.00,-1067.00,-1134.00,-1260.00,-1382.80,-1445.55,-1519.25,-1598.50,-1663.50,-1763.50,-1869.14,-3202.64,-4593.00,-4777.50,-4967.00,-5210.50,-5465.50,-5704.00,-5923.20,-15506.46,-25395.76,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +44,Ruthenium,Ru,15.66,0.17,-4.22,-12.06,-22.62,-36.74,-52.00,-67.50,-84.50,-101.50,-144.20,-188.20,-208.95,-232.45,-258.00,-283.45,-321.95,-362.13,-523.13,-696.50,-753.50,-814.50,-875.00,-943.00,-1014.50,-1081.50,-1151.00,-1220.00,-1350.00,-1476.85,-1541.85,-1618.00,-1701.00,-1768.50,-1871.50,-1981.02,-3385.52,-4848.50,-5037.50,-5233.00,-5488.50,-5754.50,-5999.50,-6224.36,-16270.81,-26631.70,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +45,Rhodium,Rh,7.30,3.11,-4.30,-12.77,-24.57,-36.53,-52.50,-71.50,-88.50,-106.05,-125.05,-171.26,-217.76,-240.05,-264.55,-291.50,-318.79,-360.29,-402.50,-577.50,-766.50,-825.50,-889.00,-952.50,-1022.50,-1096.00,-1166.50,-1238.00,-1309.00,-1444.00,-1574.45,-1641.25,-1720.30,-1807.00,-1877.00,-1983.00,-2096.11,-3573.61,-5110.50,-5304.50,-5503.00,-5770.00,-6050.50,-6302.50,-6533.63,-17055.12,-27899.47,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +46,Palladium,Pd,5.75,1.75,-4.44,-13.88,-26.18,-39.47,-53.50,-72.55,-92.55,-110.50,-130.50,-150.50,-199.29,-249.29,-273.00,-298.50,-326.50,-355.55,-398.05,-442.50,-634.00,-839.50,-901.00,-966.50,-1032.50,-1105.00,-1181.50,-1254.00,-1328.00,-1402.00,-1541.00,-1675.10,-1743.75,-1825.15,-1915.50,-1989.00,-2098.50,-2214.93,-3766.43,-5379.50,-5579.00,-5781.50,-6061.00,-6355.50,-6614.00,-6851.05,-17859.56,-29199.32,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +47,Silver,Ag,7.54,0.43,-4.44,-14.53,-28.15,-41.92,-57.00,-73.50,-94.00,-115.50,-135.00,-156.00,-177.50,-229.73,-282.73,-307.50,-334.00,-364.00,-394.72,-438.72,-484.94,-692.94,-915.50,-979.50,-1047.50,-1115.50,-1190.00,-1269.50,-1345.00,-1421.00,-1497.50,-1641.00,-1778.75,-1849.25,-1933.50,-2028.00,-2104.00,-2216.50,-2336.99,-3964.99,-5655.50,-5859.50,-6068.00,-6360.50,-6667.50,-6933.00,-7176.65,-18684.31,-30531.51,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +48,Cadmium,Cd,8.34,2.44,-4.50,-12.95,-27.19,-44.24,-59.45,-77.45,-96.00,-117.55,-140.05,-161.50,-184.00,-206.50,-261.50,-317.00,-343.50,-371.50,-403.00,-436.78,-482.78,-529.60,-754.60,-994.50,-1060.50,-1131.00,-1202.00,-1278.50,-1360.00,-1438.50,-1517.50,-1596.50,-1743.50,-1884.95,-1957.90,-2044.45,-2143.00,-2222.50,-2338.50,-2462.81,-4168.81,-5939.00,-6148.00,-6358.50,-6665.00,-6989.50,-7261.50,-7510.97,-19529.50,-31896.28,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +49,Indium,In,10.25,0.65,-3.09,-12.33,-23.45,-41.02,-61.65,-79.65,-99.50,-119.55,-143.05,-167.00,-189.50,-213.50,-237.50,-295.00,-354.50,-382.00,-410.50,-443.50,-479.56,-528.56,-576.69,-818.19,-1076.00,-1145.00,-1218.00,-1291.50,-1370.50,-1454.50,-1535.50,-1617.00,-1698.50,-1849.50,-1994.75,-2069.75,-2159.00,-2262.00,-2345.00,-2464.00,-2591.89,-4377.39,-6228.50,-6442.50,-6662.00,-6983.00,-7319.00,-7598.00,-7853.57,-20395.36,-33293.95,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +50,Tin,Sn,9.03,1.69,-4.23,-10.99,-22.57,-35.62,-56.51,-83.14,-103.45,-123.95,-145.50,-170.00,-196.00,-220.00,-245.00,-270.00,-330.50,-393.00,-422.00,-451.50,-486.00,-521.50,-572.50,-625.18,-884.68,-1161.00,-1232.00,-1308.00,-1384.00,-1464.50,-1552.00,-1636.00,-1719.50,-1803.50,-1959.00,-2108.05,-2184.55,-2276.50,-2384.50,-2471.00,-2593.00,-2724.75,-4591.75,-6526.00,-6745.00,-6969.50,-7305.50,-7660.50,-7946.50,-8204.98,-21282.05,-34724.77,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +51,Antimony,Sb,8.35,2.01,-4.82,-12.62,-20.97,-34.75,-50.10,-82.00,-112.50,-128.00,-150.50,-173.50,-199.50,-226.00,-251.50,-278.50,-304.50,-368.50,-433.50,-463.00,-494.50,-531.00,-568.00,-620.50,-675.13,-953.63,-1249.50,-1322.50,-1400.50,-1479.50,-1562.00,-1652.00,-1739.50,-1825.00,-1911.50,-2072.00,-2228.00,-2307.50,-2388.50,-2497.50,-2610.50,-2734.50,-2857.50,-4807.00,-6821.50,-7048.00,-7278.50,-7638.50,-8013.50,-8297.50,-8562.24,-22189.76,-36189.04,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +52,Tellurium,Te,6.69,0.95,-5.49,-13.80,-23.28,-32.69,-48.08,-64.73,-103.85,-140.00,-155.00,-179.05,-203.05,-230.00,-258.50,-285.50,-313.50,-341.00,-407.50,-476.00,-506.50,-538.50,-577.00,-616.00,-671.00,-727.56,-1025.06,-1340.50,-1416.00,-1496.50,-1578.00,-1662.50,-1755.00,-1846.00,-1934.00,-2022.50,-2187.50,-2347.50,-2429.00,-2512.00,-2626.00,-2744.00,-2871.00,-2997.50,-5031.50,-7132.50,-7364.00,-7599.50,-7977.00,-8369.50,-8660.00,-8930.92,-23118.68,-37687.04,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +53,Iodine,I,8.35,-1.62,-6.75,-14.79,-26.07,-36.68,-45.94,-62.94,-80.99,-119.21,-160.91,-184.00,-208.95,-233.95,-263.00,-293.00,-321.00,-350.00,-379.00,-449.00,-520.00,-552.00,-585.00,-625.00,-666.00,-722.50,-781.38,-1098.88,-1434.50,-1512.50,-1596.00,-1679.50,-1766.00,-1861.50,-1955.00,-2046.00,-2137.00,-2306.00,-2470.50,-2554.00,-2639.00,-2758.00,-2883.00,-3013.00,-3140.75,-5261.25,-7468.50,-7700.00,-7922.00,-8322.50,-8734.00,-9031.50,-9308.55,-24069.05,-39219.20,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +54,Xenon,Xe,7.86,-1.47,-6.07,-16.55,-26.55,-37.16,-48.17,-60.42,-79.15,-98.79,-142.91,-190.92,-215.51,-242.01,-268.00,-297.50,-328.50,-358.50,-389.00,-417.00,-489.50,-565.50,-599.00,-633.00,-675.00,-718.00,-777.00,-837.52,-1175.02,-1532.00,-1612.00,-1697.50,-1784.00,-1872.50,-1971.00,-2068.00,-2161.00,-2254.50,-2428.00,-2596.50,-2681.50,-2768.50,-2893.00,-3021.50,-3155.50,-3288.40,-5496.90,-7774.50,-8016.50,-8263.00,-8676.50,-9107.00,-9412.00,-9695.70,-25041.06,-40785.72,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +55,Cesium,Cs,2.34,-2.04,-2.18,-13.53,-28.18,-38.10,-49.50,-62.55,-76.00,-96.50,-117.85,-169.46,-223.15,-247.00,-275.00,-302.50,-334.00,-367.00,-397.50,-429.00,-460.50,-536.50,-613.00,-647.50,-683.00,-726.50,-772.00,-833.00,-895.54,-1254.04,-1632.00,-1714.50,-1802.50,-1892.00,-1982.50,-2083.00,-2183.50,-2279.50,-2375.50,-2552.50,-2725.00,-2813.00,-2902.00,-3031.50,-3166.00,-3303.00,-3438.50,-5737.00,-8106.50,-8354.00,-8605.00,-9038.00,-9489.50,-9801.50,-10091.39,-26034.93,-42387.03,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +56,Barium,Ba,-2.88,-3.10,-2.68,-7.61,-22.92,-41.44,-52.52,-64.50,-78.50,-93.50,-115.77,-138.53,-193.76,-254.05,-281.55,-310.50,-339.50,-372.00,-406.00,-438.50,-471.50,-504.00,-583.00,-662.50,-698.00,-734.50,-780.50,-827.50,-890.50,-955.80,-1335.80,-1735.50,-1820.00,-1911.00,-2002.50,-2094.50,-2199.00,-2302.50,-2400.50,-2499.50,-2680.50,-2857.50,-2947.50,-3037.50,-3173.50,-3314.50,-3456.50,-3595.00,-5983.00,-8445.50,-8698.00,-8954.00,-9408.00,-9881.00,-10199.50,-10496.21,-27050.89,-44023.42,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +57,Lanthanum,La,2.11,-0.45,-3.03,-8.32,-15.12,-34.56,-55.78,-67.80,-81.00,-96.50,-112.00,-135.21,-160.10,-221.89,-289.00,-317.50,-348.00,-378.50,-412.00,-447.50,-481.00,-515.50,-549.50,-631.00,-713.50,-750.50,-788.00,-835.50,-885.50,-950.50,-1017.05,-1419.55,-1842.00,-1929.00,-2021.50,-2115.50,-2210.50,-2318.00,-2425.00,-2525.00,-2625.50,-2812.00,-2993.00,-3084.50,-3177.50,-3319.00,-3465.50,-3609.50,-3752.00,-6234.50,-8791.50,-9049.00,-9310.50,-9786.50,-10281.00,-10607.50,-10911.20,-28089.20,-45695.30,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +58,Cerium,Ce,-3.62,-3.63,-3.09,-8.19,-15.52,-28.48,-51.15,-71.58,-84.30,-98.50,-115.50,-132.50,-156.00,-182.12,-252.12,-326.00,-355.50,-387.00,-419.00,-453.50,-490.50,-526.00,-561.00,-596.00,-681.00,-767.00,-804.50,-843.00,-893.00,-944.50,-1012.50,-1081.77,-1505.77,-1951.00,-2040.50,-2136.00,-2232.50,-2329.00,-2439.00,-2550.00,-2653.00,-2756.00,-2946.50,-3131.50,-3225.00,-3320.00,-3468.00,-3621.00,-3768.50,-3914.00,-6491.50,-9144.50,-9407.00,-9674.00,-10172.50,-10691.00,-11025.00,-11334.93,-29150.08,-47403.01,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +59,Praseodymium,Pr,-2.16,-2.68,-3.22,-8.01,-16.09,-30.30,-48.26,-69.77,-89.50,-104.50,-121.50,-139.50,-155.00,-179.00,-206.51,-283.51,-364.00,-395.00,-428.50,-461.50,-497.00,-535.00,-572.00,-608.50,-645.00,-733.00,-821.50,-860.00,-900.00,-952.50,-1006.50,-1076.00,-1146.97,-1594.47,-2063.50,-2155.00,-2253.00,-2352.00,-2450.50,-2564.50,-2678.50,-2783.50,-2889.50,-3084.00,-3273.00,-3369.00,-3465.50,-3620.50,-3780.50,-3931.00,-4080.00,-6754.00,-9505.00,-9772.50,-10044.00,-10567.00,-11110.50,-11451.50,-11768.45,-30233.80,-49146.96,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +60,Neodymium,Nd,8.44,-2.18,-2.85,-8.12,-16.41,-31.25,-50.20,-72.00,-91.50,-106.50,-125.00,-144.00,-160.00,-181.50,-208.00,-232.00,-316.00,-404.50,-436.50,-471.00,-505.50,-542.00,-582.00,-620.00,-658.00,-696.00,-786.50,-877.50,-917.50,-958.50,-1013.50,-1070.50,-1141.50,-1214.71,-1686.21,-2179.00,-2272.50,-2373.00,-2475.00,-2576.00,-2692.50,-2809.50,-2917.50,-3026.00,-3224.50,-3418.00,-3516.00,-3614.50,-3776.50,-3944.00,-4097.50,-4250.00,-7022.00,-9872.00,-10145.00,-10421.50,-10969.50,-11539.00,-11888.00,-12211.83,-31340.62,-50927.58,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +61,Promethium,Pm,12.44,-2.70,-2.86,-8.24,-16.60,-31.70,-51.40,-73.35,-93.00,-108.50,-127.00,-146.50,-164.50,-188.00,-215.50,-238.50,-258.50,-349.50,-446.00,-479.50,-515.50,-551.50,-589.00,-630.00,-670.00,-709.50,-748.50,-841.50,-936.00,-977.00,-1019.00,-1076.50,-1135.50,-1209.50,-1284.85,-1779.85,-2297.50,-2393.50,-2496.00,-2600.50,-2703.50,-2823.50,-2944.50,-3053.50,-3164.50,-3369.00,-3566.00,-3665.50,-3767.00,-3936.00,-4111.00,-4268.50,-4423.50,-7295.50,-10246.50,-10524.50,-10806.50,-11380.50,-11977.50,-12334.00,-12664.63,-32470.78,-52745.20,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +62,Samarium,Sm,4.03,-2.12,-2.91,-8.36,-17.24,-32.40,-52.03,-76.33,-96.50,-110.50,-129.50,-149.50,-168.50,-193.50,-222.50,-247.00,-266.50,-291.25,-390.25,-490.00,-524.50,-562.00,-599.00,-637.50,-680.00,-722.00,-762.00,-802.00,-899.00,-996.00,-1038.00,-1081.50,-1141.50,-1203.00,-1279.00,-1356.80,-1876.30,-2418.50,-2517.50,-2622.50,-2729.00,-2834.50,-2957.50,-3082.50,-3195.00,-3308.00,-3516.00,-3717.50,-3819.50,-3922.00,-4099.00,-4282.00,-4442.50,-4601.50,-7574.50,-10628.00,-10911.00,-11198.50,-11800.50,-12426.00,-12790.00,-13127.43,-33624.48,-54600.17,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +63,Europium,Eu,5.25,-3.08,-2.90,-8.46,-18.09,-33.81,-52.85,-75.50,-96.50,-112.50,-132.00,-152.50,-172.00,-198.00,-228.00,-253.00,-272.00,-296.00,-327.70,-431.20,-535.50,-571.50,-610.00,-648.50,-688.00,-732.00,-775.00,-816.50,-858.50,-958.00,-1057.50,-1101.00,-1145.50,-1208.00,-1272.50,-1351.00,-1431.03,-1975.53,-2543.00,-2644.00,-2752.00,-2860.50,-2968.00,-3095.00,-3223.50,-3338.50,-3454.00,-3666.50,-3872.00,-3976.00,-4081.00,-4265.50,-4455.00,-4619.50,-4783.50,-7859.00,-11016.50,-11305.00,-11598.00,-12228.50,-12884.00,-13256.00,-13600.29,-34802.24,-56493.25,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +64,Gadolinium,Gd,5.38,-3.01,-3.15,-9.12,-16.36,-32.32,-54.38,-76.88,-97.50,-114.50,-133.50,-154.50,-174.00,-198.00,-229.50,-257.00,-278.00,-303.50,-335.50,-366.00,-472.50,-583.00,-620.00,-659.50,-699.50,-740.00,-785.50,-830.50,-873.00,-916.00,-1018.50,-1121.00,-1165.50,-1211.00,-1277.00,-1344.50,-1424.50,-1506.68,-2076.68,-2670.50,-2773.50,-2884.00,-2995.50,-3105.00,-3236.00,-3368.00,-3487.00,-3605.00,-3820.00,-4030.00,-4135.50,-4242.50,-4436.00,-4635.50,-4803.50,-4969.50,-8149.00,-11412.50,-11706.50,-12004.00,-12665.00,-13352.00,-13732.00,-14083.79,-36004.24,-58424.71,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +65,Terbium,Tb,2.71,-2.94,-3.15,-8.69,-16.72,-30.85,-53.15,-78.25,-99.00,-116.50,-134.00,-155.50,-177.00,-201.00,-233.00,-260.00,-282.00,-309.50,-341.50,-375.50,-409.80,-519.80,-632.00,-670.50,-711.00,-752.00,-794.00,-841.00,-887.50,-931.50,-975.50,-1081.00,-1186.50,-1232.00,-1278.50,-1347.00,-1418.00,-1501.00,-1584.69,-2180.19,-2801.00,-2906.50,-3019.50,-3133.50,-3244.50,-3379.00,-3515.50,-3635.50,-3756.00,-3976.50,-4190.50,-4298.50,-4407.50,-4610.00,-4818.50,-4990.00,-5160.00,-8445.00,-11815.00,-12114.50,-12417.50,-13110.50,-13830.50,-14218.50,-14577.50,-37230.13,-60394.45,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +66,Dysprosium,Dy,2.35,0.07,-3.15,-8.80,-17.24,-32.14,-51.78,-77.54,-101.50,-118.50,-139.50,-161.00,-181.00,-208.00,-241.50,-269.00,-289.50,-316.00,-349.00,-382.50,-415.00,-448.00,-564.50,-683.00,-722.50,-764.50,-806.50,-849.50,-898.00,-946.50,-991.50,-1036.50,-1145.50,-1253.50,-1300.00,-1348.00,-1419.50,-1494.00,-1579.00,-1664.87,-2286.87,-2934.50,-3042.50,-3157.50,-3274.00,-3388.00,-3526.00,-3666.00,-3788.50,-3911.00,-4136.50,-4355.00,-4465.00,-4576.00,-4787.00,-5005.50,-5181.00,-5354.00,-8746.50,-12225.50,-12530.00,-12838.00,-13565.00,-14319.50,-14715.50,-15082.03,-38482.31,-62405.03,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +67,Holmium,Ho,3.86,-1.54,-3.18,-8.91,-17.32,-32.67,-53.22,-79.47,-103.50,-120.50,-142.00,-164.50,-185.00,-212.50,-246.00,-273.50,-294.50,-322.50,-356.50,-390.50,-424.50,-458.00,-492.50,-612.50,-735.00,-776.00,-819.50,-863.50,-907.00,-957.00,-1007.00,-1053.00,-1099.50,-1211.00,-1323.00,-1370.50,-1419.00,-1494.00,-1571.50,-1658.50,-1746.29,-2395.79,-3071.50,-3181.50,-3298.50,-3417.50,-3534.00,-3676.00,-3820.00,-3944.50,-4070.00,-4300.00,-4522.50,-4634.50,-4747.50,-4968.50,-5196.50,-5376.00,-5552.50,-9053.00,-12642.50,-12953.00,-13266.50,-14028.00,-14818.50,-15223.00,-15596.89,-39759.10,-64454.61,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +68,Erbium,Er,2.95,0.47,-3.21,-9.02,-17.34,-32.72,-53.90,-80.55,-105.00,-122.50,-144.50,-167.50,-189.00,-218.00,-251.50,-279.00,-300.50,-328.00,-363.00,-398.00,-432.50,-468.00,-503.00,-537.50,-662.50,-790.00,-831.50,-876.00,-921.00,-966.00,-1017.50,-1069.00,-1117.00,-1165.00,-1279.00,-1393.00,-1442.00,-1492.00,-1570.50,-1651.50,-1740.50,-1831.00,-2508.00,-3211.00,-3323.00,-3443.00,-3564.50,-3683.00,-3829.00,-3977.00,-4104.00,-4232.00,-4466.50,-4693.50,-4807.00,-4922.00,-5153.50,-5392.00,-5575.00,-5755.00,-9366.50,-13067.50,-13382.50,-13701.50,-14500.50,-15328.50,-15741.00,-16122.78,-41061.40,-66545.05,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +69,Thulium,Tm,11.69,1.08,-3.10,-9.12,-17.87,-33.19,-54.07,-81.72,-107.00,-124.50,-146.50,-170.00,-192.50,-222.00,-256.50,-284.50,-306.00,-334.50,-369.50,-405.50,-442.00,-480.00,-515.00,-550.00,-586.50,-714.00,-845.50,-888.50,-934.50,-981.00,-1027.00,-1080.00,-1133.50,-1182.00,-1231.00,-1348.50,-1466.00,-1516.00,-1566.50,-1648.50,-1733.50,-1825.00,-1917.10,-2622.60,-3354.50,-3468.50,-3590.50,-3714.00,-3835.00,-3985.00,-4137.00,-4267.00,-4398.00,-4636.50,-4867.00,-4983.00,-5100.50,-5342.00,-5591.50,-5778.50,-5962.00,-9685.00,-13499.00,-13819.50,-14144.00,-14981.50,-15849.50,-16268.00,-16657.17,-42389.80,-68676.30,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +70,Ytterbium,Yb,12.57,2.81,-3.13,-9.22,-18.61,-34.31,-54.57,-82.29,-108.00,-126.00,-149.00,-172.50,-195.50,-226.50,-261.50,-290.00,-312.50,-342.00,-378.00,-413.50,-450.00,-487.00,-522.50,-560.00,-600.00,-635.50,-766.50,-903.00,-947.50,-995.00,-1042.00,-1089.50,-1144.50,-1199.50,-1249.50,-1299.50,-1420.00,-1540.00,-1591.00,-1643.00,-1728.50,-1817.00,-1911.50,-2007.20,-2739.70,-3499.00,-3616.00,-3741.00,-3867.00,-3990.00,-4144.50,-4301.00,-4433.00,-4566.00,-4809.00,-5044.50,-5162.50,-5281.50,-5535.00,-5795.50,-5985.50,-6173.50,-10010.00,-13938.50,-14264.00,-14593.50,-15471.50,-16380.50,-16810.00,-17207.72,-43744.24,-70848.92,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +71,Lutetium,Lu,10.02,2.59,-2.88,-9.66,-17.43,-33.10,-56.03,-82.40,-107.50,-126.50,-147.50,-172.00,-195.00,-221.50,-257.00,-290.50,-316.50,-344.50,-380.00,-418.50,-457.00,-498.00,-540.00,-580.00,-620.00,-655.00,-691.50,-827.00,-963.00,-1008.50,-1056.50,-1105.50,-1154.00,-1210.00,-1267.00,-1318.50,-1370.00,-1493.00,-1616.00,-1668.50,-1721.50,-1811.00,-1904.00,-2000.00,-2096.25,-2857.75,-3648.00,-3767.00,-3894.00,-4023.00,-4148.50,-4307.00,-4467.50,-4602.50,-4738.00,-4985.50,-5225.00,-5345.00,-5466.50,-5731.00,-6003.50,-6198.00,-6389.00,-10340.00,-14385.00,-14716.00,-15050.50,-15970.50,-16925.00,-17365.00,-17769.03,-45125.48,-73063.86,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +72,Hafnium,Hf,8.74,1.79,-3.47,-10.91,-19.15,-28.32,-50.85,-83.19,-108.00,-128.00,-147.50,-172.00,-198.00,-219.50,-250.00,-290.00,-322.00,-346.50,-379.00,-419.50,-460.50,-500.50,-540.00,-585.00,-630.00,-670.00,-710.00,-751.00,-887.00,-1024.50,-1070.50,-1120.00,-1170.50,-1220.00,-1278.00,-1336.50,-1389.50,-1442.00,-1568.00,-1694.00,-1747.50,-1801.50,-1895.00,-1992.50,-2090.50,-2188.95,-2979.95,-3799.50,-3921.00,-4051.00,-4182.00,-4309.00,-4472.50,-4638.00,-4774.50,-4913.00,-5165.00,-5409.00,-5531.50,-5654.00,-5931.00,-6216.50,-6414.50,-6609.50,-10676.00,-14838.50,-15175.00,-15515.50,-16480.00,-17480.00,-17930.00,-18341.16,-46534.13,-75321.87,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +73,Tantalum,Ta,9.13,0.64,-3.94,-11.87,-19.65,-29.05,-41.64,-71.14,-106.51,-129.00,-149.00,-169.50,-196.50,-224.00,-248.50,-283.00,-321.00,-350.50,-379.50,-417.50,-460.50,-506.00,-550.00,-595.00,-640.00,-680.00,-720.00,-765.00,-811.00,-948.00,-1087.00,-1135.00,-1185.50,-1236.50,-1287.50,-1347.50,-1408.00,-1462.00,-1516.00,-1645.00,-1773.50,-1828.00,-1883.50,-1981.50,-2083.00,-2183.50,-2284.35,-3106.70,-3956.35,-4078.50,-4210.50,-4344.00,-4473.50,-4641.00,-4811.00,-4950.50,-5091.50,-5348.00,-5596.00,-5720.00,-5846.00,-6135.50,-6433.00,-6635.50,-6834.50,-11018.50,-15299.00,-15640.50,-15985.00,-16995.00,-18045.00,-18505.00,-18924.26,-47970.27,-77623.36,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +74,Tungsten,W,3.79,2.14,-4.35,-11.98,-21.06,-32.12,-44.90,-58.18,-93.39,-131.61,-150.70,-169.60,-193.95,-220.25,-244.95,-274.50,-308.00,-343.60,-374.90,-404.30,-441.40,-482.35,-523.00,-568.95,-617.55,-663.30,-710.05,-759.25,-808.90,-857.40,-1006.80,-1156.10,-1205.20,-1256.90,-1309.25,-1360.95,-1423.35,-1486.15,-1540.75,-1595.55,-1725.90,-1856.35,-1911.75,-1967.70,-2071.95,-2179.55,-2282.00,-2384.06,-3235.56,-4118.50,-4244.50,-4377.50,-4512.00,-4643.50,-4818.00,-4995.00,-5136.00,-5278.50,-5533.50,-5779.50,-5905.00,-6031.50,-6346.50,-6667.50,-6867.50,-7065.00,-11348.00,-15731.00,-16074.00,-16420.00,-17532.00,-18674.00,-19117.00,-19524.37,-49434.34,-79968.77,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +75,Rhenium,Re,3.38,0.15,-4.00,-12.22,-21.80,-33.05,-45.50,-59.45,-74.86,-113.56,-154.70,-176.00,-197.50,-222.00,-252.00,-279.50,-310.50,-353.50,-390.00,-416.00,-452.50,-498.00,-545.00,-595.00,-645.00,-695.00,-740.00,-785.00,-835.00,-885.00,-931.50,-1073.50,-1218.00,-1268.00,-1321.50,-1375.50,-1428.00,-1492.00,-1556.50,-1612.00,-1668.50,-1804.00,-1939.00,-1995.50,-2052.50,-2160.00,-2271.00,-2376.00,-2482.27,-3364.27,-4274.50,-4401.50,-4538.50,-4677.00,-4811.00,-4988.00,-5167.50,-5312.00,-5458.00,-5723.50,-5980.50,-6109.00,-6238.00,-6555.00,-6881.00,-7091.00,-7298.00,-11723.00,-16245.00,-16595.00,-16950.00,-18060.00,-19210.00,-19685.00,-20123.70,-50927.15,-82359.60,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +76,Osmium,Os,7.03,-1.18,-4.76,-12.72,-21.00,-33.00,-48.00,-62.55,-77.60,-93.56,-135.36,-179.35,-201.50,-224.00,-252.00,-284.50,-310.00,-343.50,-388.50,-423.00,-453.00,-495.00,-545.00,-595.00,-645.00,-695.00,-745.00,-795.00,-845.00,-895.00,-945.00,-992.50,-1138.50,-1286.50,-1337.50,-1392.00,-1447.00,-1501.00,-1567.00,-1633.00,-1690.00,-1748.00,-1886.00,-2024.00,-2082.00,-2140.00,-2252.00,-2368.00,-2476.00,-2583.75,-3494.75,-4437.50,-4568.00,-4707.00,-4848.00,-4984.50,-5166.00,-5350.50,-5498.00,-5646.00,-5916.00,-6177.50,-6308.00,-6439.50,-6771.00,-7112.00,-7326.50,-7539.00,-12085.00,-16730.00,-17085.00,-17445.00,-18610.00,-19815.00,-20300.00,-20745.30,-52448.40,-84795.30,,,,,,,,,,,,,,,,,,,,,,,,,,,, +77,Iridium,Ir,8.22,0.39,-5.27,-12.98,-22.50,-34.00,-48.50,-64.50,-80.50,-97.00,-114.00,-158.90,-205.90,-228.50,-252.00,-283.50,-316.00,-342.50,-381.50,-426.00,-458.50,-491.00,-535.00,-585.00,-640.00,-695.00,-745.00,-795.00,-845.00,-895.00,-950.00,-1005.00,-1055.00,-1205.50,-1356.00,-1408.50,-1464.50,-1520.50,-1575.50,-1643.50,-1711.50,-1770.00,-1829.00,-1970.00,-2111.00,-2170.00,-2229.50,-2346.50,-2467.50,-2578.00,-2688.20,-3630.20,-4604.00,-4737.00,-4879.00,-5022.00,-5160.50,-5347.50,-5537.50,-5687.00,-5837.50,-6112.50,-6378.00,-6510.50,-6644.00,-6991.00,-7347.50,-7565.50,-7780.00,-12445.00,-17215.00,-17580.00,-17945.00,-19165.00,-20430.00,-20925.00,-21378.30,-53997.75,-87276.10,,,,,,,,,,,,,,,,,,,,,,,,,,, +78,Platinum,Pt,6.96,0.53,-5.54,-13.76,-23.78,-36.00,-49.50,-65.50,-83.00,-100.00,-117.50,-135.45,-182.65,-232.70,-257.00,-281.00,-312.50,-345.00,-375.00,-418.50,-462.00,-493.00,-528.50,-580.00,-635.00,-685.00,-735.00,-790.00,-845.00,-900.00,-955.00,-1010.00,-1065.00,-1115.00,-1271.00,-1428.00,-1481.50,-1538.00,-1595.50,-1652.00,-1721.50,-1792.00,-1852.00,-1912.00,-2056.00,-2199.50,-2259.50,-2320.50,-2443.00,-2569.50,-2682.50,-2794.90,-3771.40,-4777.00,-4909.50,-5054.00,-5199.00,-5340.00,-5532.00,-5727.00,-5879.50,-6032.50,-6311.50,-6581.50,-6716.50,-6852.50,-7215.00,-7586.00,-7810.00,-8030.00,-12820.00,-17715.00,-18085.00,-18455.00,-19735.00,-21060.00,-21560.00,-22022.85,-55580.44,-89807.59,,,,,,,,,,,,,,,,,,,,,,,,,, +79,Gold,Au,8.28,0.40,-5.77,-14.71,-25.10,-37.50,-52.50,-67.00,-84.00,-103.00,-121.05,-139.55,-158.60,-184.10,-237.50,-287.00,-311.50,-344.50,-378.50,-412.50,-460.00,-503.50,-535.00,-575.00,-625.00,-680.00,-735.00,-790.00,-845.00,-900.00,-960.00,-1015.00,-1070.00,-1125.00,-1180.00,-1342.50,-1501.00,-1555.50,-1614.00,-1673.00,-1730.00,-1801.50,-1874.50,-1935.50,-1996.50,-2143.50,-2290.50,-2351.50,-2413.00,-2541.50,-2674.00,-2789.00,-2905.50,-3914.50,-4950.50,-5084.50,-5231.50,-5379.50,-5523.00,-5720.00,-5920.00,-6075.00,-6230.50,-6514.50,-6789.00,-6925.50,-7063.50,-7445.00,-7835.00,-8060.00,-8285.00,-13200.00,-18220.00,-18595.00,-18970.00,-20310.00,-21695.00,-22210.00,-22684.06,-57191.97,-92385.06,,,,,,,,,,,,,,,,,,,,,,,,, +80,Mercury,Hg,9.40,3.13,-5.22,-14.60,-26.48,-41.38,-54.88,-68.90,-84.80,-103.45,-123.95,-143.50,-163.00,-182.85,-234.80,-291.95,-319.50,-344.50,-379.50,-415.50,-453.00,-503.50,-545.00,-575.00,-620.00,-680.00,-735.00,-790.00,-850.00,-905.00,-960.00,-1020.00,-1080.00,-1135.00,-1190.00,-1250.00,-1414.50,-1576.00,-1632.00,-1692.00,-1751.50,-1809.50,-1883.50,-1958.50,-2020.50,-2082.50,-2233.50,-2383.00,-2445.00,-2508.50,-2642.00,-2780.00,-2898.00,-3015.45,-4052.45,-5123.00,-5263.00,-5412.50,-5563.00,-5708.00,-5910.50,-6116.50,-6274.00,-6432.00,-6720.50,-6999.50,-7138.50,-7280.50,-7675.00,-8080.00,-8315.00,-8545.00,-13585.00,-18730.00,-19110.00,-19495.00,-20900.00,-22350.00,-22875.00,-23357.05,-58834.40,-95011.20,,,,,,,,,,,,,,,,,,,,,,,, +81,Thallium,Tl,21.29,2.00,-3.24,-13.27,-25.13,-40.49,-56.87,-71.30,-89.00,-107.00,-125.50,-146.50,-167.50,-187.50,-208.15,-262.60,-323.45,-353.00,-379.00,-415.50,-453.00,-493.50,-545.00,-585.00,-620.00,-670.00,-730.00,-790.00,-850.00,-905.00,-960.00,-1025.00,-1085.00,-1140.00,-1200.00,-1260.00,-1320.00,-1487.50,-1653.00,-1710.50,-1771.00,-1832.00,-1891.00,-1967.00,-2044.50,-2107.50,-2171.00,-2324.50,-2477.50,-2541.00,-2604.50,-2744.50,-2889.50,-3009.50,-3129.35,-4199.35,-5302.50,-5444.50,-5596.00,-5749.00,-5896.50,-6105.00,-6316.50,-6476.00,-6637.00,-6930.00,-7213.50,-7355.50,-7495.00,-7910.00,-8340.00,-8575.00,-8805.00,-13975.00,-19255.00,-19640.00,-20025.00,-21495.00,-23020.00,-23555.00,-24042.05,-60508.65,-97687.40,,,,,,,,,,,,,,,,,,,,,,, +82,Lead,Pb,9.53,4.22,-3.88,-11.22,-23.48,-37.13,-55.56,-75.85,-91.50,-110.05,-129.00,-148.00,-170.00,-192.50,-213.50,-234.55,-291.60,-356.05,-387.50,-414.50,-453.00,-492.50,-538.50,-590.00,-630.00,-670.00,-720.00,-780.00,-840.00,-900.00,-960.00,-1020.00,-1085.00,-1150.00,-1210.00,-1270.00,-1330.00,-1395.00,-1567.00,-1732.00,-1789.50,-1851.50,-1914.50,-1974.50,-2052.50,-2132.00,-2196.50,-2261.00,-2417.50,-2574.00,-2638.00,-2703.00,-2850.00,-3000.50,-3123.50,-3246.55,-4348.05,-5484.50,-5629.00,-5782.50,-5938.50,-6087.50,-6301.00,-6519.50,-6682.00,-6845.50,-7143.00,-7431.00,-7575.00,-7720.00,-8155.00,-8600.00,-8840.00,-9075.00,-14370.00,-19780.00,-20175.00,-20565.00,-22105.00,-23700.00,-24245.00,-24744.00,-62214.93,-100414.13,,,,,,,,,,,,,,,,,,,,,, +83,Bismuth,Bi,17.99,0.74,-4.12,-11.99,-21.13,-35.43,-50.65,-72.15,-95.65,-112.50,-132.50,-152.05,-172.05,-195.50,-218.50,-240.50,-262.30,-321.40,-389.60,-422.50,-450.00,-492.00,-535.00,-585.00,-640.00,-675.00,-720.00,-780.00,-840.00,-900.00,-960.00,-1025.00,-1090.00,-1150.00,-1215.00,-1280.00,-1345.00,-1410.00,-1470.00,-1642.00,-1812.00,-1871.00,-1934.50,-1998.00,-2059.50,-2140.00,-2221.50,-2287.00,-2353.00,-2513.00,-2672.00,-2737.00,-2803.00,-2956.50,-3114.50,-3240.00,-3365.40,-4500.40,-5669.50,-5816.00,-5973.00,-6131.00,-6283.00,-6503.00,-6726.00,-6890.50,-7057.00,-7358.50,-7650.00,-7795.00,-7940.00,-8395.00,-8865.00,-9110.00,-9350.00,-14780.00,-20315.00,-20710.00,-21110.00,-22725.00,-24395.00,-24950.00,-25458.45,-63954.33,-103192.28,,,,,,,,,,,,,,,,,,,,, +84,Polonium,Po,13.46,3.27,-5.15,-13.86,-23.15,-31.50,-46.50,-63.05,-88.55,-116.50,-135.55,-156.05,-178.00,-199.50,-222.00,-246.00,-269.00,-292.50,-360.00,-430.00,-458.50,-487.50,-531.00,-575.00,-630.00,-685.00,-720.00,-770.00,-830.00,-895.00,-960.00,-1025.00,-1090.00,-1150.00,-1215.00,-1285.00,-1350.00,-1410.00,-1475.00,-1540.00,-1717.50,-1894.00,-1954.50,-2019.00,-2083.50,-2146.00,-2229.00,-2313.00,-2379.50,-2447.00,-2610.00,-2771.50,-2838.00,-2905.50,-3066.00,-3231.00,-3359.00,-3487.10,-4654.60,-5857.50,-6007.00,-6166.00,-6326.50,-6481.00,-6706.50,-6935.50,-7103.00,-7270.50,-7580.00,-7875.00,-8020.00,-8170.00,-8645.00,-9135.00,-9385.00,-9630.00,-15190.00,-20860.00,-21260.00,-21665.00,-23360.00,-25110.00,-25675.00,-26190.20,-65727.35,-106023.50,,,,,,,,,,,,,,,,,,,, +85,Astatine,At,6.26,0.24,-6.05,-13.60,-22.23,-33.12,-45.02,-61.20,-78.55,-107.60,-139.55,-159.00,-180.55,-202.05,-224.00,-249.50,-275.00,-299.00,-323.00,-393.50,-466.50,-495.50,-525.00,-570.00,-615.00,-675.00,-735.00,-770.00,-825.00,-890.00,-955.00,-1020.00,-1085.00,-1150.00,-1215.00,-1285.00,-1350.00,-1415.00,-1480.00,-1550.00,-1620.00,-1799.00,-1977.50,-2039.00,-2105.00,-2171.00,-2234.50,-2319.50,-2406.00,-2474.50,-2543.00,-2708.50,-2873.00,-2941.00,-3009.50,-3177.00,-3350.00,-3480.50,-3611.00,-4814.50,-6051.00,-6200.50,-6362.00,-6524.50,-6681.50,-6913.50,-7149.00,-7320.00,-7490.00,-7800.00,-8105.00,-8255.00,-8405.00,-8905.00,-9415.00,-9665.00,-9910.00,-15600.00,-21405.00,-21815.00,-22225.00,-24000.00,-25830.00,-26405.00,-26934.50,-67531.20,-108904.70,,,,,,,,,,,,,,,,,,, +86,Radon,Rn,8.34,0.51,-5.38,-16.07,-25.40,-33.15,-44.90,-58.45,-76.00,-95.00,-128.00,-163.95,-184.45,-206.50,-229.00,-252.00,-278.50,-305.00,-329.50,-354.50,-427.50,-503.50,-534.00,-564.00,-611.00,-661.50,-720.00,-780.00,-825.00,-885.00,-950.00,-1015.00,-1085.00,-1150.00,-1215.00,-1280.00,-1350.00,-1425.00,-1490.00,-1555.00,-1625.00,-1690.00,-1876.50,-2063.50,-2126.00,-2192.50,-2260.00,-2325.00,-2412.00,-2501.00,-2570.50,-2640.00,-2809.00,-2977.00,-3046.00,-3115.50,-3291.00,-3471.50,-3604.50,-3738.00,-4973.00,-6243.50,-6397.00,-6561.00,-6726.50,-6885.50,-7123.50,-7366.50,-7540.00,-7715.00,-8030.00,-8335.00,-8490.00,-8640.00,-9160.00,-9695.00,-9950.00,-10205.00,-16030.00,-21965.00,-22380.00,-22800.00,-24655.00,-26570.00,-27160.00,-27696.55,-69372.55,-111842.85,,,,,,,,,,,,,,,,,, +87,Francium,Fr,15.21,0.22,-2.28,-13.24,-27.70,-36.05,-44.55,-58.50,-73.50,-93.00,-113.00,-149.50,-189.50,-211.05,-233.55,-257.00,-281.00,-308.50,-336.50,-362.00,-387.50,-465.00,-545.00,-575.00,-605.00,-655.00,-705.00,-770.00,-835.00,-880.00,-945.00,-1010.00,-1075.00,-1145.00,-1215.00,-1285.00,-1350.00,-1420.00,-1495.00,-1565.00,-1635.00,-1705.00,-1775.00,-1964.50,-2150.50,-2214.50,-2282.00,-2350.50,-2417.00,-2507.00,-2597.50,-2668.50,-2740.00,-2911.50,-3082.00,-3152.50,-3223.50,-3406.50,-3595.50,-3731.50,-3867.50,-5136.00,-6440.50,-6597.00,-6763.50,-6931.00,-7092.50,-7336.00,-7585.00,-7760.00,-7935.00,-8260.00,-8570.00,-8720.00,-8875.00,-9420.00,-9980.00,-10245.00,-10500.00,-16455.00,-22530.00,-22950.00,-23370.00,-25315.00,-27325.00,-27925.00,-28471.70,-71250.30,-114838.10,,,,,,,,,,,,,,,,, +88,Radium,Ra,6.80,-0.14,-2.69,-7.71,-20.57,-36.00,-46.95,-58.45,-73.00,-89.50,-110.50,-132.00,-172.45,-215.95,-238.50,-262.00,-286.50,-311.50,-340.00,-369.00,-395.50,-422.00,-502.50,-585.00,-615.00,-645.00,-700.00,-755.00,-815.00,-880.00,-935.00,-1005.00,-1075.00,-1145.00,-1215.00,-1285.00,-1355.00,-1425.00,-1495.00,-1570.00,-1645.00,-1715.00,-1785.00,-1850.00,-2044.00,-2239.50,-2304.50,-2373.50,-2443.00,-2510.50,-2603.00,-2696.50,-2768.50,-2841.00,-3015.50,-3189.50,-3262.00,-3334.00,-3525.00,-3722.00,-3860.50,-3999.50,-5302.50,-6641.50,-6799.50,-6968.50,-7139.00,-7301.00,-7550.00,-7805.00,-7985.00,-8165.00,-8490.00,-8805.00,-8960.00,-9120.00,-9695.00,-10275.00,-10540.00,-10805.00,-16895.00,-23100.00,-23525.00,-23955.00,-25995.00,-28100.00,-28710.00,-29264.90,-73164.25,-117890.00,,,,,,,,,,,,,,,, +89,Actinium,Ac,0.24,-1.36,-2.76,-8.46,-14.59,-31.12,-49.90,-61.00,-73.00,-88.95,-106.40,-128.90,-152.50,-197.05,-244.00,-267.00,-292.00,-317.50,-342.50,-372.50,-403.00,-430.00,-457.00,-540.00,-625.00,-655.00,-690.00,-745.00,-800.00,-870.00,-935.00,-990.00,-1065.00,-1135.00,-1205.00,-1275.00,-1345.00,-1420.00,-1495.00,-1570.00,-1645.00,-1715.00,-1785.00,-1860.00,-1935.00,-2134.00,-2330.00,-2396.00,-2466.50,-2537.50,-2605.50,-2700.50,-2797.50,-2870.50,-2944.00,-3122.00,-3299.00,-3371.50,-3444.00,-3645.00,-3852.00,-3993.00,-4134.00,-5471.00,-6845.00,-7005.50,-7176.50,-7347.50,-7515.00,-7775.00,-8035.00,-8215.00,-8395.00,-8725.00,-9045.00,-9205.00,-9365.00,-9960.00,-10570.00,-10845.00,-11115.00,-17340.00,-23685.00,-24115.00,-24550.00,-26685.00,-28885.00,-29505.00,-30071.50,-75116.00,-121000.95,,,,,,,,,,,,,,, +90,Thorium,Th,2.53,-1.38,-3.35,-9.10,-15.95,-24.40,-43.40,-63.55,-75.55,-88.50,-106.50,-125.50,-149.00,-173.00,-221.50,-273.50,-297.50,-323.00,-349.00,-375.50,-406.50,-437.50,-465.50,-494.00,-579.00,-665.00,-700.00,-735.00,-790.00,-865.00,-935.00,-990.00,-1050.00,-1125.00,-1200.00,-1275.00,-1345.00,-1420.00,-1495.00,-1565.00,-1640.00,-1720.00,-1795.00,-1870.00,-1955.00,-2030.00,-2225.00,-2422.50,-2489.50,-2561.00,-2633.50,-2703.00,-2798.50,-2897.50,-2974.00,-3049.50,-3230.50,-3410.00,-3483.50,-3557.50,-3768.00,-3984.00,-4127.50,-4271.50,-5642.50,-7051.00,-7214.50,-7389.50,-7565.00,-7735.00,-8000.00,-8265.00,-8450.00,-8635.00,-8970.00,-9295.00,-9455.00,-9615.00,-10240.00,-10880.00,-11155.00,-11425.00,-17785.00,-24270.00,-24710.00,-25150.00,-27385.00,-29690.00,-30325.00,-30901.40,-77104.60,-124169.90,,,,,,,,,,,,,, +91,Protactinium,Pa,-1.24,-1.39,-3.14,-8.90,-15.45,-24.95,-37.60,-58.15,-78.55,-92.00,-104.95,-124.00,-145.00,-170.00,-195.00,-247.50,-304.00,-329.00,-355.50,-382.00,-409.00,-441.50,-474.00,-503.00,-532.00,-618.00,-705.00,-740.00,-775.00,-835.00,-900.00,-970.00,-1040.00,-1105.00,-1185.00,-1260.00,-1335.00,-1410.00,-1485.00,-1560.00,-1635.00,-1715.00,-1795.00,-1870.00,-1955.00,-2030.00,-2095.00,-2306.50,-2516.50,-2585.00,-2658.00,-2731.00,-2801.50,-2902.50,-3004.00,-3079.50,-3156.00,-3340.50,-3523.00,-3597.50,-3673.00,-3893.00,-4119.00,-4265.50,-4412.00,-5817.50,-7261.00,-7425.50,-7600.00,-7780.00,-7955.00,-8225.00,-8500.00,-8685.00,-8870.00,-9210.00,-9540.00,-9705.00,-9870.00,-10525.00,-11190.00,-11470.00,-11750.00,-18250.00,-24870.00,-25310.00,-25755.00,-28100.00,-30515.00,-31160.00,-31745.80,-79134.10,-127401.80,,,,,,,,,,,,, +92,Uranium,U,6.41,-1.60,-3.29,-8.40,-15.20,-28.25,-41.35,-53.00,-74.50,-95.00,-108.50,-122.50,-143.50,-165.50,-191.50,-218.50,-275.00,-335.50,-361.50,-388.50,-416.50,-444.50,-477.50,-511.00,-541.00,-571.00,-657.50,-750.00,-785.00,-820.00,-885.00,-950.00,-1020.00,-1090.00,-1160.00,-1250.00,-1325.00,-1400.00,-1480.00,-1555.00,-1630.00,-1710.00,-1790.00,-1870.00,-1950.00,-2030.00,-2105.00,-2180.00,-2399.00,-2612.00,-2682.00,-2756.00,-2830.50,-2902.50,-3005.50,-3110.00,-3187.50,-3264.50,-3451.50,-3638.50,-3714.00,-3790.00,-4020.50,-4256.50,-4404.50,-4554.00,-5995.50,-7471.50,-7640.00,-7820.00,-8000.00,-8175.00,-8455.00,-8740.00,-8930.00,-9120.00,-9465.00,-9795.00,-9955.00,-10120.00,-10805.00,-11505.00,-11795.00,-12075.00,-18710.00,-25470.00,-25915.00,-26370.00,-28825.00,-31350.00,-32020.00,-32618.25,-81203.40,-130695.65,,,,,,,,,,,, +93,Neptunium,Np,1.83,-1.35,-3.29,-8.88,-15.60,-26.75,-40.90,-56.50,-78.50,-99.50,-114.00,-128.50,-143.50,-165.00,-187.50,-214.50,-242.50,-303.50,-368.50,-395.00,-423.00,-452.00,-480.50,-515.00,-550.00,-580.50,-611.00,-698.00,-790.00,-830.00,-865.00,-930.00,-1000.00,-1075.00,-1150.00,-1225.00,-1320.00,-1395.00,-1470.00,-1550.00,-1630.00,-1705.00,-1780.00,-1865.00,-1950.00,-2030.00,-2105.00,-2185.00,-2270.00,-2492.50,-2710.00,-2781.00,-2855.50,-2931.50,-3005.00,-3111.00,-3218.00,-3296.50,-3375.50,-3565.50,-3755.00,-3832.00,-3909.50,-4150.00,-4397.00,-4549.50,-4701.00,-6177.00,-7690.00,-7860.00,-8040.00,-8220.00,-8395.00,-8685.00,-8980.00,-9170.00,-9360.00,-9710.00,-10050.00,-10215.00,-10380.00,-11100.00,-11835.00,-12125.00,-12410.00,-19185.00,-26085.00,-26535.00,-26990.00,-29560.00,-32205.00,-32900.00,-33511.10,-83312.00,-134051.90,,,,,,,,,,, +94,Plutonium,Pu,0.22,-2.70,-3.07,-8.61,-16.10,-28.00,-42.00,-64.50,-87.50,-102.00,-116.50,-131.50,-149.00,-169.00,-189.50,-209.50,-238.50,-268.00,-333.50,-402.50,-430.00,-459.00,-488.50,-517.50,-553.50,-590.00,-621.00,-652.50,-744.00,-835.00,-870.00,-910.00,-980.00,-1050.00,-1125.00,-1200.00,-1280.00,-1380.00,-1460.00,-1540.00,-1620.00,-1700.00,-1780.00,-1855.00,-1940.00,-2030.00,-2110.00,-2190.00,-2270.00,-2350.00,-2582.00,-2809.00,-2881.00,-2957.50,-3034.50,-3109.00,-3218.00,-3328.00,-3407.50,-3488.00,-3681.50,-3873.50,-3952.00,-4030.50,-4282.00,-4540.50,-4696.00,-4848.50,-6355.00,-7905.00,-8080.00,-8265.00,-8450.00,-8630.00,-8925.00,-9220.00,-9415.00,-9610.00,-9965.00,-10310.00,-10480.00,-10650.00,-11395.00,-12160.00,-12460.00,-12750.00,-19660.00,-26700.00,-27160.00,-27620.00,-30320.00,-33100.00,-33750.00,-34362.90,-85462.50,-137472.60,,,,,,,,,, +95,Americium,Am,0.66,-0.93,-3.03,-8.84,-16.70,-29.25,-43.40,-58.95,-81.45,-102.50,-118.00,-133.50,-151.50,-173.00,-195.00,-215.50,-233.50,-263.00,-294.50,-364.50,-437.50,-466.00,-496.00,-526.00,-556.00,-593.50,-631.00,-663.00,-695.50,-785.50,-880.00,-920.00,-960.00,-1035.00,-1110.00,-1185.00,-1260.00,-1345.00,-1450.00,-1530.00,-1610.00,-1695.00,-1780.00,-1860.00,-1940.00,-2025.00,-2115.00,-2200.00,-2280.00,-2365.00,-2445.00,-2677.00,-2910.00,-2983.50,-3061.00,-3139.50,-3214.50,-3326.50,-3440.50,-3521.00,-3602.00,-3798.50,-3994.50,-4074.00,-4153.00,-4416.50,-4687.50,-4846.50,-5005.00,-6545.00,-8125.00,-8305.00,-8495.00,-8680.00,-8860.00,-9165.00,-9470.00,-9665.00,-9865.00,-10225.00,-10570.00,-10740.00,-10915.00,-11700.00,-12500.00,-12800.00,-13095.00,-20150.00,-27330.00,-27795.00,-28270.00,-31100.00,-34000.00,-34700.00,-35324.70,-87659.45,-140965.25,,,,,,,,, +96,Curium,Cm,1.27,-0.92,-3.16,-8.00,-15.05,-28.90,-44.35,-60.05,-83.05,-104.50,-120.00,-136.00,-155.50,-178.50,-201.00,-223.50,-244.00,-262.50,-291.50,-321.50,-396.00,-474.50,-503.50,-534.00,-565.00,-595.50,-634.00,-673.00,-706.00,-739.00,-832.50,-930.00,-970.00,-1010.00,-1085.00,-1160.00,-1240.00,-1320.00,-1410.00,-1520.00,-1600.00,-1685.00,-1770.00,-1850.00,-1935.00,-2020.00,-2110.00,-2200.00,-2280.00,-2365.00,-2450.00,-2535.00,-2778.00,-3013.00,-3087.50,-3166.00,-3245.50,-3322.00,-3437.50,-3554.00,-3636.00,-3718.50,-3918.00,-4117.00,-4197.50,-4278.00,-4554.00,-4835.50,-4995.00,-5155.00,-6735.00,-8355.00,-8530.00,-8720.00,-8910.00,-9090.00,-9405.00,-9725.00,-9920.00,-10120.00,-10490.00,-10840.00,-11010.00,-11185.00,-12005.00,-12845.00,-13155.00,-13455.00,-20645.00,-27960.00,-28440.00,-28900.00,-31850.00,-34900.00,-35600.00,-36246.50,-89896.30,-144521.30,,,,,,,, +97,Berkelium,Bk,-,-,-3.11,-9.05,-16.75,-28.80,-46.00,-63.05,-80.05,-102.00,-122.00,-138.50,-159.00,-183.00,-206.50,-229.00,-249.50,-269.00,-291.00,-321.00,-350.00,-429.00,-511.50,-541.50,-573.50,-605.50,-636.50,-676.00,-716.50,-750.50,-784.00,-880.00,-980.00,-1020.00,-1060.00,-1140.00,-1220.00,-1300.00,-1385.00,-1480.00,-1590.00,-1675.00,-1760.00,-1845.00,-1930.00,-2010.00,-2095.00,-2190.00,-2280.00,-2365.00,-2450.00,-2535.00,-2625.00,-2875.00,-3117.00,-3193.00,-3273.50,-3354.00,-3431.00,-3549.50,-3669.50,-3753.00,-3837.00,-4039.50,-4241.50,-4323.00,-4405.00,-4692.50,-4990.00,-5155.00,-5315.00,-6930.00,-8585.00,-8760.00,-8950.00,-9145.00,-9330.00,-9650.00,-9975.00,-10175.00,-10380.00,-10750.00,-11105.00,-11285.00,-11460.00,-12315.00,-13195.00,-13510.00,-13815.00,-21145.00,-28590.00,-29050.00,-29550.00,-32650.00,-35850.00,-36600.00,-37228.80,-92181.15,-148151.35,,,,,,, +98,Californium,Cf,-,-,-3.15,-9.04,-17.10,-30.05,-44.80,-63.45,-83.00,-101.95,-122.95,-142.50,-165.00,-190.00,-213.50,-236.00,-256.00,-275.50,-298.00,-322.00,-351.00,-379.00,-463.00,-551.00,-581.50,-613.50,-646.00,-678.50,-719.50,-761.00,-796.00,-830.50,-928.50,-1030.00,-1070.00,-1105.00,-1185.00,-1275.00,-1360.00,-1440.00,-1540.00,-1660.00,-1745.00,-1835.00,-1920.00,-2005.00,-2090.00,-2175.00,-2270.00,-2365.00,-2450.00,-2535.00,-2625.00,-2710.00,-2968.00,-3223.50,-3300.50,-3382.00,-3463.50,-3542.00,-3664.00,-3787.50,-3871.50,-3956.50,-4163.50,-4368.00,-4450.50,-4534.00,-4837.00,-5145.00,-5310.00,-5475.00,-7125.00,-8815.00,-8995.00,-9190.00,-9385.00,-9570.00,-9900.00,-10235.00,-10440.00,-10645.00,-11020.00,-11385.00,-11560.00,-11735.00,-12635.00,-13555.00,-13870.00,-14180.00,-21640.00,-29250.00,-29750.00,-30250.00,-33500.00,-36800.00,-37500.00,-38171.75,-94511.40,-151851.65,,,,,, +99,Einsteinium,Es,-,-,-3.21,-9.21,-17.35,-30.75,-46.45,-62.55,-84.00,-104.95,-124.95,-147.00,-168.50,-193.00,-218.50,-241.50,-261.00,-282.00,-305.50,-329.50,-354.50,-382.50,-409.50,-498.50,-591.00,-622.00,-655.00,-688.50,-721.50,-764.00,-807.00,-842.50,-878.00,-977.50,-1080.00,-1120.00,-1160.00,-1245.00,-1335.00,-1420.00,-1505.00,-1610.00,-1735.00,-1825.00,-1910.00,-1995.00,-2085.00,-2175.00,-2260.00,-2355.00,-2450.00,-2535.00,-2630.00,-2720.00,-2830.00,-3097.00,-3332.00,-3409.50,-3492.00,-3575.50,-3655.00,-3780.00,-3906.50,-3992.50,-4079.00,-4288.00,-4496.50,-4578.50,-4660.00,-4980.00,-5305.00,-5475.00,-5645.00,-7325.00,-9050.00,-9235.00,-9430.00,-9625.00,-9815.00,-10155.00,-10495.00,-10700.00,-10910.00,-11290.00,-11655.00,-11835.00,-12020.00,-12960.00,-13920.00,-14245.00,-14580.00,-22200.00,-29900.00,-30400.00,-30900.00,-34250.00,-37750.00,-38500.00,-39175.70,-96889.70,-155627.00,,,,, +100,Fermium,Fm,-,-,-,-8.25,-16.60,-31.25,-47.15,-64.50,-83.50,-106.50,-128.00,-149.00,-173.50,-197.00,-223.00,-247.00,-266.50,-288.00,-313.00,-338.50,-364.00,-389.50,-416.00,-441.50,-534.50,-631.50,-663.50,-698.00,-732.50,-765.50,-809.50,-854.00,-890.00,-926.50,-1027.00,-1130.00,-1170.00,-1210.00,-1300.00,-1395.00,-1485.00,-1575.00,-1685.00,-1815.00,-1900.00,-1985.00,-2075.00,-2165.00,-2255.00,-2345.00,-2440.00,-2540.00,-2635.00,-2720.00,-2805.00,-2900.00,-3176.50,-3441.50,-3520.50,-3604.00,-3688.50,-3770.00,-3898.00,-4028.00,-4115.00,-4202.50,-4415.50,-4628.00,-4715.00,-4800.00,-5130.00,-5465.00,-5635.00,-5810.00,-7530.00,-9285.00,-9470.00,-9670.00,-9870.00,-10065.00,-10410.00,-10760.00,-10970.00,-11180.00,-11565.00,-11935.00,-12120.00,-12305.00,-13285.00,-14290.00,-14600.00,-14900.00,-22650.00,-30550.00,-31050.00,-31550.00,-35100.00,-38750.00,-39550.00,-40241.10,-99317.35,,,,, +101,Mendelevium,Md,-,-,-,-8.29,-17.15,-32.15,-47.05,-65.05,-86.00,-105.55,-129.50,-152.95,-174.50,-201.00,-227.50,-250.00,-271.00,-294.50,-320.50,-347.00,-373.00,-399.00,-425.00,-450.00,-474.00,-572.50,-674.50,-706.50,-741.50,-777.00,-811.00,-856.50,-902.50,-939.00,-976.00,-1077.00,-1180.00,-1225.00,-1270.00,-1360.00,-1455.00,-1550.00,-1640.00,-1750.00,-1885.00,-1975.00,-2065.00,-2155.00,-2245.00,-2335.00,-2430.00,-2530.00,-2630.00,-2720.00,-2810.00,-2905.00,-3000.00,-3281.50,-3552.50,-3633.50,-3718.50,-3803.50,-3885.50,-4017.50,-4151.50,-4240.00,-4328.50,-4545.50,-4760.00,-4845.00,-4930.00,-5275.00,-5630.00,-5805.00,-5980.00,-7730.00,-9525.00,-9715.00,-9915.00,-10120.00,-10315.00,-10670.00,-11030.00,-11245.00,-11460.00,-11850.00,-12225.00,-12405.00,-12590.00,-13620.00,-14680.00,-15000.00,-15300.00,-23200.00,-31250.00,-31750.00,-32250.00,-36000.00,-39800.00,-40550.00,-41274.00,,,,, +102,Nobelium,No,-,-,-,-9.58,-19.15,-33.65,-50.75,-67.00,-85.50,-108.00,-129.50,-155.00,-178.50,-201.50,-231.00,-256.50,-278.50,-301.00,-326.50,-354.00,-380.50,-407.00,-434.00,-461.50,-485.50,-508.00,-610.50,-717.50,-751.00,-786.50,-822.50,-857.50,-904.50,-951.50,-989.50,-1027.50,-1132.50,-1240.00,-1280.00,-1320.00,-1420.00,-1525.00,-1615.00,-1705.00,-1825.00,-1965.00,-2060.00,-2155.00,-2245.00,-2335.00,-2425.00,-2520.00,-2625.00,-2720.00,-2810.00,-2905.00,-3000.00,-3095.00,-3383.50,-3666.00,-3747.50,-3834.00,-3920.00,-4003.50,-4139.50,-4277.00,-4366.50,-4456.50,-4675.00,-4890.00,-4980.00,-5070.00,-5430.00,-5800.00,-5980.00,-6160.00,-7945.00,-9770.00,-9960.00,-10165.00,-10370.00,-10565.00,-10930.00,-11305.00,-11520.00,-11735.00,-12130.00,-12510.00,-12700.00,-12890.00,-13990.00,-15100.00,-15400.00,-15700.00,-23750.00,-31950.00,-32450.00,-32950.00,-36850.00,-40850.00,-41650.00,,,,, +103,Lawrencium,Lr,-,-,-2.91,-9.83,-17.85,-32.50,-49.80,-68.00,-88.00,-108.50,-132.00,-154.00,-181.00,-206.50,-230.00,-256.50,-279.50,-305.00,-332.00,-359.00,-388.50,-417.00,-445.50,-473.50,-498.50,-525.00,-550.00,-652.50,-762.00,-796.50,-833.00,-870.00,-905.00,-953.50,-1002.50,-1040.50,-1079.50,-1189.00,-1300.00,-1340.00,-1385.00,-1490.00,-1595.00,-1690.00,-1785.00,-1910.00,-2055.00,-2145.00,-2240.00,-2335.00,-2425.00,-2520.00,-2620.00,-2725.00,-2820.00,-2910.00,-3010.00,-3105.00,-3200.00,-3495.50,-3781.00,-3863.50,-3951.00,-4039.00,-4123.50,-4262.50,-4404.00,-4494.00,-4585.00,-4810.00,-5030.00,-5115.00,-5205.00,-5585.00,-5975.00,-6160.00,-6340.00,-8155.00,-10015.00,-10210.00,-10415.00,-10620.00,-10820.00,-11200.00,-11580.00,-11795.00,-12015.00,-12415.00,-12800.00,-12990.00,-13195.00,-14300.00,-15450.00,-15800.00,-16100.00,-24300.00,-32650.00,-33150.00,-33650.00,-37750.00,-41950.00,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,Chemical Hardness of Atoms and Atomic Ions (eV) from the Parr-Pearson formula,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,Charge,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Atomic #,Element,Symbol,-2,-1,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,,,,, +1,Hydrogen,H,0.00,-,12.84,92.00,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2,Helium,He,0.00,0.52,24.59,29.83,135.00,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3,Lithium,Li,0.00,1.90,4.77,70.25,46.81,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4,Beryllium,Be,0.00,2.70,9.32,8.89,135.69,63.82,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5,Boron,B,0.00,5.68,8.02,16.86,12.78,221.44,80.85,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6,Carbon,C,0.00,8.02,10.00,13.12,23.50,16.61,327.59,97.91,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7,Nitrogen,N,2.60,6.46,14.53,15.07,17.85,30.02,20.42,454.18,114.97,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +8,Oxygen,O,5.40,9.61,12.16,21.50,19.81,22.48,36.49,24.22,601.17,132.12,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +9,Fluorine,F,0.00,5.39,14.02,17.55,27.74,24.43,27.10,42.92,28.02,768.73,149.21,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +10,Neon,Ne,0.00,1.39,21.56,19.40,22.49,33.67,29.09,31.72,49.35,31.82,956.73,166.37,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +11,Sodium,Na,0.00,3.63,4.59,42.15,24.33,27.29,39.49,33.78,36.32,55.75,35.61,1165.26,183.58,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +12,Magnesium,Mg,1.80,2.52,7.65,7.39,65.11,29.12,32.00,45.49,38.26,40.94,62.10,39.44,1394.31,200.86,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +13,Aluminum,Al,1.50,5.16,5.55,12.84,9.62,91.54,33.83,36.67,51.27,42.90,45.47,68.62,43.25,1643.98,218.16,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +14,Silicon,Si,2.30,5.97,6.76,8.19,17.15,11.65,121.63,38.50,41.23,57.04,47.58,50.25,74.99,47.06,1914.21,235.55,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +15,Phosphorus,P,3.80,6.67,9.74,9.28,10.43,21.24,13.58,155.40,43.15,46.03,62.53,52.27,55.06,81.34,50.94,2205.17,252.93,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +16,Sulfur,S,0.00,7.71,8.28,12.98,11.45,12.43,25.37,15.46,192.90,47.80,50.80,67.95,57.30,59.64,87.76,54.81,2516.77,270.41,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +17,Chlorine,Cl,0.00,5.43,9.35,10.85,15.80,13.86,14.33,29.23,17.17,234.08,51.78,55.57,73.65,62.71,64.72,93.05,59.64,2849.12,287.78,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +18,Argon,Ar,0.00,9.12,15.76,11.87,13.11,19.07,15.21,15.99,33.31,19.14,278.99,56.24,60.27,79.30,67.84,69.64,99.03,63.26,3202.86,305.34,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +19,Potassium,K,0.00,-,3.84,27.29,14.18,15.10,21.75,16.74,18.16,37.32,20.94,327.98,60.90,64.70,85.20,72.00,74.50,106.90,65.40,3577.40,323.25,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +20,Calcium,Ca,0.00,-,6.09,5.76,39.04,16.36,17.23,24.28,18.42,20.04,41.30,22.74,380.63,65.30,69.40,91.00,76.90,79.50,113.00,70.80,3971.00,341.06,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +21,Scandium,Sc,0.00,-,6.37,6.24,11.96,48.73,18.16,19.03,27.32,20.10,21.93,45.15,24.62,437.56,69.34,74.10,96.70,81.50,85.00,119.00,74.97,4386.83,358.91,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +22,Titanium,Ti,0.00,-,6.75,6.75,13.92,15.78,56.03,20.23,21.27,29.60,21.70,23.82,49.15,26.43,496.34,75.26,78.80,102.10,87.00,90.00,125.00,79.40,4823.60,376.82,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +23,Vanadium,V,0.00,-,6.22,7.87,14.69,17.40,18.57,62.85,22.47,22.80,32.40,24.70,25.20,52.40,28.18,559.72,80.00,84.00,108.00,92.00,95.00,131.00,83.60,5281.70,394.82,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +24,Chromium,Cr,0.00,0.31,6.09,9.72,14.47,18.20,20.30,21.17,69.55,24.52,24.60,35.10,26.40,27.20,56.80,29.37,626.43,86.40,88.00,114.00,97.00,100.00,138.00,87.40,5760.30,413.11,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +25,Manganese,Mn,0.00,4.51,7.43,8.21,18.03,17.53,21.20,23.20,23.60,75.30,27.30,26.50,37.70,28.40,29.20,59.40,32.16,699.54,89.30,93.00,120.00,102.00,105.00,144.00,91.90,6260.70,431.34,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +26,Iron,Fe,0.00,-,7.75,8.29,14.46,24.15,20.20,24.10,25.88,26.08,82.54,28.50,28.10,40.60,30.20,31.20,64.80,32.26,776.74,92.00,98.00,126.00,107.00,110.00,151.00,73.00,6805.00,449.69,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +27,Cobalt,Co,6.00,3.64,7.22,9.20,16.42,17.80,28.20,22.50,26.90,28.90,28.33,89.27,29.60,31.00,43.00,32.00,33.00,67.96,34.62,850.62,107.40,98.40,132.00,111.00,116.00,157.00,100.00,7325.10,468.02,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +28,Nickel,Ni,0.00,5.67,6.48,10.53,17.02,19.71,21.16,31.94,25.00,29.00,31.00,31.60,96.40,31.00,32.00,46.00,34.00,35.00,72.08,35.98,933.94,107.00,108.00,138.00,117.00,120.00,164.00,104.20,7889.60,486.60,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +29,Copper,Cu,0.00,5.24,6.49,12.57,16.55,20.54,22.42,23.20,36.00,27.00,33.00,33.00,33.30,103.70,32.00,34.00,49.00,36.00,37.00,76.00,37.59,1026.41,107.00,112.00,144.00,122.00,126.00,170.00,109.50,8474.88,505.24,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +30,Zinc,Zn,0.00,2.62,9.39,8.57,21.76,19.68,23.20,25.40,26.00,40.00,29.00,35.00,36.00,36.80,108.90,34.30,36.00,52.00,37.00,40.00,79.00,40.00,1118.00,105.00,124.00,129.00,144.00,133.50,178.40,112.10,9082.94,523.99,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +31,Gallium,Ga,0.00,5.00,5.57,14.52,10.19,33.29,22.01,26.69,28.10,29.20,41.00,33.00,36.00,39.00,37.00,115.20,37.62,39.49,51.49,40.20,37.00,88.70,41.61,1202.69,119.00,129.00,133.00,152.90,139.10,185.00,116.43,9712.13,542.93,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +32,Germanium,Ge,3.30,4.42,6.67,8.04,18.29,11.49,47.79,22.40,29.00,31.50,36.10,39.60,33.90,40.00,41.00,40.00,120.90,39.39,41.77,53.74,47.20,34.00,93.10,43.34,1299.66,123.90,135.00,136.00,162.20,144.70,192.10,120.29,10363.13,562.01,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +33,Arsenic,As,0.40,6.93,8.98,8.80,9.76,21.78,12.50,64.97,19.40,33.00,33.00,34.00,49.00,37.00,42.00,43.00,42.00,127.60,41.22,44.08,56.00,45.10,40.00,97.70,45.09,1400.21,129.00,140.00,140.00,172.00,150.10,198.90,124.64,11036.03,581.23,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +34,Selenium,Se,0.00,5.45,7.73,11.44,9.63,12.12,25.36,13.40,73.70,28.60,35.00,36.00,36.00,51.90,40.10,43.00,47.00,44.00,133.50,42.88,46.42,58.20,47.80,41.20,102.60,46.76,1504.34,133.30,146.00,144.00,182.00,155.80,205.20,129.53,11730.96,600.59,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +35,Bromine,Br,0.00,5.57,8.45,9.78,14.41,11.30,12.40,28.90,14.40,89.80,31.20,37.00,40.00,37.00,55.00,43.00,45.00,49.00,47.00,139.30,44.69,48.81,60.20,50.80,42.20,107.60,48.57,1611.83,139.00,150.00,149.00,192.00,162.10,211.90,133.99,12448.02,620.12,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +36,Krypton,Kr,0.00,5.68,14.00,10.36,12.59,15.55,12.20,13.80,32.50,14.80,105.05,37.35,39.80,42.00,41.00,56.00,45.00,49.00,51.00,49.00,145.00,47.00,51.00,53.00,61.00,53.00,100.00,54.30,1722.70,142.00,157.00,154.00,203.00,168.00,219.00,138.08,13187.34,639.79,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +37,Rubidium,Rb,0.00,1.12,3.69,23.11,12.71,12.60,18.40,13.40,14.80,36.80,14.00,127.10,36.00,42.90,44.00,43.00,59.00,48.00,51.00,53.00,52.00,151.00,48.30,53.60,65.10,56.00,45.00,117.50,52.07,1838.73,147.70,161.00,158.00,215.00,173.00,226.00,142.87,13949.02,659.63,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +38,Strontium,Sr,0.00,0.55,5.64,5.34,31.86,14.11,14.60,19.20,15.20,16.30,39.70,15.00,147.10,37.90,46.00,46.00,45.00,63.00,50.00,53.00,57.00,52.00,158.00,50.10,55.90,67.00,60.00,46.00,122.40,53.79,1957.51,152.30,167.00,166.00,223.00,179.00,233.00,147.40,14733.19,679.64,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +39,Yttrium,Y,0.00,1.03,5.91,6.01,8.30,40.08,16.40,16.00,23.00,13.00,17.20,44.80,15.00,168.00,40.00,49.00,49.00,47.00,65.00,53.00,56.00,57.00,57.00,163.00,51.90,58.30,69.80,63.00,47.00,127.60,55.52,2079.78,157.10,172.00,168.00,239.00,185.00,240.00,151.73,15539.99,699.83,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +40,Zirconium,Zr,0.00,2.94,6.21,6.47,9.89,11.35,46.01,15.92,15.73,21.70,19.30,19.02,42.88,21.35,189.75,44.00,50.00,53.00,49.00,68.00,55.00,58.00,60.00,59.00,170.00,52.70,60.70,71.60,67.00,48.00,133.10,57.27,2205.63,162.00,177.00,173.00,253.00,191.00,247.00,155.94,16369.53,720.21,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +41,Niobium,Nb,0.00,2.49,5.86,7.24,11.04,13.26,12.25,51.51,22.94,11.00,23.20,20.80,20.28,45.82,22.49,213.91,47.50,51.00,55.00,52.00,70.00,58.00,61.00,63.00,60.00,176.00,54.60,63.10,74.30,71.00,61.00,125.90,59.07,2335.13,166.90,182.00,171.00,275.00,196.00,254.00,161.07,17221.98,740.76,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +42,Molybdenum,Mo,0.00,4.00,6.35,9.07,10.97,19.27,8.09,14.34,56.84,17.94,20.52,22.28,22.90,20.98,48.82,23.50,241.40,26.00,66.00,66.00,65.00,66.00,69.00,66.00,52.00,62.00,181.00,60.00,64.00,62.00,86.00,66.00,129.10,60.83,2468.07,171.00,188.00,182.00,284.00,203.00,261.00,165.19,18097.46,761.50,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +43,Technetium,Tc,0.00,4.13,6.73,7.98,14.28,11.46,16.00,15.00,16.00,62.00,19.00,20.90,24.10,25.00,23.08,48.92,27.55,265.45,51.00,58.00,60.00,56.00,75.00,64.00,64.00,70.00,64.00,188.00,57.60,67.90,79.50,79.00,51.00,149.00,62.28,2604.72,176.00,193.00,186.00,301.00,209.00,268.00,170.39,18996.14,782.46,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +44,Ruthenium,Ru,0.00,2.48,6.28,9.40,11.71,16.53,14.00,17.00,17.00,17.00,68.40,19.60,21.90,25.10,26.00,24.90,52.10,28.25,293.75,53.00,61.00,61.00,60.00,76.00,67.00,67.00,72.00,66.00,194.00,59.70,70.30,82.00,84.00,51.00,155.00,64.04,2744.96,181.00,197.00,194.00,317.00,215.00,275.00,174.72,19918.17,803.61,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +45,Rhodium,Rh,2.90,-,6.32,10.62,12.98,10.94,21.00,17.00,17.00,18.10,19.90,72.51,20.49,24.10,24.90,29.00,25.58,57.42,27.00,323.00,55.00,63.00,64.00,63.00,77.00,70.00,71.00,72.00,70.00,200.00,60.90,72.70,85.40,88.00,52.00,160.00,66.22,2888.78,185.00,203.00,194.00,340.00,221.00,283.00,179.26,20863.72,824.98,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +46,Palladium,Pd,0.00,5.80,7.77,11.09,13.50,13.07,15.00,23.10,16.90,19.00,21.00,19.00,78.57,21.43,26.00,25.00,31.00,27.10,57.90,31.00,352.00,59.00,64.00,67.00,65.00,80.00,73.00,72.00,76.00,72.00,206.00,62.20,75.10,87.70,93.00,54.00,165.00,67.87,3035.13,191.00,208.00,197.00,362.00,227.00,290.00,184.10,21832.94,846.57,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +47,Silver,Ag,0.00,5.79,6.27,13.90,13.35,14.17,16.00,17.00,24.00,19.00,20.00,22.00,21.00,83.46,22.54,27.00,26.00,34.00,27.43,60.57,31.87,384.13,61.00,67.00,69.00,67.00,82.00,77.00,74.00,78.00,75.00,212.00,63.50,77.50,91.00,98.00,54.00,171.00,69.99,3186.01,195.00,213.00,204.00,381.00,233.00,298.00,189.30,22826.02,868.38,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +48,Cadmium,Cd,0.00,3.17,8.99,7.91,20.57,13.52,16.90,19.10,18.00,25.10,19.90,23.00,22.00,23.00,87.00,24.00,29.00,27.00,36.00,31.55,60.45,33.19,416.81,63.00,69.00,72.00,70.00,83.00,80.00,77.00,81.00,77.00,217.00,65.90,80.00,93.10,104.00,55.00,177.00,71.61,3340.39,200.00,218.00,203.00,410.00,239.00,305.00,193.95,23843.12,890.43,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +49,Indium,In,2.60,2.06,5.40,13.08,9.16,25.97,15.30,20.70,19.00,21.10,25.90,22.00,23.00,25.00,23.00,92.00,27.00,28.00,29.00,37.00,35.11,62.89,33.38,449.62,66.00,72.00,74.00,73.00,85.00,83.00,79.00,84.00,79.00,223.00,67.50,82.50,96.00,110.00,56.00,182.00,73.77,3497.23,205.00,223.00,216.00,426.00,246.00,312.00,199.14,24884.45,912.72,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +50,Tin,Sn,5.40,5.59,6.23,7.29,15.87,10.23,31.54,21.72,18.90,22.10,21.00,28.00,24.00,24.00,26.00,24.00,97.00,28.00,30.00,29.00,40.00,31.00,71.00,34.35,484.65,68.00,74.00,78.00,74.00,87.00,88.00,80.00,87.00,81.00,230.00,68.10,84.90,99.00,117.00,56.00,188.00,75.50,3658.50,210.00,228.00,221.00,451.00,259.00,313.00,203.95,25950.19,935.25,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +51,Antimony,Sb,3.60,7.13,7.56,8.02,8.67,18.90,11.80,52.00,9.00,22.00,23.00,23.00,29.00,24.00,27.00,27.00,25.00,103.00,27.00,32.00,31.00,42.00,32.00,73.00,36.26,520.74,71.00,75.00,81.00,77.00,88.00,92.00,83.00,88.00,85.00,236.00,76.00,83.00,79.00,139.00,87.00,161.00,85.00,3814.00,215.00,238.00,223.00,497.00,253.00,315.00,214.48,27040.55,958.02,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +52,Tellurium,Te,0.00,5.83,7.04,9.59,9.36,9.45,21.34,11.95,66.30,6.00,24.00,24.10,23.90,30.00,27.00,27.00,29.00,26.00,107.00,30.00,31.00,33.00,44.00,34.00,76.00,37.12,557.88,73.00,78.00,83.00,80.00,89.00,96.00,86.00,90.00,87.00,243.00,77.00,86.00,80.00,148.00,88.00,166.00,87.00,3981.00,221.00,242.00,229.00,526.00,259.00,322.00,219.83,28155.69,981.04,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +53,Iodine,I,1.70,6.84,7.39,8.68,13.87,7.36,11.16,22.85,13.24,63.20,20.19,26.00,23.90,26.10,32.00,28.00,28.00,30.00,28.00,112.00,30.00,34.00,32.00,48.00,34.00,79.00,38.76,596.24,75.00,81.00,86.00,81.00,92.00,99.00,88.00,94.00,88.00,250.00,79.00,88.00,82.00,156.00,94.00,166.00,89.50,4151.50,263.00,200.00,244.00,557.00,266.00,329.00,225.10,29295.89,1004.42,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +54,Xenon,Xe,0.00,2.16,12.13,8.85,11.15,10.08,11.94,12.56,24.90,14.38,73.86,22.16,27.02,25.98,26.00,33.00,29.00,31.00,30.00,26.00,119.00,33.00,34.00,34.00,50.00,36.00,82.00,39.03,635.97,78.00,82.00,89.00,84.00,93.00,104.00,90.00,96.00,91.00,256.00,81.00,89.00,85.00,164.00,93.00,175.00,90.80,4326.20,229.00,255.00,238.00,589.00,272.00,338.00,229.40,30461.32,1027.99,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +55,Cesium,Cs,0.00,-,3.42,19.26,10.04,9.81,13.00,13.10,13.80,27.19,15.52,87.69,19.70,28.00,28.00,27.00,36.00,30.00,31.00,32.00,31.00,121.00,32.00,37.00,34.00,53.00,38.00,84.00,41.07,675.93,80.00,85.00,91.00,88.00,93.00,108.00,93.00,99.00,93.00,261.00,84.00,92.00,86.00,173.00,96.00,178.00,93.00,4504.00,235.00,260.00,242.00,624.00,279.00,345.00,234.78,31652.29,1051.92,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +56,Barium,Ba,0.00,0.10,5.07,4.79,25.84,11.19,10.97,13.00,15.00,15.00,29.53,15.99,94.48,26.10,28.90,29.00,29.00,36.00,32.00,33.00,33.00,32.00,126.00,33.00,38.00,35.00,57.00,37.00,89.00,41.60,718.40,81.00,88.00,94.00,89.00,95.00,114.00,93.00,103.00,95.00,267.00,87.00,93.00,87.00,185.00,97.00,187.00,90.00,4686.00,239.00,266.00,246.00,662.00,284.00,353.00,240.42,32868.94,1076.11,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +57,Lanthanum,La,0.00,-,5.11,5.48,8.12,30.77,11.65,12.40,14.00,17.00,14.00,32.42,17.35,106.23,28.00,29.00,32.00,29.00,38.00,33.00,34.00,35.00,33.00,130.00,35.00,39.00,36.00,59.00,41.00,89.00,44.09,760.91,84.00,90.00,95.00,93.00,97.00,118.00,96.00,104.00,97.00,276.00,86.00,97.00,89.00,194.00,99.00,189.00,96.00,4869.00,245.00,270.00,253.00,699.00,290.00,363.00,244.40,34111.59,1100.61,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +58,Cerium,Ce,0.00,-,4.91,5.31,9.35,16.56,28.79,12.05,13.40,15.00,19.00,15.00,32.00,20.24,119.76,28.00,31.00,32.00,32.00,37.00,37.00,34.00,36.00,34.00,136.00,36.00,39.00,38.00,62.00,41.00,95.00,43.53,804.47,86.00,93.00,98.00,95.00,98.00,122.00,100.00,106.00,100.00,281.00,89.00,98.00,92.00,204.00,102.00,193.00,98.00,5057.00,249.00,276.00,258.00,739.00,298.00,370.00,249.85,35380.45,1125.42,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +59,Praseodymium,Pr,0.00,-,4.51,5.08,11.07,17.36,18.55,24.47,15.00,15.00,19.00,17.00,14.00,34.00,21.02,132.98,28.00,34.00,33.00,33.00,38.00,38.00,36.00,37.00,36.00,140.00,37.00,40.00,40.00,65.00,43.00,96.00,45.94,849.06,89.00,94.00,102.00,96.00,101.00,127.00,101.00,109.00,103.00,286.00,92.00,100.00,93.00,217.00,103.00,198.00,100.00,5248.00,254.00,281.00,262.00,784.00,303.00,379.00,254.89,36675.82,1150.49,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +60,Neodymium,Nd,0.00,-,5.36,5.20,11.38,18.30,19.60,24.00,15.00,15.00,22.00,16.00,16.00,27.00,26.00,22.00,146.00,31.00,33.00,36.00,33.00,40.00,40.00,36.00,40.00,36.00,145.00,37.00,43.00,39.00,71.00,43.00,99.00,47.42,895.58,90.00,97.00,104.00,100.00,102.00,131.00,103.00,113.00,104.00,293.00,94.00,102.00,95.00,229.00,106.00,201.00,104.00,5440.00,260.00,286.00,267.00,829.00,310.00,388.00,259.66,37997.93,1175.99,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +61,Promethium,Pm,0.00,4.03,5.45,5.32,11.40,18.80,20.59,23.31,16.00,15.00,22.00,17.00,19.00,28.00,27.00,19.00,21.00,161.00,32.00,35.00,37.00,35.00,40.00,42.00,38.00,41.00,37.00,149.00,40.00,42.00,42.00,73.00,45.00,103.00,47.70,942.30,93.00,99.00,106.00,103.00,103.00,137.00,105.00,113.00,109.00,300.00,94.00,105.00,98.00,240.00,110.00,205.00,105.00,5639.00,263.00,293.00,271.00,877.00,317.00,396.00,265.26,39347.03,1201.81,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +62,Samarium,Sm,0.00,-,5.48,5.43,12.33,18.00,21.26,27.34,13.00,15.00,23.00,17.00,21.00,29.00,29.00,20.00,19.00,30.50,167.50,32.00,37.00,38.00,36.00,41.00,44.00,40.00,40.00,40.00,154.00,40.00,44.00,43.00,77.00,46.00,106.00,49.60,989.40,95.00,103.00,107.00,106.00,105.00,141.00,109.00,116.00,110.00,306.00,97.00,107.00,98.00,256.00,110.00,211.00,107.00,5839.00,268.00,298.00,277.00,927.00,324.00,404.00,270.85,40723.26,1228.12,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +63,Europium,Eu,0.00,1.11,5.55,5.58,13.67,17.78,20.30,25.00,17.00,15.00,24.00,17.00,22.00,30.00,30.00,20.00,18.00,30.00,33.40,173.60,35.00,37.00,40.00,37.00,42.00,46.00,40.00,43.00,41.00,158.00,41.00,46.00,43.00,82.00,47.00,110.00,50.06,1038.94,96.00,106.00,110.00,107.00,108.00,146.00,111.00,119.00,112.00,313.00,98.00,110.00,100.00,269.00,110.00,219.00,109.00,6042.00,273.00,304.00,282.00,979.00,332.00,412.00,276.58,42127.32,1254.70,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +64,Gadolinium,Gd,0.00,1.92,6.01,5.94,8.54,23.37,20.76,24.24,17.00,17.00,21.00,21.00,18.00,30.00,33.00,22.00,20.00,31.00,33.00,28.00,185.00,36.00,38.00,41.00,39.00,42.00,49.00,41.00,44.00,42.00,163.00,42.00,47.00,44.00,88.00,47.00,113.00,51.35,1088.65,99.00,107.00,114.00,109.00,110.00,152.00,112.00,126.00,110.00,320.00,100.00,111.00,103.00,284.00,115.00,221.00,111.00,6248.00,279.00,309.00,286.00,1036.00,338.00,422.00,281.57,43559.33,1281.62,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +65,Terbium,Tb,0.00,2.67,5.43,5.66,10.39,17.88,26.71,23.50,18.00,17.00,18.00,25.00,18.00,30.00,34.00,20.00,24.00,31.00,33.00,35.00,33.60,186.40,38.00,39.00,42.00,40.00,44.00,50.00,43.00,45.00,43.00,168.00,43.00,48.00,45.00,92.00,50.00,116.00,51.38,1139.62,102.00,109.00,117.00,111.00,111.00,158.00,115.00,125.00,116.00,325.00,103.00,113.00,105.00,300.00,117.00,226.00,114.00,6456.00,284.00,315.00,291.00,1095.00,345.00,431.00,287.00,45018.25,1310.39,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +66,Dysprosium,Dy,0.00,1.00,5.59,5.73,11.13,18.67,20.61,30.92,17.00,17.00,25.00,18.00,22.00,32.00,35.00,20.00,21.00,32.00,34.00,33.00,32.00,34.00,199.00,38.00,41.00,43.00,41.00,45.00,52.00,45.00,45.00,45.00,173.00,43.00,50.00,46.00,97.00,52.00,118.00,53.74,1190.26,105.00,111.00,119.00,114.00,114.00,162.00,118.00,127.00,118.00,333.00,104.00,116.00,106.00,316.00,121.00,230.00,116.00,6669.00,289.00,320.00,296.00,1158.00,351.00,441.00,292.06,46508.49,1336.95,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +67,Holmium,Ho,0.00,-,5.68,5.78,11.04,19.66,21.43,31.07,17.00,17.00,26.00,19.00,22.00,33.00,34.00,21.00,21.00,35.00,33.00,35.00,33.00,34.00,35.00,205.00,40.00,42.00,45.00,43.00,44.00,56.00,44.00,48.00,45.00,178.00,46.00,49.00,48.00,102.00,53.00,121.00,54.57,1244.43,107.00,113.00,121.00,117.00,116.00,168.00,120.00,129.00,122.00,338.00,107.00,117.00,109.00,333.00,123.00,236.00,117.00,6884.00,295.00,326.00,301.00,1222.00,359.00,450.00,297.77,48026.65,1364.38,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +68,Erbium,Er,0.00,2.92,5.80,5.82,10.81,19.96,22.40,30.90,18.00,17.00,27.00,19.00,24.00,34.00,33.00,22.00,21.00,34.00,36.00,34.00,35.00,36.00,34.00,35.00,215.00,40.00,43.00,46.00,44.00,46.00,57.00,46.00,50.00,46.00,182.00,46.00,52.00,48.00,109.00,53.00,125.00,56.00,1298.00,108.00,116.00,124.00,119.00,118.00,174.00,122.00,132.00,124.00,345.00,109.00,118.00,112.00,351.00,126.00,240.00,120.00,7103.00,299.00,331.00,307.00,1291.00,365.00,460.00,303.56,49573.68,1393.61,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +69,Thulium,Tm,0.50,2.23,6.17,5.87,11.63,19.02,22.73,32.57,18.00,17.00,27.00,20.00,25.00,34.00,35.00,21.00,22.00,35.00,35.00,37.00,36.00,40.00,30.00,40.00,33.00,222.00,41.00,45.00,47.00,46.00,46.00,60.00,47.00,50.00,48.00,187.00,48.00,52.00,49.00,115.00,55.00,128.00,56.20,1354.80,109.00,119.00,125.00,122.00,120.00,180.00,124.00,136.00,126.00,351.00,110.00,122.00,113.00,370.00,129.00,245.00,122.00,7324.00,304.00,337.00,312.00,1363.00,373.00,464.00,314.34,51150.92,1422.08,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +70,Ytterbium,Yb,0.00,3.53,6.25,5.92,12.87,18.51,22.02,33.42,18.00,18.00,28.00,19.00,27.00,35.00,35.00,22.00,23.00,36.00,36.00,35.00,38.00,36.00,35.00,40.00,40.00,31.00,231.00,42.00,47.00,48.00,46.00,49.00,61.00,49.00,51.00,49.00,192.00,48.00,54.00,50.00,121.00,56.00,133.00,58.40,1406.60,112.00,122.00,128.00,124.00,122.00,187.00,126.00,138.00,128.00,358.00,113.00,123.00,115.00,392.00,129.00,251.00,125.00,7548.00,309.00,342.00,317.00,1439.00,379.00,480.00,315.44,52757.60,1451.75,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +71,Lutetium,Lu,0.70,-,5.09,8.47,7.06,24.29,21.55,31.20,19.00,19.00,23.00,26.00,20.00,33.00,38.00,29.00,23.00,33.00,38.00,39.00,38.00,44.00,40.00,40.00,40.00,30.00,43.00,228.00,44.00,47.00,49.00,49.00,48.00,64.00,50.00,53.00,50.00,196.00,50.00,55.00,51.00,128.00,58.00,134.00,58.50,1464.50,116.00,122.00,132.00,126.00,125.00,192.00,129.00,141.00,130.00,365.00,114.00,126.00,117.00,412.00,133.00,256.00,126.00,7776.00,314.00,348.00,321.00,1519.00,390.00,490.00,318.05,54394.86,1481.89,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +72,Hafnium,Hf,0.00,6.60,6.71,8.17,8.30,10.03,35.05,29.63,20.00,20.00,19.00,30.00,22.00,21.00,40.00,40.00,24.00,25.00,40.00,41.00,41.00,39.00,40.00,50.00,40.00,40.00,40.00,42.00,230.00,45.00,47.00,52.00,49.00,50.00,66.00,51.00,55.00,50.00,202.00,50.00,57.00,51.00,136.00,59.00,137.00,59.90,1522.10,117.00,126.00,134.00,128.00,126.00,201.00,130.00,143.00,134.00,370.00,118.00,127.00,118.00,436.00,135.00,261.00,129.00,8004.00,321.00,352.00,329.00,1600.00,400.00,500.00,322.32,56063.61,1511.87,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +73,Tantalum,Ta,4.30,5.30,7.23,8.65,6.90,11.90,13.27,45.74,24.99,20.00,20.00,21.00,33.00,22.00,27.00,42.00,34.00,25.00,33.00,43.00,43.00,48.00,40.00,50.00,40.00,40.00,40.00,50.00,42.00,232.00,46.00,50.00,51.00,51.00,51.00,69.00,52.00,56.00,52.00,206.00,51.00,58.00,53.00,143.00,60.00,141.00,60.70,1584.00,115.30,129.00,135.00,132.00,127.00,208.00,132.00,147.00,135.00,378.00,118.00,130.00,122.00,457.00,138.00,267.00,131.00,8237.00,324.00,359.00,330.00,1690.00,410.00,510.00,328.51,57763.51,1542.68,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +74,Tungsten,W,0.00,5.91,7.05,8.24,9.92,12.19,13.38,13.18,57.24,19.19,19.00,18.80,29.90,22.70,26.70,32.40,34.60,36.60,26.00,32.80,41.40,40.50,40.80,51.10,46.10,45.40,48.10,50.30,49.00,48.00,250.80,47.80,50.40,53.00,51.70,51.70,73.10,52.50,56.70,52.90,207.80,53.10,57.70,54.20,154.30,60.90,144.00,60.11,1642.89,123.00,129.00,137.00,132.00,131.00,218.00,136.00,146.00,139.00,371.00,121.00,130.00,123.00,507.00,135.00,265.00,130.00,8436.00,330.00,356.00,336.00,1888.00,396.00,490.00,324.74,59495.19,1573.67,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +75,Rhenium,Re,0.00,1.98,7.68,8.77,10.40,12.10,12.80,15.10,15.71,61.69,20.60,22.00,21.00,28.00,32.00,23.00,39.00,47.00,26.00,26.00,47.00,44.00,50.00,50.00,50.00,50.00,40.00,50.00,50.00,50.00,43.00,241.00,48.00,52.00,55.00,53.00,52.00,76.00,53.00,58.00,55.00,216.00,54.00,59.00,55.00,160.00,62.00,148.00,64.54,1699.46,121.00,133.00,141.00,136.00,132.00,222.00,137.00,152.00,140.00,391.00,123.00,134.00,124.00,510.00,142.00,278.00,136.00,8714.00,330.00,370.00,340.00,1880.00,420.00,530.00,347.40,61259.50,1605.40,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +76,Osmium,Os,2.30,3.16,7.36,8.56,8.00,16.00,14.00,15.10,15.00,16.92,66.68,21.30,23.00,22.00,34.00,31.00,20.00,47.00,43.00,26.00,34.00,50.00,50.00,50.00,50.00,50.00,50.00,50.00,50.00,50.00,50.00,45.00,247.00,49.00,53.00,56.00,54.00,54.00,78.00,54.00,60.00,56.00,220.00,56.00,60.00,56.00,168.00,64.00,152.00,63.50,1758.50,127.00,134.00,144.00,138.00,135.00,228.00,141.00,154.00,142.00,398.00,125.00,136.00,127.00,536.00,146.00,283.00,142.00,8950.00,340.00,370.00,350.00,1980.00,430.00,540.00,350.60,63055.60,1638.20,,,,,,,,,,,,,,,,,,,,,,,,,,,, +77,Iridium,Ir,2.90,6.68,7.40,8.03,11.00,12.00,17.00,15.00,17.00,16.00,18.00,71.80,22.20,23.00,24.00,39.00,26.00,27.00,51.00,38.00,27.00,38.00,50.00,50.00,60.00,50.00,50.00,50.00,50.00,50.00,60.00,50.00,50.00,251.00,50.00,55.00,57.00,55.00,55.00,81.00,55.00,62.00,56.00,226.00,56.00,62.00,57.00,177.00,65.00,156.00,64.40,1819.60,128.00,138.00,146.00,140.00,137.00,237.00,143.00,156.00,145.00,405.00,126.00,139.00,128.00,566.00,147.00,289.00,140.00,9190.00,350.00,380.00,350.00,2090.00,440.00,550.00,356.60,64882.30,1674.40,,,,,,,,,,,,,,,,,,,,,,,,,,, +78,Platinum,Pt,0.00,5.32,6.83,9.60,10.44,14.00,13.00,19.00,16.00,18.00,17.00,18.90,75.50,24.60,24.00,24.00,39.00,26.00,34.00,53.00,34.00,28.00,43.00,60.00,50.00,50.00,50.00,60.00,50.00,60.00,50.00,60.00,50.00,50.00,262.00,52.00,55.00,58.00,57.00,56.00,83.00,58.00,62.00,58.00,230.00,57.00,63.00,59.00,186.00,67.00,159.00,65.80,1887.20,124.00,141.00,148.00,142.00,140.00,244.00,146.00,159.00,147.00,411.00,129.00,141.00,131.00,594.00,148.00,300.00,140.00,9440.00,350.00,390.00,350.00,2210.00,440.00,560.00,365.70,66749.47,1704.83,,,,,,,,,,,,,,,,,,,,,,,,,, +79,Gold,Au,0.00,5.41,6.92,10.97,9.80,15.00,15.00,14.00,20.00,18.00,18.10,18.90,19.20,31.80,75.00,24.00,25.00,41.00,27.00,41.00,54.00,33.00,30.00,50.00,50.00,60.00,50.00,60.00,50.00,60.00,60.00,50.00,60.00,50.00,60.00,265.00,52.00,57.00,60.00,58.00,56.00,87.00,59.00,63.00,59.00,235.00,59.00,63.00,60.00,197.00,68.00,162.00,71.00,1947.00,125.00,143.00,151.00,145.00,142.00,252.00,148.00,162.00,149.00,419.00,130.00,143.00,133.00,630.00,150.00,300.00,150.00,9680.00,360.00,390.00,360.00,2320.00,450.00,580.00,368.12,68647.70,1738.48,,,,,,,,,,,,,,,,,,,,,,,,, +80,Mercury,Hg,0.90,3.71,10.44,8.32,15.44,14.35,12.65,15.40,16.40,20.90,20.10,19.00,20.00,19.70,84.20,30.10,25.00,25.00,45.00,27.00,48.00,53.00,30.00,30.00,60.00,60.00,50.00,60.00,60.00,50.00,60.00,60.00,60.00,50.00,60.00,60.00,269.00,54.00,58.00,62.00,57.00,59.00,89.00,61.00,63.00,61.00,241.00,58.00,66.00,61.00,206.00,70.00,166.00,68.90,2005.10,136.00,144.00,155.00,146.00,144.00,261.00,151.00,164.00,152.00,425.00,133.00,145.00,139.00,650.00,160.00,310.00,150.00,9930.00,360.00,400.00,370.00,2440.00,460.00,590.00,374.10,70580.60,1773.00,,,,,,,,,,,,,,,,,,,,,,,, +81,Thallium,Tl,0.00,4.74,5.73,14.32,9.40,21.31,11.46,17.40,18.00,18.00,19.00,23.00,19.00,21.00,20.30,88.60,33.10,26.00,26.00,47.00,28.00,53.00,50.00,30.00,40.00,60.00,60.00,60.00,60.00,50.00,60.00,70.00,50.00,60.00,60.00,60.00,60.00,275.00,56.00,59.00,62.00,60.00,58.00,94.00,61.00,65.00,62.00,245.00,61.00,66.00,61.00,219.00,71.00,169.00,70.70,2069.30,137.00,147.00,156.00,150.00,145.00,272.00,151.00,168.00,154.00,432.00,135.00,149.00,130.00,700.00,160.00,310.00,150.00,10190.00,370.00,400.00,370.00,2570.00,480.00,590.00,384.10,72549.10,1808.40,,,,,,,,,,,,,,,,,,,,,,, +82,Lead,Pb,0.00,-,7.05,7.62,16.90,10.38,26.48,14.10,17.20,19.90,18.00,20.00,24.00,21.00,21.00,21.10,93.00,35.90,27.00,27.00,50.00,29.00,63.00,40.00,40.00,40.00,60.00,60.00,60.00,60.00,60.00,60.00,70.00,60.00,60.00,60.00,60.00,70.00,274.00,56.00,59.00,65.00,61.00,59.00,97.00,62.00,67.00,62.00,251.00,62.00,66.00,64.00,230.00,71.00,175.00,71.10,2131.90,141.00,148.00,159.00,153.00,145.00,282.00,155.00,170.00,157.00,438.00,138.00,150.00,140.00,730.00,160.00,320.00,150.00,10440.00,380.00,410.00,370.00,2710.00,480.00,610.00,388.00,74553.85,1844.55,,,,,,,,,,,,,,,,,,,,,, +83,Bismuth,Bi,0.00,3.37,6.34,9.42,8.86,19.74,10.70,32.30,14.70,19.00,21.00,18.10,21.90,25.00,21.00,23.00,20.60,97.60,38.80,27.00,28.00,56.00,30.00,70.00,40.00,30.00,60.00,60.00,60.00,60.00,60.00,70.00,60.00,60.00,70.00,60.00,70.00,60.00,60.00,284.00,56.00,62.00,65.00,62.00,61.00,100.00,63.00,68.00,64.00,256.00,62.00,68.00,64.00,243.00,73.00,178.00,72.80,2197.20,141.00,152.00,162.00,154.00,150.00,290.00,156.00,173.00,160.00,443.00,140.00,150.00,140.00,770.00,170.00,320.00,160.00,10700.00,370.00,420.00,380.00,2850.00,490.00,620.00,396.90,76594.86,1881.04,,,,,,,,,,,,,,,,,,,,, +84,Polonium,Po,0.00,-,6.51,10.89,7.70,9.00,21.00,12.10,38.90,17.00,21.10,19.90,24.00,19.00,26.00,22.00,24.00,23.00,112.00,28.00,29.00,29.00,58.00,30.00,80.00,30.00,40.00,60.00,60.00,70.00,60.00,70.00,60.00,60.00,70.00,70.00,60.00,60.00,70.00,60.00,295.00,58.00,63.00,66.00,63.00,62.00,104.00,64.00,69.00,66.00,260.00,63.00,70.00,65.00,256.00,74.00,182.00,74.20,2260.80,145.00,154.00,164.00,157.00,152.00,299.00,159.00,176.00,159.00,460.00,130.00,160.00,140.00,810.00,170.00,330.00,160.00,10960.00,380.00,420.00,390.00,3000.00,500.00,630.00,400.40,78673.90,1918.40,,,,,,,,,,,,,,,,,,,, +85,Astatine,At,0.00,6.06,6.52,8.56,8.70,13.07,10.74,21.61,13.10,45.00,18.90,20.00,23.10,19.90,24.00,27.00,24.00,24.00,24.00,117.00,29.00,29.00,30.00,60.00,30.00,90.00,30.00,40.00,70.00,60.00,70.00,60.00,70.00,60.00,70.00,70.00,60.00,70.00,60.00,80.00,60.00,298.00,59.00,64.00,68.00,64.00,63.00,107.00,66.00,71.00,66.00,265.00,64.00,72.00,65.00,270.00,76.00,185.00,76.00,2331.00,142.00,157.00,166.00,159.00,155.00,309.00,162.00,180.00,160.00,460.00,150.00,150.00,150.00,850.00,170.00,330.00,160.00,11220.00,390.00,430.00,390.00,3160.00,500.00,650.00,409.00,80784.40,1962.60,,,,,,,,,,,,,,,,,,, +86,Radon,Rn,0.00,4.80,10.75,10.65,8.00,7.50,16.00,11.10,24.00,14.00,52.00,19.90,21.10,23.00,22.00,24.00,29.00,24.00,25.00,25.00,121.00,31.00,30.00,30.00,64.00,37.00,80.00,40.00,50.00,70.00,60.00,70.00,70.00,60.00,70.00,60.00,80.00,70.00,60.00,70.00,70.00,60.00,313.00,61.00,64.00,69.00,66.00,64.00,110.00,68.00,71.00,68.00,270.00,66.00,72.00,67.00,284.00,77.00,189.00,78.00,2392.00,149.00,158.00,170.00,161.00,157.00,319.00,167.00,180.00,170.00,460.00,150.00,160.00,140.00,900.00,170.00,340.00,170.00,11480.00,390.00,440.00,400.00,3310.00,520.00,660.00,413.10,82938.90,2001.70,,,,,,,,,,,,,,,,,, +87,Francium,Fr,0.00,1.41,3.59,18.33,10.60,6.10,10.90,17.00,13.00,26.00,14.00,59.00,21.00,22.10,22.90,24.00,24.00,31.00,25.00,26.00,25.00,130.00,30.00,30.00,30.00,70.00,30.00,100.00,30.00,60.00,70.00,60.00,70.00,70.00,70.00,70.00,60.00,80.00,70.00,70.00,70.00,70.00,70.00,309.00,63.00,65.00,70.00,67.00,66.00,114.00,67.00,75.00,68.00,275.00,66.00,75.00,67.00,299.00,79.00,193.00,79.00,2458.00,151.00,162.00,171.00,164.00,159.00,328.00,170.00,180.00,170.00,480.00,140.00,160.00,150.00,940.00,180.00,350.00,160.00,11750.00,400.00,440.00,400.00,3490.00,530.00,670.00,423.40,85133.80,2041.80,,,,,,,,,,,,,,,,, +88,Radium,Ra,0.00,0.00,5.18,4.87,20.85,10.00,11.90,11.10,18.00,15.00,27.00,16.00,64.90,22.10,23.00,24.00,25.00,25.00,32.00,26.00,27.00,26.00,135.00,30.00,30.00,30.00,80.00,30.00,90.00,40.00,70.00,70.00,70.00,70.00,70.00,70.00,70.00,70.00,70.00,80.00,70.00,70.00,70.00,60.00,328.00,63.00,67.00,71.00,68.00,67.00,118.00,69.00,75.00,70.00,279.00,69.00,76.00,68.00,314.00,80.00,197.00,81.00,2525.00,153.00,163.00,175.00,166.00,158.00,340.00,170.00,190.00,170.00,480.00,150.00,160.00,160.00,990.00,170.00,360.00,170.00,12010.00,400.00,450.00,410.00,3670.00,540.00,680.00,429.80,87368.90,2082.60,,,,,,,,,,,,,,,, +89,Actinium,Ac,0.00,3.47,4.82,6.58,5.68,27.37,10.20,12.00,12.00,19.90,15.00,30.00,17.20,71.90,22.00,24.00,26.00,25.00,25.00,35.00,26.00,28.00,26.00,140.00,30.00,30.00,40.00,70.00,40.00,100.00,30.00,80.00,70.00,70.00,70.00,70.00,70.00,80.00,70.00,80.00,70.00,70.00,70.00,80.00,70.00,328.00,64.00,68.00,73.00,69.00,67.00,123.00,71.00,75.00,72.00,284.00,70.00,75.00,70.00,332.00,82.00,200.00,82.00,2592.00,156.00,165.00,177.00,165.00,170.00,350.00,170.00,190.00,170.00,490.00,150.00,170.00,150.00,1040.00,180.00,370.00,170.00,12280.00,410.00,450.00,420.00,3850.00,550.00,690.00,443.00,89646.00,2123.90,,,,,,,,,,,,,,, +90,Thorium,Th,0.00,-,5.94,5.59,8.10,8.80,29.20,11.10,12.90,13.00,23.00,15.00,32.00,16.00,81.00,23.00,25.00,26.00,26.00,27.00,35.00,27.00,29.00,28.00,142.00,30.00,40.00,30.00,80.00,70.00,70.00,40.00,80.00,70.00,80.00,70.00,70.00,80.00,70.00,70.00,80.00,80.00,70.00,80.00,90.00,60.00,330.00,65.00,69.00,74.00,71.00,68.00,123.00,75.00,78.00,73.00,289.00,70.00,77.00,71.00,350.00,82.00,205.00,83.00,2659.00,158.00,169.00,181.00,170.00,170.00,360.00,170.00,200.00,170.00,500.00,150.00,170.00,150.00,1100.00,180.00,370.00,170.00,12550.00,420.00,460.00,420.00,4050.00,560.00,710.00,442.80,91963.60,2167.00,,,,,,,,,,,,,, +91,Protactinium,Pa,0.00,1.18,5.51,6.01,7.10,11.90,13.40,27.70,13.10,13.80,12.10,26.00,16.00,34.00,16.00,89.00,24.00,26.00,27.00,26.00,28.00,37.00,28.00,30.00,28.00,144.00,30.00,40.00,30.00,90.00,40.00,100.00,40.00,90.00,70.00,80.00,70.00,80.00,70.00,80.00,70.00,90.00,70.00,80.00,90.00,60.00,70.00,353.00,67.00,70.00,76.00,70.00,71.00,131.00,72.00,79.00,74.00,295.00,70.00,79.00,72.00,368.00,84.00,209.00,84.00,2727.00,160.00,169.00,180.00,180.00,170.00,370.00,180.00,190.00,180.00,500.00,160.00,170.00,160.00,1150.00,180.00,380.00,180.00,12820.00,420.00,460.00,430.00,4260.00,570.00,720.00,451.60,94325.00,2210.40,,,,,,,,,,,,, +92,Uranium,U,0.00,-,5.82,4.41,9.20,16.90,9.30,14.00,29.00,12.00,15.00,13.00,29.00,15.00,37.00,17.00,96.00,25.00,27.00,27.00,29.00,27.00,39.00,28.00,32.00,28.00,145.00,40.00,30.00,40.00,90.00,40.00,100.00,40.00,100.00,80.00,70.00,80.00,80.00,70.00,80.00,80.00,80.00,80.00,80.00,80.00,70.00,80.00,358.00,68.00,72.00,76.00,73.00,71.00,135.00,74.00,81.00,73.00,301.00,73.00,78.00,74.00,387.00,85.00,211.00,88.00,2795.00,157.00,180.00,180.00,180.00,170.00,390.00,180.00,200.00,180.00,510.00,150.00,170.00,160.00,1210.00,190.00,390.00,170.00,13100.00,420.00,470.00,440.00,4470.00,580.00,760.00,436.50,96733.80,2250.70,,,,,,,,,,,, +93,Neptunium,Np,0.00,-,5.95,5.23,8.20,14.10,14.20,17.00,27.00,15.00,14.00,15.00,15.00,28.00,17.00,37.00,19.00,103.00,27.00,26.00,30.00,28.00,29.00,40.00,30.00,31.00,30.00,144.00,40.00,40.00,30.00,100.00,40.00,110.00,40.00,110.00,80.00,70.00,80.00,80.00,80.00,70.00,80.00,90.00,80.00,80.00,70.00,90.00,80.00,365.00,70.00,72.00,77.00,75.00,72.00,140.00,74.00,83.00,75.00,305.00,74.00,80.00,75.00,406.00,88.00,217.00,86.00,2866.00,160.00,180.00,180.00,180.00,170.00,410.00,180.00,200.00,180.00,520.00,160.00,170.00,160.00,1280.00,190.00,390.00,180.00,13370.00,430.00,470.00,440.00,4700.00,590.00,800.00,422.20,99179.60,2300.20,,,,,,,,,,, +94,Plutonium,Pu,0.00,-,5.94,5.17,9.80,14.00,14.00,31.00,15.00,14.00,15.00,15.00,20.00,20.00,21.00,19.00,39.00,20.00,111.00,27.00,28.00,30.00,29.00,29.00,43.00,30.00,32.00,31.00,152.00,30.00,40.00,40.00,100.00,40.00,110.00,40.00,120.00,80.00,80.00,80.00,80.00,80.00,80.00,70.00,100.00,80.00,80.00,80.00,80.00,80.00,384.00,70.00,74.00,79.00,75.00,74.00,144.00,76.00,83.00,78.00,309.00,75.00,82.00,75.00,428.00,89.00,222.00,83.00,2930.00,170.00,180.00,190.00,180.00,180.00,410.00,180.00,210.00,180.00,530.00,160.00,180.00,160.00,1330.00,200.00,400.00,180.00,13640.00,440.00,480.00,440.00,4960.00,600.00,700.00,525.80,101673.40,2346.80,,,,,,,,,, +95,Americium,Am,0.00,-,5.90,5.73,10.00,15.10,13.20,17.90,27.10,15.00,16.00,15.00,21.00,22.00,22.00,19.00,17.00,42.00,21.00,119.00,27.00,30.00,30.00,30.00,30.00,45.00,30.00,34.00,31.00,149.00,40.00,40.00,40.00,110.00,40.00,110.00,40.00,130.00,80.00,80.00,80.00,90.00,80.00,80.00,80.00,90.00,90.00,80.00,80.00,90.00,70.00,394.00,72.00,75.00,80.00,77.00,73.00,151.00,77.00,84.00,78.00,315.00,77.00,82.00,76.00,451.00,91.00,227.00,90.00,2990.00,170.00,190.00,190.00,180.00,180.00,430.00,180.00,210.00,190.00,530.00,160.00,180.00,170.00,1400.00,200.00,400.00,190.00,13920.00,440.00,490.00,460.00,5200.00,600.00,800.00,449.40,104220.10,2391.50,,,,,,,,, +96,Curium,Cm,-,0.52,5.67,4.01,10.10,17.60,13.30,18.10,27.90,15.00,16.00,16.00,23.00,23.00,22.00,23.00,18.00,19.00,39.00,21.00,128.00,29.00,29.00,32.00,30.00,31.00,46.00,32.00,34.00,32.00,155.00,40.00,40.00,40.00,110.00,40.00,120.00,40.00,140.00,80.00,80.00,90.00,80.00,80.00,90.00,80.00,100.00,80.00,80.00,90.00,80.00,90.00,396.00,74.00,75.00,82.00,77.00,76.00,155.00,78.00,86.00,79.00,320.00,78.00,83.00,78.00,474.00,89.00,230.00,90.00,3070.00,170.00,180.00,200.00,180.00,180.00,450.00,190.00,200.00,200.00,540.00,160.00,180.00,170.00,1470.00,210.00,410.00,190.00,14190.00,440.00,520.00,400.00,5500.00,600.00,800.00,493.00,106806.60,2443.40,,,,,,,, +97,Berkelium,Bk,-,-,6.17,5.70,9.70,14.40,20.00,14.10,19.90,24.00,16.00,17.00,24.00,24.00,23.00,22.00,19.00,20.00,24.00,36.00,22.00,136.00,29.00,31.00,33.00,31.00,31.00,48.00,33.00,35.00,32.00,160.00,40.00,40.00,40.00,120.00,40.00,120.00,50.00,140.00,80.00,90.00,80.00,90.00,80.00,80.00,90.00,100.00,80.00,90.00,80.00,90.00,90.00,410.00,74.00,78.00,83.00,78.00,76.00,161.00,79.00,88.00,80.00,325.00,79.00,84.00,80.00,495.00,100.00,230.00,90.00,3140.00,170.00,180.00,200.00,190.00,180.00,460.00,190.00,210.00,200.00,540.00,170.00,190.00,160.00,1550.00,210.00,420.00,190.00,14470.00,420.00,500.00,500.00,5700.00,700.00,800.00,457.60,109447.10,2493.30,,,,,,, +98,Californium,Cf,-,-,6.26,5.52,10.60,15.30,14.20,23.10,16.00,21.90,20.10,19.00,26.00,24.00,23.00,22.00,18.00,21.00,24.00,24.00,34.00,22.00,146.00,30.00,31.00,33.00,32.00,33.00,49.00,34.00,36.00,33.00,163.00,40.00,40.00,30.00,130.00,50.00,120.00,40.00,160.00,80.00,90.00,90.00,80.00,90.00,80.00,90.00,100.00,90.00,80.00,90.00,90.00,80.00,436.00,75.00,79.00,84.00,79.00,78.00,166.00,81.00,87.00,83.00,331.00,78.00,87.00,80.00,526.00,90.00,240.00,90.00,3210.00,170.00,190.00,200.00,190.00,180.00,480.00,190.00,220.00,190.00,560.00,170.00,180.00,170.00,1630.00,210.00,420.00,200.00,14720.00,500.00,500.00,500.00,6000.00,600.00,800.00,543.50,112135.80,2544.70,,,,,, +99,Einsteinium,Es,-,-,6.42,5.58,10.70,16.10,15.30,16.90,26.00,15.90,24.10,20.00,23.00,26.00,25.00,21.00,18.00,24.00,23.00,25.00,25.00,31.00,23.00,155.00,30.00,32.00,34.00,33.00,33.00,52.00,34.00,37.00,34.00,165.00,40.00,40.00,40.00,130.00,50.00,120.00,50.00,160.00,90.00,90.00,80.00,90.00,90.00,90.00,80.00,110.00,80.00,90.00,100.00,80.00,140.00,394.00,76.00,79.00,86.00,81.00,78.00,172.00,81.00,91.00,82.00,336.00,81.00,83.00,80.00,560.00,90.00,250.00,90.00,3270.00,180.00,190.00,200.00,190.00,190.00,490.00,190.00,220.00,200.00,560.00,170.00,190.00,180.00,1700.00,220.00,430.00,240.00,15000.00,400.00,600.00,400.00,6300.00,700.00,800.00,551.40,114876.60,2598.00,,,,, +100,Fermium,Fm,-,-,-,3.50,13.20,16.10,15.70,19.00,19.00,27.00,16.00,26.00,23.00,24.00,28.00,20.00,19.00,24.00,26.00,25.00,26.00,25.00,28.00,23.00,163.00,31.00,33.00,36.00,33.00,33.00,55.00,34.00,38.00,35.00,166.00,40.00,40.00,40.00,140.00,50.00,130.00,50.00,170.00,90.00,80.00,90.00,90.00,90.00,90.00,90.00,100.00,100.00,90.00,80.00,90.00,100.00,453.00,77.00,81.00,86.00,83.00,80.00,176.00,84.00,90.00,85.00,341.00,84.00,90.00,80.00,580.00,90.00,250.00,100.00,3340.00,170.00,200.00,200.00,200.00,190.00,500.00,200.00,220.00,200.00,570.00,170.00,200.00,170.00,1790.00,220.00,400.00,200.00,15300.00,500.00,500.00,500.00,6600.00,700.00,900.00,482.20,117670.30,,,,, +101,Mendelevium,Md,-,-,-,3.42,14.30,15.70,14.10,21.90,20.00,19.10,28.80,18.10,25.00,28.00,25.00,20.00,22.00,25.00,27.00,26.00,26.00,26.00,26.00,24.00,24.00,173.00,31.00,33.00,37.00,34.00,34.00,57.00,35.00,38.00,36.00,166.00,40.00,50.00,40.00,140.00,50.00,140.00,40.00,180.00,90.00,90.00,90.00,90.00,90.00,90.00,100.00,100.00,100.00,80.00,100.00,90.00,100.00,463.00,79.00,83.00,87.00,83.00,81.00,183.00,85.00,92.00,85.00,349.00,80.00,90.00,80.00,610.00,100.00,250.00,100.00,3400.00,190.00,190.00,210.00,200.00,190.00,520.00,200.00,230.00,200.00,580.00,170.00,190.00,180.00,1880.00,240.00,400.00,200.00,15600.00,500.00,500.00,500.00,7000.00,600.00,900.00,548.00,,,,, +102,Nobelium,No,-,-,-,5.85,13.30,15.70,18.50,14.00,23.00,22.00,21.00,30.00,17.00,29.00,30.00,21.00,23.00,22.00,29.00,26.00,27.00,26.00,28.00,27.00,21.00,24.00,181.00,33.00,34.00,37.00,35.00,35.00,59.00,35.00,41.00,35.00,175.00,40.00,40.00,40.00,160.00,50.00,130.00,50.00,190.00,90.00,100.00,90.00,90.00,90.00,90.00,100.00,110.00,80.00,100.00,90.00,100.00,90.00,487.00,78.00,85.00,88.00,84.00,83.00,189.00,86.00,93.00,87.00,350.00,80.00,100.00,80.00,640.00,100.00,260.00,100.00,3470.00,180.00,200.00,210.00,200.00,190.00,540.00,210.00,220.00,210.00,580.00,180.00,200.00,180.00,2020.00,200.00,400.00,200.00,15900.00,500.00,500.00,500.00,7300.00,700.00,900.00,,,,, +103,Lawrencium,Lr,-,-,4.89,8.95,7.10,22.20,12.40,24.00,16.00,25.00,22.00,22.00,32.00,19.00,28.00,25.00,21.00,30.00,24.00,30.00,29.00,28.00,29.00,27.00,23.00,30.00,20.00,185.00,34.00,35.00,38.00,36.00,34.00,63.00,35.00,41.00,37.00,182.00,40.00,40.00,50.00,160.00,50.00,140.00,50.00,200.00,90.00,90.00,100.00,90.00,90.00,100.00,100.00,110.00,80.00,100.00,100.00,90.00,100.00,491.00,80.00,85.00,90.00,86.00,83.00,195.00,88.00,92.00,90.00,360.00,80.00,90.00,90.00,670.00,110.00,260.00,100.00,3530.00,190.00,200.00,210.00,200.00,200.00,560.00,200.00,230.00,210.00,590.00,180.00,200.00,210.00,2000.00,300.00,400.00,200.00,16200.00,500.00,500.00,500.00,7700.00,700.00,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, diff --git a/atomdb/datasets/gaussian/__init__.py b/atomdb/datasets/gaussian/__init__.py index 1937ccce..8a653016 100644 --- a/atomdb/datasets/gaussian/__init__.py +++ b/atomdb/datasets/gaussian/__init__.py @@ -27,7 +27,7 @@ from gbasis.evals.density import evaluate_basis from gbasis.evals.eval_deriv import evaluate_deriv_basis -from grid.onedgrid import UniformInteger +from grid.onedgrid import UniformInteger from grid.rtransform import ExpRTransform from grid.atomgrid import AtomGrid @@ -43,14 +43,14 @@ # Parameters to generate an atomic grid from uniform radial grid # Use 170 points, lmax = 21 for the Lebedev grid since our basis -# don't go beyond l=10 in the spherical harmonics. -BOUND = (1e-5, 2e1) #(r_min, r_max) +# don't go beyond l=10 in the spherical harmonics. +BOUND = (1e-5, 2e1) # (r_min, r_max) NPOINTS = 1000 -SIZE = 170 # Lebedev grid sizes +SIZE = 170 # Lebedev grid sizes -DEGREE = 21 # Lebedev grid degrees +DEGREE = 21 # Lebedev grid degrees DOCSTRING = """Gaussian basis densities (UHF) Dataset @@ -96,7 +96,7 @@ def eval_orbs_density(one_density_matrix, orb_eval): return density -def eval_orb_ked(one_density_matrix, basis, points, transform=None, coord_type='spherical'): +def eval_orb_ked(one_density_matrix, basis, points, transform=None, coord_type="spherical"): "Adapted from Gbasis" orbt_ked = 0 for orders in np.identity(3, dtype=int): @@ -125,7 +125,7 @@ def run(elem, charge, mult, nexc, dataset, datapath): n_dn = (nelec - nspin) // 2 # Load data from fchk - basis = 'def2-svpd' + basis = "def2-svpd" data = _load_fchk(natom, elem, nelec, mult, basis, datapath) # Unrestricted Hartree-Fock SCF results @@ -135,7 +135,7 @@ def run(elem, charge, mult, nexc, dataset, datapath): mo_e_dn = data.mo.energies[norba:] occs_up = data.mo.occs[:norba] occs_dn = data.mo.occs[norba:] - mo_coeffs = data.mo.coeffs # ndarray(nbasis, norba + norbb) + mo_coeffs = data.mo.coeffs # ndarray(nbasis, norba + norbb) coeffs_a = mo_coeffs[:, :norba] coeffs_b = mo_coeffs[:, norba:] @@ -146,9 +146,9 @@ def run(elem, charge, mult, nexc, dataset, datapath): dm1_tot = dm1_up + dm1_dn # Make grid - onedg = UniformInteger(NPOINTS) # number of uniform grid points. - rgrid = ExpRTransform(*BOUND).transform_1d_grid(onedg) # radial grid - atgrid = AtomGrid(rgrid, degrees=[DEGREE], sizes=[SIZE], center=np.array([0., 0., 0.])) + onedg = UniformInteger(NPOINTS) # number of uniform grid points. + rgrid = ExpRTransform(*BOUND).transform_1d_grid(onedg) # radial grid + atgrid = AtomGrid(rgrid, degrees=[DEGREE], sizes=[SIZE], center=np.array([0.0, 0.0, 0.0])) # Compute densities obasis, coord_types = from_iodata(data) @@ -182,15 +182,15 @@ def run(elem, charge, mult, nexc, dataset, datapath): cov_radii, vdw_radii, mass = atomdb.get_element_data(elem) if charge != 0: cov_radii, vdw_radii = [None, None] # overwrite values for charged species - + # Conceptual-DFT properties (WIP) # NOTE: Only the alpha component of the MOs is used bellow mo_energy_occ_up = mo_e_up[:n_up] mo_energy_virt_up = mo_e_up[n_up:] - ip = -mo_energy_occ_up[-1] # - energy_HOMO_alpha - ea = -mo_energy_virt_up[0] # - energy_LUMO_alpha - mu=None - eta=None + ip = -mo_energy_occ_up[-1] # - energy_HOMO_alpha + ea = -mo_energy_virt_up[0] # - energy_LUMO_alpha + mu = None + eta = None # Return Species instance return atomdb.Species( diff --git a/atomdb/datasets/hci_augccpwcvqz/__init__.py b/atomdb/datasets/hci_augccpwcvqz/__init__.py index 8fd5ca1a..ceaaab1b 100644 --- a/atomdb/datasets/hci_augccpwcvqz/__init__.py +++ b/atomdb/datasets/hci_augccpwcvqz/__init__.py @@ -27,7 +27,7 @@ from gbasis.evals.density import evaluate_basis from gbasis.evals.eval_deriv import evaluate_deriv_basis -from grid.onedgrid import UniformInteger +from grid.onedgrid import UniformInteger from grid.rtransform import ExpRTransform from grid.atomgrid import AtomGrid @@ -41,17 +41,17 @@ # Parameters to generate an atomic grid from uniform radial grid # Use 170 points, lmax = 21 for the Lebedev grid since our basis -# don't go beyond l=10 in the spherical harmonics. -BOUND = (1e-5, 2e1) #(r_min, r_max) +# don't go beyond l=10 in the spherical harmonics. +BOUND = (1e-5, 2e1) # (r_min, r_max) NPOINTS = 100 -SIZE = 170 # Lebedev grid sizes +SIZE = 170 # Lebedev grid sizes -DEGREE = 21 # Lebedev grid degrees +DEGREE = 21 # Lebedev grid degrees -BASIS = 'aug-ccpwCVQZ' +BASIS = "aug-ccpwCVQZ" DOCSTRING = """Heat-bath Configuration Interaction (HCI) Dataset @@ -87,7 +87,7 @@ def eval_orbs_density(one_density_matrix, orb_eval): return density -def eval_orb_ked(one_density_matrix, basis, points, transform=None, coord_type='spherical'): +def eval_orb_ked(one_density_matrix, basis, points, transform=None, coord_type="spherical"): "Adapted from Gbasis" orbt_ked = 0 for orders in np.identity(3, dtype=int): @@ -120,23 +120,23 @@ def run(elem, charge, mult, nexc, dataset, datapath): scfdata = load_one(atomdb.datafile(".molden", elem, charge, mult, nexc, dataset, datapath)) norba = scfdata.mo.norba mo_e_up = scfdata.mo.energies[:norba] - mo_e_dn = mo_e_up # since only alpha MO information in .molden - occs_up = scfdata.mo.occs # ndarray(nbasis, nmos) + mo_e_dn = mo_e_up # since only alpha MO information in .molden + occs_up = scfdata.mo.occs # ndarray(nbasis, nmos) occs_dn = None mo_coeff = scfdata.mo.coeffs # Load HCI data data = np.load(atomdb.datafile(".ci.npz", elem, charge, mult, nexc, dataset, datapath)) - energy = data['energy'][0] + energy = data["energy"][0] # Prepare data for computing Species properties - dm1_up, dm1_dn = data['rdm1'] + dm1_up, dm1_dn = data["rdm1"] dm1_tot = dm1_up + dm1_dn # Make grid - onedg = UniformInteger(NPOINTS) # number of uniform grid points. - rgrid = ExpRTransform(*BOUND).transform_1d_grid(onedg) # radial grid - atgrid = AtomGrid(rgrid, degrees=[DEGREE], sizes=[SIZE], center=np.array([0., 0., 0.])) + onedg = UniformInteger(NPOINTS) # number of uniform grid points. + rgrid = ExpRTransform(*BOUND).transform_1d_grid(onedg) # radial grid + atgrid = AtomGrid(rgrid, degrees=[DEGREE], sizes=[SIZE], center=np.array([0.0, 0.0, 0.0])) # Compute densities obasis, coord_types = from_iodata(scfdata) @@ -145,12 +145,20 @@ def run(elem, charge, mult, nexc, dataset, datapath): orb_dens_dn = eval_orbs_density(dm1_dn, orb_eval) # orb_dens_tot = orb_dens_up + orb_dens_dn # dens_tot = np.sum(orb_dens_tot, axis=0) - dens_tot = eval_dens(dm1_tot, obasis, atgrid.points, coord_type=coord_types, transform=mo_coeff.T) + dens_tot = eval_dens( + dm1_tot, obasis, atgrid.points, coord_type=coord_types, transform=mo_coeff.T + ) # Compute kinetic energy density - orb_ked_up = eval_orb_ked(dm1_up, obasis, atgrid.points, transform=mo_coeff.T, coord_type=coord_types) - orb_ked_dn = eval_orb_ked(dm1_dn, obasis, atgrid.points, transform=mo_coeff.T, coord_type=coord_types) - ked_tot = eval_pd_ked(dm1_tot, obasis, atgrid.points, coord_type=coord_types, transform=mo_coeff.T) + orb_ked_up = eval_orb_ked( + dm1_up, obasis, atgrid.points, transform=mo_coeff.T, coord_type=coord_types + ) + orb_ked_dn = eval_orb_ked( + dm1_dn, obasis, atgrid.points, transform=mo_coeff.T, coord_type=coord_types + ) + ked_tot = eval_pd_ked( + dm1_tot, obasis, atgrid.points, coord_type=coord_types, transform=mo_coeff.T + ) # Density and KED spherical average dens_spherical_avg = atgrid.spherical_average(dens_tot) @@ -177,9 +185,9 @@ def run(elem, charge, mult, nexc, dataset, datapath): # # Conceptual-DFT properties (TODO) # - ip=None - mu=None - eta=None + ip = None + mu = None + eta = None # Return Species instance return atomdb.Species( diff --git a/atomdb/datasets/nist/__init__.py b/atomdb/datasets/nist/__init__.py index 4c65c1d0..a46a8061 100644 --- a/atomdb/datasets/nist/__init__.py +++ b/atomdb/datasets/nist/__init__.py @@ -75,7 +75,9 @@ def run(elem, charge, mult, nexc, dataset, datapath): # Neutral and cations z = str(natom).zfill(3) ne = str(nelec).zfill(3) - with h5.File(os.path.join(os.path.dirname(__file__), "raw/database_beta_1.3.0.h5"), "r") as f: + with h5.File( + os.path.join(os.path.dirname(__file__), "raw/database_beta_1.3.0.h5"), "r" + ) as f: mults = np.array(list(f[z][ne]["Multi"][...]), dtype=int) energy = f[z][ne]["Energy"][...] # sort based on energy @@ -92,7 +94,9 @@ def run(elem, charge, mult, nexc, dataset, datapath): # isoelectronic species z = str(natom - charge).zfill(3) ne = str(nelec).zfill(3) - with h5.File(os.path.join(os.path.dirname(__file__), "raw/database_beta_1.3.0.h5"), "r") as f: + with h5.File( + os.path.join(os.path.dirname(__file__), "raw/database_beta_1.3.0.h5"), "r" + ) as f: mults = np.array(list(f[z][ne]["Multi"][...]), dtype=int) energy = f[z][ne]["Energy"][...] # sort based on energy @@ -109,15 +113,17 @@ def run(elem, charge, mult, nexc, dataset, datapath): # Get conceptual-DFT related properties from c6cp04533b1.csv # Locate where each table starts: search for "Element" columns - data = list(csv.reader(open(os.path.join(os.path.dirname(__file__), "raw/c6cp04533b1.csv"), "r"))) + data = list( + csv.reader(open(os.path.join(os.path.dirname(__file__), "raw/c6cp04533b1.csv"), "r")) + ) tabid = [i for i, row in enumerate(data) if "Element" in row] # Assign each conceptual-DFT data table to a variable. # Remove empty and header rows - table_ips = data[tabid[0]:tabid[1]] + table_ips = data[tabid[0] : tabid[1]] table_ips = [row for row in table_ips if len(row[1]) > 0] - table_mus = data[tabid[1]:tabid[2]] + table_mus = data[tabid[1] : tabid[2]] table_mus = [row for row in table_mus if len(row[1]) > 0] - table_etas = data[tabid[2]:] + table_etas = data[tabid[2] :] table_etas = [row for row in table_etas if len(row[1]) > 0] # Get property at table(natom, charge) colid = table_ips[0].index(str(charge)) @@ -143,4 +149,4 @@ def run(elem, charge, mult, nexc, dataset, datapath): ip=ip, mu=mu, eta=eta, - ) \ No newline at end of file + ) diff --git a/atomdb/datasets/numeric/__init__.py b/atomdb/datasets/numeric/__init__.py index ac029e19..3d96e1ba 100644 --- a/atomdb/datasets/numeric/__init__.py +++ b/atomdb/datasets/numeric/__init__.py @@ -39,11 +39,12 @@ def load_numerical_hf_data(): def helper_skip(): """Skip the header for each species.""" - for _ in range(4): f.readline() + for _ in range(4): + f.readline() def helper_data(): """Read the grid, density, gradient, laplacian values into arrays.""" - data = u"" + data = "" for i in range(number_points): data += f.readline() data = np.loadtxt(StringIO(data)) @@ -61,27 +62,36 @@ def helper_data(): # dictionary to store attributes of the new atomic species kwargs = {} - atomic_number, number_electrons, number_points = [int(item) for item in line.split()] + atomic_number, number_electrons, number_points = [ + int(item) for item in line.split() + ] energy = [float(item) for item in f.readline().split()] assert len(energy) == 5 - assert abs(sum(energy[:-1]) - energy[-1]) < 1.e-8 #1.e-12 didn"t work?! + assert abs(sum(energy[:-1]) - energy[-1]) < 1.0e-8 # 1.e-12 didn"t work?! # store energy component values - kwargs["energy_components"] = dict([("T", energy[0]), ("Vne", energy[1]), - ("J", energy[2]), ("Ex", energy[3]), - ("E", energy[4])]) + kwargs["energy_components"] = dict( + [ + ("T", energy[0]), + ("Vne", energy[1]), + ("J", energy[2]), + ("Ex", energy[3]), + ("E", energy[4]), + ] + ) grid, density, gradient, laplacian = helper_data() assert grid.shape == density.shape == gradient.shape == laplacian.shape # store grid dependent values - kwargs.update({"grid":grid, "density":density, "gradient":gradient, - "laplacian":laplacian}) + kwargs.update( + {"grid": grid, "density": density, "gradient": gradient, "laplacian": laplacian} + ) # add the new atomic species species[(atomic_number, number_electrons)] = kwargs line = f.readline() - + return species @@ -120,16 +130,15 @@ def run(elem, charge, mult, nexc, dataset, datapath): energy = data["energy_components"]["E"] # Make grid - points = data['grid'] + points = data["grid"] # Compute densities and derivatives - dens_tot = data['density'] + dens_tot = data["density"] # d_dens_tot = data['gradient'] # Compute laplacian and kinetic energy density # lapl_tot = data['laplacian'] ked_tot = None - # Return Species instance return atomdb.Species( diff --git a/atomdb/datasets/slater/__init__.py b/atomdb/datasets/slater/__init__.py index dec44e11..932fb810 100644 --- a/atomdb/datasets/slater/__init__.py +++ b/atomdb/datasets/slater/__init__.py @@ -187,7 +187,9 @@ def slater_orbital(exponent, number, points): if points.ndim != 1: raise ValueError("The argument point should be a 1D array.") # compute norm & pre-factor - norm = np.power(2. * exponent, number) * np.sqrt((2. * exponent) / factorial(2. * number)) + norm = np.power(2.0 * exponent, number) * np.sqrt( + (2.0 * exponent) / factorial(2.0 * number) + ) pref = np.power(points, number - 1).T # compute slater function slater = norm.T * pref * np.exp(-exponent * points).T @@ -288,12 +290,12 @@ def atomic_density(self, points, mode="total"): orb_occs = self.orbitals_occupation if mode == "valence": orb_homo = self.orbitals_energy[len(self.orbitals_occupation) - 1] - orb_occs = orb_occs * np.exp(-(self.orbitals_energy - orb_homo)**2) + orb_occs = orb_occs * np.exp(-((self.orbitals_energy - orb_homo) ** 2)) elif mode == "core": orb_homo = self.orbitals_energy[len(self.orbitals_occupation) - 1] - orb_occs = orb_occs * (1. - np.exp(-(self.orbitals_energy - orb_homo)**2)) + orb_occs = orb_occs * (1.0 - np.exp(-((self.orbitals_energy - orb_homo) ** 2))) # compute density - dens = np.dot(self.phi_matrix(points)**2, orb_occs).ravel() / (4 * np.pi) + dens = np.dot(self.phi_matrix(points) ** 2, orb_occs).ravel() / (4 * np.pi) return dens @staticmethod @@ -337,7 +339,7 @@ def derivative_slater_type_orbital(exponent, number, points): """ slater = AtomicDensity.slater_orbital(exponent, number, points) # derivative - deriv_pref = (number.T - 1.) / np.reshape(points, (points.shape[0], 1)) - exponent.T + deriv_pref = (number.T - 1.0) / np.reshape(points, (points.shape[0], 1)) - exponent.T deriv = deriv_pref * slater return deriv @@ -367,26 +369,26 @@ def lagrangian_kinetic_energy(self, points): exps, number = self.orbitals_exp[orbital[1]], self.basis_numbers[orbital[1]] slater = AtomicDensity.slater_orbital(exps, number, points) # derivative - deriv_pref = (number.T - 1.) - exps.T * np.reshape(points, (points.shape[0], 1)) + deriv_pref = (number.T - 1.0) - exps.T * np.reshape(points, (points.shape[0], 1)) deriv = deriv_pref * slater phi_matrix[:, index] = np.dot(deriv, self.orbitals_coeff[orbital]).ravel() angular = [] # Angular numbers are l(l + 1) for index, orbital in enumerate(self.orbitals): if "S" in orbital: - angular.append(0.) + angular.append(0.0) elif "P" in orbital: - angular.append(2.) + angular.append(2.0) elif "D" in orbital: - angular.append(6.) + angular.append(6.0) elif "F" in orbital: - angular.append(12.) + angular.append(12.0) orb_occs = self.orbitals_occupation - energy = np.dot(phi_matrix**2., orb_occs).ravel() / 2. + energy = np.dot(phi_matrix**2.0, orb_occs).ravel() / 2.0 # Add other term - molecular = self.phi_matrix(points)**2. * np.array(angular) - energy += np.dot(molecular, orb_occs).ravel() / 2. + molecular = self.phi_matrix(points) ** 2.0 * np.array(angular) + energy += np.dot(molecular, orb_occs).ravel() / 2.0 return energy def derivative_density(self, points): @@ -404,7 +406,7 @@ def derivative_density(self, points): The derivative of atomic density on the grid points. """ factor = self.phi_matrix(points) * self.phi_matrix(points, deriv=True) - derivative = np.dot(2. * factor, self.orbitals_occupation).ravel() / (4 * np.pi) + derivative = np.dot(2.0 * factor, self.orbitals_occupation).ravel() / (4 * np.pi) return derivative @@ -423,21 +425,159 @@ def load_slater_wfn(element, anion=False, cation=False): """ # Heavy atoms from atom cs to lr. - heavy_atoms = ["cs", "ba", "la", "ce", "pr", "nd", "pm", "sm", "eu", "gd", "tb", "dy", "ho", - "er", "tm", "yb", "lu", "hf", "ta", "w", "re", "os", "ir", "pt", "au", "hg", - "tl", "pb", "bi", "po", "at", "rn", "fr", "ra", "ac", "th", "pa", "u", "np", - "pu", "am", "cm", "bk", "cf", "es", "fm", "md", "no", "lr"] - - anion_atoms = ["ag", "al", "as", "b", "br", "c", "cl", "co", "cr", "cu", "f", "fe", "ga", - "ge", "h", "i", "in", "k", "li", "mn", "mo", "n", "na", "nb", "ni", "o", - "p", "pd", "rb", "rh", "ru", "s", "sb", "sc", "se", "si", "sn", "tc", "te", - "ti", "v", "y", "zr"] - - cation_atoms = ["ag", "al", "ar", "as", "b", "be", "br", "c", "ca", "cd", "cl", "co", - "cr", "cs", "cu", "f", "fe", "ga", "ge", "i", "in", "k", "kr", "li", - "mg", "mn", "mo", "n", "na", "nb", "ne", "ni", "o", "p", "pd", "rb", - "rh", "ru", "s", "sb", "sc", "se", "si", "sn", "sr", "tc", "te", "ti", - "v", "xe", "y", "zn", "zr"] + heavy_atoms = [ + "cs", + "ba", + "la", + "ce", + "pr", + "nd", + "pm", + "sm", + "eu", + "gd", + "tb", + "dy", + "ho", + "er", + "tm", + "yb", + "lu", + "hf", + "ta", + "w", + "re", + "os", + "ir", + "pt", + "au", + "hg", + "tl", + "pb", + "bi", + "po", + "at", + "rn", + "fr", + "ra", + "ac", + "th", + "pa", + "u", + "np", + "pu", + "am", + "cm", + "bk", + "cf", + "es", + "fm", + "md", + "no", + "lr", + ] + + anion_atoms = [ + "ag", + "al", + "as", + "b", + "br", + "c", + "cl", + "co", + "cr", + "cu", + "f", + "fe", + "ga", + "ge", + "h", + "i", + "in", + "k", + "li", + "mn", + "mo", + "n", + "na", + "nb", + "ni", + "o", + "p", + "pd", + "rb", + "rh", + "ru", + "s", + "sb", + "sc", + "se", + "si", + "sn", + "tc", + "te", + "ti", + "v", + "y", + "zr", + ] + + cation_atoms = [ + "ag", + "al", + "ar", + "as", + "b", + "be", + "br", + "c", + "ca", + "cd", + "cl", + "co", + "cr", + "cs", + "cu", + "f", + "fe", + "ga", + "ge", + "i", + "in", + "k", + "kr", + "li", + "mg", + "mn", + "mo", + "n", + "na", + "nb", + "ne", + "ni", + "o", + "p", + "pd", + "rb", + "rh", + "ru", + "s", + "sb", + "sc", + "se", + "si", + "sn", + "sr", + "tc", + "te", + "ti", + "v", + "xe", + "y", + "zn", + "zr", + ] is_heavy_element = element.lower() in heavy_atoms if (anion or cation) and is_heavy_element: @@ -480,8 +620,12 @@ def get_number_of_electrons_per_orbital(configuration): shells = ["K", "L", "M", "N"] out = {} - orbitals = [str(x) + "S" for x in range(1, 8)] + [str(x) + "P" for x in range(2, 8)] + \ - [str(x) + "D" for x in range(3, 8)] + [str(x) + "F" for x in range(4, 8)] + orbitals = ( + [str(x) + "S" for x in range(1, 8)] + + [str(x) + "P" for x in range(2, 8)] + + [str(x) + "D" for x in range(3, 8)] + + [str(x) + "F" for x in range(4, 8)] + ) for orb in orbitals: # Initialize all atomic orbitals to zero electrons out[orb] = 0 @@ -506,14 +650,14 @@ def get_number_of_electrons_per_orbital(configuration): for x in orbitals: if x in electron_config_list: index = electron_config_list.index(x) - orbital = (electron_config_list[index: index + 2]) + orbital = electron_config_list[index : index + 2] if orbital[1] == "D" or orbital[1] == "F": # num_electrons = re.sub('[(){}<>,]', "", electron_config_list.split(orbital)[1]) num_electrons = re.search(orbital + r"\((.*?)\)", electron_config_list).group(1) out[orbital] = int(num_electrons) else: - out[orbital] = int(electron_config_list[index + 3: index + 4]) + out[orbital] = int(electron_config_list[index + 3 : index + 4]) return {key: value for key, value in out.items() if value != 0} @@ -580,26 +724,27 @@ def configuration_exact_for_heavy_elements(configuration): f.readline() next_line = f.readline() - energy = [float(next_line.split()[2])] + \ - [float(x) for x in (re.findall(r"[= -]\d+.\d+", f.readline()))[:-1]] + energy = [float(next_line.split()[2])] + [ + float(x) for x in (re.findall(r"[= -]\d+.\d+", f.readline()))[:-1] + ] orbitals = [] - orbitals_basis = {'S': [], 'P': [], 'D': [], "F": []} + orbitals_basis = {"S": [], "P": [], "D": [], "F": []} orbitals_cusp = [] orbitals_energy = [] - orbitals_exp = {'S': [], 'P': [], 'D': [], "F": []} + orbitals_exp = {"S": [], "P": [], "D": [], "F": []} orbitals_coeff = {} line = f.readline() while line.strip() != "": # If line has ___S___ or P or D where _ = " ". - if re.search(r' [S|P|D|F] ', line): + if re.search(r" [S|P|D|F] ", line): # Get All The Orbitals subshell = line.split()[0] list_of_orbitals = line.split()[1:] orbitals += list_of_orbitals for x in list_of_orbitals: - orbitals_coeff[x] = [] # Initilize orbitals inside coefficient dictionary + orbitals_coeff[x] = [] # Initilize orbitals inside coefficient dictionary # Get Energy, Cusp Levels line = f.readline() @@ -611,7 +756,7 @@ def configuration_exact_for_heavy_elements(configuration): line = f.readline() # Get Exponents, Coefficients, Orbital Basis - while re.match(r'\A^\d' + subshell, line.lstrip()): + while re.match(r"\A^\d" + subshell, line.lstrip()): list_words = line.split() orbitals_exp[subshell] += [float(list_words[1])] @@ -623,24 +768,32 @@ def configuration_exact_for_heavy_elements(configuration): else: line = f.readline() - data = {'configuration': configuration, - 'energy': energy, - 'orbitals': orbitals, - 'orbitals_energy': np.array(orbitals_energy)[:, None], - 'orbitals_cusp': np.array(orbitals_cusp)[:, None], - 'orbitals_basis': orbitals_basis, - 'orbitals_exp': - {key: np.asarray(value).reshape(len(value), 1) for key, value in orbitals_exp.items() - if value != []}, - 'orbitals_coeff': - {key: np.asarray(value).reshape(len(value), 1) - for key, value in orbitals_coeff.items() if value != []}, - 'orbitals_occupation': np.array([get_number_of_electrons_per_orbital(configuration)[k] - for k in orbitals])[:, None], - 'basis_numbers': - {key: np.asarray([[int(x[0])] for x in value]) - for key, value in orbitals_basis.items() if len(value) != 0} - } + data = { + "configuration": configuration, + "energy": energy, + "orbitals": orbitals, + "orbitals_energy": np.array(orbitals_energy)[:, None], + "orbitals_cusp": np.array(orbitals_cusp)[:, None], + "orbitals_basis": orbitals_basis, + "orbitals_exp": { + key: np.asarray(value).reshape(len(value), 1) + for key, value in orbitals_exp.items() + if value != [] + }, + "orbitals_coeff": { + key: np.asarray(value).reshape(len(value), 1) + for key, value in orbitals_coeff.items() + if value != [] + }, + "orbitals_occupation": np.array( + [get_number_of_electrons_per_orbital(configuration)[k] for k in orbitals] + )[:, None], + "basis_numbers": { + key: np.asarray([[int(x[0])] for x in value]) + for key, value in orbitals_basis.items() + if len(value) != 0 + }, + } return data @@ -655,13 +808,13 @@ def split_configuration(orbitals, occupations): occs_b : list beta electronic configuration for each orbital (M values) """ - subshell_alphas = {'S': 1, 'P': 3, 'D': 5, 'F': 7} + subshell_alphas = {"S": 1, "P": 3, "D": 5, "F": 7} occs_a = [] occs_b = [] for i, orb in enumerate(orbitals): - n_el = (occupations[i] - 1) # N electrons in sub shell - 1 + n_el = occupations[i] - 1 # N electrons in sub shell - 1 na_sshell = subshell_alphas[orb[-1]] # N alpha electrons in sub shell - row = n_el // na_sshell + row = n_el // na_sshell col = n_el % na_sshell if row == 0: na = (row * na_sshell + col) + 1 @@ -671,7 +824,7 @@ def split_configuration(orbitals, occupations): nb = (row * na_sshell + col) - na + 1 occs_a.append(na) occs_b.append(nb) - + return np.array(occs_a, dtype=float), np.array(occs_b, dtype=float) @@ -682,7 +835,7 @@ def eval_multiplicity(orbitals, occupations): ---------- orbitals : list, (M,) List of strings representing each of the orbitals in the electron configuration. - Ordered based on "S", "P", "D", etc. For example, Beryllium has ["1S", "2S"] in its electron + Ordered based on "S", "P", "D", etc. For example, Beryllium has ["1S", "2S"] in its electron configuration. occupations : ndarray, (M,) Number of electrons in each of the orbitals in the electron configuration. @@ -696,7 +849,7 @@ def eval_multiplicity(orbitals, occupations): na = sum(occs_a) nb = sum(occs_b) return int((na - nb)) + 1 - + DOCSTRING = """Slater Dataset @@ -709,7 +862,7 @@ def eval_multiplicity(orbitals, occupations): The Slater basis set information for both anion, cation and neutral, was obtained from the paper: `(1999), Int. J. Quantum Chem., 71: 491-497 `_ -The neutral heavy elements were obtained from: +The neutral heavy elements were obtained from: `Theor Chem Acc 104, 411–413 (2000) `_ """ @@ -721,15 +874,15 @@ def run(elem, charge, mult, nexc, dataset, datapath): raise ValueError("Nonzero value of `nexc` is not currently supported") if charge != 0 and abs(charge) > 1: raise ValueError(f"`charge` must be one of -1, 0 or 1") - + # Get information about the element and label as neutral or charged specie cov_radii, vdw_radii, mass = atomdb.get_element_data(elem) if charge == 0: - an, cat = [False, False] + an, cat = [False, False] else: # Flip Boolean list to assging cation/anion: https://stackoverflow.com/a/16726462 - sign = lambda x: (1, -1)[x<0] - an, cat = [False, True][::sign(charge)] + sign = lambda x: (1, -1)[x < 0] + an, cat = [False, True][:: sign(charge)] cov_radii, vdw_radii = [None, None] # overwrite values for charged species # Set up internal variables @@ -739,10 +892,10 @@ def run(elem, charge, mult, nexc, dataset, datapath): nspin = mult - 1 # n_up = (nelec + nspin) // 2 # n_dn = (nelec - nspin) // 2 - basis = None - + basis = None + # Retrieve Slater data - specie = AtomicDensity(elem, anion=an, cation=cat) + specie = AtomicDensity(elem, anion=an, cation=cat) # Check multiplicity value mo_occ = specie.orbitals_occupation.ravel() # these are configurations not occupations @@ -759,7 +912,7 @@ def run(elem, charge, mult, nexc, dataset, datapath): points = np.linspace(*BOUND, NPOINTS) # Compute densities and derivatives - dens_orbs = specie.phi_matrix(points)**2 / (4 * np.pi) + dens_orbs = specie.phi_matrix(points) ** 2 / (4 * np.pi) dens_tot = specie.atomic_density(points, "total") # dens_core = specie.atomic_density(points, "core") # dens_valence = specie.atomic_density(points, "valence") @@ -768,7 +921,6 @@ def run(elem, charge, mult, nexc, dataset, datapath): # Compute laplacian and kinetic energy density # lapl_tot = None ked_tot = specie.lagrangian_kinetic_energy(points) - # Return Species instance return atomdb.Species( @@ -790,4 +942,4 @@ def run(elem, charge, mult, nexc, dataset, datapath): rs=points, dens_tot=dens_tot, ked_tot=ked_tot, - ) \ No newline at end of file + ) diff --git a/atomdb/promolecule.py b/atomdb/promolecule.py index 2d84820c..cf8eed6a 100644 --- a/atomdb/promolecule.py +++ b/atomdb/promolecule.py @@ -211,11 +211,11 @@ def gradient(self, points, spin="ab", log=False): log: bool, default=False Whether to compute the log of the density instead of the density itself. May be slightly more accurate. - + Returns ------- gradient: np.ndarray((N, 3), dtype=float) - + """ # Define the property as a function, and call `_extensive_local_property` on it f = lambda atom: atom.interpolate_dens(spin=spin, log=log) @@ -230,11 +230,11 @@ def gradient(self, points, spin="ab", log=False): # dr/dx = (x - x_A) / |r-R_A| # # Define a unit vector function - unit_v = lambda vector: [dr/np.linalg.norm(dr ) for dr in vector] + unit_v = lambda vector: [dr / np.linalg.norm(dr) for dr in vector] gradients_atoms = [ - ddens[:, None] * unit_v(points - coord) + ddens[:, None] * unit_v(points - coord) for (ddens, coord) in zip(atoms_ddens, self.coords) - ] + ] return sum(gradients_atoms) def hessian(self, points, spin="ab", log=False): @@ -250,7 +250,7 @@ def hessian(self, points, spin="ab", log=False): log: bool, default=False Whether to compute the log of the density instead of the density itself. May be slightly more accurate. - + """ # Define the property as a function, and call `_extensive_local_property` on it f = lambda atom: atom.interpolate_dens(spin=spin, log=log) @@ -272,7 +272,7 @@ def hessian(self, points, spin="ab", log=False): # d^2f_A/dx^2 = (d^2f_A/dr^2 - df_A/dr) (dr_A/dx)^2 + shift # d^2f_A/dxdy = (d^2f_A/dr^2 - df_A/dr) d^r_A/dx d^r_A/dy interm = 0 - for (d2dens, ddens, rhess) in zip(atoms_d2dens, atoms_ddens, atoms_router_triu): + for d2dens, ddens, rhess in zip(atoms_d2dens, atoms_ddens, atoms_router_triu): interm += (d2dens - ddens)[:, None] * rhess # Reconstruct the Hessian matrix @@ -304,7 +304,7 @@ def laplacian(self, points, spin="ab", log=False): log: bool, default=False Whether to compute the log of the density instead of the density itself. May be slightly more accurate. - + """ f = lambda atom: atom.interpolate_dens(spin=spin, log=log) shift = lambda dens, radii: 3 * dens / np.linalg.norm(radii) @@ -363,12 +363,14 @@ def make_promolecule( mults = [MULTIPLICITIES[atnum - charge] for (atnum, charge) in zip(atnums, charges)] except TypeError: # FIXME: force non-int charge to be integer here, It will be overwritten bellow. - mults = [MULTIPLICITIES[atnum - int(charge)] for (atnum, charge) in zip(atnums, charges)] + mults = [ + MULTIPLICITIES[atnum - int(charge)] for (atnum, charge) in zip(atnums, charges) + ] # Construct linear combination of species promol_species = [] promol_coords = [] promol_coeffs = [] - for (atom, atnum, coord, charge, mult) in zip(atoms, atnums, coords, charges, mults): + for atom, atnum, coord, charge, mult in zip(atoms, atnums, coords, charges, mults): if not isinstance(mult, Integral): raise ValueError("Non-integer multiplicity is invalid") if isinstance(charge, Integral): @@ -390,8 +392,12 @@ def make_promolecule( specie = load(atom, np.ceil(charge), mult, dataset=dataset, datapath=datapath) promol_species.append(specie) promol_coords.append(coord) - promol_coeffs.append((element_number(atom) - charge) / (element_number(atom) - np.ceil(charge))) - warn("Coefficient of a species in the promolecule is >1, intensive properties might be incorrect") + promol_coeffs.append( + (element_number(atom) - charge) / (element_number(atom) - np.ceil(charge)) + ) + warn( + "Coefficient of a species in the promolecule is >1, intensive properties might be incorrect" + ) # Ceilling charge charge_ceil = np.ceil(charge).astype(int) mult_ceil = MULTIPLICITIES[atnum - charge_ceil] @@ -437,13 +443,13 @@ def _extensive_local_property(atoms, atom_coords, coeffs, points, f, deriv=0): def _intensive_property(atoms, coeffs, f, p=1): r"""Helper function for computing intensive properties.""" # P-mean of each atom's property value - return ( - sum(coeff * f(atom) ** p for atom, coeff in zip(atoms, coeffs)) / sum(coeffs) - ) ** (1 / p) + return (sum(coeff * f(atom) ** p for atom, coeff in zip(atoms, coeffs)) / sum(coeffs)) ** ( + 1 / p + ) def _radial_vector_outer_triu(radii): - r""" Evaluate the outer products of a set of radial unit vectrors.""" + r"""Evaluate the outer products of a set of radial unit vectrors.""" # Define a unit vector function unit_v = lambda vector: vector / np.linalg.norm(vector) # Store only upper triangular elements of the matrix. diff --git a/atomdb/test/test_gaussian.py b/atomdb/test/test_gaussian.py index f7b52eac..a8b50b5f 100644 --- a/atomdb/test/test_gaussian.py +++ b/atomdb/test/test_gaussian.py @@ -67,13 +67,13 @@ def test_gaussian_hf_data_be(): assert (abs(energy_a - energy) < 1.0e-6).all() assert (abs(sp.ao.energy_b - energy) < 1.0e-6).all() # check density - assert_almost_equal(4 * np.pi * np.trapz(grid ** 2 * dens, grid), 4, decimal=4) + assert_almost_equal(4 * np.pi * np.trapz(grid**2 * dens, grid), 4, decimal=4) dens_a = np.sum(orb_dens_a, axis=0) - assert_almost_equal(4 * np.pi * np.trapz(grid ** 2 * dens_a, grid), 2, decimal=4) + assert_almost_equal(4 * np.pi * np.trapz(grid**2 * dens_a, grid), 2, decimal=4) # check interpolated densities - spline = sp.interpolate_dens(spin='ab', log=False) + spline = sp.interpolate_dens(spin="ab", log=False) assert_almost_equal(spline(grid), dens, decimal=6) - spline = sp.interpolate_ked(spin='ab', log=False) + spline = sp.interpolate_ked(spin="ab", log=False) assert_almost_equal(spline(grid), sp.ked_tot, decimal=6) # FIXME: density derivatives tests fail. # # check density derivatives diff --git a/atomdb/test/test_numeric.py b/atomdb/test/test_numeric.py index 9e4d2b7e..fbd6e9f7 100644 --- a/atomdb/test/test_numeric.py +++ b/atomdb/test/test_numeric.py @@ -30,31 +30,33 @@ from atomdb.api import load -TEST_DATAPATH = 'atomdb/test/data/' +TEST_DATAPATH = "atomdb/test/data/" def test_numerical_hf_data_h(): # get H species - sp = load('H', 0, 2, dataset='numeric', datapath=TEST_DATAPATH) + sp = load("H", 0, 2, dataset="numeric", datapath=TEST_DATAPATH) # check shape of arrays assert_equal(sp.rs.shape, (122,)) assert_equal(sp.dens_tot.shape, (122,)) # check array elements assert_equal(sp.rs >= 0.0, [True] * 122) assert_equal(sp.dens_tot >= 0.0, [True] * 122) - assert_almost_equal(sp.rs[:3], [0., 0.183156388887342e-01, 0.194968961085980e-01], decimal=10) - assert_almost_equal(sp.rs[-3:], [0.292242837812349e2, 0.311090881509677e2, 0.331154519586923e2], decimal=10) + assert_almost_equal(sp.rs[:3], [0.0, 0.183156388887342e-01, 0.194968961085980e-01], decimal=10) + assert_almost_equal( + sp.rs[-3:], [0.292242837812349e2, 0.311090881509677e2, 0.331154519586923e2], decimal=10 + ) assert_almost_equal(sp.dens_tot[:2], [0.318309887124870, 0.306860767394852], decimal=10) assert_almost_equal(sp.dens_tot[4:6], [0.304551328899830, 0.303684673354233], decimal=10) - assert_almost_equal(sp.dens_tot[-2:], [0., 0.], decimal=10) + assert_almost_equal(sp.dens_tot[-2:], [0.0, 0.0], decimal=10) # get density derivative evaluated on a radial grid - dens = sp.interpolate_dens(spin='ab', log=False) + dens = sp.interpolate_dens(spin="ab", log=False) gradient = dens(sp.rs, deriv=1) # get reference values from numerical HF raw files - fname = f'001_q000_m02_numeric_gradient.npy' - answer = np.load(f'{TEST_DATAPATH}/numeric/db/{fname}') + fname = f"001_q000_m02_numeric_gradient.npy" + answer = np.load(f"{TEST_DATAPATH}/numeric/db/{fname}") assert_almost_equal(answer[:2], [-0.636619761671399, -0.613581739284137], decimal=10) - assert_almost_equal(answer[-2:], [0., 0.], decimal=10) + assert_almost_equal(answer[-2:], [0.0, 0.0], decimal=10) # check array elements assert_almost_equal(gradient[:2], answer[:2], decimal=4) assert_almost_equal(gradient[-2:], answer[-2:], decimal=10) @@ -64,7 +66,7 @@ def test_numerical_hf_data_h(): def test_numerical_hf_data_h_anion(): # get H- species - sp = load('H', -1, 1, dataset='numeric', datapath=TEST_DATAPATH) + sp = load("H", -1, 1, dataset="numeric", datapath=TEST_DATAPATH) # check values of energy components answer = -0.487929734301232 assert_almost_equal(sp.energy, answer, decimal=10) @@ -78,23 +80,23 @@ def test_numerical_hf_data_h_anion(): # assert_equal(sp.d_dens_tot.shape, (139,)) # assert_equal(sp.lapl_tot.shape, (139,)) # check array elements - assert_equal(sp.rs >= 0., [True] * 139) - assert_equal(sp.dens_tot >= 0., [True] * 139) + assert_equal(sp.rs >= 0.0, [True] * 139) + assert_equal(sp.dens_tot >= 0.0, [True] * 139) assert_almost_equal(sp.rs[:3], [0.0, 0.183156388887342e-1, 0.194968961085980e-1], decimal=10) assert_almost_equal(sp.rs[10], 0.321449473268761e-1, decimal=10) assert_almost_equal(sp.rs[-2:], [0.900171313005218e2, 0.958227374770869e2], decimal=10) assert_almost_equal(sp.dens_tot[:2], [0.309193381788357, 0.298087713771564], decimal=10) assert_almost_equal(sp.dens_tot[7:9], [0.293177850175325, 0.292176126765437], decimal=10) - assert_almost_equal(sp.dens_tot[-20:], [0.] * 20, decimal=10) + assert_almost_equal(sp.dens_tot[-20:], [0.0] * 20, decimal=10) # get density derivative evaluated on a radial grid - dens = sp.interpolate_dens(spin='ab', log=False) + dens = sp.interpolate_dens(spin="ab", log=False) gradient = dens(sp.rs, deriv=1) # get reference values from numerical HF raw files - fname = f'001_q-01_m01_numeric_gradient.npy' - answer = np.load(f'{TEST_DATAPATH}/numeric/db/{fname}') + fname = f"001_q-01_m01_numeric_gradient.npy" + answer = np.load(f"{TEST_DATAPATH}/numeric/db/{fname}") assert_almost_equal(answer[:2], [-0.618386750431843, -0.594311093621533], decimal=10) assert_almost_equal(answer[20:22], [-0.543476018733641, -0.538979599233911], decimal=10) - assert_almost_equal(answer[-20:], [0.] * 20, decimal=10) + assert_almost_equal(answer[-20:], [0.0] * 20, decimal=10) # check array elements assert_almost_equal(gradient[:2], answer[:2], decimal=3) assert_almost_equal(gradient[-2:], answer[-2:], decimal=10) @@ -134,9 +136,9 @@ def test_numerical_hf_atomic_density(atom, mult, npoints, answer): assert_equal(sp.rs >= 0.0, [True] * npoints) assert_equal(sp.dens_tot >= 0.0, [True] * npoints) # check number of electrons - assert_almost_equal(4 * np.pi * np.trapz(grid ** 2 * dens, grid), answer, decimal=2) + assert_almost_equal(4 * np.pi * np.trapz(grid**2 * dens, grid), answer, decimal=2) # check interpolated densities - spline = sp.interpolate_dens(spin='ab', log=False) + spline = sp.interpolate_dens(spin="ab", log=False) assert_almost_equal(spline(grid), dens, decimal=6) @@ -149,19 +151,19 @@ def test_numerical_hf_density_gradient(atom, charge, mult): sp = load(atom, charge, mult, dataset="numeric", datapath=TEST_DATAPATH) # get density derivative evaluated on a radial grid grid = sp.rs - spline = sp.interpolate_dens(spin='ab', log=False) + spline = sp.interpolate_dens(spin="ab", log=False) gradient = spline(grid, deriv=1) # check shape of arrays assert_equal(gradient.shape, grid.shape) # get reference values from numerical HF raw files id = f"{str(sp.natom).zfill(3)}_q{str(charge).zfill(3)}_m{mult:02d}" - fname = f'{id}_numeric_gradient.npy' - answer = np.load(f'{TEST_DATAPATH}/numeric/db/{fname}') + fname = f"{id}_numeric_gradient.npy" + answer = np.load(f"{TEST_DATAPATH}/numeric/db/{fname}") # check array elements assert_almost_equal(gradient[:5], answer[:5], decimal=3) -@pytest.mark.xfail(reason = "Bug in spline derivative order 2") +@pytest.mark.xfail(reason="Bug in spline derivative order 2") @pytest.mark.parametrize( "atom, charge, mult", [("H", 0, 2), ("H", -1, 1), ("Be", 0, 1), ("Cl", 0, 3), ("Ne", 0, 1)] ) @@ -170,13 +172,13 @@ def test_numerical_hf_density_laplacian(atom, charge, mult): sp = load(atom, charge, mult, dataset="numeric", datapath=TEST_DATAPATH) # get density derivative evaluated on a radial grid grid = sp.rs - spline = sp.interpolate_dens(spin='ab', log=False) + spline = sp.interpolate_dens(spin="ab", log=False) lapl = spline(grid, deriv=2) # check shape of arrays assert_equal(lapl.shape, grid.shape) # get reference values from numerical HF raw files id = f"{str(sp.natom).zfill(3)}_q{str(charge).zfill(3)}_m{mult:02d}" - fname = f'{id}_numeric_laplacian.npy' - answer = np.load(f'{TEST_DATAPATH}/numeric/db/{fname}') + fname = f"{id}_numeric_laplacian.npy" + answer = np.load(f"{TEST_DATAPATH}/numeric/db/{fname}") # check array elements assert_almost_equal(lapl, answer, decimal=6) diff --git a/atomdb/test/test_wfn_slater.py b/atomdb/test/test_wfn_slater.py index aad29056..f0cae5d5 100644 --- a/atomdb/test/test_wfn_slater.py +++ b/atomdb/test/test_wfn_slater.py @@ -77,7 +77,7 @@ def test_slater_positive_definite_kinetic_energy(atom, charge, mult, tol): # assert np.all(np.abs(integral - answer) < tol) assert_almost_equal(integral, answer, decimal=tol) # check interpolated density - spline = sp.interpolate_ked(spin='ab', log=False) + spline = sp.interpolate_ked(spin="ab", log=False) assert_almost_equal(spline(grid), energ, decimal=6) @@ -101,9 +101,9 @@ def test_slater_atomic_density(atom, mult, answer): # # check dens = core + valence # assert_almost_equal(dens, core + valn, decimal=6) # check number of electrons - assert_almost_equal(4 * np.pi * np.trapz(grid ** 2 * dens, grid), answer, decimal=6) + assert_almost_equal(4 * np.pi * np.trapz(grid**2 * dens, grid), answer, decimal=6) # check interpolated density - spline = sp.interpolate_dens(spin='ab', log=False) + spline = sp.interpolate_dens(spin="ab", log=False) assert_almost_equal(spline(grid), dens, decimal=6) @@ -119,9 +119,9 @@ def test_slater_atomic_density_ions(atom, charge, mult, answer): # check shape assert_equal(dens.shape, grid.shape) # check number of electrons - assert_almost_equal(4 * np.pi * np.trapz(grid ** 2 * dens, grid), answer, decimal=6) + assert_almost_equal(4 * np.pi * np.trapz(grid**2 * dens, grid), answer, decimal=6) # check interpolated density - spline = sp.interpolate_dens(spin='ab', log=False) + spline = sp.interpolate_dens(spin="ab", log=False) assert_almost_equal(spline(grid), dens, decimal=6) @@ -134,12 +134,12 @@ def test_slater_atomic_density_gradient(atom, charge, mult): sp = load(atom, charge, mult, dataset="slater", datapath=TEST_DATAPATH) # get density derivative evaluated on a radial grid grid = sp.rs - spline = sp.interpolate_dens(spin='ab', log=False) + spline = sp.interpolate_dens(spin="ab", log=False) gradient = spline(grid, deriv=1) # get reference values from Slater wfn raw files id = f"{str(sp.natom).zfill(3)}_q{str(charge).zfill(3)}_m{mult:02d}" - fname = f'{id}_slater_gradient.npy' - answer = np.load(f'{TEST_DATAPATH}/slater/db/{fname}') + fname = f"{id}_slater_gradient.npy" + answer = np.load(f"{TEST_DATAPATH}/slater/db/{fname}") # check shape of arrays assert_equal(gradient.shape, grid.shape) # check array elements @@ -149,19 +149,19 @@ def test_slater_atomic_density_gradient(atom, charge, mult): @pytest.mark.xfail def test_slater_h_anion_density_splines(): # load Be atomic and density data - sp = load('H', -1, 1, dataset="slater", datapath=TEST_DATAPATH) + sp = load("H", -1, 1, dataset="slater", datapath=TEST_DATAPATH) # get density evaluated on an equally distant radial grid # grid = np.arange(0.0, 15.0, 0.00001) grid = sp.rs dens = sp.dens_tot # check interpolated densities - spline = sp.interpolate_dens(spin='ab', log=False) + spline = sp.interpolate_dens(spin="ab", log=False) assert_almost_equal(spline(grid), dens, decimal=6) - spline = sp.interpolate_ked(spin='ab', log=False) + spline = sp.interpolate_ked(spin="ab", log=False) assert_almost_equal(spline(grid), sp.ked_tot, decimal=6) # check density derivatives stepsize = 1e-8 - gradient = np.load('slater_h_anion_gradient.npy') + gradient = np.load("slater_h_anion_gradient.npy") assert_almost_equal(spline(grid, deriv=1), gradient, decimal=6) d2dens = np.gradient(gradient, stepsize) assert_almost_equal(spline(grid, deriv=2), d2dens, decimal=6) diff --git a/atomdb/units.py b/atomdb/units.py index 7ac2bfb2..8736bc2f 100644 --- a/atomdb/units.py +++ b/atomdb/units.py @@ -67,26 +67,26 @@ # *** Charge *** -coulomb = 1.0/1.602176462e-19 +coulomb = 1.0 / 1.602176462e-19 # *** Mass *** -kilogram = 1.0/9.10938188e-31 -gram = 1.0e-3*kilogram -miligram = 1.0e-6*kilogram -unified = 1.0e-3*kilogram/avogadro +kilogram = 1.0 / 9.10938188e-31 +gram = 1.0e-3 * kilogram +miligram = 1.0e-6 * kilogram +unified = 1.0e-3 * kilogram / avogadro amu = unified # *** Length *** -meter = 1.0/0.5291772083e-10 -decimeter = 1.0e-1*meter -centimeter = 1.0e-2*meter -milimeter = 1.0e-3*meter -micrometer = 1.0e-6*meter -nanometer = 1.0e-9*meter -angstrom = 1.0e-10*meter -picometer = 1.0e-12*meter +meter = 1.0 / 0.5291772083e-10 +decimeter = 1.0e-1 * meter +centimeter = 1.0e-2 * meter +milimeter = 1.0e-3 * meter +micrometer = 1.0e-6 * meter +nanometer = 1.0e-9 * meter +angstrom = 1.0e-10 * meter +picometer = 1.0e-12 * meter # *** Volume *** @@ -94,16 +94,16 @@ # *** Energy *** -joule = 1/4.35974381e-18 -calorie = 4.184*joule -kjmol = 1.0e3*joule/avogadro -kcalmol = 1.0e3*calorie/avogadro -electronvolt = (1.0/coulomb)*joule +joule = 1 / 4.35974381e-18 +calorie = 4.184 * joule +kjmol = 1.0e3 * joule / avogadro +kcalmol = 1.0e3 * calorie / avogadro +electronvolt = (1.0 / coulomb) * joule rydberg = 0.5 # *** Force *** -newton = joule/meter +newton = joule / meter # *** Angles *** @@ -112,20 +112,20 @@ # *** Time *** -second = 1/2.418884326500e-17 -nanosecond = 1e-9*second -femtosecond = 1e-15*second -picosecond = 1e-12*second +second = 1 / 2.418884326500e-17 +nanosecond = 1e-9 * second +femtosecond = 1e-15 * second +picosecond = 1e-12 * second # *** Frequency *** -hertz = 1/second +hertz = 1 / second # *** Pressure *** -pascal = newton/meter**2 -bar = 100000*pascal -atm = 1.01325*bar +pascal = newton / meter**2 +bar = 100000 * pascal +atm = 1.01325 * bar # *** Temperature *** @@ -133,11 +133,11 @@ # *** Dipole *** -debye = 0.39343031369146675 # = 1e-21*coulomb*meter**2/second/lightspeed +debye = 0.39343031369146675 # = 1e-21*coulomb*meter**2/second/lightspeed # *** Current *** -ampere = coulomb/second +ampere = coulomb / second # automatically spice up the docstrings diff --git a/docs/CNAME b/docs/CNAME deleted file mode 100644 index 38490779..00000000 --- a/docs/CNAME +++ /dev/null @@ -1 +0,0 @@ -atomdb.qcdevs.org diff --git a/docs/Makefile b/docs/Makefile index 8ea5059c..d0c3cbf1 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -4,7 +4,7 @@ # You can set these variables from the command line, and also # from the environment for the first two. SPHINXOPTS ?= -SPHINXBUILD ?= PYTHONPATH=.. sphinx-build +SPHINXBUILD ?= sphinx-build SOURCEDIR = source BUILDDIR = build diff --git a/docs/index.html b/docs/index.html deleted file mode 100644 index 07071089..00000000 --- a/docs/index.html +++ /dev/null @@ -1 +0,0 @@ - diff --git a/docs/make.bat b/docs/make.bat new file mode 100644 index 00000000..747ffb7b --- /dev/null +++ b/docs/make.bat @@ -0,0 +1,35 @@ +@ECHO OFF + +pushd %~dp0 + +REM Command file for Sphinx documentation + +if "%SPHINXBUILD%" == "" ( + set SPHINXBUILD=sphinx-build +) +set SOURCEDIR=source +set BUILDDIR=build + +%SPHINXBUILD% >NUL 2>NUL +if errorlevel 9009 ( + echo. + echo.The 'sphinx-build' command was not found. Make sure you have Sphinx + echo.installed, then set the SPHINXBUILD environment variable to point + echo.to the full path of the 'sphinx-build' executable. Alternatively you + echo.may add the Sphinx directory to PATH. + echo. + echo.If you don't have Sphinx installed, grab it from + echo.https://www.sphinx-doc.org/ + exit /b 1 +) + +if "%1" == "" goto help + +%SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O% +goto end + +:help +%SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O% + +:end +popd diff --git a/docs/source/_static/.gitignore b/docs/source/_static/.gitignore deleted file mode 100644 index e69de29b..00000000 diff --git a/docs/source/_static/css/override.css b/docs/source/_static/css/override.css new file mode 100644 index 00000000..d808337e --- /dev/null +++ b/docs/source/_static/css/override.css @@ -0,0 +1,43 @@ +/** css/override.css **/ + + +/* This line is theme specific - it includes the base theme CSS */ +@import 'theme.css'; /* for the Read the Docs theme */ + +table.docutils { + border-collapse: separate !important; +} + +th.head { + position: sticky; + top: 0px; + z-index: 2; + background-color: white; + border-bottom-color: black !important; +} + +th.head:nth-child(1) { + position: sticky; + top: 0px; + left: 0px; + z-index: 3; + background-color: white; + border-right-color: black !important; +} + +td:nth-child(1) { + position: sticky; + left: 0px; + z-index: 1; + border-right-color: black !important; + border-right-width: 1px; + border-right-style: solid; +} + +table.docutils tbody tr.row-odd td { + background-color: rgb(252, 252, 252); +} + +div.wy-table-responsive { + max-height: 90vh; +} \ No newline at end of file diff --git a/docs/source/api.rst b/docs/source/api.rst deleted file mode 100644 index 8e8a2ed8..00000000 --- a/docs/source/api.rst +++ /dev/null @@ -1,2 +0,0 @@ -API -=== diff --git a/docs/source/conf.py b/docs/source/conf.py index 353d99bd..e1113038 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -4,24 +4,23 @@ # list see the documentation: # https://www.sphinx-doc.org/en/master/usage/configuration.html -import sphinx_rtd_theme - # -- Path setup -------------------------------------------------------------- # If extensions (or modules to document with autodoc) are in another directory, # add these directories to sys.path here. If the directory is relative to the # documentation root, use os.path.abspath to make it absolute, like shown here. # -# import os -# import sys -# sys.path.insert(0, os.path.abspath('.')) +import os +import sys +sys.path.insert(0, os.path.abspath(".")) +sys.path.insert(0, os.path.abspath("../")) # -- Project information ----------------------------------------------------- -project = 'AtomDB' -copyright = '2022, QC-Devs Team' -author = 'QC-Devs Team' +project = "AtomDB" +copyright = "2024, QC-Devs" +author = "QC-Devs" # -- General configuration --------------------------------------------------- @@ -30,19 +29,51 @@ # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom # ones. extensions = [ - 'sphinx.ext.autodoc', - 'sphinx.ext.autosummary', - 'sphinx.ext.napoleon', - 'sphinx.ext.mathjax', + "sphinx_rtd_theme", + "sphinx.ext.autodoc", + "sphinx.ext.napoleon", + "sphinx_autodoc_typehints", + "sphinx.ext.autosummary", + "sphinx.ext.mathjax", + "nbsphinx", + "nbsphinx_link", + "IPython.sphinxext.ipython_console_highlighting" +] + +# List of arguments to be passed to the kernel that executes the notebooks: +nbsphinx_execute_arguments = [ + "--InlineBackend.figure_formats={'svg', 'pdf'}", + "--InlineBackend.rc=figure.dpi=200", ] +# nbsphinx_input_prompt = 'In [%s]:' +# nbsphinx_output_prompt = 'Out[%s]:' +# explicitly dis-/enabling notebook execution +nbsphinx_execute = "never" + +# Don't add .txt suffix to source files: +html_sourcelink_suffix = "" + +# This is processed by Jinja2 and inserted before each notebook + +# nbsphinx_prolog = r""" +# nbsphinx_epilog = r""" +# {% set docname = env.docname.split("/")[-1] %} +# .. raw:: html +# .. role:: raw-html(raw) +# :format: html +# .. nbinfo:: +# The corresponding file can be obtained from: +# - Jupyter Notebook: :download:`{{docname+".ipynb"}}` +# - Interactive Jupyter Notebook: :raw-html:`Binder badge` """ + # Add any paths that contain templates here, relative to this directory. -templates_path = ['_templates'] +templates_path = ["_templates"] # List of patterns, relative to source directory, that match files and # directories to ignore when looking for source files. # This pattern also affects html_static_path and html_extra_path. -exclude_patterns = [] +exclude_patterns = ["_build", "Thumbs.db", ".DS_Store", "**.ipynb_checkpoints"] # -- Options for HTML output ------------------------------------------------- @@ -50,18 +81,43 @@ # The theme to use for HTML and HTML Help pages. See the documentation for # a list of builtin themes. # -html_theme = 'sphinx_rtd_theme' +html_theme = "sphinx_rtd_theme" # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files, # so a file named "default.css" will overwrite the builtin "default.css". -html_static_path = ['_static'] +html_static_path = ["_static"] +html_style = "css/override.css" +# Theme options are theme-specific and customize the look and feel of a theme +# further. For a list of options available for each theme, see the +# documentation. +html_theme_options = {"collapse_navigation": False} -mathjax_path = 'https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.6/MathJax.js' +# -- Configuration for autodoc extensions --------------------------------- -mathjax_config = { - 'extensions': ['tex2jax.js'], - 'jax': ['input/TeX', 'output/HTML-CSS'], +autodoc_default_options = { + "undoc-members": True, + "show-inheritance": True, + "members": None, + "inherited-members": True, + "ignore-module-all": True, } + + +add_module_names = False + + +def autodoc_skip_member(app, what, name, obj, skip, options): + """Decide which parts to skip when building the API doc.""" + if name == "__init__": + return False + if name.startswith("test_"): + return False + return skip + + +def setup(app): + """Set up sphinx.""" + app.connect("autodoc-skip-member", autodoc_skip_member) diff --git a/docs/source/contributing.rst b/docs/source/contributing.rst deleted file mode 100644 index 5a1988f1..00000000 --- a/docs/source/contributing.rst +++ /dev/null @@ -1,2 +0,0 @@ -Contributing -============ diff --git a/docs/source/datasets.rst b/docs/source/datasets.rst deleted file mode 100644 index e8552a70..00000000 --- a/docs/source/datasets.rst +++ /dev/null @@ -1,2 +0,0 @@ -Datasets and Properties -======================= diff --git a/docs/source/index.rst b/docs/source/index.rst index 82abda61..fd41e01b 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -1,5 +1,5 @@ .. AtomDB documentation master file, created by - sphinx-quickstart on Tue May 17 17:54:17 2022. + sphinx-quickstart on Fri Feb 2 15:55:10 2024. You can adapt this file completely to your liking, but it should at least contain the root `toctree` directive. @@ -7,16 +7,14 @@ Welcome to AtomDB's documentation! ================================== .. toctree:: - :maxdepth: 4 + :maxdepth: 2 :caption: Contents: - install - structure - datasets - contributing - api - +.. toctree:: + :maxdepth: 2 + :caption: API Documentation + pyapi/modules.rst Indices and tables ================== diff --git a/docs/source/install.rst b/docs/source/install.rst deleted file mode 100644 index 11e44375..00000000 --- a/docs/source/install.rst +++ /dev/null @@ -1,2 +0,0 @@ -Installation -============ diff --git a/docs/source/structure.rst b/docs/source/structure.rst deleted file mode 100644 index 5e9c4fa5..00000000 --- a/docs/source/structure.rst +++ /dev/null @@ -1,2 +0,0 @@ -Library Structure -================= diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 00000000..129b6e67 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,94 @@ +# This file is part of AtomDB. +# +# AtomDB is free software: you can redistribute it and/or modify it under +# the terms of the GNU General Public License as published by the Free +# Software Foundation, either version 3 of the License, or (at your +# option) any later version. +# +# AtomDB is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or +# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +# for more details. +# +# You should have received a copy of the GNU General Public License +# along with AtomDB. If not, see . + +[build-system] +requires = ["setuptools>=65.0", "setuptools_scm[toml]>=7.1.0"] +build-backend = "setuptools.build_meta" + +[project] +name = "AtomDB" +authors = [ + { name="QC-Devs Community", email="qcdevs@gmail.com" }, +] +description = "AtomDB is a database of atomic and ionic properties." +readme = "README.rst" +license = {text = "GPL-3.0-or-later"} +requires-python = ">=3.7" +classifiers = [ + 'Development Status :: 0 - Released', + 'Environment :: Console', + 'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)', + 'Operating System :: POSIX :: Linux', + 'Topic :: Scientific/Engineering :: Physics', + 'Topic :: Scientific/Engineering :: Chemistry', + 'Intended Audience :: Science/Research', + "Intended Audience :: Education", + "Natural Language :: English", + 'Programming Language :: Python :: 3.7', + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", +] +dependencies = [ + "numpy>=1.16", + "pytest >=2.6", + "scipy>=1.4", + "msgpack", + "h5py", +] +dynamic = ["version"] + +[project.urls] +Documentation = "https://atomdb.qcdevs.org" +Issues = "https://github.com/theochem/atomdb/issues" +Source = "https://github.com/theochem/atomdb/" +Changelog = "https://github.com/theochem/atomdb/blob/main/CHANGELOG.md" + +[project.optional-dependencies] +doc = [ + "ipython", + "numpydoc", + "sphinx_copybutton", + "sphinx-autoapi", + "nbsphinx", + "nbconvert", + "sphinx_rtd_theme", + "sphinx_autodoc_typehints", + "docutils==0.16", # Needed to show bullet points in sphinx_rtd_theme + "nbsphinx-link" +] + +[tool.black] +line-length = 100 + +[tool.ruff] +# E is pycodestyle +# F is pyflakes +# UP is pyupgrade - automatically updates syntax +# B is flake8-bugbear +# I is sort imports alphabetically +# PGH is pygrep-hooks +# PL is pylint +# RUF is Ruff-specific rules +select = ["E", "F", "UP", "B", "I", "PGH", "PL", "RUF"] +line-length = 100 +ignore = ["PLR2004", "PLR0913", "PLR0912", "PLW2901", "PLR0915", "RUF013"] +extend-exclude = ["doc/*", "doc/*/*"] + +[tool.pytest.ini_options] +minversion = "7.0" +testpaths = ["tests"] +addopts = "-v" diff --git a/setup.py b/setup.py deleted file mode 100644 index 5993d971..00000000 --- a/setup.py +++ /dev/null @@ -1,34 +0,0 @@ -# This file is part of AtomDB. -# -# AtomDB is free software: you can redistribute it and/or modify it under -# the terms of the GNU General Public License as published by the Free -# Software Foundation, either version 3 of the License, or (at your -# option) any later version. -# -# AtomDB is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -# for more details. -# -# You should have received a copy of the GNU General Public License -# along with AtomDB. If not, see . - -r"""AtomDB setup script. Run `python setup.py --help` for help.""" - - -from setuptools import setup - - -if __name__ == '__main__': - - README = open('README.rst', 'r').read() - - setup( - name='atomdb', - description='AtomDB', - long_description=README, - packages=['atomdb'], - package_dir={'atomdb': 'atomdb'}, - include_package_data=True, - install_requires=["numpy", "scipy", "msgpack", "h5py"] - )