X-ray mass attenuation coefficient

xmac3.py

Enter the wavelength λ (Å) of X-ray and chemical formula.
X-ray mass attenuation coefficient μ / ρ (cm**2/g) will be displayed.

Usage:
$ python3 xmac3.py 1.5406 C12H22O11
on “terminal” from the directory including xmac3.py,
%run xmac3/xmac3.py 1.5406 C12H22O11
on Jupyter Notebook in the parent directory of xmac3 directory including xmac3.py,
to derive the X-ray attenuation coefficient of C12H22O11 for 1.5406 Å X-ray.

Click (tap) icon on the right-top edge of the code area to copy the code to clipboard.

# -*- coding: utf-8 -*-
# xmac3.py
# coded by Takashi Ida in 2023
# Last update: October 25, 2023
import numpy as np
import re
import scipy.constants as constant
import sys

def main():
    argument = sys.argv
    if len(argument) == 3:
        wave_length, chemical_formula = argument[1], argument[2]
        wave_length = np.float64(wave_length)
    else:
        print(len(argument),sys.argv)
        print("Input wavelength in Å and chemical formula")
        return
    # chemical_formula = 'LaB6'# chemical formula
    # wave_length = '1.5406' # wave length in [Å]
    print('#-----------------------')
    print('# X-ray Mass Attenuation Coefficient & Mass Absorption Coefficient')
    print('# based on NIST Standard Reference Database 126')
    print('# URL https://www.nist.gov/pml/x-ray-mass-attenuation-coefficients')
    print('# (coded by Takashi Ida, May 3, 2023)')
    print('# (updated by Takashi Ida, Oct. 25, 2023)')
    print('#-----------------------')
    print('Chemical formula:',chemical_formula)
    print('Wavelength:',wave_length,'Å')
    form = chemical_formula
    form_list = []
    item_list = re.findall(r"[A-Z][^A-Z]*",form)
    for item in item_list:
        elem = re.match(r"\D+", item).group()
        num = item.replace(elem,"")
        num = 1 if num == "" else num
        form_list.append([elem, num])
    nFL = len(form_list)
    length = 1.0E-10 * np.float64(wave_length) # wave length in [m]
    MeV = 1.0E-6 * constant.h*constant.c/(constant.e * length)
    print('Photon energy: %.3f keV' % (MeV*1.0E3))

    xmac_dict = initalize_xray_mass_attenuation()
    list_element = list(xmac_dict.keys()) # keys of the dictionary elements_dict

    numerator_matc = 0.0 # numerator
    numerator_mabc = 0.0
    formula_weight = 0.0 # denominator (forumula weight)
    for i in range(0,nFL):
        print('-----------------------')
        symbol, number = form_list[i][0], form_list[i][1]
        if len(symbol) == 2:
            element_symbol = symbol[0] + symbol[1].lower()
        else:
            element_symbol = symbol
        print('Element symbol:',element_symbol, end=', ')
        print('Number of atoms:',number)
        atomic_number = xmac_dict[element_symbol][0] # atomic number
        print('Atomic number:',atomic_number,end=', ')
        atomic_weight = xmac_dict[element_symbol][1] # atomic weight
        print('Atomic molar mass:',atomic_weight,'g/mol')
        # file_name = "z{:0>2}.csv".format(atomic_number)
        # print(file_name)
        mass_attenuation_table = np.array(xmac_dict[element_symbol][2])
        # np.loadtxt(file_name,dtype='float',delimiter=',')
        macT = mass_attenuation_table.T
        macMeV = macT[0]
        # print(macMeV)
        idxmacMeVL = np.where(macMeV<MeV)[-1][-1] # lower bound
        idxmacMeVU = np.where(MeV <= macMeV)[0][0] # upper bound
        MeVL, MeVU = macT[:,idxmacMeVL][0], macT[:,idxmacMeVU][0]
        matcL, matcU = macT[:,idxmacMeVL][1], macT[:,idxmacMeVU][1]
        mabcL, mabcU = macT[:,idxmacMeVL][2], macT[:,idxmacMeVU][2]
        # print(macL,macU)
        # Interpolation...
        matc = matcL**((MeVU-MeV)/(MeVU-MeVL)) * matcU**((MeV-MeVL)/(MeVU-MeVL))
        mabc = mabcL**((MeVU-MeV)/(MeVU-MeVL)) * mabcU**((MeV-MeVL)/(MeVU-MeVL))
        print('Mass attenuation coefficient at',MeVL*1.0E3,'keV:',matcL,'cm**2/g')
        print('Mass attenuation coefficient at',MeVU*1.0E3,'keV:',matcU,'cm**2/g')
        print('Mass attenuation coefficient at %.3f keV: %.3f cm**2/g'% (MeV*1.0E3,matc))
        print('Mass absorption coefficient at',MeVL*1.0E3,'keV:',mabcL,'cm**2/g')
        print('Mass absorption coefficient at',MeVU*1.0E3,'keV:',mabcU,'cm**2/g')
        print('Mass absorption coefficient at %.3f keV: %.3f cm**2/g'% (MeV*1.0E3,mabc))
        numerator_matc += np.float64(number) * atomic_weight * matc
        numerator_mabc += np.float64(number) * atomic_weight * mabc
        formula_weight += np.float64(number) * atomic_weight
    matc_total = numerator_matc / formula_weight
    mabc_total = numerator_mabc / formula_weight
    print('-----------------------')
    print('Chemical formula:', chemical_formula)
    print('Formula molar mass: %.3f g/mol' % formula_weight)
    print('Mass attenuation coefficient at %.3f keV: %.3f cm**2/g' % (MeV*1E3,matc_total))
    print('Mass absorption coefficient at %.3f keV: %.3f cm**2/g' % (MeV*1E3,mabc_total))


def initalize_xray_mass_attenuation():
    xmac_dict = {\
        'H':(1,1.00866492,[\
        [0.001,7.217,6.82],[0.0015,2.148,1.752],\
        [0.002,1.059,0.6643],[0.003,0.5612,0.1693],\
        [0.004,0.4546,0.06549],[0.005,0.4193,0.03278],\
        [0.006,0.4042,0.01996],[0.008,0.3914,0.0116],\
        [0.01,0.3854,0.009849],[0.015,0.3764,0.01102],\
        [0.02,0.3695,0.01355],[0.03,0.357,0.01863],\
        [0.04,0.3458,0.02315],[0.05,0.3355,0.02709],\
        [0.06,0.326,0.03053],[0.08,0.3091,0.0362],\
        [0.1,0.2944,0.04063],[0.15,0.2651,0.04813],\
        [0.2,0.2429,0.05254],[0.3,0.2112,0.05695],\
        [0.4,0.1893,0.0586],[0.5,0.1729,0.059],\
        [0.6,0.1599,0.05875],[0.8,0.1405,0.05739],\
        [1.0,0.1263,0.05556],[1.25,0.1129,0.05311],\
        [1.5,0.1027,0.05075],[2.0,0.08769,0.0465],\
        [3.0,0.06921,0.03992],[4.0,0.05806,0.03523],\
        [5.0,0.05049,0.03174],[6.0,0.04498,0.02905],\
        [8.0,0.03746,0.02515],[10.0,0.03254,0.02247],\
        [15.0,0.02539,0.01837],[20.0,0.02153,0.01606]]),\
        'He':(2,1.00794,[\
        [0.001,60.84,60.45],[0.0015,16.76,16.38],\
        [0.002,6.863,6.503],[0.003,2.007,1.681],\
        [0.004,0.9329,0.6379],[0.005,0.5766,0.3061],\
        [0.006,0.4195,0.1671],[0.008,0.2933,0.06446],\
        [0.01,0.2476,0.0326],[0.015,0.2092,0.01246],\
        [0.02,0.196,0.00941],[0.03,0.1838,0.01003],\
        [0.04,0.1763,0.0119],[0.05,0.1703,0.01375],\
        [0.06,0.1651,0.01544],[0.08,0.1562,0.01826],\
        [0.1,0.1486,0.02047],[0.15,0.1336,0.02424],\
        [0.2,0.1224,0.02647],[0.3,0.1064,0.02868],\
        [0.4,0.09535,0.02951],[0.5,0.08707,0.02971],\
        [0.6,0.08054,0.02959],[0.8,0.07076,0.0289],\
        [1.0,0.06362,0.02797],[1.25,0.05688,0.02674],\
        [1.5,0.05173,0.02555],[2.0,0.04422,0.02343],\
        [3.0,0.03503,0.02019],[4.0,0.02949,0.0179],\
        [5.0,0.02577,0.01622],[6.0,0.02307,0.01493],\
        [8.0,0.0194,0.01308],[10.0,0.01703,0.01183],\
        [15.0,0.01363,0.009948],[20.0,0.01183,0.008914]]),\
        'Li':(3,4.002602,[\
        [0.001,233.9,233.5],[0.0015,66.68,66.29],\
        [0.002,27.07,26.72],[0.003,7.549,7.249],\
        [0.004,3.114,2.84],[0.005,1.619,1.364],\
        [0.006,0.9875,0.7477],[0.008,0.5054,0.2888],\
        [0.01,0.3395,0.1387],[0.015,0.2176,0.0391],\
        [0.02,0.1856,0.01885],[0.03,0.1644,0.01138],\
        [0.04,0.1551,0.01131],[0.05,0.1488,0.01237],\
        [0.06,0.1438,0.01361],[0.08,0.1356,0.01588],\
        [0.1,0.1289,0.01776],[0.15,0.1158,0.02098],\
        [0.2,0.106,0.0229],[0.3,0.0921,0.02481],\
        [0.4,0.08249,0.02552],[0.5,0.07532,0.02569],\
        [0.6,0.06968,0.02559],[0.8,0.06121,0.02499],\
        [1.0,0.05503,0.02419],[1.25,0.04921,0.02312],\
        [1.5,0.04476,0.0221],[2.0,0.0383,0.02028],\
        [3.0,0.03043,0.01753],[4.0,0.02572,0.01561],\
        [5.0,0.02257,0.01422],[6.0,0.0203,0.01316],\
        [8.0,0.01725,0.01167],[10.0,0.01529,0.01066],\
        [15.0,0.01252,0.009182],[20.0,0.01109,0.008385]]),\
        'Be':(4,6.941,[\
        [0.001,604.1,603.5],[0.0015,179.7,179.1],\
        [0.002,74.69,74.22],[0.003,21.27,20.9],\
        [0.004,8.685,8.367],[0.005,4.369,4.081],\
        [0.006,2.527,2.26],[0.008,1.124,0.8839],\
        [0.01,0.6466,0.4255],[0.015,0.307,0.1143],\
        [0.02,0.2251,0.0478],[0.03,0.1792,0.01898],\
        [0.04,0.164,0.01438],[0.05,0.1554,0.01401],\
        [0.06,0.1493,0.01468],[0.08,0.1401,0.01658],\
        [0.1,0.1328,0.01836],[0.15,0.119,0.02157],\
        [0.2,0.1089,0.02353],[0.3,0.09463,0.02548],\
        [0.4,0.08471,0.0262],[0.5,0.07739,0.02639],\
        [0.6,0.07155,0.02627],[0.8,0.06286,0.02565],\
        [1.0,0.05652,0.02483],[1.25,0.05054,0.02373],\
        [1.5,0.04597,0.02268],[2.0,0.03938,0.02083],\
        [3.0,0.03138,0.01806],[4.0,0.02664,0.01617],\
        [5.0,0.02347,0.01479],[6.0,0.02121,0.01377],\
        [8.0,0.01819,0.01233],[10.0,0.01627,0.01138],\
        [15.0,0.01361,0.01001],[20.0,0.01227,0.009294]]),\
        'B':(5,9.012182,[\
        [0.001,1229.0,1228.0],[0.0015,376.6,375.9],\
        [0.002,159.7,159.1],[0.003,46.67,46.17],\
        [0.004,19.27,18.86],[0.005,9.683,9.332],\
        [0.006,5.538,5.223],[0.008,2.346,2.072],\
        [0.01,1.255,1.006],[0.015,0.4827,0.2698],\
        [0.02,0.3014,0.1084],[0.03,0.2063,0.03506],\
        [0.04,0.1793,0.02084],[0.05,0.1665,0.01737],\
        [0.06,0.1583,0.0168],[0.08,0.1472,0.01785],\
        [0.1,0.1391,0.0194],[0.15,0.1243,0.02255],\
        [0.2,0.1136,0.02453],[0.3,0.09862,0.02654],\
        [0.4,0.08834,0.02731],[0.5,0.08065,0.02749],\
        [0.6,0.0746,0.02737],[0.8,0.06549,0.02671],\
        [1.0,0.0589,0.02586],[1.25,0.05266,0.02472],\
        [1.5,0.04791,0.02362],[2.0,0.04108,0.02171],\
        [3.0,0.03284,0.01889],[4.0,0.02798,0.01698],\
        [5.0,0.02476,0.01562],[6.0,0.02248,0.01461],\
        [8.0,0.01945,0.01322],[10.0,0.01755,0.01232],\
        [15.0,0.01495,0.01104],[20.0,0.01368,0.01039]]),\
        'C':(6,10.811,[\
        [0.001,2211.0,2209.0],[0.0015,700.2,699.0],\
        [0.002,302.6,301.6],[0.003,90.33,89.63],\
        [0.004,37.78,37.23],[0.005,19.12,18.66],\
        [0.006,10.95,10.54],[0.008,4.576,4.242],\
        [0.01,2.373,2.078],[0.015,0.8071,0.5627],\
        [0.02,0.442,0.2238],[0.03,0.2562,0.06614],\
        [0.04,0.2076,0.03343],[0.05,0.1871,0.02397],\
        [0.06,0.1753,0.02098],[0.08,0.161,0.02037],\
        [0.1,0.1514,0.02147],[0.15,0.1347,0.02449],\
        [0.2,0.1229,0.02655],[0.3,0.1066,0.0287],\
        [0.4,0.09546,0.0295],[0.5,0.08715,0.02969],\
        [0.6,0.08058,0.02956],[0.8,0.07076,0.02885],\
        [1.0,0.06361,0.02792],[1.25,0.0569,0.02669],\
        [1.5,0.05179,0.02551],[2.0,0.04442,0.02345],\
        [3.0,0.03562,0.02048],[4.0,0.03047,0.01849],\
        [5.0,0.02708,0.0171],[6.0,0.02469,0.01607],\
        [8.0,0.02154,0.01468],[10.0,0.01959,0.0138],\
        [15.0,0.01698,0.01258],[20.0,0.01575,0.01198]]),\
        'N':(7,12.0107,[\
        [0.001,3311.0,3306.0],[0.0015,1083.0,1080.0],\
        [0.002,476.9,475.5],[0.003,145.6,144.7],\
        [0.004,61.66,60.94],[0.005,31.44,30.86],\
        [0.006,18.09,17.59],[0.008,7.562,7.17],\
        [0.01,3.879,3.545],[0.015,1.236,0.9715],\
        [0.02,0.6178,0.3867],[0.03,0.3066,0.1099],\
        [0.04,0.2288,0.05051],[0.05,0.198,0.03217],\
        [0.06,0.1817,0.02548],[0.08,0.1639,0.02211],\
        [0.1,0.1529,0.02231],[0.15,0.1353,0.02472],\
        [0.2,0.1233,0.02665],[0.3,0.1068,0.02873],\
        [0.4,0.09557,0.02952],[0.5,0.08719,0.02969],\
        [0.6,0.08063,0.02956],[0.8,0.07081,0.02886],\
        [1.0,0.06364,0.02792],[1.25,0.05693,0.02669],\
        [1.5,0.0518,0.0255],[2.0,0.0445,0.02347],\
        [3.0,0.03579,0.02057],[4.0,0.03073,0.01867],\
        [5.0,0.02742,0.01734],[6.0,0.02511,0.01639],\
        [8.0,0.02209,0.01512],[10.0,0.02024,0.01434],\
        [15.0,0.01782,0.01332],[20.0,0.01673,0.01285]]),\
        'O':(8,14.0067,[\
[0.001,4590.0,4576.0],\
        [0.0015,1549.0,1545.0],[0.002,694.9,692.6],\
        [0.003,217.1,215.8],[0.004,93.15,92.21],\
        [0.005,47.9,47.15],[0.006,27.7,27.08],\
        [0.008,11.63,11.16],[0.01,5.952,5.565],\
        [0.015,1.836,1.545],[0.02,0.8651,0.6179],\
        [0.03,0.3779,0.1729],[0.04,0.2585,0.0753],\
        [0.05,0.2132,0.04414],[0.06,0.1907,0.03207],\
        [0.08,0.1678,0.02468],[0.1,0.1551,0.02355],\
        [0.15,0.1361,0.02506],[0.2,0.1237,0.02679],\
        [0.3,0.107,0.02877],[0.4,0.09566,0.02953],\
        [0.5,0.08729,0.02971],[0.6,0.0807,0.02957],\
        [0.8,0.07087,0.02887],[1.0,0.06372,0.02794],\
        [1.25,0.05697,0.02669],[1.5,0.05185,0.02551],\
        [2.0,0.04459,0.0235],[3.0,0.03597,0.02066],\
        [4.0,0.031,0.01882],[5.0,0.02777,0.01757],\
        [6.0,0.02552,0.01668],[8.0,0.02263,0.01553],\
        [10.0,0.02089,0.01483],[15.0,0.01866,0.01396],\
        [20.0,0.0177,0.0136]]),\
        'F':(9,15.9994,[\
[0.001,5649.0,5615.0],\
        [0.0015,1979.0,1969.0],[0.002,904.7,900.5],\
        [0.003,288.8,287.0],[0.004,125.6,124.4],\
        [0.005,65.14,64.24],[0.006,37.89,37.16],\
        [0.008,16.02,15.48],[0.01,8.205,7.776],\
        [0.015,2.492,2.186],[0.02,1.133,0.8796],\
        [0.03,0.4487,0.2451],[0.04,0.2828,0.1036],\
        [0.05,0.2214,0.05747],[0.06,0.192,0.03903],\
        [0.08,0.1639,0.02676],[0.1,0.1496,0.02394],\
        [0.15,0.1298,0.02417],[0.2,0.1176,0.02554],\
        [0.3,0.1015,0.02729],[0.4,0.09073,0.028],\
        [0.5,0.08274,0.02815],[0.6,0.07649,0.02801],\
        [0.8,0.06717,0.02734],[1.0,0.06037,0.02645],\
        [1.25,0.05399,0.02527],[1.5,0.04915,0.02416],\
        [2.0,0.04228,0.02226],[3.0,0.03422,0.01964],\
        [4.0,0.0296,0.01797],[5.0,0.02663,0.01685],\
        [6.0,0.02457,0.01607],[8.0,0.02195,0.01508],\
        [10.0,0.02039,0.01451],[15.0,0.01846,0.01382],\
        [20.0,0.01769,0.01357]]),\
        'Ne':(10,18.9984032,[\
        [0.001,7409.0,7326.0],[0.0015,2666.0,2645.0],\
        [0.002,1243.0,1234.0],[0.003,405.1,402.1],\
        [0.004,178.5,176.7],[0.005,93.39,92.14],\
        [0.006,54.67,53.69],[0.008,23.28,22.6],\
        [0.01,11.97,11.43],[0.015,3.613,3.253],\
        [0.02,1.606,1.317],[0.03,0.5923,0.3676],\
        [0.04,0.3473,0.1528],[0.05,0.2579,0.08182],\
        [0.06,0.2161,0.05287],[0.08,0.1781,0.03273],\
        [0.1,0.16,0.02733],[0.15,0.137,0.0259],\
        [0.2,0.1236,0.02697],[0.3,0.1064,0.02862],\
        [0.4,0.09502,0.02931],[0.5,0.08664,0.02946],\
        [0.6,0.08006,0.0293],[0.8,0.07029,0.0286],\
        [1.0,0.06316,0.02766],[1.25,0.05646,0.02641],\
        [1.5,0.05145,0.02526],[2.0,0.0443,0.0233],\
        [3.0,0.03594,0.02061],[4.0,0.03122,0.01894],\
        [5.0,0.02818,0.01784],[6.0,0.0261,0.01709],\
        [8.0,0.02348,0.01616],[10.0,0.02197,0.01564],\
        [15.0,0.02013,0.01508],[20.0,0.01946,0.01491]]),\
        'Na':(11,20.1797,[\
        [0.001,654.2,652.2],[0.00103542,596.0,594.1],\
        [0.0010721,542.9,541.0],[0.0010721,6435.0,6320.0],\
        [0.0015,3194.0,3151.0],[0.002,1521.0,1504.0],\
        [0.003,507.0,502.3],[0.004,226.1,223.8],\
        [0.005,119.4,117.8],[0.006,70.3,69.15],\
        [0.008,30.18,29.41],[0.01,15.57,14.99],\
        [0.015,4.694,4.313],[0.02,2.057,1.759],\
        [0.03,0.7197,0.4928],[0.04,0.3969,0.2031],\
        [0.05,0.2804,0.1063],[0.06,0.2268,0.06625],\
        [0.08,0.1796,0.03761],[0.1,0.1585,0.02931],\
        [0.15,0.1335,0.02579],[0.2,0.1199,0.02635],\
        [0.3,0.1029,0.02771],[0.4,0.09185,0.02833],\
        [0.5,0.08372,0.02845],[0.6,0.07736,0.0283],\
        [0.8,0.06788,0.0276],[1.0,0.061,0.02669],\
        [1.25,0.05454,0.02549],[1.5,0.04968,0.02437],\
        [2.0,0.04282,0.02249],[3.0,0.03487,0.01997],\
        [4.0,0.03037,0.01842],[5.0,0.02753,0.01743],\
        [6.0,0.02559,0.01675],[8.0,0.02319,0.01595],\
        [10.0,0.02181,0.01552],[15.0,0.02023,0.01508],\
        [20.0,0.0197,0.01496]]),\
        'Mg':(12,22.98977,[\
        [0.001,922.5,920.3],[0.00114237,647.4,645.2],\
        [0.001305,453.0,450.9],[0.001305,5444.0,5310.0],\
        [0.0015,4004.0,3918.0],[0.002,1932.0,1899.0],\
        [0.003,658.5,649.9],[0.004,297.4,293.7],\
        [0.005,158.3,156.1],[0.006,93.81,92.27],\
        [0.008,40.61,39.65],[0.01,21.05,20.36],\
        [0.015,6.358,5.925],[0.02,2.763,2.432],\
        [0.03,0.9306,0.6855],[0.04,0.4881,0.2815],\
        [0.05,0.3292,0.1451],[0.06,0.257,0.0882],\
        [0.08,0.1951,0.04671],[0.1,0.1686,0.0341],\
        [0.15,0.1394,0.02766],[0.2,0.1245,0.02761],\
        [0.3,0.1065,0.02871],[0.4,0.09492,0.02928],\
        [0.5,0.08647,0.02938],[0.6,0.07988,0.02921],\
        [0.8,0.07008,0.02848],[1.0,0.06296,0.02753],\
        [1.25,0.05629,0.02629],[1.5,0.05129,0.02514],\
        [2.0,0.04426,0.02322],[3.0,0.03613,0.02067],\
        [4.0,0.03159,0.01915],[5.0,0.02873,0.01819],\
        [6.0,0.02681,0.01756],[8.0,0.02445,0.01683],\
        [10.0,0.02313,0.01646],[15.0,0.02168,0.01614],\
        [20.0,0.02127,0.01609]]),\
        'Al':(13,24.305,[\
        [0.001,1185.0,1183.0],[0.0015,402.2,400.1],\
        [0.0015596,362.1,360.0],[0.0015596,3957.0,3829.0],\
        [0.002,2263.0,2204.0],[0.003,788.0,773.2],\
        [0.004,360.5,354.5],[0.005,193.4,190.2],\
        [0.006,115.3,113.3],[0.008,50.33,49.18],\
        [0.01,26.23,25.43],[0.015,7.955,7.487],\
        [0.02,3.441,3.094],[0.03,1.128,0.8778],\
        [0.04,0.5685,0.3601],[0.05,0.3681,0.184],\
        [0.06,0.2778,0.1099],[0.08,0.2018,0.05511],\
        [0.1,0.1704,0.03794],[0.15,0.1378,0.02827],\
        [0.2,0.1223,0.02745],[0.3,0.1042,0.02816],\
        [0.4,0.09276,0.02862],[0.5,0.08445,0.02868],\
        [0.6,0.07802,0.02851],[0.8,0.06841,0.02778],\
        [1.0,0.06146,0.02686],[1.25,0.05496,0.02565],\
        [1.5,0.05006,0.02451],[2.0,0.04324,0.02266],\
        [3.0,0.03541,0.02024],[4.0,0.03106,0.01882],\
        [5.0,0.02836,0.01795],[6.0,0.02655,0.01739],\
        [8.0,0.02437,0.01678],[10.0,0.02318,0.0165],\
        [15.0,0.02195,0.01631],[20.0,0.02168,0.01633]]),\
        'Si':(14,26.981538,[\
[0.001,1570.0,1567.0],\
        [0.0015,535.5,533.1],[0.0018389,309.2,307.0],\
        [0.0018389,3192.0,3059.0],[0.002,2777.0,2669.0],\
        [0.003,978.4,951.6],[0.004,452.9,442.7],\
        [0.005,245.0,240.0],[0.006,147.0,143.9],\
        [0.008,64.68,63.13],[0.01,33.89,32.89],\
        [0.015,10.34,9.794],[0.02,4.464,4.076],\
        [0.03,1.436,1.164],[0.04,0.7012,0.4782],\
        [0.05,0.4385,0.243],[0.06,0.3207,0.1434],\
        [0.08,0.2228,0.06896],[0.1,0.1835,0.04513],\
        [0.15,0.1448,0.03086],[0.2,0.1275,0.02905],\
        [0.3,0.1082,0.02932],[0.4,0.09614,0.02968],\
        [0.5,0.08748,0.02971],[0.6,0.08077,0.02951],\
        [0.8,0.07082,0.02875],[1.0,0.06361,0.02778],\
        [1.25,0.05688,0.02652],[1.5,0.05183,0.02535],\
        [2.0,0.0448,0.02345],[3.0,0.03678,0.02101],\
        [4.0,0.0324,0.01963],[5.0,0.02967,0.01878],\
        [6.0,0.02788,0.01827],[8.0,0.02574,0.01773],\
        [10.0,0.02462,0.01753],[15.0,0.02352,0.01746],\
        [20.0,0.02338,0.01757]]),\
        'P':(15,28.0855,[\
        [0.001,1913.0,1910.0],[0.0015,654.7,652.2],\
        [0.002,301.8,299.6],[0.0021455,249.4,247.3],\
        [0.0021455,2473.0,2343.0],[0.003,1118.0,1074.0],\
        [0.004,524.2,507.9],[0.005,286.0,278.2],\
        [0.006,172.6,168.2],[0.008,76.6,74.57],\
        [0.01,40.35,39.12],[0.015,12.39,11.79],\
        [0.02,5.352,4.939],[0.03,1.7,1.422],\
        [0.04,0.8096,0.585],[0.05,0.4916,0.2965],\
        [0.06,0.3494,0.1735],[0.08,0.2324,0.08083],\
        [0.1,0.1865,0.05068],[0.15,0.1432,0.03188],\
        [0.2,0.125,0.02899],[0.3,0.1055,0.0287],\
        [0.4,0.09359,0.02892],[0.5,0.08511,0.02891],\
        [0.6,0.07854,0.02869],[0.8,0.06884,0.02793],\
        [1.0,0.06182,0.02698],[1.25,0.05526,0.02575],\
        [1.5,0.05039,0.02462],[2.0,0.04358,0.02279],\
        [3.0,0.0359,0.02049],[4.0,0.03172,0.01921],\
        [5.0,0.02915,0.01846],[6.0,0.02747,0.01801],\
        [8.0,0.02552,0.0176],[10.0,0.02452,0.01747],\
        [15.0,0.02364,0.01754],[20.0,0.02363,0.01771]]),\
        'S':(16,30.973761,[\
        [0.001,2429.0,2426.0],[0.0015,834.2,831.4],\
        [0.002,385.3,382.8],[0.002472,216.8,214.5],\
        [0.002472,2070.0,1935.0],[0.003,1339.0,1265.0],\
        [0.004,633.8,606.6],[0.005,348.7,336.0],\
        [0.006,211.6,204.6],[0.008,94.65,91.71],\
        [0.01,50.12,48.47],[0.015,15.5,14.77],\
        [0.02,6.708,6.235],[0.03,2.113,1.809],\
        [0.04,0.9872,0.7466],[0.05,0.5849,0.3779],\
        [0.06,0.4053,0.2199],[0.08,0.2585,0.1],\
        [0.1,0.202,0.06052],[0.15,0.1506,0.03516],\
        [0.2,0.1302,0.0308],[0.3,0.1091,0.02983],\
        [0.4,0.09665,0.02991],[0.5,0.08781,0.02984],\
        [0.6,0.08102,0.02959],[0.8,0.07098,0.02878],\
        [1.0,0.06373,0.0278],[1.25,0.05697,0.02652],\
        [1.5,0.05193,0.02535],[2.0,0.04498,0.02349],\
        [3.0,0.03715,0.02118],[4.0,0.03293,0.01993],\
        [5.0,0.03036,0.01923],[6.0,0.02872,0.01884],\
        [8.0,0.02682,0.0185],[10.0,0.02589,0.01845],\
        [15.0,0.02517,0.01864],[20.0,0.02529,0.01889]]),\
        'Cl':(17,32.065,[\
        [0.001,2832.0,2829.0],[0.0015,977.1,974.2],\
        [0.002,452.0,449.4],[0.0028224,177.4,175.2],\
        [0.0028224,1637.0,1506.0],[0.003,1473.0,1361.0],\
        [0.004,703.7,662.6],[0.005,390.1,371.1],\
        [0.006,238.4,228.2],[0.008,107.5,103.4],\
        [0.01,57.25,55.1],[0.015,17.84,17.0],\
        [0.02,7.739,7.227],[0.03,2.425,2.114],\
        [0.04,1.117,0.8756],[0.05,0.6483,0.4433],\
        [0.06,0.4395,0.257],[0.08,0.2696,0.1148],\
        [0.1,0.205,0.06745],[0.15,0.148,0.03639],\
        [0.2,0.1266,0.03067],[0.3,0.1054,0.02898],\
        [0.4,0.09311,0.02887],[0.5,0.08453,0.02874],\
        [0.6,0.07795,0.02847],[0.8,0.06826,0.02767],\
        [1.0,0.06128,0.02671],[1.25,0.05478,0.02549],\
        [1.5,0.04994,0.02436],[2.0,0.04328,0.02258],\
        [3.0,0.03585,0.02043],[4.0,0.03188,0.01931],\
        [5.0,0.0295,0.01871],[6.0,0.02798,0.01839],\
        [8.0,0.02628,0.01819],[10.0,0.02549,0.01824],\
        [15.0,0.02496,0.01861],[20.0,0.0252,0.01899]]),\
        'Ar':(18,35.453,[\
        [0.001,3184.0,3180.0],[0.0015,1105.0,1102.0],\
        [0.002,512.0,509.3],[0.003,170.3,168.2],\
        [0.0032029,142.4,140.3],[0.0032029,1275.0,1153.0],\
        [0.004,757.2,697.9],[0.005,422.5,395.3],\
        [0.006,259.3,244.9],[0.008,118.0,112.5],\
        [0.01,63.16,60.38],[0.015,19.83,18.86],\
        [0.02,8.629,8.074],[0.03,2.697,2.382],\
        [0.04,1.228,0.9907],[0.05,0.7012,0.502],\
        [0.06,0.4664,0.2904],[0.08,0.276,0.128],\
        [0.1,0.2043,0.07344],[0.15,0.1427,0.03703],\
        [0.2,0.1205,0.02998],[0.3,0.09953,0.02757],\
        [0.4,0.08776,0.02727],[0.5,0.07958,0.02708],\
        [0.6,0.07335,0.02679],[0.8,0.06419,0.02601],\
        [1.0,0.05762,0.0251],[1.25,0.0515,0.02394],\
        [1.5,0.04695,0.02288],[2.0,0.04074,0.02123],\
        [3.0,0.03384,0.01927],[4.0,0.03019,0.01827],\
        [5.0,0.02802,0.01777],[6.0,0.02667,0.01753],\
        [8.0,0.02517,0.01742],[10.0,0.02451,0.01754],\
        [15.0,0.02418,0.018],[20.0,0.02453,0.01842]]),\
        'K':(19,39.948,[\
        [0.001,4058.0,4053.0],[0.0015,1418.0,1415.0],\
        [0.002,659.2,656.3],[0.003,219.8,217.4],\
        [0.0036074,132.7,130.6],[0.0036074,1201.0,1065.0],\
        [0.004,925.6,830.4],[0.005,518.9,475.2],\
        [0.006,320.5,297.4],[0.008,146.9,138.3],\
        [0.01,79.07,74.9],[0.015,25.03,23.7],\
        [0.02,10.93,10.23],[0.03,3.413,3.045],\
        [0.04,1.541,1.272],[0.05,0.8679,0.6454],\
        [0.06,0.5678,0.373],[0.08,0.3251,0.1628],\
        [0.1,0.2345,0.09161],[0.15,0.1582,0.04346],\
        [0.2,0.1319,0.03378],[0.3,0.108,0.03015],\
        [0.4,0.09495,0.02959],[0.5,0.086,0.02929],\
        [0.6,0.07922,0.02895],[0.8,0.06929,0.02807],\
        [1.0,0.06216,0.02707],[1.25,0.05556,0.02581],\
        [1.5,0.05068,0.02467],[2.0,0.04399,0.0229],\
        [3.0,0.03666,0.02084],[4.0,0.03282,0.01985],\
        [5.0,0.03054,0.01935],[6.0,0.02915,0.01914],\
        [8.0,0.02766,0.0191],[10.0,0.02704,0.01928],\
        [15.0,0.02687,0.01983],[20.0,0.02737,0.02029]]),\
        'Ca':(20,39.0983,[\
        [0.001,4867.0,4861.0],[0.0015,1714.0,1710.0],\
        [0.002,799.9,796.6],[0.003,267.6,265.0],\
        [0.004,121.8,119.7],[0.0040381,118.7,116.6],\
        [0.0040381,1023.0,888.7],[0.005,602.6,537.3],\
        [0.006,373.1,338.7],[0.008,172.6,160.0],\
        [0.01,93.41,87.44],[0.015,29.79,28.04],\
        [0.02,13.06,12.2],[0.03,4.08,3.665],\
        [0.04,1.83,1.538],[0.05,1.019,0.7822],\
        [0.06,0.6578,0.452],[0.08,0.3656,0.1958],\
        [0.1,0.2571,0.1085],[0.15,0.1674,0.04876],\
        [0.2,0.1376,0.03639],[0.3,0.1116,0.03146],\
        [0.4,0.09783,0.0306],[0.5,0.08851,0.03019],\
        [0.6,0.08148,0.02979],[0.8,0.07122,0.02884],\
        [1.0,0.06388,0.0278],[1.25,0.05709,0.0265],\
        [1.5,0.05207,0.02532],[2.0,0.04524,0.02352],\
        [3.0,0.0378,0.02147],[4.0,0.03395,0.02052],\
        [5.0,0.0317,0.02007],[6.0,0.03035,0.01992],\
        [8.0,0.02892,0.01997],[10.0,0.02839,0.02022],\
        [15.0,0.02838,0.02088],[20.0,0.02903,0.0214]]),\
        'Sc':(21,40.078,[\
        [0.001,5238.0,5231.0],[0.0015,1858.0,1853.0],\
        [0.002,870.6,867.2],[0.003,292.2,289.6],\
        [0.004,133.2,131.1],[0.0044928,96.87,94.9],\
        [0.0044928,814.8,691.1],[0.005,630.5,543.6],\
        [0.006,393.3,347.4],[0.008,182.8,166.1],\
        [0.01,99.52,91.75],[0.015,32.02,29.88],\
        [0.02,14.09,13.11],[0.03,4.409,3.975],\
        [0.04,1.969,1.677],[0.05,1.087,0.8552],\
        [0.06,0.6932,0.4944],[0.08,0.3753,0.2132],\
        [0.1,0.2577,0.1167],[0.15,0.1619,0.04998],\
        [0.2,0.131,0.03586],[0.3,0.1052,0.02997],\
        [0.4,0.09193,0.02887],[0.5,0.08305,0.02837],\
        [0.6,0.07639,0.02795],[0.8,0.06675,0.02703],\
        [1.0,0.05985,0.02603],[1.25,0.05347,0.0248],\
        [1.5,0.04878,0.0237],[2.0,0.04243,0.02202],\
        [3.0,0.03554,0.02016],[4.0,0.03202,0.01933],\
        [5.0,0.02999,0.01897],[6.0,0.02878,0.01887],\
        [8.0,0.02756,0.019],[10.0,0.02715,0.01929],\
        [15.0,0.02732,0.02],[20.0,0.02804,0.02052]]),\
        'Ti':(22,44.95591,[\
        [0.001,5869.0,5860.0],[0.0015,2096.0,2091.0],\
        [0.002,986.0,982.4],[0.003,332.3,329.5],\
        [0.004,151.7,149.4],[0.0049664,83.8,81.88],\
        [0.0049664,687.8,568.4],[0.005,683.8,565.7],\
        [0.006,432.3,369.1],[0.008,202.3,179.3],\
        [0.01,110.7,100.1],[0.015,35.87,33.11],\
        [0.02,15.85,14.65],[0.03,4.972,4.488],\
        [0.04,2.214,1.904],[0.05,1.213,0.9737],\
        [0.06,0.7661,0.5634],[0.08,0.4052,0.2422],\
        [0.1,0.2721,0.1312],[0.15,0.1649,0.05393],\
        [0.2,0.1314,0.03726],[0.3,0.1043,0.03007],\
        [0.4,0.09081,0.02864],[0.5,0.08191,0.02804],\
        [0.6,0.07529,0.02756],[0.8,0.06572,0.02661],\
        [1.0,0.05891,0.02561],[1.25,0.05263,0.02439],\
        [1.5,0.04801,0.0233],[2.0,0.0418,0.02166],\
        [3.0,0.03512,0.01989],[4.0,0.03173,0.01913],\
        [5.0,0.02982,0.01884],[6.0,0.02868,0.01879],\
        [8.0,0.02759,0.01899],[10.0,0.02727,0.01933],\
        [15.0,0.02762,0.02013],[20.0,0.02844,0.02067]]),\
        'V':(23,47.867,[\
        [0.001,6495.0,6483.0],[0.0015,2342.0,2336.0],\
        [0.002,1106.0,1102.0],[0.003,374.3,371.3],\
        [0.004,171.2,168.8],[0.005,92.91,90.89],\
        [0.0054651,72.77,70.9],[0.0054651,587.0,471.7],\
        [0.006,468.7,384.1],[0.008,221.7,190.8],\
        [0.01,121.8,107.7],[0.015,39.83,36.27],\
        [0.02,17.68,16.2],[0.03,5.564,5.015],\
        [0.04,2.472,2.14],[0.05,1.347,1.098],\
        [0.06,0.8438,0.6364],[0.08,0.4371,0.2731],\
        [0.1,0.2877,0.1469],[0.15,0.1682,0.05821],\
        [0.2,0.1318,0.03879],[0.3,0.1034,0.03019],\
        [0.4,0.08965,0.02843],[0.5,0.08074,0.0277],\
        [0.6,0.07414,0.02717],[0.8,0.06466,0.02618],\
        [1.0,0.05794,0.02518],[1.25,0.05175,0.02396],\
        [1.5,0.04722,0.02289],[2.0,0.04115,0.0213],\
        [3.0,0.03466,0.01961],[4.0,0.03141,0.01892],\
        [5.0,0.0296,0.01869],[6.0,0.02855,0.01869],\
        [8.0,0.02759,0.01896],[10.0,0.02738,0.01937],\
        [15.0,0.02786,0.02022]]),\
        'Cr':(24,50.9415,[\
        [0.001,7405.0,7388.0],[0.0015,2694.0,2687.0],\
        [0.002,1277.0,1272.0],[0.003,433.9,430.5],\
        [0.004,198.8,196.1],[0.005,108.0,105.7],\
        [0.0059892,65.74,63.83],[0.0059892,597.7,402.7],\
        [0.006,516.0,402.7],[0.008,251.3,208.7],\
        [0.01,138.6,119.3],[0.015,45.71,40.93],\
        [0.02,20.38,18.46],[0.03,6.434,5.78],\
        [0.04,2.856,2.482],[0.05,1.55,1.278],\
        [0.06,0.9639,0.742],[0.08,0.4905,0.3182],\
        [0.1,0.3166,0.1701],[0.15,0.1788,0.06536],\
        [0.2,0.1378,0.04211],[0.3,0.1067,0.0316],\
        [0.4,0.09213,0.02938],[0.5,0.08281,0.02849],\
        [0.6,0.07598,0.02788],[0.8,0.0662,0.0268],\
        [1.0,0.0593,0.02576],[1.25,0.05295,0.0245],\
        [1.5,0.04832,0.0234],[2.0,0.04213,0.02178],\
        [3.0,0.03559,0.02011],[4.0,0.03235,0.01947],\
        [5.0,0.03057,0.01929],[6.0,0.02956,0.01933],\
        [8.0,0.02869,0.0197],[10.0,0.02855,0.02016],\
        [15.0,0.0292,0.02112],[20.0,0.03026,0.02174]]),\
        'Mn':(25,51.9961,[\
        [0.001,8093.0,8069.0],[0.0015,2984.0,2975.0],\
        [0.002,1421.0,1415.0],[0.003,485.1,481.5],\
        [0.004,222.9,220.1],[0.005,121.2,118.8],\
        [0.006,73.5,71.5],[0.006539,58.03,56.19],\
        [0.006539,452.0,341.5],[0.008,273.4,217.7],\
        [0.01,151.4,126.2],[0.015,50.27,44.14],\
        [0.02,22.53,20.15],[0.03,7.141,6.382],\
        [0.04,3.169,2.757],[0.05,1.714,1.425],\
        [0.06,1.06,0.8294],[0.08,0.5306,0.3558],\
        [0.1,0.3367,0.1894],[0.15,0.1838,0.07085],\
        [0.2,0.1391,0.04421],[0.3,0.1062,0.03196],\
        [0.4,0.09133,0.02932],[0.5,0.08192,0.02827],\
        [0.6,0.07509,0.0276],[0.8,0.06537,0.02647],\
        [1.0,0.05852,0.02541],[1.25,0.05224,0.02416],\
        [1.5,0.04769,0.02307],[2.0,0.04162,0.02149],\
        [3.0,0.03524,0.01989],[4.0,0.03213,0.01933],\
        [5.0,0.03045,0.0192],[6.0,0.02952,0.0193],\
        [8.0,0.02875,0.01973],[10.0,0.02871,0.02025],\
        [15.0,0.02951,0.02127],[20.0,0.03068,0.02193]]),\
        'Fe':(26,54.938049,[\
        [0.001,9085.0,9052.0],[0.0015,3399.0,3388.0],\
        [0.002,1626.0,1620.0],[0.003,557.6,553.5],\
        [0.004,256.7,253.6],[0.005,139.8,137.2],\
        [0.006,84.84,82.65],[0.007112,53.19,51.33],\
        [0.007112,407.6,297.8],[0.008,305.6,231.6],\
        [0.01,170.6,136.9],[0.015,57.08,48.96],\
        [0.02,25.68,22.6],[0.03,8.176,7.251],\
        [0.04,3.629,3.155],[0.05,1.958,1.638],\
        [0.06,1.205,0.9555],[0.08,0.5952,0.4104],\
        [0.1,0.3717,0.2177],[0.15,0.1964,0.07961],\
        [0.2,0.146,0.04825],[0.3,0.1099,0.03361],\
        [0.4,0.094,0.03039],[0.5,0.08414,0.02914],\
        [0.6,0.07704,0.02836],[0.8,0.06699,0.02714],\
        [1.0,0.05995,0.02603],[1.25,0.0535,0.02472],\
        [1.5,0.04883,0.0236],[2.0,0.04265,0.02199],\
        [3.0,0.03621,0.02042],[4.0,0.03312,0.0199],\
        [5.0,0.03146,0.01983],[6.0,0.03057,0.01997],\
        [8.0,0.02991,0.0205],[10.0,0.02994,0.02108],\
        [15.0,0.03092,0.02221],[20.0,0.03224,0.02292]]),\
        'Co':(27,55.845,[\
        [0.001,9796.0,9750.0],[0.0015,3697.0,3682.0],\
        [0.002,1779.0,1771.0],[0.003,612.9,608.4],\
        [0.004,283.0,279.6],[0.005,154.3,151.5],\
        [0.006,93.7,91.38],[0.0077089,47.1,45.3],\
        [0.0077089,355.5,250.7],[0.008,324.8,232.2],\
        [0.01,184.1,141.3],[0.015,62.01,51.78],\
        [0.02,28.03,24.21],[0.03,8.962,7.873],\
        [0.04,3.981,3.45],[0.05,2.144,1.799],\
        [0.06,1.314,1.052],[0.08,0.6414,0.4528],\
        [0.1,0.3949,0.2397],[0.15,0.2023,0.08597],\
        [0.2,0.1476,0.05071],[0.3,0.1094,0.03406],\
        [0.4,0.09311,0.03034],[0.5,0.08315,0.0289],\
        [0.6,0.07604,0.02805],[0.8,0.06604,0.02677],\
        [1.0,0.05906,0.02564],[1.25,0.0527,0.02434],\
        [1.5,0.0481,0.02323],[2.0,0.04204,0.02165],\
        [3.0,0.0358,0.02016],[4.0,0.03283,0.01971],\
        [5.0,0.03127,0.01969],[6.0,0.03045,0.01988],\
        [8.0,0.02991,0.02048],[10.0,0.03002,0.0211],\
        [15.0,0.03115,0.0223],[20.0,0.03256,0.02303]]),\
        'Ni':(28,58.9332,[\
        [0.001,9855.0,9797.0],[0.00100404,9753.0,9697.0],\
        [0.0010081,9654.0,9598.0],[0.0010081,10990.0,10930.0],\
        [0.0015,4234.0,4214.0],[0.002,2049.0,2039.0],\
        [0.003,709.4,704.2],[0.004,328.2,324.4],\
        [0.005,179.3,176.1],[0.006,109.0,106.4],\
        [0.008,49.52,47.58],[0.0083328,44.28,42.42],\
        [0.0083328,329.4,224.0],[0.01,209.0,152.4],\
        [0.015,70.81,57.34],[0.02,32.2,27.22],\
        [0.03,10.34,8.982],[0.04,4.6,3.967],\
        [0.05,2.474,2.078],[0.06,1.512,1.219],\
        [0.08,0.7306,0.5259],[0.1,0.444,0.2781],\
        [0.15,0.2208,0.09812],[0.2,0.1582,0.05649],\
        [0.3,0.1154,0.03659],[0.4,0.09765,0.03209],\
        [0.5,0.08698,0.03036],[0.6,0.07944,0.02937],\
        [0.8,0.06891,0.02795],[1.0,0.0616,0.02674],\
        [1.25,0.05494,0.02536],[1.5,0.05015,0.0242],\
        [2.0,0.04387,0.02257],[3.0,0.03745,0.02107],\
        [4.0,0.03444,0.02066],[5.0,0.03289,0.0207],\
        [6.0,0.0321,0.02094],[8.0,0.03164,0.02163],\
        [10.0,0.03185,0.02234],[15.0,0.0332,0.02368],\
        [20.0,0.03476,0.02446]]),\
        'Cu':(29,58.6934,[\
        [0.001,10570.0,10490.0],[0.00104695,9307.0,9241.0],\
        [0.0010961,8242.0,8186.0],[0.0010961,9347.0,9282.0],\
        [0.0015,4418.0,4393.0],[0.002,2154.0,2142.0],\
        [0.003,748.8,743.0],[0.004,347.3,343.2],\
        [0.005,189.9,186.6],[0.006,115.6,112.8],\
        [0.008,52.55,50.54],[0.0089789,38.29,36.52],\
        [0.0089789,278.4,182.4],[0.01,215.9,148.4],\
        [0.015,74.05,57.88],[0.02,33.79,27.88],\
        [0.03,10.92,9.349],[0.04,4.862,4.163],\
        [0.05,2.613,2.192],[0.06,1.593,1.29],\
        [0.08,0.763,0.5581],[0.1,0.4584,0.2949],\
        [0.15,0.2217,0.1027],[0.2,0.1559,0.05781],\
        [0.3,0.1119,0.03617],[0.4,0.09413,0.03121],\
        [0.5,0.08362,0.02933],[0.6,0.07625,0.02826],\
        [0.8,0.06605,0.02681],[1.0,0.05901,0.02562],\
        [1.25,0.05261,0.02428],[1.5,0.04803,0.02316],\
        [2.0,0.04205,0.0216],[3.0,0.03599,0.02023],\
        [4.0,0.03318,0.01989],[5.0,0.03177,0.01998],\
        [6.0,0.03108,0.02027],[8.0,0.03074,0.021],\
        [10.0,0.03103,0.02174],[15.0,0.03247,0.02309],\
        [20.0,0.03408,0.02387]]),\
        'Zn':(30,63.546,[\
[0.001,1553.0,1548.0],\
        [0.0010098,1518.0,1513.0],[0.0010197,1484.0,1478.0],\
        [0.0010197,3804.0,3777.0],[0.00103119,5097.0,5057.0],\
        [0.0010428,6518.0,6464.0],[0.0010428,8274.0,8202.0],\
        [0.00111565,8452.0,8382.0],[0.0011936,7371.0,7312.0],\
        [0.0011936,8396.0,8328.0],[0.0015,4825.0,4791.0],\
        [0.002,2375.0,2359.0],[0.003,831.1,824.4],\
        [0.004,386.5,382.0],[0.005,211.8,208.2],\
        [0.006,129.0,126.1],[0.008,58.75,56.6],\
        [0.0096586,35.05,33.32],[0.0096586,253.6,159.9],\
        [0.01,233.1,149.7],[0.015,81.17,60.99],\
        [0.02,37.19,29.86],[0.03,12.07,10.18],\
        [0.04,5.384,4.57],[0.05,2.892,2.419],\
        [0.06,1.76,1.429],[0.08,0.8364,0.6203],\
        [0.1,0.4973,0.3278],[0.15,0.2341,0.1128],\
        [0.2,0.1617,0.06225],[0.3,0.1141,0.03764],\
        [0.4,0.09539,0.03195],[0.5,0.0845,0.02979],\
        [0.6,0.07695,0.02861],[0.8,0.06656,0.02704],\
        [1.0,0.05941,0.0258],[1.25,0.05296,0.02443],\
        [1.5,0.04834,0.02329],[2.0,0.04235,0.02174],\
        [3.0,0.03634,0.02041],[4.0,0.0336,0.02014],\
        [5.0,0.03225,0.02028],[6.0,0.0316,0.02061],\
        [8.0,0.03138,0.02143],[10.0,0.03175,0.02223],\
        [15.0,0.03335,0.02367],[20.0,0.03509,0.02451]]),\
        'Ga':(31,65.409,[\
        [0.001,1697.0,1692.0],[0.00105613,1492.0,1487.0],\
        [0.0011154,1312.0,1307.0],[0.0011154,3990.0,3955.0],\
        [0.00112877,4887.0,4842.0],[0.0011423,5664.0,5611.0],\
        [0.0011423,7405.0,7332.0],[0.00121752,7138.0,7070.0],\
        [0.0012977,6358.0,6299.0],[0.0012977,7206.0,7139.0],\
        [0.0015,5087.0,5044.0],[0.002,2515.0,2496.0],\
        [0.003,885.7,878.2],[0.004,413.0,408.2],\
        [0.005,226.6,222.9],[0.006,138.2,135.2],\
        [0.008,63.02,60.82],[0.01,34.21,32.5],\
        [0.0103671,30.99,29.36],[0.0103671,221.4,134.4],\
        [0.015,85.37,61.35],[0.02,39.28,30.59],\
        [0.03,12.81,10.61],[0.04,5.726,4.81],\
        [0.05,3.076,2.56],[0.06,1.868,1.518],\
        [0.08,0.8823,0.6613],[0.1,0.5197,0.3497],\
        [0.15,0.2387,0.1193],[0.2,0.1619,0.06463],\
        [0.3,0.1123,0.03782],[0.4,0.09325,0.03156],\
        [0.5,0.08236,0.0292],[0.6,0.07487,0.02793],\
        [0.8,0.06466,0.02631],[1.0,0.05767,0.02506],\
        [1.25,0.05139,0.02371],[1.5,0.04692,0.0226],\
        [2.0,0.04113,0.0211],[3.0,0.03538,0.01986],\
        [4.0,0.0328,0.01966],[5.0,0.03156,0.01985],\
        [6.0,0.03099,0.02021],[8.0,0.03086,0.02108],\
        [10.0,0.0313,0.02191],[15.0,0.033,0.02339],\
        [20.0,0.03479,0.02425]]),\
        'Ge':(32,69.723,[\
        [0.001,1893.0,1887.0],[0.00110304,1502.0,1496.0],\
        [0.0012167,1190.0,1185.0],[0.0012167,4389.0,4343.0],\
        [0.00123215,4734.0,4684.0],[0.0012478,4974.0,4922.0],\
        [0.0012478,6698.0,6622.0],[0.00132844,6348.0,6279.0],\
        [0.0014143,5554.0,5495.0],[0.0014143,6287.0,6221.0],\
        [0.0015,5475.0,5420.0],[0.002,2711.0,2688.0],\
        [0.003,961.3,952.7],[0.004,449.7,444.5],\
        [0.005,247.2,243.3],[0.006,150.9,147.7],\
        [0.008,68.9,66.6],[0.01,37.42,35.64],\
        [0.0111031,28.11,26.53],[0.0111031,198.1,115.7],\
        [0.015,91.52,62.56],[0.02,42.22,31.78],\
        [0.03,13.85,11.26],[0.04,6.207,5.152],\
        [0.05,3.335,2.759],[0.06,2.023,1.642],\
        [0.08,0.9501,0.7184],[0.1,0.555,0.3803],\
        [0.15,0.2491,0.1288],[0.2,0.1661,0.06865],\
        [0.3,0.1131,0.03891],[0.4,0.09327,0.03193],\
        [0.5,0.08212,0.0293],[0.6,0.07452,0.0279],\
        [0.8,0.06426,0.02618],[1.0,0.05727,0.02489],\
        [1.25,0.05101,0.02353],[1.5,0.04657,0.02242],\
        [2.0,0.04086,0.02094],[3.0,0.03524,0.01977],\
        [4.0,0.03275,0.01962],[5.0,0.03158,0.01987],\
        [6.0,0.03107,0.02027],[8.0,0.03103,0.0212],\
        [10.0,0.03156,0.02208],[15.0,0.0334,0.02364],\
        [20.0,0.03528,0.02452]]),\
        'As':(33,72.64,[\
        [0.001,2121.0,2116.0],[0.00115026,1523.0,1517.0],\
        [0.0013231,1092.0,1087.0],[0.0013231,4513.0,4459.0],\
        [0.00134073,4469.0,4416.0],[0.0013586,4452.0,4398.0],\
        [0.0013586,6093.0,6015.0],[0.0015,5227.0,5164.0],\
        [0.0015265,4997.0,4938.0],[0.0015265,5653.0,5585.0],\
        [0.002,2931.0,2902.0],[0.003,1049.0,1039.0],\
        [0.004,492.0,486.2],[0.005,270.9,266.7],\
        [0.006,165.6,162.2],[0.008,75.73,73.3],\
        [0.01,41.15,39.28],[0.0118667,25.77,24.25],\
        [0.0118667,179.2,100.8],[0.015,98.56,63.71],\
        [0.02,45.64,33.1],[0.03,15.06,11.98],\
        [0.04,6.76,5.537],[0.05,3.635,2.983],\
        [0.06,2.203,1.783],[0.08,1.03,0.7837],\
        [0.1,0.5971,0.4155],[0.15,0.2622,0.1399],\
        [0.2,0.1719,0.0735],[0.3,0.115,0.04043],\
        [0.4,0.09414,0.03261],[0.5,0.08259,0.02966],\
        [0.6,0.07483,0.02813],[0.8,0.0644,0.02628],\
        [1.0,0.05735,0.02494],[1.25,0.05106,0.02355],\
        [1.5,0.04661,0.02243],[2.0,0.04093,0.02096],\
        [3.0,0.03539,0.01984],[4.0,0.03296,0.01974],\
        [5.0,0.03187,0.02005],[6.0,0.03141,0.02049],\
        [8.0,0.03146,0.02148],[10.0,0.03207,0.02241],\
        [15.0,0.03405,0.02404],[20.0,0.03603,0.02495]]),\
        'Se':(34,74.9216,[\
        [0.001,2317.0,2312.0],[0.00119825,1512.0,1506.0],\
        [0.0014358,981.4,976.0],[0.0014358,4347.0,4287.0],\
        [0.00145586,4057.0,4002.0],[0.0014762,3907.0,3855.0],\
        [0.0014762,5186.0,5112.0],[0.0015,5336.0,5260.0],\
        [0.0016539,4342.0,4284.0],[0.0016539,4915.0,4849.0],\
        [0.002,3098.0,3062.0],[0.003,1116.0,1104.0],\
        [0.004,525.2,518.7],[0.005,289.6,285.1],\
        [0.006,177.3,173.7],[0.008,81.16,78.65],\
        [0.01,44.14,42.21],[0.0126578,23.18,21.73],\
        [0.0126578,158.9,85.99],[0.015,103.3,62.7],\
        [0.02,48.18,33.52],[0.03,15.96,12.4],\
        [0.04,7.184,5.796],[0.05,3.864,3.143],\
        [0.06,2.341,1.886],[0.08,1.09,0.8332],\
        [0.1,0.6278,0.4426],[0.15,0.2703,0.1483],\
        [0.2,0.1742,0.07695],[0.3,0.1144,0.04113],\
        [0.4,0.09299,0.03261],[0.5,0.08129,0.02941],\
        [0.6,0.0735,0.02775],[0.8,0.06314,0.02581],\
        [1.0,0.05619,0.02446],[1.25,0.04999,0.02306],\
        [1.5,0.04564,0.02195],[2.0,0.0401,0.02052],\
        [3.0,0.03476,0.01947],[4.0,0.03247,0.01944],\
        [5.0,0.03145,0.01978],[6.0,0.03105,0.02025],\
        [8.0,0.03119,0.0213],[10.0,0.03186,0.02226],\
        [15.0,0.03395,0.02394],[20.0,0.03599,0.02487]]),\
        'Br':(35,78.96,[\
        [0.001,2624.0,2618.0],[0.0015,1002.0,996.4],\
        [0.0015499,925.5,920.0],[0.0015499,4289.0,4223.0],\
        [0.00157278,3838.0,3780.0],[0.001596,3587.0,3534.0],\
        [0.001596,5097.0,5014.0],[0.00168644,4595.0,4523.0],\
        [0.001782,3969.0,3910.0],[0.001782,4495.0,4427.0],\
        [0.002,3407.0,3360.0],[0.003,1231.0,1216.0],\
        [0.004,581.5,574.0],[0.005,321.3,316.3],\
        [0.006,196.8,193.0],[0.008,90.26,87.56],\
        [0.01,49.12,47.06],[0.0134737,21.76,20.33],\
        [0.0134737,147.1,76.68],[0.015,111.9,63.36],\
        [0.02,52.66,35.02],[0.03,17.53,13.28],\
        [0.04,7.9,6.267],[0.05,4.264,3.431],\
        [0.06,2.582,2.068],[0.08,1.198,0.9185],\
        [0.1,0.6861,0.489],[0.15,0.2899,0.1634],\
        [0.2,0.1838,0.08378],[0.3,0.1186,0.0436],\
        [0.4,0.09563,0.03398],[0.5,0.08328,0.03036],\
        [0.6,0.07515,0.02851],[0.8,0.06443,0.0264],\
        [1.0,0.05728,0.02496],[1.25,0.05094,0.0235],\
        [1.5,0.0465,0.02237],[2.0,0.04089,0.02092],\
        [3.0,0.03552,0.01991],[4.0,0.03327,0.01995],\
        [5.0,0.03229,0.02036],[6.0,0.03194,0.0209],\
        [8.0,0.03218,0.02207],[10.0,0.03293,0.02314],\
        [15.0,0.03521,0.02507],[20.0,0.03738,0.02618]]),\
        'Kr':(36,79.904,[\
        [0.001,2854.0,2848.0],[0.0015,1093.0,1087.0],\
        [0.0016749,836.1,830.5],[0.0016749,3909.0,3842.0],\
        [0.00170085,3409.0,3352.0],[0.0017272,3166.0,3114.0],\
        [0.0017272,4566.0,4484.0],[0.00182152,4014.0,3945.0],\
        [0.001921,3482.0,3425.0],[0.001921,3948.0,3882.0],\
        [0.002,3599.0,3541.0],[0.003,1305.0,1288.0],\
        [0.004,618.6,610.1],[0.005,342.5,337.1],\
        [0.006,210.1,206.0],[0.008,96.51,93.71],\
        [0.01,52.57,50.44],[0.0143256,19.71,18.36],\
        [0.0143256,131.3,66.04],[0.015,116.8,61.12],\
        [0.02,55.48,35.09],[0.03,18.54,13.65],\
        [0.04,8.389,6.538],[0.05,4.523,3.596],\
        [0.06,2.739,2.178],[0.08,1.267,0.9729],\
        [0.1,0.7221,0.5192],[0.15,0.2998,0.1731],\
        [0.2,0.1872,0.08787],[0.3,0.1186,0.04459],\
        [0.4,0.0948,0.03414],[0.5,0.08226,0.03023],\
        [0.6,0.0741,0.02825],[0.8,0.0634,0.02603],\
        [1.0,0.05631,0.02456],[1.25,0.05005,0.0231],\
        [1.5,0.04569,0.02197],[2.0,0.0402,0.02055],\
        [3.0,0.03501,0.01961],[4.0,0.03286,0.01969],\
        [5.0,0.03196,0.02014],[6.0,0.03168,0.02071],\
        [8.0,0.03199,0.02192],[10.0,0.0328,0.02302],\
        [15.0,0.03518,0.02497],[20.0,0.03741,0.0261]]),\
        'Rb':(37,83.798,[\
        [0.001,3174.0,3168.0],[0.0015,1219.0,1213.0],\
        [0.0018044,778.2,772.6],[0.0018044,3096.0,3040.0],\
        [0.00183391,2969.0,2915.0],[0.0018639,2861.0,2810.0],\
        [0.0018639,3957.0,3880.0],[0.002,3410.0,3347.0],\
        [0.0020651,3153.0,3096.0],[0.0020651,3606.0,3540.0],\
        [0.003,1418.0,1397.0],[0.004,674.8,664.8],\
        [0.005,374.4,368.2],[0.006,230.0,225.5],\
        [0.008,105.8,102.8],[0.01,57.66,55.41],\
        [0.015,19.09,17.75],[0.0151997,18.42,17.09],\
        [0.0151997,120.8,58.64],[0.02,59.8,35.81],\
        [0.03,20.09,14.36],[0.04,9.112,6.963],\
        [0.05,4.918,3.858],[0.06,2.979,2.349],\
        [0.08,1.375,1.056],[0.1,0.7799,0.5649],\
        [0.15,0.3187,0.1881],[0.2,0.196,0.09465],\
        [0.3,0.1219,0.0469],[0.4,0.0967,0.03531],\
        [0.5,0.0836,0.03098],[0.6,0.0751,0.02878],\
        [0.8,0.06412,0.02638],[1.0,0.05689,0.02484],\
        [1.25,0.05053,0.02332],[1.5,0.04613,0.02217],\
        [2.0,0.04061,0.02074],[3.0,0.03545,0.01983],\
        [4.0,0.03335,0.01996],[5.0,0.0325,0.02045],\
        [6.0,0.03227,0.02105],[8.0,0.03267,0.02231],\
        [10.0,0.03357,0.02343],[15.0,0.0361,0.02538],\
        [20.0,0.03845,0.02645]]),\
        'Sr':(38,85.4678,[\
        [0.001,3494.0,3487.0],[0.0015,1347.0,1341.0],\
        [0.0019396,720.7,715.2],[0.0019396,2864.0,2807.0],\
        [0.002,2589.0,2539.0],[0.0020068,2571.0,2521.0],\
        [0.0020068,3577.0,3501.0],[0.00210895,3201.0,3134.0],\
        [0.0022163,2842.0,2786.0],[0.0022163,3241.0,3176.0],\
        [0.003,1525.0,1500.0],[0.004,729.7,718.1],\
        [0.005,405.8,398.8],[0.006,249.6,244.6],\
        [0.008,115.0,111.8],[0.01,62.74,60.37],\
        [0.015,20.79,19.38],[0.0161046,17.14,15.85],\
        [0.0161046,110.8,52.0],[0.02,63.86,36.02],\
        [0.03,21.57,14.93],[0.04,9.818,7.346],\
        [0.05,5.306,4.103],[0.06,3.214,2.511],\
        [0.08,1.481,1.135],[0.1,0.8365,0.6093],\
        [0.15,0.3369,0.2028],[0.2,0.2042,0.1013],\
        [0.3,0.1247,0.04906],[0.4,0.09811,0.03634],\
        [0.5,0.08443,0.03156],[0.6,0.0757,0.02917],\
        [0.8,0.06447,0.0266],[1.0,0.05714,0.02498],\
        [1.25,0.05072,0.02342],[1.5,0.0463,0.02225],\
        [2.0,0.04079,0.02082],[3.0,0.03569,0.01995],\
        [4.0,0.03365,0.02013],[5.0,0.03286,0.02066],\
        [6.0,0.03268,0.0213],[8.0,0.03317,0.0226],\
        [10.0,0.03414,0.02377],[15.0,0.03683,0.02578],\
        [20.0,0.03927,0.02684]]),\
        'Y':(39,87.62,[\
        [0.001,3864.0,3857.0],[0.0015,1493.0,1487.0],\
        [0.002,742.2,736.5],[0.00208,673.8,668.2],\
        [0.00208,2627.0,2569.0],[0.00211741,2466.0,2412.0],\
        [0.0021555,2342.0,2292.0],[0.0021555,3264.0,3187.0],\
        [0.0022614,2916.0,2849.0],[0.0023725,2597.0,2540.0],\
        [0.0023725,2962.0,2897.0],[0.003,1654.0,1623.0],\
        [0.004,793.6,779.8],[0.005,442.4,434.4],\
        [0.006,272.5,267.0],[0.008,125.8,122.4],\
        [0.01,68.71,66.19],[0.015,22.79,21.3],\
        [0.0170384,16.12,14.86],[0.0170384,102.9,46.72],\
        [0.02,68.55,36.2],[0.03,23.3,15.58],\
        [0.04,10.65,7.79],[0.05,5.764,4.388],\
        [0.06,3.493,2.699],[0.08,1.607,1.228],\
        [0.1,0.9047,0.6616],[0.15,0.3595,0.2203],\
        [0.2,0.2149,0.1093],[0.3,0.1289,0.05186],\
        [0.4,0.1006,0.03779],[0.5,0.08613,0.03249],\
        [0.6,0.07703,0.02986],[0.8,0.06546,0.02708],\
        [1.0,0.05795,0.02537],[1.25,0.05141,0.02375],\
        [1.5,0.04692,0.02254],[2.0,0.04137,0.02109],\
        [3.0,0.03628,0.02026],[4.0,0.03428,0.02048],\
        [5.0,0.03355,0.02107],[6.0,0.03341,0.02174],\
        [8.0,0.03399,0.02311],[10.0,0.03504,0.02432],\
        [15.0,0.0379,0.02638],[20.0,0.04048,0.02746]]),\
        'Zr':(40,88.90585,[\
        [0.001,4210.0,4203.0],[0.0015,1631.0,1625.0],\
        [0.002,811.5,805.7],[0.0022223,625.8,620.1],\
        [0.0022223,2392.0,2335.0],[0.00226411,2239.0,2186.0],\
        [0.0023067,2120.0,2071.0],[0.0023067,2953.0,2878.0],\
        [0.00241654,2641.0,2575.0],[0.0025316,2359.0,2303.0],\
        [0.0025316,2691.0,2627.0],[0.003,1772.0,1734.0],\
        [0.004,850.7,834.4],[0.005,475.5,466.4],\
        [0.006,293.5,287.3],[0.008,135.6,132.0],\
        [0.01,74.17,71.5],[0.015,24.63,23.08],\
        [0.0179976,15.01,13.8],[0.0179976,94.7,41.64],\
        [0.02,72.37,35.55],[0.03,24.85,16.0],\
        [0.04,11.39,8.129],[0.05,6.173,4.621],\
        [0.06,3.744,2.859],[0.08,1.721,1.31],\
        [0.1,0.9658,0.708],[0.15,0.379,0.2361],\
        [0.2,0.2237,0.1164],[0.3,0.1318,0.0542],\
        [0.4,0.1018,0.03885],[0.5,0.08693,0.03311],\
        [0.6,0.07756,0.03025],[0.8,0.06571,0.02726],\
        [1.0,0.0581,0.02547],[1.25,0.0515,0.0238],\
        [1.5,0.047,0.02257],[2.0,0.04146,0.02112],\
        [3.0,0.03644,0.02033],[4.0,0.03451,0.02061],\
        [5.0,0.03384,0.02123],[6.0,0.03374,0.02193],\
        [8.0,0.03441,0.02335],[10.0,0.03554,0.0246],\
        [15.0,0.03855,0.0267],[20.0,0.04122,0.02778]]),\
        'Nb':(41,91.224,[\
        [0.001,4600.0,4592.0],[0.0015,1786.0,1780.0],\
        [0.002,889.3,883.2],[0.0023705,584.4,578.6],\
        [0.0023705,2181.0,2125.0],[0.00241714,2045.0,1992.0],\
        [0.0024647,1935.0,1886.0],[0.0024647,2694.0,2619.0],\
        [0.00257857,2412.0,2347.0],[0.0026977,2161.0,2104.0],\
        [0.0026977,2470.0,2405.0],[0.003,1906.0,1859.0],\
        [0.004,916.4,897.0],[0.005,513.4,502.7],\
        [0.006,317.2,310.3],[0.008,146.9,142.9],\
        [0.01,80.38,77.54],[0.015,26.72,25.08],\
        [0.0189856,14.09,12.91],[0.0189856,87.84,37.46],\
        [0.02,77.12,34.93],[0.03,26.66,16.48],\
        [0.04,12.23,8.511],[0.05,6.644,4.884],\
        [0.06,4.032,3.04],[0.08,1.852,1.403],\
        [0.1,1.037,0.7608],[0.15,0.4023,0.2542],\
        [0.2,0.2344,0.1247],[0.3,0.1357,0.05705],\
        [0.4,0.104,0.04026],[0.5,0.08831,0.03396],\
        [0.6,0.07858,0.03085],[0.8,0.06642,0.02764],\
        [1.0,0.05866,0.02575],[1.25,0.05196,0.02402],\
        [1.5,0.04741,0.02276],[2.0,0.04185,0.0213],\
        [3.0,0.03686,0.02054],[4.0,0.03498,0.02086],\
        [5.0,0.03436,0.02153],[6.0,0.03432,0.02227],\
        [8.0,0.03508,0.02375],[10.0,0.03628,0.02503],\
        [15.0,0.03944,0.02718],[20.0,0.04224,0.02828]]),\
        'Mo':(42,92.90638,[\
        [0.001,4942.0,4935.0],[0.0015,1925.0,1918.0],\
        [0.002,959.3,953.1],[0.0025202,541.5,535.8],\
        [0.0025202,1979.0,1924.0],[0.00257212,1854.0,1802.0],\
        [0.0026251,1750.0,1703.0],[0.0026251,2433.0,2360.0],\
        [0.00274267,2183.0,2119.0],[0.0028655,1961.0,1906.0],\
        [0.0028655,2243.0,2179.0],[0.003,2011.0,1956.0],\
        [0.004,970.3,947.5],[0.005,545.0,532.8],\
        [0.006,337.3,329.5],[0.008,156.5,152.2],\
        [0.01,85.76,82.75],[0.015,28.54,26.84],\
        [0.0199995,13.08,11.93],[0.0199995,80.55,32.93],\
        [0.02,80.54,33.36],[0.03,28.1,16.64],\
        [0.04,12.94,8.757],[0.05,7.037,5.074],\
        [0.06,4.274,3.178],[0.08,1.962,1.477],\
        [0.1,1.096,0.8042],[0.15,0.4208,0.2693],\
        [0.2,0.2423,0.1316],[0.3,0.1379,0.05919],\
        [0.4,0.1047,0.04117],[0.5,0.08848,0.03437],\
        [0.6,0.07851,0.03104],[0.8,0.06619,0.02764],\
        [1.0,0.05837,0.02567],[1.25,0.05167,0.0239],\
        [1.5,0.04713,0.02263],[2.0,0.04163,0.02118],\
        [3.0,0.03675,0.02046],[4.0,0.03496,0.02084],\
        [5.0,0.03439,0.02153],[6.0,0.0344,0.02231],\
        [8.0,0.03523,0.02382],[10.0,0.0365,0.02513],\
        [15.0,0.03978,0.02731],[20.0,0.04264,0.0284]]),\
        'Tc':(43,95.94,[\
        [0.001,5356.0,5348.0],[0.0015,2092.0,2085.0],\
        [0.002,1044.0,1037.0],[0.0026769,507.2,501.4],\
        [0.0026769,1812.0,1758.0],[0.00273443,1699.0,1648.0],\
        [0.0027932,1602.0,1555.0],[0.0027932,2223.0,2151.0],\
        [0.003,1862.0,1805.0],[0.0030425,1800.0,1745.0],\
        [0.0030425,2059.0,1995.0],[0.004,1036.0,1009.0],\
        [0.005,583.6,569.4],[0.006,361.9,353.0],\
        [0.008,168.3,163.5],[0.01,92.31,89.08],\
        [0.015,30.76,28.98],[0.02,14.1,12.9],\
        [0.021044,12.29,11.17],[0.021044,74.81,30.14],\
        [0.03,29.93,16.93],[0.04,13.81,9.075],\
        [0.05,7.521,5.312],[0.06,4.571,3.348],\
        [0.08,2.099,1.568],[0.1,1.169,0.8572],\
        [0.15,0.4449,0.288],[0.2,0.2534,0.1403],\
        [0.3,0.1418,0.06214],[0.4,0.1066,0.04257],\
        [0.5,0.08968,0.03521],[0.6,0.07935,0.03159],\
        [0.8,0.06674,0.02797],[1.0,0.05876,0.02589],\
        [1.25,0.05197,0.02406],[1.5,0.0474,0.02276],\
        [2.0,0.04189,0.02129],[3.0,0.03705,0.02061],\
        [4.0,0.03532,0.02103],[5.0,0.03482,0.02178],\
        [6.0,0.03487,0.02258],[8.0,0.03578,0.02415],\
        [10.0,0.03712,0.02549],[15.0,0.04055,0.02774],\
        [20.0,0.04353,0.02884]]),\
        'Ru':(44,98.0,[\
[0.001,5718.0,5709.0],\
        [0.0015,2240.0,2233.0],[0.002,1120.0,1113.0],\
        [0.0028379,470.4,464.6],[0.0028379,1644.0,1591.0],\
        [0.00290168,1542.0,1492.0],[0.0029669,1452.0,1407.0],\
        [0.0029669,2317.0,2233.0],[0.003,1963.0,1894.0],\
        [0.003224,1638.0,1584.0],[0.003224,1874.0,1811.0],\
        [0.004,1095.0,1063.0],[0.005,616.5,600.0],\
        [0.006,383.2,373.1],[0.008,178.5,173.3],\
        [0.01,98.0,94.56],[0.015,32.7,30.85],\
        [0.02,14.99,13.76],[0.0221172,11.43,10.35],\
        [0.0221172,68.76,27.0],[0.03,31.39,16.89],\
        [0.04,14.52,9.251],[0.05,7.926,5.477],\
        [0.06,4.822,3.476],[0.08,2.215,1.641],\
        [0.1,1.232,0.9012],[0.15,0.4647,0.3037],\
        [0.2,0.2618,0.1475],[0.3,0.144,0.06445],\
        [0.4,0.1074,0.04355],[0.5,0.08992,0.03567],\
        [0.6,0.07933,0.03182],[0.8,0.06647,0.02796],\
        [1.0,0.05846,0.02581],[1.25,0.05166,0.02393],\
        [1.5,0.0471,0.02262],[2.0,0.04164,0.02115],\
        [3.0,0.03692,0.02052],[4.0,0.03527,0.02098],\
        [5.0,0.03482,0.02176],[6.0,0.03491,0.02259],\
        [8.0,0.03591,0.02419],[10.0,0.0373,0.02556],\
        [15.0,0.04084,0.02783],[20.0,0.04387,0.02893]]),\
        'Rh':(45,101.07,[\
        [0.001,6169.0,6160.0],[0.0015,2426.0,2419.0],\
        [0.002,1214.0,1207.0],[0.003,444.1,438.2],\
        [0.0030038,442.7,436.8],[0.0030038,1513.0,1461.0],\
        [0.00307413,1422.0,1372.0],[0.0031461,1337.0,1292.0],\
        [0.0031461,1847.0,1777.0],[0.00327631,1671.0,1608.0],\
        [0.0034119,1512.0,1458.0],[0.0034119,1731.0,1669.0],\
        [0.004,1170.0,1132.0],[0.005,658.9,639.6],\
        [0.006,410.1,398.5],[0.008,191.5,185.7],\
        [0.01,105.3,101.5],[0.015,35.18,33.22],\
        [0.02,16.13,14.84],[0.0232199,10.79,9.736],\
        [0.0232199,64.14,24.58],[0.03,33.3,16.99],\
        [0.04,15.44,9.52],[0.05,8.448,5.706],\
        [0.06,5.147,3.649],[0.08,2.365,1.737],\
        [0.1,1.314,0.9581],[0.15,0.4916,0.3241],\
        [0.2,0.2742,0.1571],[0.3,0.1485,0.06776],\
        [0.4,0.1097,0.04517],[0.5,0.09134,0.03663],\
        [0.6,0.08035,0.03247],[0.8,0.06711,0.02834],\
        [1.0,0.05894,0.02608],[1.25,0.05204,0.02413],\
        [1.5,0.04744,0.02278],[2.0,0.04197,0.02131],\
        [3.0,0.03728,0.02071],[4.0,0.03568,0.02122],\
        [5.0,0.03529,0.02204],[6.0,0.03542,0.0229],\
        [8.0,0.0365,0.02456],[10.0,0.03797,0.02597],\
        [15.0,0.04166,0.02831],[20.0,0.04481,0.02943]]),\
        'Pd':(46,102.9055,[\
        [0.001,6538.0,6529.0],[0.0015,2579.0,2571.0],\
        [0.002,1292.0,1285.0],[0.003,473.0,466.8],\
        [0.0031733,410.6,404.7],[0.0031733,1355.0,1305.0],\
        [0.00325085,1287.0,1238.0],[0.0033303,1215.0,1171.0],\
        [0.0033303,1664.0,1597.0],[0.00346459,1518.0,1456.0],\
        [0.0036043,1379.0,1326.0],[0.0036043,1582.0,1520.0],\
        [0.004,1227.0,1182.0],[0.005,691.2,668.8],\
        [0.006,430.8,417.5],[0.008,201.7,195.3],\
        [0.01,111.0,107.0],[0.015,37.15,35.11],\
        [0.02,17.04,15.71],[0.0243503,10.03,9.016],\
        [0.0243503,58.98,22.08],[0.03,34.65,16.69],\
        [0.04,16.14,9.611],[0.05,8.85,5.833],\
        [0.06,5.399,3.759],[0.08,2.481,1.804],\
        [0.1,1.377,1.0],[0.15,0.5115,0.3397],\
        [0.2,0.2827,0.1644],[0.3,0.1506,0.07007],\
        [0.4,0.1103,0.04611],[0.5,0.09134,0.03704],\
        [0.6,0.0801,0.03262],[0.8,0.06669,0.02828],\
        [1.0,0.05849,0.02594],[1.25,0.05159,0.02395],\
        [1.5,0.04702,0.02259],[2.0,0.04162,0.02112],\
        [3.0,0.03704,0.02056],[4.0,0.03552,0.02111],\
        [5.0,0.03518,0.02196],[6.0,0.03537,0.02284],\
        [8.0,0.03651,0.02453],[10.0,0.03802,0.02595],\
        [15.0,0.04181,0.02832],[20.0,0.04501,0.02944]]),\
        'Ag':(47,106.42,[\
        [0.001,7039.0,7029.0],[0.0015,2790.0,2782.0],\
        [0.002,1401.0,1393.0],[0.003,513.6,507.3],\
        [0.0033511,388.7,382.7],[0.0033511,1274.0,1223.0],\
        [0.00343632,1200.0,1151.0],[0.0035237,1126.0,1082.0],\
        [0.0035237,1547.0,1479.0],[0.00366203,1409.0,1348.0],\
        [0.0038058,1282.0,1229.0],[0.0038058,1468.0,1406.0],\
        [0.004,1305.0,1252.0],[0.005,738.5,712.2],\
        [0.006,461.0,445.7],[0.008,216.4,209.2],\
        [0.01,119.3,114.9],[0.015,39.98,37.8],\
        [0.02,18.36,16.95],[0.025514,9.527,8.534],\
        [0.025514,55.39,20.31],[0.03,36.68,16.6],\
        [0.04,17.2,9.869],[0.05,9.444,6.066],\
        [0.06,5.766,3.938],[0.08,2.651,1.907],\
        [0.1,1.47,1.062],[0.15,0.5426,0.3622],\
        [0.2,0.2972,0.1751],[0.3,0.156,0.07392],\
        [0.4,0.1131,0.04803],[0.5,0.09321,0.03822],\
        [0.6,0.08153,0.03347],[0.8,0.06766,0.02881],\
        [1.0,0.05921,0.02632],[1.25,0.05217,0.02425],\
        [1.5,0.04754,0.02284],[2.0,0.04209,0.02135],\
        [3.0,0.03754,0.02082],[4.0,0.03606,0.02142],\
        [5.0,0.03577,0.02232],[6.0,0.03601,0.02324],\
        [8.0,0.03723,0.02499],[10.0,0.03882,0.02647],\
        [15.0,0.04276,0.02889],[20.0,0.04609,0.03005]]),\
        'Cd':(48,107.8682,[\
        [0.001,7350.0,7340.0],[0.0015,2931.0,2922.0],\
        [0.002,1473.0,1466.0],[0.003,541.4,535.0],\
        [0.0035375,357.5,351.7],[0.0035375,1152.0,1103.0],\
        [0.00363101,1083.0,1036.0],[0.003727,1013.0,971.5],\
        [0.003727,1389.0,1324.0],[0.004,1170.0,1118.0],\
        [0.004018,1157.0,1106.0],[0.004018,1324.0,1264.0],\
        [0.005,768.5,738.3],[0.006,479.3,461.9],\
        [0.008,225.4,217.4],[0.01,124.4,119.7],\
        [0.015,41.78,39.52],[0.02,19.2,17.76],\
        [0.0267112,8.809,7.863],[0.0267112,50.65,18.21],\
        [0.03,37.65,15.94],[0.04,17.78,9.812],\
        [0.05,9.779,6.115],[0.06,5.975,4.001],\
        [0.08,2.751,1.957],[0.1,1.524,1.096],\
        [0.15,0.5593,0.3753],[0.2,0.3038,0.1813],\
        [0.3,0.1571,0.0758],[0.4,0.1129,0.04868],\
        [0.5,0.0925,0.03838],[0.6,0.08064,0.03339],\
        [0.8,0.0667,0.02854],[1.0,0.05826,0.02597],\
        [1.25,0.05129,0.02387],[1.5,0.04673,0.02247],\
        [2.0,0.04139,0.02099],[3.0,0.03698,0.02051],\
        [4.0,0.03559,0.02114],[5.0,0.03536,0.02206],\
        [6.0,0.03563,0.023],[8.0,0.03691,0.02477],\
        [10.0,0.03853,0.02625],[15.0,0.04253,0.02869],\
        [20.0,0.04587,0.02985]]),\
        'In':(49,112.411,[\
        [0.001,7809.0,7797.0],[0.0015,3131.0,3122.0],\
        [0.002,1578.0,1570.0],[0.003,580.8,574.3],\
        [0.0037301,335.6,329.8],[0.0037301,1046.0,998.9],\
        [0.00383264,993.0,946.5],[0.003938,931.3,890.5],\
        [0.003938,1261.0,1199.0],[0.004,1231.0,1170.0],\
        [0.0042375,1066.0,1016.0],[0.0042375,1223.0,1164.0],\
        [0.005,813.4,778.0],[0.006,507.2,487.1],\
        [0.008,239.1,230.1],[0.01,132.1,126.9],\
        [0.015,44.45,42.06],[0.02,20.44,18.93],\
        [0.0279399,8.316,7.395],[0.0279399,47.33,16.7],\
        [0.03,39.49,15.53],[0.04,18.73,9.911],\
        [0.05,10.3,6.262],[0.06,6.306,4.135],\
        [0.08,2.907,2.043],[0.1,1.609,1.15],\
        [0.15,0.5876,0.396],[0.2,0.3167,0.1913],\
        [0.3,0.1614,0.07923],[0.4,0.1149,0.05031],\
        [0.5,0.09371,0.03932],[0.6,0.08138,0.03398],\
        [0.8,0.06707,0.02883],[1.0,0.05849,0.02615],\
        [1.25,0.05144,0.02398],[1.5,0.04684,0.02254],\
        [2.0,0.04151,0.02105],[3.0,0.03715,0.0206],\
        [4.0,0.03582,0.02127],[5.0,0.03564,0.02223],\
        [6.0,0.03596,0.02321],[8.0,0.0373,0.02502],\
        [10.0,0.03898,0.02653],[15.0,0.04311,0.02903],\
        [20.0,0.04654,0.0302]]),\
        'Sn':(50,114.818,[\
        [0.001,8157.0,8144.0],[0.0015,3296.0,3287.0],\
        [0.002,1665.0,1657.0],[0.003,614.3,607.7],\
        [0.0039288,311.4,305.8],[0.0039288,928.5,884.5],\
        [0.004,939.3,894.5],[0.0041561,846.9,807.4],\
        [0.0041561,1145.0,1084.0],[0.00430764,1060.0,1002.0],\
        [0.0044647,971.2,922.1],[0.0044647,1117.0,1059.0],\
        [0.005,847.1,806.4],[0.006,529.4,506.5],\
        [0.008,250.0,240.0],[0.01,138.4,132.7],\
        [0.015,46.64,44.13],[0.02,21.46,19.9],\
        [0.0292001,7.76,6.876],[0.0292001,43.6,15.14],\
        [0.03,41.21,14.9],[0.04,19.42,9.835],\
        [0.05,10.7,6.314],[0.06,6.564,4.211],\
        [0.08,3.029,2.101],[0.1,1.676,1.189],\
        [0.15,0.6091,0.4119],[0.2,0.326,0.199],\
        [0.3,0.1639,0.08179],[0.4,0.1156,0.05138],\
        [0.5,0.09374,0.0398],[0.6,0.08113,0.03417],\
        [0.8,0.06662,0.02878],[1.0,0.058,0.02601],\
        [1.25,0.05095,0.02379],[1.5,0.04638,0.02233],\
        [2.0,0.04112,0.02085],[3.0,0.03686,0.02044],\
        [4.0,0.03561,0.02115],[5.0,0.03548,0.02213],\
        [6.0,0.03583,0.02312],[8.0,0.03724,0.02496],\
        [10.0,0.03895,0.02649],[15.0,0.04315,0.02901],\
        [20.0,0.04662,0.03018]]),\
        'Sb':(51,118.71,[\
        [0.001,8582.0,8568.0],[0.0015,3491.0,3481.0],\
        [0.002,1767.0,1759.0],[0.003,653.6,646.9],\
        [0.004,316.9,311.3],[0.0041322,291.8,286.3],\
        [0.0041322,869.1,825.2],[0.00425449,830.8,786.5],\
        [0.0043804,777.6,739.2],[0.0043804,1050.0,990.6],\
        [0.00453657,974.3,917.8],[0.0046983,893.9,845.7],\
        [0.0046983,1029.0,972.5],[0.005,884.6,837.7],\
        [0.006,556.9,530.5],[0.008,263.1,251.8],\
        [0.01,145.9,139.6],[0.015,49.23,46.57],\
        [0.02,22.68,21.05],[0.03,7.631,6.755],\
        [0.0304912,7.307,6.452],[0.0304912,40.73,13.91],\
        [0.04,20.27,9.789],[0.05,11.2,6.4],\
        [0.06,6.879,4.311],[0.08,3.176,2.173],\
        [0.1,1.758,1.237],[0.15,0.6361,0.4312],\
        [0.2,0.3381,0.2084],[0.3,0.1677,0.08504],\
        [0.4,0.1172,0.05288],[0.5,0.09453,0.04061],\
        [0.6,0.08153,0.03465],[0.8,0.0667,0.02896],\
        [1.0,0.05797,0.02608],[1.25,0.05086,0.02378],\
        [1.5,0.04628,0.0223],[2.0,0.04105,0.02081],\
        [3.0,0.03686,0.02043],[4.0,0.03567,0.02118],\
        [5.0,0.03559,0.02219],[6.0,0.03598,0.02321],\
        [8.0,0.03745,0.02509],[10.0,0.03921,0.02664],\
        [15.0,0.04351,0.0292],[20.0,0.04704,0.03038]]),\
        'Te':(52,121.76,[\
        [0.001,8434.0,8419.0],[0.001003,8380.0,8365.0],\
        [0.001006,8326.0,8311.0],[0.001006,8684.0,8668.0],\
        [0.0015,3608.0,3598.0],[0.002,1832.0,1824.0],\
        [0.003,679.2,672.6],[0.004,329.7,324.0],\
        [0.0043414,267.8,262.5],[0.0043414,788.2,746.0],\
        [0.00447465,750.4,707.8],[0.004612,699.5,662.9],\
        [0.004612,944.5,888.0],[0.0047728,878.2,823.7],\
        [0.0049392,806.2,760.0],[0.0049392,929.2,874.4],\
        [0.005,901.4,848.7],[0.006,572.1,542.3],\
        [0.008,270.2,257.8],[0.01,150.1,143.3],\
        [0.015,50.78,48.02],[0.02,23.41,21.75],\
        [0.03,7.878,6.997],[0.0318138,6.738,5.929],\
        [0.0318138,37.19,12.51],[0.04,20.64,9.48],\
        [0.05,11.45,6.33],[0.06,7.041,4.306],\
        [0.08,3.255,2.195],[0.1,1.801,1.256],\
        [0.15,0.6492,0.4409],[0.2,0.3429,0.2132],\
        [0.3,0.1679,0.08646],[0.4,0.1163,0.05326],\
        [0.5,0.09328,0.04055],[0.6,0.08022,0.0344],\
        [0.8,0.06538,0.02854],[1.0,0.05669,0.02559],\
        [1.25,0.04967,0.02327],[1.5,0.04518,0.02179],\
        [2.0,0.04009,0.02033],[3.0,0.03606,0.01998],\
        [4.0,0.03494,0.02075],[5.0,0.03492,0.02177],\
        [6.0,0.03534,0.02279],[8.0,0.03683,0.02466],\
        [10.0,0.0386,0.0262],[15.0,0.0429,0.02873],\
        [20.0,0.04642,0.02989]]),\
        'I':(53,127.6,[\
        [0.001,9096.0,9078.0],[0.00103542,8465.0,8448.0],\
        [0.0010721,7863.0,7847.0],[0.0010721,8198.0,8181.0],\
        [0.0015,3919.0,3908.0],[0.002,1997.0,1988.0],\
        [0.003,742.0,735.1],[0.004,360.7,354.8],\
        [0.0045571,259.2,253.7],[0.0045571,755.0,712.1],\
        [0.00470229,712.3,672.4],[0.0048521,663.6,627.0],\
        [0.0048521,894.3,837.5],[0.005,843.0,790.3],\
        [0.0051881,766.5,719.8],[0.0051881,883.7,828.3],\
        [0.006,617.3,582.2],[0.008,292.2,277.7],\
        [0.01,162.6,154.8],[0.015,55.12,52.08],\
        [0.02,25.43,23.63],[0.03,8.561,7.622],\
        [0.0331694,6.553,5.744],[0.0331694,35.82,11.88],\
        [0.04,22.1,9.616],[0.05,12.32,6.573],\
        [0.06,7.579,4.518],[0.08,3.51,2.331],\
        [0.1,1.942,1.342],[0.15,0.6978,0.4742],\
        [0.2,0.3663,0.2295],[0.3,0.1771,0.09257],\
        [0.4,0.1217,0.0565],[0.5,0.09701,0.04267],\
        [0.6,0.08313,0.03598],[0.8,0.06749,0.02962],\
        [1.0,0.05841,0.02646],[1.25,0.05111,0.02399],\
        [1.5,0.04647,0.02243],[2.0,0.04124,0.02092],\
        [3.0,0.03716,0.02059],[4.0,0.03607,0.02142],\
        [5.0,0.03608,0.0225],[6.0,0.03655,0.02357],\
        [8.0,0.03815,0.02553],[10.0,0.04002,0.02714],\
        [15.0,0.04455,0.0298],[20.0,0.04823,0.03101]]),\
        'Xe':(54,126.90447,[\
        [0.001,9413.0,9393.0],[0.00107191,8151.0,8132.0],\
        [0.001149,7035.0,7019.0],[0.001149,7338.0,7321.0],\
        [0.0015,4085.0,4073.0],[0.002,2088.0,2078.0],\
        [0.003,778.0,770.9],[0.004,378.7,372.8],\
        [0.0047822,240.8,235.5],[0.0047822,694.1,652.4],\
        [0.005,639.2,601.5],[0.0051037,604.4,569.3],\
        [0.0051037,818.1,763.0],[0.00527536,757.9,707.9],\
        [0.0054528,699.1,653.9],[0.0054528,806.4,752.7],\
        [0.006,637.6,597.9],[0.008,303.2,287.1],\
        [0.01,169.0,160.5],[0.015,57.43,54.2],\
        [0.02,26.52,24.65],[0.03,8.93,7.969],\
        [0.0345614,6.129,5.352],[0.0345614,33.16,10.86],\
        [0.04,22.7,9.323],[0.05,12.72,6.54],\
        [0.06,7.825,4.541],[0.08,3.633,2.374],\
        [0.1,2.011,1.376],[0.15,0.7202,0.4894],\
        [0.2,0.376,0.2373],[0.3,0.1797,0.09522],\
        [0.4,0.1223,0.05761],[0.5,0.09699,0.04317],\
        [0.6,0.08281,0.03617],[0.8,0.06696,0.02956],\
        [1.0,0.05785,0.0263],[1.25,0.05054,0.02378],\
        [1.5,0.04594,0.02221],[2.0,0.04078,0.0207],\
        [3.0,0.03681,0.02042],[4.0,0.03577,0.02128],\
        [5.0,0.03583,0.0224],[6.0,0.03634,0.0235],\
        [8.0,0.03797,0.02553],[10.0,0.03987,0.0272],\
        [15.0,0.04445,0.03002],[20.0,0.04815,0.03139]]),\
        'Cs':(55,131.293,[\
        [0.001,9365.0,9343.0],[0.00103199,8775.0,8754.0],\
        [0.001065,8214.0,8194.0],[0.001065,8685.0,8663.0],\
        [0.00113851,7576.0,7557.0],[0.0012171,6584.0,6567.0],\
        [0.0012171,6888.0,6870.0],[0.0015,4335.0,4322.0],\
        [0.002,2226.0,2216.0],[0.003,831.9,824.6],\
        [0.004,405.5,399.4],[0.005,230.3,225.1],\
        [0.0050119,229.0,223.7],[0.0050119,667.4,624.8],\
        [0.00518274,618.4,576.3],[0.0053594,564.5,529.9],\
        [0.0053594,769.2,714.2],[0.00553401,714.6,661.0],\
        [0.0057143,655.6,610.8],[0.0057143,754.7,701.5],\
        [0.006,671.1,625.3],[0.008,321.4,302.9],\
        [0.01,179.3,169.7],[0.015,61.04,57.53],\
        [0.02,28.22,26.23],[0.03,9.507,8.502],\
        [0.0359846,5.863,5.102],[0.0359846,31.43,10.17],\
        [0.04,23.81,9.185],[0.05,13.4,6.618],\
        [0.06,8.248,4.653],[0.08,3.836,2.464],\
        [0.1,2.124,1.438],[0.15,0.7589,0.5154],\
        [0.2,0.3941,0.2502],[0.3,0.1863,0.1],\
        [0.4,0.1257,0.06003],[0.5,0.09912,0.04463],\
        [0.6,0.08431,0.03717],[0.8,0.06789,0.03014],\
        [1.0,0.05854,0.02671],[1.25,0.05108,0.02408],\
        [1.5,0.04641,0.02246],[2.0,0.04121,0.02091],\
        [3.0,0.03725,0.02064],[4.0,0.03625,0.02153],\
        [5.0,0.03635,0.02268],[6.0,0.03689,0.0238],\
        [8.0,0.0386,0.02583],[10.0,0.04057,0.0275],\
        [15.0,0.04529,0.03026],[20.0,0.0491,0.03152]]),\
        'Ba':(56,132.90545,[\
        [0.001,8543.0,8521.0],[0.00103063,7990.0,7969.0],\
        [0.0010622,7465.0,7445.0],[0.0010622,8547.0,8524.0],\
        [0.00109882,7957.0,7935.0],[0.0011367,7404.0,7384.0],\
        [0.0011367,7837.0,7815.0],[0.00121224,6861.0,6841.0],\
        [0.0012928,5985.0,5968.0],[0.0012928,6255.0,6237.0],\
        [0.0015,4499.0,4485.0],[0.002,2319.0,2308.0],\
        [0.003,869.6,862.2],[0.004,424.6,418.4],\
        [0.005,241.4,236.1],[0.005247,213.5,208.4],\
        [0.005247,609.8,568.9],[0.00543204,563.4,526.3],\
        [0.0056236,516.9,483.5],[0.0056236,701.6,648.6],\
        [0.00580333,650.7,602.5],[0.0059888,601.3,557.7],\
        [0.0059888,693.0,641.2],[0.006,689.8,638.3],\
        [0.008,333.4,312.7],[0.01,186.0,175.4],\
        [0.015,63.47,59.72],[0.02,29.38,27.3],\
        [0.03,9.904,8.875],[0.0374406,5.498,4.768],\
        [0.0374406,29.19,9.346],[0.04,24.57,8.842],\
        [0.05,13.79,6.534],[0.06,8.511,4.66],\
        [0.08,3.963,2.501],[0.1,2.196,1.47],\
        [0.15,0.7828,0.5309],[0.2,0.4046,0.2583],\
        [0.3,0.1891,0.1028],[0.4,0.1265,0.06125],\
        [0.5,0.09923,0.04521],[0.6,0.0841,0.03743],\
        [0.8,0.06744,0.03011],[1.0,0.05803,0.02657],\
        [1.25,0.05058,0.02388],[1.5,0.04592,0.02224],\
        [2.0,0.04078,0.02069],[3.0,0.03692,0.02044],\
        [4.0,0.03598,0.02135],[5.0,0.03612,0.0225],\
        [6.0,0.03669,0.02363],[8.0,0.03844,0.02566],\
        [10.0,0.04042,0.02731],[15.0,0.04518,0.03003],\
        [20.0,0.04902,0.03126]]),\
        'La':(57,137.327,[\
        [0.001,9087.0,9061.0],[0.00105991,7988.0,7965.0],\
        [0.0011234,7000.0,6979.0],[0.0011234,8025.0,8001.0],\
        [0.0011632,7447.0,7425.0],[0.0012044,6911.0,6890.0],\
        [0.0012044,7321.0,7298.0],[0.00128045,6440.0,6419.0],\
        [0.0013613,5652.0,5634.0],[0.0013613,5905.0,5886.0],\
        [0.0015,4772.0,4755.0],[0.002,2464.0,2453.0],\
        [0.003,926.7,919.0],[0.004,453.1,446.8],\
        [0.005,257.8,252.4],[0.0054827,203.9,198.8],\
        [0.0054827,576.4,535.6],[0.00568299,530.2,493.5],\
        [0.0058906,484.6,451.7],[0.0058906,654.5,602.3],\
        [0.006,631.9,581.9],[0.0062663,565.4,522.1],\
        [0.0062663,651.8,600.3],[0.008,352.9,329.0],\
        [0.01,196.7,184.7],[0.015,67.31,63.21],\
        [0.02,31.19,28.97],[0.03,10.52,9.444],\
        [0.0389246,5.271,4.554],[0.0389246,27.72,8.785],\
        [0.04,25.79,8.608],[0.05,14.47,6.56],\
        [0.06,8.962,4.756],[0.08,4.177,2.587],\
        [0.1,2.315,1.532],[0.15,0.8239,0.5576],\
        [0.2,0.4239,0.2718],[0.3,0.1961,0.1079],\
        [0.4,0.1301,0.06382],[0.5,0.1015,0.04677],\
        [0.6,0.0857,0.03849],[0.8,0.06843,0.03073],\
        [1.0,0.05876,0.027],[1.25,0.0511,0.02418],\
        [1.5,0.0464,0.02249],[2.0,0.04122,0.0209],\
        [3.0,0.03737,0.02068],[4.0,0.03646,0.02161],\
        [5.0,0.03664,0.0228],[6.0,0.03726,0.02395],\
        [8.0,0.03907,0.02602],[10.0,0.04113,0.02769],\
        [15.0,0.04603,0.03043],[20.0,0.04996,0.03163]]),\
        'Ce':(58,138.9055,[\
        [0.001,9711.0,9679.0],[0.00108876,7991.0,7964.0],\
        [0.0011854,6563.0,6541.0],[0.0011854,7545.0,7519.0],\
        [0.00122832,6984.0,6960.0],[0.0012728,6465.0,6442.0],\
        [0.0012728,6853.0,6829.0],[0.00135222,6031.0,6010.0],\
        [0.0014366,5293.0,5273.0],[0.0014366,5532.0,5512.0],\
        [0.0015,5033.0,5015.0],[0.002,2607.0,2595.0],\
        [0.003,985.7,977.6],[0.004,481.1,474.5],\
        [0.005,274.0,268.4],[0.0057234,194.3,189.2],\
        [0.0057234,545.4,504.6],[0.006,490.8,455.0],\
        [0.0061642,455.4,422.8],[0.0061642,618.8,566.5],\
        [0.00635359,575.6,527.8],[0.0065488,533.2,489.9],\
        [0.0065488,614.9,563.3],[0.008,373.2,345.8],\
        [0.01,208.2,194.5],[0.015,71.43,66.9],\
        [0.02,33.12,30.73],[0.03,11.19,10.05],\
        [0.04,5.215,4.496],[0.040443,5.066,4.359],\
        [0.040443,26.35,8.272],[0.05,15.2,6.569],\
        [0.06,9.447,4.847],[0.08,4.409,2.677],\
        [0.1,2.445,1.597],[0.15,0.8687,0.5862],\
        [0.2,0.4452,0.2865],[0.3,0.2039,0.1134],\
        [0.4,0.1342,0.06664],[0.5,0.1041,0.04851],\
        [0.6,0.08757,0.0397],[0.8,0.06962,0.03145],\
        [1.0,0.05961,0.0275],[1.25,0.05181,0.02456],\
        [1.5,0.04701,0.02281],[2.0,0.04177,0.02118],\
        [3.0,0.03792,0.02096],[4.0,0.03705,0.02194],\
        [5.0,0.03727,0.02316],[6.0,0.03792,0.02434],\
        [8.0,0.03981,0.02645],[10.0,0.04194,0.02816],\
        [15.0,0.04699,0.03094],[20.0,0.05103,0.03216]]),\
        'Pr':(59,140.116,[\
        [0.001,10580.0,10540.0],[0.00111454,8122.0,8091.0],\
        [0.0012422,6278.0,6254.0],[0.0012422,7224.0,7196.0],\
        [0.00128892,6661.0,6635.0],[0.0013374,6142.0,6118.0],\
        [0.0013374,6513.0,6487.0],[0.0015,5090.0,5069.0],\
        [0.001511,5006.0,4986.0],[0.001511,5235.0,5214.0],\
        [0.002,2768.0,2755.0],[0.003,1047.0,1038.0],\
        [0.004,513.1,506.1],[0.005,292.4,286.5],\
        [0.0059643,186.8,181.6],[0.0059643,521.4,480.2],\
        [0.006,514.5,473.9],[0.0064404,431.0,398.4],\
        [0.0064404,585.7,533.3],[0.00663467,545.5,497.6],\
        [0.0068348,506.0,462.5],[0.0068348,583.6,531.7],\
        [0.008,395.0,363.4],[0.01,220.9,205.2],\
        [0.015,75.97,70.94],[0.02,35.26,32.67],\
        [0.03,11.92,10.72],[0.04,5.557,4.803],\
        [0.0419906,4.892,4.192],[0.0419906,25.18,7.833],\
        [0.05,15.99,6.567],[0.06,9.977,4.942],\
        [0.08,4.664,2.773],[0.1,2.588,1.667],\
        [0.15,0.918,0.6172],[0.2,0.4687,0.3025],\
        [0.3,0.2126,0.1195],[0.4,0.1389,0.0698],\
        [0.5,0.1071,0.05047],[0.6,0.08976,0.04107],\
        [0.8,0.07105,0.03229],[1.0,0.0607,0.02811],\
        [1.25,0.05268,0.02503],[1.5,0.04779,0.0232],\
        [2.0,0.04244,0.02152],[3.0,0.03858,0.02131],\
        [4.0,0.03774,0.02233],[5.0,0.038,0.02359],\
        [6.0,0.0387,0.02481],[8.0,0.04067,0.02697],\
        [10.0,0.04288,0.02872],[15.0,0.04809,0.03155],\
        [20.0,0.05226,0.03277]]),\
        'Nd':(60,140.90765,[\
        [0.001,6627.0,6598.0],[0.0010025,6806.0,6776.0],\
        [0.001005,6949.0,6918.0],[0.001005,8554.0,8516.0],\
        [0.00114188,7579.0,7547.0],[0.0012974,5933.0,5908.0],\
        [0.0012974,6833.0,6803.0],[0.00134907,6264.0,6236.0],\
        [0.0014028,5744.0,5719.0],[0.0014028,6093.0,6066.0],\
        [0.0015,5273.0,5250.0],[0.0015753,4738.0,4717.0],\
        [0.0015753,4951.0,4929.0],[0.002,2878.0,2864.0],\
        [0.003,1093.0,1084.0],[0.004,536.6,529.4],\
        [0.005,306.1,300.0],[0.006,192.7,187.4],\
        [0.0062079,176.7,171.5],[0.0062079,489.2,448.4],\
        [0.0064596,448.7,407.9],[0.0067215,401.3,369.4],\
        [0.0067215,545.6,493.9],[0.0069208,513.5,461.4],\
        [0.007126,472.3,429.3],[0.007126,544.8,493.6],\
        [0.008,409.4,373.9],[0.01,230.0,212.5],\
        [0.015,79.25,73.76],[0.02,36.84,34.07],\
        [0.03,12.47,11.21],[0.04,5.809,5.033],\
        [0.0435689,4.642,3.962],[0.0435689,23.66,7.296],\
        [0.05,16.5,6.418],[0.06,10.33,4.928],\
        [0.08,4.839,2.815],[0.1,2.687,1.706],\
        [0.15,0.9522,0.6376],[0.2,0.4844,0.3133],\
        [0.3,0.2178,0.1236],[0.4,0.1412,0.07177],\
        [0.5,0.1083,0.05157],[0.6,0.0904,0.04174],\
        [0.8,0.07127,0.03258],[1.0,0.06072,0.02823],\
        [1.25,0.05262,0.02505],[1.5,0.04769,0.02318],\
        [2.0,0.04236,0.02148],[3.0,0.03856,0.02129],\
        [4.0,0.03776,0.02233],[5.0,0.03806,0.0236],\
        [6.0,0.03879,0.02483],[8.0,0.04081,0.02701],\
        [10.0,0.04304,0.02876],[15.0,0.04832,0.03159],\
        [20.0,0.05257,0.03283]]),\
        'Pm':(61,144.24,[\
        [0.001,2056.0,2046.0],[0.00101336,2007.0,1997.0],\
        [0.0010269,1959.0,1949.0],[0.0010269,2729.0,2715.0],\
        [0.00103913,3894.0,3874.0],[0.0010515,5830.0,5801.0],\
        [0.0010515,7242.0,7205.0],[0.00119448,7232.0,7196.0],\
        [0.0013569,5687.0,5660.0],[0.0013569,6555.0,6524.0],\
        [0.00141299,5985.0,5956.0],[0.0014714,5466.0,5439.0],\
        [0.0014714,5799.0,5770.0],[0.0015,5553.0,5526.0],\
        [0.001653,4497.0,4474.0],[0.001653,4699.0,4676.0],\
        [0.002,3048.0,3031.0],[0.003,1162.0,1152.0],\
        [0.004,570.9,563.3],[0.005,326.0,319.6],\
        [0.006,205.3,199.8],[0.0064593,170.2,164.9],\
        [0.0064593,467.8,426.7],[0.00673036,422.6,386.4],\
        [0.0070128,380.5,348.7],[0.0070128,517.4,465.7],\
        [0.00721737,488.4,435.9],[0.0074279,449.4,406.2],\
        [0.0074279,518.4,466.9],[0.008,431.4,390.8],\
        [0.01,244.0,224.0],[0.015,84.11,77.99],\
        [0.02,39.16,36.14],[0.03,13.27,11.93],\
        [0.04,6.181,5.366],[0.045184,4.491,3.816],\
        [0.045184,22.65,6.93],[0.05,17.35,6.363],\
        [0.06,10.87,4.989],[0.08,5.107,2.904],\
        [0.1,2.84,1.776],[0.15,1.005,0.6699],\
        [0.2,0.5098,0.3302],[0.3,0.2273,0.1301],\
        [0.4,0.1462,0.07517],[0.5,0.1115,0.05369],\
        [0.6,0.09276,0.04323],[0.8,0.0728,0.03349],\
        [1.0,0.06188,0.02889],[1.25,0.0535,0.02553],\
        [1.5,0.04849,0.0236],[2.0,0.04308,0.02184],\
        [3.0,0.03925,0.02166],[4.0,0.03849,0.02273],\
        [5.0,0.03882,0.02405],[6.0,0.03959,0.02532],\
        [8.0,0.04169,0.02754],[10.0,0.04401,0.02933],\
        [15.0,0.04946,0.03222],[20.0,0.0538,0.03344]]),\
        'Sm':(62,145.0,[\
        [0.001,2107.0,2097.0],[0.00103933,1963.0,1953.0],\
        [0.0010802,1827.0,1817.0],[0.0010802,2635.0,2620.0],\
        [0.00109302,3837.0,3816.0],[0.001106,5613.0,5582.0],\
        [0.001106,6852.0,6814.0],[0.00125312,6641.0,6605.0],\
        [0.0014198,5262.0,5234.0],[0.0014198,6072.0,6039.0],\
        [0.0015,5358.0,5329.0],[0.0015407,5046.0,5018.0],\
        [0.0015407,5355.0,5325.0],[0.00162921,4740.0,4714.0],\
        [0.0017228,4189.0,4165.0],[0.0017228,4376.0,4352.0],\
        [0.002,3120.0,3102.0],[0.003,1193.0,1183.0],\
        [0.004,587.3,579.5],[0.005,335.6,329.1],\
        [0.006,211.5,205.9],[0.0067162,158.7,153.6],\
        [0.0067162,433.4,393.3],[0.00700767,389.8,354.7],\
        [0.0073118,349.6,318.9],[0.0073118,475.6,425.5],\
        [0.0075213,450.1,398.8],[0.0077368,414.1,372.1],\
        [0.0077368,477.7,427.6],[0.008,440.1,395.1],\
        [0.01,249.9,227.8],[0.015,86.33,79.72],\
        [0.02,40.25,37.06],[0.03,13.65,12.27],\
        [0.04,6.362,5.532],[0.0468342,4.208,3.562],\
        [0.0468342,21.0,6.378],[0.05,17.74,6.094],\
        [0.06,11.07,4.872],[0.08,5.212,2.893],\
        [0.1,2.901,1.786],[0.15,1.027,0.6806],\
        [0.2,0.5192,0.3366],[0.3,0.2296,0.1326],\
        [0.4,0.1466,0.0762],[0.5,0.1112,0.05411],\
        [0.6,0.09218,0.04334],[0.8,0.07201,0.03333],\
        [1.0,0.06106,0.02862],[1.25,0.05271,0.02522],\
        [1.5,0.04773,0.02325],[2.0,0.0424,0.0215],\
        [3.0,0.03868,0.02133],[4.0,0.03797,0.02241],\
        [5.0,0.03833,0.02372],[6.0,0.03912,0.02498],\
        [8.0,0.04124,0.02719],[10.0,0.04355,0.02896],\
        [15.0,0.04899,0.0318],[20.0,0.05335,0.03302]]),\
        'Eu':(63,150.36,[\
        [0.001,2216.0,2206.0],[0.00106344,1978.0,1968.0],\
        [0.0011309,1763.0,1753.0],[0.0011309,2443.0,2428.0],\
        [0.00114565,3617.0,3595.0],[0.0011606,5416.0,5382.0],\
        [0.0011606,6540.0,6498.0],[0.00131087,6291.0,6253.0],\
        [0.0014806,5031.0,5001.0],[0.0014806,5810.0,5774.0],\
        [0.0015,5624.0,5590.0],[0.0016139,4771.0,4742.0],\
        [0.0016139,5064.0,5034.0],[0.00170441,4492.0,4465.0],\
        [0.0018,3980.0,3955.0],[0.0018,4158.0,4132.0],\
        [0.002,3278.0,3258.0],[0.003,1256.0,1245.0],\
        [0.004,619.3,611.1],[0.005,354.2,347.4],\
        [0.006,223.4,217.5],[0.0069769,152.2,147.1],\
        [0.0069769,412.7,372.5],[0.00728997,369.6,334.6],\
        [0.0076171,330.2,299.8],[0.0076171,449.2,399.3],\
        [0.008,398.9,356.0],[0.008052,392.1,350.2],\
        [0.008052,452.4,402.4],[0.01,262.9,237.8],\
        [0.015,90.87,83.52],[0.02,42.42,38.95],\
        [0.03,14.41,12.95],[0.04,6.716,5.848],\
        [0.048519,4.051,3.414],[0.048519,20.01,6.036],\
        [0.05,18.5,5.927],[0.06,11.55,4.863],\
        [0.08,5.455,2.953],[0.1,3.04,1.841],\
        [0.15,1.076,0.7088],[0.2,0.5425,0.3518],\
        [0.3,0.238,0.1385],[0.4,0.1509,0.07927],\
        [0.5,0.1139,0.05598],[0.6,0.09404,0.04462],\
        [0.8,0.07312,0.03406],[1.0,0.06186,0.02912],\
        [1.25,0.05331,0.02557],[1.5,0.04822,0.02353],\
        [2.0,0.04285,0.02173],[3.0,0.03913,0.02158],\
        [4.0,0.03845,0.02269],[5.0,0.03885,0.02404],\
        [6.0,0.03967,0.02532],[8.0,0.04185,0.02758],\
        [10.0,0.04422,0.02938],[15.0,0.0498,0.03228],\
        [20.0,0.05423,0.03351]]),\
        'Gd':(64,151.964,[\
        [0.001,2291.0,2281.0],[0.00108867,1960.0,1949.0],\
        [0.0011852,1668.0,1658.0],[0.0011852,1931.0,1919.0],\
        [0.00120109,2527.0,2510.0],[0.0012172,3961.0,3934.0],\
        [0.0012172,4764.0,4731.0],[0.0015,5041.0,5008.0],\
        [0.001544,4701.0,4670.0],[0.001544,5432.0,5395.0],\
        [0.00161454,4900.0,4867.0],[0.0016883,4421.0,4391.0],\
        [0.0016883,4694.0,4662.0],[0.00178195,4164.0,4136.0],\
        [0.0018808,3691.0,3666.0],[0.0018808,3854.0,3829.0],\
        [0.002,3360.0,3337.0],[0.003,1292.0,1280.0],\
        [0.004,638.0,629.6],[0.005,365.3,358.4],\
        [0.006,230.5,224.6],[0.0072428,142.9,137.9],\
        [0.0072428,384.4,345.2],[0.00757876,342.7,308.8],\
        [0.0079303,304.9,275.5],[0.0079303,414.9,366.5],\
        [0.008,406.8,359.5],[0.0083756,363.1,322.3],\
        [0.0083756,419.0,370.2],[0.01,269.3,241.6],\
        [0.015,93.35,85.38],[0.02,43.63,39.94],\
        [0.03,14.84,13.33],[0.04,6.92,6.033],\
        [0.05,3.859,3.242],[0.0502391,3.812,3.199],\
        [0.0502391,18.64,5.585],[0.06,11.75,4.722],\
        [0.08,5.573,2.937],[0.1,3.109,1.849],\
        [0.15,1.1,0.7197],[0.2,0.5534,0.3584],\
        [0.3,0.241,0.1409],[0.4,0.1517,0.08039],\
        [0.5,0.1139,0.0565],[0.6,0.09371,0.04483],\
        [0.8,0.07252,0.03399],[1.0,0.0612,0.02893],\
        [1.25,0.05262,0.0253],[1.5,0.04759,0.02325],\
        [2.0,0.04228,0.02144],[3.0,0.03865,0.02129],\
        [4.0,0.03802,0.02241],[5.0,0.03844,0.02374],\
        [6.0,0.03928,0.02502],[8.0,0.04147,0.02725],\
        [10.0,0.04384,0.02902],[15.0,0.04943,0.03188],\
        [20.0,0.05385,0.03306]]),\
        'Tb':(65,157.25,[\
        [0.001,2396.0,2386.0],[0.00111409,1956.0,1946.0],\
        [0.0012412,1591.0,1581.0],[0.0012412,2337.0,2321.0],\
        [0.00125799,3515.0,3488.0],[0.001275,5023.0,4984.0],\
        [0.001275,5928.0,5881.0],[0.0015,5314.0,5274.0],\
        [0.0016113,4464.0,4431.0],[0.0016113,5164.0,5125.0],\
        [0.00168769,4635.0,4601.0],[0.0017677,4166.0,4135.0],\
        [0.0017677,4424.0,4391.0],[0.00186493,3929.0,3899.0],\
        [0.0019675,3482.0,3456.0],[0.0019675,3638.0,3611.0],\
        [0.002,3507.0,3481.0],[0.003,1354.0,1342.0],\
        [0.004,669.7,660.7],[0.005,383.8,376.5],\
        [0.006,242.3,236.2],[0.007514,136.8,131.8],\
        [0.007514,365.8,326.6],[0.008,313.3,281.0],\
        [0.0082516,288.1,259.0],[0.0082516,392.5,344.3],\
        [0.00847673,368.4,323.9],[0.008708,344.1,303.3],\
        [0.008708,397.0,348.3],[0.01,281.5,250.2],\
        [0.015,98.02,89.14],[0.02,45.88,41.84],\
        [0.03,15.63,14.02],[0.04,7.288,6.357],\
        [0.05,4.064,3.422],[0.0519957,3.672,3.068],\
        [0.0519957,17.77,5.291],[0.06,12.23,4.673],\
        [0.08,5.826,2.986],[0.1,3.253,1.899],\
        [0.15,1.151,0.7474],[0.2,0.5775,0.3736],\
        [0.3,0.2498,0.147],[0.4,0.1562,0.08354],\
        [0.5,0.1167,0.05842],[0.6,0.09562,0.04614],\
        [0.8,0.07365,0.03474],[1.0,0.06196,0.02942],\
        [1.25,0.05321,0.02565],[1.5,0.04808,0.02352],\
        [2.0,0.04272,0.02166],[3.0,0.03908,0.02151],\
        [4.0,0.03848,0.02266],[5.0,0.03894,0.02402],\
        [6.0,0.03981,0.02532],[8.0,0.04206,0.02758],\
        [10.0,0.04449,0.02937],[15.0,0.05017,0.03224],\
        [20.0,0.0547,0.03343]]),\
        'Dy':(66,158.92534,[\
        [0.001,2494.0,2483.0],[0.00113794,1953.0,1943.0],\
        [0.0012949,1521.0,1511.0],[0.0012949,2173.0,2156.0],\
        [0.00131356,3293.0,3265.0],[0.0013325,4745.0,4704.0],\
        [0.0013325,5551.0,5502.0],[0.0015,5550.0,5503.0],\
        [0.0016756,4229.0,4194.0],[0.0016756,4896.0,4855.0],\
        [0.00175674,4382.0,4345.0],[0.0018418,3924.0,3892.0],\
        [0.0018418,4168.0,4133.0],[0.002,3467.0,3438.0],\
        [0.0020468,3286.0,3259.0],[0.0020468,3433.0,3404.0],\
        [0.003,1405.0,1391.0],[0.004,695.3,685.8],\
        [0.005,398.8,391.3],[0.006,252.0,245.6],\
        [0.0077901,129.9,124.9],[0.0077901,343.7,305.1],\
        [0.008,326.9,290.6],[0.0085806,269.5,241.0],\
        [0.0085806,367.2,319.8],[0.00881013,345.2,301.3],\
        [0.0090458,322.8,282.6],[0.0090458,372.5,324.5],\
        [0.01,290.2,255.4],[0.015,101.6,91.87],\
        [0.02,47.65,43.28],[0.03,16.25,14.56],\
        [0.04,7.582,6.616],[0.05,4.227,3.566],\
        [0.0537885,3.5,2.911],[0.0537885,16.76,4.961],\
        [0.06,12.59,4.554],[0.08,6.012,2.993],\
        [0.1,3.36,1.925],[0.15,1.189,0.766],\
        [0.2,0.5953,0.3846],[0.3,0.2558,0.1514],\
        [0.4,0.159,0.08578],[0.5,0.1181,0.05971],\
        [0.6,0.09644,0.04694],[0.8,0.07393,0.03509],\
        [1.0,0.06204,0.02958],[1.25,0.05318,0.0257],\
        [1.5,0.04801,0.02352],[2.0,0.04265,0.02163],\
        [3.0,0.03905,0.02149],[4.0,0.03848,0.02264],\
        [5.0,0.03896,0.02401],[6.0,0.03986,0.02532],\
        [8.0,0.04214,0.02758],[10.0,0.0446,0.02938],\
        [15.0,0.05033,0.03223],[20.0,0.05492,0.03342]]),\
        'Ho':(67,162.5,[\
        [0.001,2616.0,2605.0],[0.0011625,1961.0,1951.0],\
        [0.0013514,1462.0,1452.0],[0.0013514,2108.0,2091.0],\
        [0.0013713,3193.0,3164.0],[0.0013915,4528.0,4485.0],\
        [0.0013915,5239.0,5187.0],[0.0015,5847.0,5790.0],\
        [0.0017412,4038.0,4001.0],[0.0017412,4677.0,4633.0],\
        [0.00182975,4161.0,4122.0],[0.0019228,3703.0,3669.0],\
        [0.0019228,3934.0,3898.0],[0.002,3590.0,3558.0],\
        [0.0021283,3127.0,3099.0],[0.0021283,3266.0,3236.0],\
        [0.003,1465.0,1450.0],[0.004,726.4,716.4],\
        [0.005,417.0,409.1],[0.006,263.6,257.0],\
        [0.008,127.1,122.0],[0.0080711,124.2,119.2],\
        [0.0080711,328.3,289.7],[0.00848389,288.9,256.0],\
        [0.0089178,254.0,226.0],[0.0089178,346.3,299.4],\
        [0.0091529,325.9,282.5],[0.0093942,305.1,265.2],\
        [0.0093942,352.0,304.4],[0.01,301.2,262.3],\
        [0.015,106.0,95.21],[0.02,49.8,45.04],\
        [0.03,17.01,15.21],[0.04,7.94,6.928],\
        [0.05,4.425,3.74],[0.0556177,3.361,2.783],\
        [0.0556177,15.92,4.697],[0.06,13.09,4.466],\
        [0.08,6.244,3.015],[0.1,3.492,1.961],\
        [0.15,1.236,0.7901],[0.2,0.6178,0.3984],\
        [0.3,0.2639,0.157],[0.4,0.1629,0.08869],\
        [0.5,0.1205,0.06145],[0.6,0.098,0.04811],\
        [0.8,0.07477,0.03571],[1.0,0.06257,0.02997],\
        [1.25,0.05351,0.02593],[1.5,0.04828,0.02369],\
        [2.0,0.04289,0.02175],[3.0,0.0393,0.02161],\
        [4.0,0.03877,0.02279],[5.0,0.03927,0.02417],\
        [6.0,0.0402,0.02549],[8.0,0.04253,0.02777],\
        [10.0,0.04504,0.02958],[15.0,0.05088,0.03245],\
        [20.0,0.05551,0.03363]]),\
        'Er':(68,164.93032,[\
        [0.001,2748.0,2737.0],[0.00118714,1978.0,1967.0],\
        [0.0014093,1408.0,1397.0],[0.0014093,2069.0,2051.0],\
        [0.00143113,3170.0,3138.0],[0.0014533,4339.0,4293.0],\
        [0.0014533,4952.0,4898.0],[0.0015,6069.0,6003.0],\
        [0.0018118,3841.0,3802.0],[0.0018118,4452.0,4406.0],\
        [0.002,3523.0,3488.0],[0.0020058,3499.0,3464.0],\
        [0.0020058,3717.0,3680.0],[0.00210376,3337.0,3304.0],\
        [0.0022065,2995.0,2965.0],[0.0022065,3127.0,3096.0],\
        [0.003,1526.0,1510.0],[0.004,758.7,748.0],\
        [0.005,435.9,427.6],[0.006,275.7,268.8],\
        [0.008,133.0,127.8],[0.0083579,119.0,114.0],\
        [0.0083579,312.6,274.1],[0.00879944,279.9,241.2],\
        [0.0092643,239.7,212.1],[0.0092643,327.1,280.6],\
        [0.00950468,308.0,265.0],[0.0097513,288.6,249.1],\
        [0.0097513,333.0,285.8],[0.01,312.9,269.4],\
        [0.015,110.6,98.6],[0.02,52.04,46.83],\
        [0.03,17.8,15.88],[0.04,8.315,7.253],\
        [0.05,4.634,3.922],[0.0574855,3.232,2.664],\
        [0.0574855,15.14,4.442],[0.06,13.62,4.349],\
        [0.08,6.478,3.028],[0.1,3.628,1.995],\
        [0.15,1.285,0.8141],[0.2,0.6415,0.4125],\
        [0.3,0.2724,0.1629],[0.4,0.1672,0.09173],\
        [0.5,0.123,0.06329],[0.6,0.09968,0.04934],\
        [0.8,0.07569,0.03638],[1.0,0.06317,0.0304],\
        [1.25,0.05392,0.0262],[1.5,0.0486,0.02388],\
        [2.0,0.04317,0.0219],[3.0,0.03958,0.02176],\
        [4.0,0.03907,0.02295],[5.0,0.03961,0.02435],\
        [6.0,0.04056,0.02569],[8.0,0.04294,0.02799],\
        [10.0,0.04549,0.02981],[15.0,0.05141,0.03268],\
        [20.0,0.05613,0.03387]]),\
        'Tm':(69,167.259,[\
        [0.001,2899.0,2888.0],[0.00121149,1995.0,1984.0],\
        [0.0014677,1362.0,1352.0],[0.0014677,1919.0,1901.0],\
        [0.0015,3937.0,3892.0],[0.0015146,4145.0,4098.0],\
        [0.0015146,4830.0,4773.0],[0.00168946,4446.0,4395.0],\
        [0.0018845,3668.0,3627.0],[0.0018845,4254.0,4206.0],\
        [0.002,3686.0,3646.0],[0.0020898,3326.0,3290.0],\
        [0.0020898,3534.0,3495.0],[0.00219562,3160.0,3125.0],\
        [0.0023068,2821.0,2791.0],[0.0023068,2945.0,2914.0],\
        [0.003,1594.0,1576.0],[0.004,794.6,783.1],\
        [0.005,456.9,448.2],[0.006,289.2,282.0],\
        [0.008,139.7,134.2],[0.008648,114.6,109.6],\
        [0.008648,299.1,260.6],[0.00911959,260.9,228.4],\
        [0.0096169,227.4,200.1],[0.0096169,310.1,264.0],\
        [0.01,283.0,242.0],[0.0101157,274.5,235.1],\
        [0.0101157,316.7,269.7],[0.015,115.7,102.3],\
        [0.02,54.53,48.82],[0.03,18.68,16.63],\
        [0.04,8.735,7.615],[0.05,4.867,4.124],\
        [0.0593896,3.122,2.562],[0.0593896,12.0,4.721],\
        [0.06,14.09,4.203],[0.08,6.741,3.044],\
        [0.1,3.78,2.033],[0.15,1.34,0.841],\
        [0.2,0.6682,0.4283],[0.3,0.2822,0.1695],\
        [0.4,0.1722,0.09522],[0.5,0.1261,0.06544],\
        [0.6,0.1018,0.05081],[0.8,0.07693,0.03721],\
        [1.0,0.06404,0.03095],[1.25,0.05455,0.02658],\
        [1.5,0.04912,0.02417],[2.0,0.04362,0.02214],\
        [3.0,0.04002,0.02199],[4.0,0.03954,0.02321],\
        [5.0,0.0401,0.02463],[6.0,0.04108,0.02598],\
        [8.0,0.04352,0.02832],[10.0,0.04612,0.03016],\
        [15.0,0.05216,0.03305],[20.0,0.05698,0.03424]]),\
        'Yb':(70,168.93421,[\
        [0.001,3017.0,3006.0],[0.0015,1350.0,1340.0],\
        [0.0015278,1300.0,1289.0],[0.0015278,1965.0,1944.0],\
        [0.00155186,2949.0,2914.0],[0.0015763,3908.0,3859.0],\
        [0.0015763,4540.0,4482.0],[0.00175313,4200.0,4146.0],\
        [0.0019498,3495.0,3453.0],[0.0019498,4054.0,4004.0],\
        [0.002,3797.0,3751.0],[0.002173,3128.0,3091.0],\
        [0.002173,3323.0,3284.0],[0.00228278,2970.0,2935.0],\
        [0.0023981,2652.0,2621.0],[0.0023981,2769.0,2737.0],\
        [0.003,1640.0,1620.0],[0.004,819.3,807.2],\
        [0.005,471.7,462.6],[0.006,298.8,291.3],\
        [0.008,144.4,138.9],[0.0089436,108.8,103.9],\
        [0.0089436,282.4,244.4],[0.00944675,251.1,213.4],\
        [0.0099782,212.8,186.2],[0.0099782,290.6,245.5],\
        [0.01,289.3,244.4],[0.0104864,257.7,218.9],\
        [0.0104864,297.3,251.2],[0.015,119.3,104.7],\
        [0.02,56.28,50.12],[0.03,19.32,17.16],\
        [0.04,9.04,7.875],[0.05,5.038,4.273],\
        [0.06,3.147,2.584],[0.0613323,2.975,2.432],\
        [0.0613323,13.65,3.964],[0.08,6.909,3.008],\
        [0.1,3.881,2.038],[0.15,1.378,0.8554],\
        [0.2,0.686,0.4381],[0.3,0.2882,0.1737],\
        [0.4,0.1749,0.09741],[0.5,0.1274,0.06671],\
        [0.6,0.1025,0.05159],[0.8,0.0771,0.03754],\
        [1.0,0.06397,0.03107],[1.25,0.05439,0.02658],\
        [1.5,0.04895,0.02413],[2.0,0.04347,0.02208],\
        [3.0,0.03989,0.02191],[4.0,0.03944,0.02314],\
        [5.0,0.04002,0.02457],[6.0,0.04101,0.02593],\
        [8.0,0.04347,0.02826],[10.0,0.04609,0.0301],\
        [15.0,0.05218,0.03302],[20.0,0.057,0.03419]]),\
        'Lu':(71,173.04,[\
        [0.001,3187.0,3175.0],[0.0015,1424.0,1413.0],\
        [0.0015885,1264.0,1253.0],[0.0015885,1597.0,1581.0],\
        [0.00161375,2302.0,2273.0],[0.0016394,3442.0,3396.0],\
        [0.0016394,3935.0,3881.0],[0.002,3452.0,3406.0],\
        [0.0020236,3352.0,3307.0],[0.0020236,3890.0,3838.0],\
        [0.00214019,3397.0,3352.0],[0.0022635,2969.0,2931.0],\
        [0.0022635,3155.0,3115.0],[0.00237462,2826.0,2790.0],\
        [0.0024912,2531.0,2499.0],[0.0024912,2640.0,2607.0],\
        [0.003,1710.0,1688.0],[0.004,856.0,843.0],\
        [0.005,493.4,483.9],[0.006,312.9,305.1],\
        [0.008,151.3,145.6],[0.0092441,104.9,99.94],\
        [0.0092441,270.3,232.4],[0.01,221.1,191.6],\
        [0.0103486,201.9,175.6],[0.0103486,275.7,231.0],\
        [0.0106063,267.6,219.0],[0.0108704,245.0,206.5],\
        [0.0108704,282.6,236.9],[0.015,124.7,108.4],\
        [0.02,58.81,52.06],[0.03,20.23,17.91],\
        [0.04,9.472,8.242],[0.05,5.279,4.48],\
        [0.06,3.297,2.712],[0.0633138,2.874,2.339],\
        [0.0633138,13.05,3.77],[0.08,7.161,3.0],\
        [0.1,4.033,2.067],[0.15,1.433,0.8805],\
        [0.2,0.713,0.4534],[0.3,0.2981,0.1803],\
        [0.4,0.1799,0.1009],[0.5,0.1305,0.06886],\
        [0.6,0.1046,0.05306],[0.8,0.07829,0.03836],\
        [1.0,0.06478,0.03161],[1.25,0.05496,0.02695],\
        [1.5,0.04941,0.02441],[2.0,0.04385,0.02228],\
        [3.0,0.04028,0.02212],[4.0,0.03985,0.02337],\
        [5.0,0.04045,0.02481],[6.0,0.04147,0.02618],\
        [8.0,0.04398,0.02853],[10.0,0.04664,0.03038],\
        [15.0,0.05282,0.03329],[20.0,0.05773,0.03446]]),\
        'Hf':(72,174.967,[\
        [0.001,3335.0,3324.0],[0.0015,1489.0,1478.0],\
        [0.0016617,1203.0,1192.0],[0.0016617,1505.0,1489.0],\
        [0.00168883,2189.0,2160.0],[0.0017164,3273.0,3225.0],\
        [0.0017164,3682.0,3628.0],[0.002,3598.0,3546.0],\
        [0.0021076,3152.0,3108.0],[0.0021076,3659.0,3607.0],\
        [0.00223278,3182.0,3137.0],[0.0023654,2769.0,2731.0],\
        [0.0023654,2943.0,2903.0],[0.00248036,2637.0,2601.0],\
        [0.0026009,2363.0,2331.0],[0.0026009,2465.0,2432.0],\
        [0.003,1768.0,1745.0],[0.004,885.9,872.0],\
        [0.005,511.3,501.3],[0.006,324.4,316.4],\
        [0.008,157.1,151.2],[0.0095607,99.97,95.1],\
        [0.0095607,255.7,218.4],[0.01,230.1,197.5],\
        [0.0107394,189.4,163.9],[0.0107394,258.9,215.1],\
        [0.0110018,252.2,204.2],[0.0112707,230.6,192.8],\
        [0.0112707,265.9,221.2],[0.015,129.0,111.1],\
        [0.02,60.87,53.53],[0.03,20.98,18.51],\
        [0.04,9.828,8.542],[0.05,5.478,4.651],\
        [0.06,3.42,2.82],[0.0653508,2.751,2.228],\
        [0.0653508,12.37,3.557],[0.08,7.352,2.958],\
        [0.1,4.154,2.075],[0.15,1.477,0.8973],\
        [0.2,0.7339,0.4645],[0.3,0.3054,0.1853],\
        [0.4,0.1834,0.1035],[0.5,0.1324,0.07044],\
        [0.6,0.1058,0.05409],[0.8,0.0788,0.03886],\
        [1.0,0.06502,0.03188],[1.25,0.05505,0.02708],\
        [1.5,0.04944,0.02447],[2.0,0.04387,0.0223],\
        [3.0,0.0403,0.02212],[4.0,0.03989,0.02338],\
        [5.0,0.04052,0.02483],[6.0,0.04155,0.0262],\
        [8.0,0.04409,0.02855],[10.0,0.04677,0.0304],\
        [15.0,0.05301,0.0333],[20.0,0.05796,0.03445]]),\
        'Ta':(73,178.49,[\
        [0.001,3510.0,3498.0],[0.0015,1566.0,1555.0],\
        [0.0017351,1154.0,1144.0],[0.0017351,1417.0,1401.0],\
        [0.00176391,2053.0,2024.0],[0.0017932,3082.0,3034.0],\
        [0.0017932,3421.0,3367.0],[0.002,3771.0,3711.0],\
        [0.002194,2985.0,2939.0],[0.002194,3464.0,3411.0],\
        [0.0023273,3003.0,2957.0],[0.0024687,2604.0,2566.0],\
        [0.0024687,2768.0,2727.0],[0.00258558,2486.0,2449.0],\
        [0.002708,2233.0,2201.0],[0.002708,2329.0,2296.0],\
        [0.003,1838.0,1812.0],[0.004,922.2,907.3],\
        [0.005,532.8,522.3],[0.006,338.2,329.9],\
        [0.008,163.9,157.9],[0.0098811,95.99,91.17],\
        [0.0098811,244.3,207.3],[0.01,237.9,202.1],\
        [0.0111361,179.1,154.0],[0.0111361,244.9,201.8],\
        [0.0114055,239.3,191.7],[0.0116815,218.2,181.1],\
        [0.0116815,251.8,207.7],[0.015,134.0,114.3],\
        [0.02,63.34,55.32],[0.03,21.87,19.23],\
        [0.04,10.25,8.899],[0.05,5.717,4.854],\
        [0.06,3.569,2.947],[0.0674164,2.652,2.139],\
        [0.0674164,11.8,3.379],[0.08,7.587,2.924],\
        [0.1,4.302,2.092],[0.15,1.531,0.9188],\
        [0.2,0.7598,0.4784],[0.3,0.3149,0.1915],\
        [0.4,0.1881,0.1069],[0.5,0.1352,0.07248],\
        [0.6,0.1076,0.05545],[0.8,0.07981,0.0396],\
        [1.0,0.06567,0.03235],[1.25,0.05545,0.02736],\
        [1.5,0.04977,0.02468],[2.0,0.04413,0.02245],\
        [3.0,0.04057,0.02227],[4.0,0.04018,0.02354],\
        [5.0,0.04082,0.02499],[6.0,0.04188,0.02638],\
        [8.0,0.04446,0.02874],[10.0,0.04717,0.03058],\
        [15.0,0.0535,0.03349],[20.0,0.05852,0.03464]]),\
        'W':(74,180.9479,[\
        [0.001,3683.0,3671.0],[0.0015,1643.0,1632.0],\
        [0.0018092,1108.0,1097.0],[0.0018092,1327.0,1311.0],\
        [0.00184014,1911.0,1883.0],[0.0018716,2901.0,2853.0],\
        [0.0018716,3170.0,3116.0],[0.002,3922.0,3853.0],\
        [0.002281,2828.0,2781.0],[0.002281,3279.0,3226.0],\
        [0.0024235,2833.0,2786.0],[0.0025749,2445.0,2407.0],\
        [0.0025749,2599.0,2558.0],[0.00269447,2339.0,2301.0],\
        [0.0028196,2104.0,2071.0],[0.0028196,2194.0,2160.0],\
        [0.003,1902.0,1873.0],[0.004,956.4,940.5],\
        [0.005,553.4,542.3],[0.006,351.4,342.8],\
        [0.008,170.5,164.3],[0.01,96.91,92.04],\
        [0.0102068,92.01,87.24],[0.0102068,233.4,196.6],\
        [0.0108548,198.3,168.4],[0.011544,168.9,144.4],\
        [0.011544,231.2,188.9],[0.0118186,226.8,179.7],\
        [0.0120998,206.5,169.9],[0.0120998,238.2,194.8],\
        [0.015,138.9,117.2],[0.02,65.73,56.97],\
        [0.03,22.73,19.91],[0.04,10.67,9.24],\
        [0.05,5.949,5.05],[0.06,3.713,3.07],\
        [0.069525,2.552,2.049],[0.069525,11.23,3.212],\
        [0.08,7.81,2.879],[0.1,4.438,2.1],\
        [0.15,1.581,0.9378],[0.2,0.7844,0.4913],\
        [0.3,0.3238,0.1973],[0.4,0.1925,0.11],\
        [0.5,0.1378,0.0744],[0.6,0.1093,0.05673],\
        [0.8,0.08066,0.04028],[1.0,0.06618,0.03276],\
        [1.25,0.05577,0.02761],[1.5,0.05,0.02484],\
        [2.0,0.04433,0.02256],[3.0,0.04075,0.02236],\
        [4.0,0.04038,0.02363],[5.0,0.04103,0.0251],\
        [6.0,0.0421,0.02649],[8.0,0.04472,0.02886],\
        [10.0,0.04747,0.03072],[15.0,0.05384,0.0336],\
        [20.0,0.05893,0.03475]]),\
        'Re':(75,183.84,[\
        [0.001,3872.0,3860.0],[0.0015,1729.0,1717.0],\
        [0.0018224,1147.0,1135.0],[0.0018224,1152.0,1141.0],\
        [0.00188459,1251.0,1235.0],[0.0019489,2689.0,2642.0],\
        [0.0019489,3802.0,3730.0],[0.002,3773.0,3702.0],\
        [0.0023673,2696.0,2648.0],[0.0023673,3124.0,3069.0],\
        [0.00251955,2686.0,2639.0],[0.0026816,2309.0,2270.0],\
        [0.0026816,2454.0,2412.0],[0.00280386,2210.0,2174.0],\
        [0.0029317,1992.0,1959.0],[0.0029317,2078.0,2043.0],\
        [0.003,1972.0,1939.0],[0.004,994.3,977.1],\
        [0.005,575.9,564.2],[0.006,366.0,356.9],\
        [0.008,177.8,171.4],[0.01,101.1,96.1],\
        [0.0105353,88.58,83.86],[0.0105353,223.4,186.9],\
        [0.0112245,196.4,159.4],[0.0119587,160.0,136.0],\
        [0.0119587,219.1,177.6],[0.0122394,207.9,169.0],\
        [0.0125267,196.1,160.0],[0.0125267,226.2,183.4],\
        [0.015,144.0,120.1],[0.02,68.35,58.76],\
        [0.03,23.67,20.64],[0.04,11.12,9.614],\
        [0.05,6.206,5.265],[0.06,3.872,3.205],\
        [0.0716764,2.464,1.97],[0.0716764,10.73,3.058],\
        [0.08,8.069,2.832],[0.1,4.587,2.107],\
        [0.15,1.637,0.958],[0.2,0.8119,0.5054],\
        [0.3,0.3339,0.2038],[0.4,0.1976,0.1135],\
        [0.5,0.1409,0.07658],[0.6,0.1114,0.05822],\
        [0.8,0.08179,0.04109],[1.0,0.06688,0.03327],\
        [1.25,0.05627,0.02794],[1.5,0.05038,0.02508],\
        [2.0,0.04463,0.02273],[3.0,0.04105,0.02251],\
        [4.0,0.04068,0.0238],[5.0,0.04137,0.02527],\
        [6.0,0.04246,0.02667],[8.0,0.04511,0.02906],\
        [10.0,0.0479,0.03092],[15.0,0.05437,0.03382],\
        [20.0,0.05953,0.03496]]),\
        'Os':(76,186.207,[\
        [0.001,4032.0,4019.0],[0.0015,1801.0,1790.0],\
        [0.0019601,1023.0,1012.0],[0.0019601,2003.0,1969.0],\
        [0.002,2218.0,2179.0],[0.0020308,2622.0,2573.0],\
        [0.0020308,2864.0,2810.0],[0.00223385,2852.0,2797.0],\
        [0.0024572,2546.0,2498.0],[0.0024572,2948.0,2893.0],\
        [0.00261935,2524.0,2478.0],[0.0027922,2161.0,2123.0],\
        [0.0027922,2296.0,2255.0],[0.003,1938.0,1904.0],\
        [0.0030485,1869.0,1836.0],[0.0030485,1949.0,1915.0],\
        [0.004,1023.0,1004.0],[0.005,593.6,581.3],\
        [0.006,377.6,368.2],[0.008,183.6,177.0],\
        [0.01,104.5,99.4],[0.0108709,84.58,79.94],\
        [0.0108709,212.1,176.2],[0.0116033,186.0,149.5],\
        [0.012385,150.3,127.1],[0.012385,206.0,165.4],\
        [0.0126731,195.6,157.6],[0.012968,184.6,149.4],\
        [0.012968,212.9,171.1],[0.015,147.8,121.8],\
        [0.02,70.39,59.99],[0.03,24.43,21.2],\
        [0.04,11.49,9.907],[0.05,6.414,5.437],\
        [0.06,4.002,3.314],[0.0738708,2.36,1.879],\
        [0.0738708,10.16,2.888],[0.08,8.29,2.756],\
        [0.1,4.696,2.092],[0.15,1.68,0.9696],\
        [0.2,0.8327,0.515],[0.3,0.3414,0.2085],\
        [0.4,0.2011,0.1161],[0.5,0.1428,0.07813],\
        [0.6,0.1125,0.05923],[0.8,0.08224,0.04157],\
        [1.0,0.06705,0.03351],[1.25,0.05625,0.02802],\
        [1.5,0.05034,0.02511],[2.0,0.04458,0.02272],\
        [3.0,0.041,0.02248],[4.0,0.04065,0.02376],\
        [5.0,0.04134,0.02523],[6.0,0.04244,0.02663],\
        [8.0,0.04511,0.02901],[10.0,0.04791,0.03086],\
        [15.0,0.05442,0.03375],[20.0,0.05956,0.03486]]),\
        'Ir':(77,190.23,[\
        [0.001,4243.0,4230.0],[0.0015,1898.0,1886.0],\
        [0.002,1032.0,1021.0],[0.0020404,988.2,977.1],\
        [0.0020404,1066.0,1053.0],[0.0020779,1492.0,1466.0],\
        [0.0021161,2478.0,2429.0],[0.0021161,2608.0,2556.0],\
        [0.00232326,2621.0,2566.0],[0.0025507,2424.0,2376.0],\
        [0.0025507,2800.0,2744.0],[0.00272382,2393.0,2345.0],\
        [0.0029087,2041.0,2002.0],[0.0029087,2166.0,2125.0],\
        [0.003,2011.0,1973.0],[0.0031737,1767.0,1734.0],\
        [0.0031737,1843.0,1809.0],[0.004,1063.0,1043.0],\
        [0.005,617.8,604.7],[0.006,393.5,383.7],\
        [0.008,191.4,184.6],[0.01,109.0,103.8],\
        [0.0112154,81.55,76.95],[0.0112154,203.8,168.1],\
        [0.0119928,170.2,141.8],[0.0128241,142.6,119.9],\
        [0.0128241,195.9,155.9],[0.0131179,193.3,148.6],\
        [0.0134185,175.6,140.9],[0.0134185,202.5,161.3],\
        [0.015,153.0,124.4],[0.02,73.17,61.79],\
        [0.03,25.46,21.98],[0.04,11.99,10.3],\
        [0.05,6.693,5.667],[0.06,4.176,3.46],\
        [0.076111,2.284,1.81],[0.076111,9.728,2.758],\
        [0.08,8.585,2.694],[0.1,4.855,2.093],\
        [0.15,1.74,0.9903],[0.2,0.8628,0.529],\
        [0.3,0.3525,0.2155],[0.4,0.2068,0.1199],\
        [0.5,0.1463,0.08054],[0.6,0.1149,0.06088],\
        [0.8,0.08357,0.0425],[1.0,0.06794,0.03412],\
        [1.25,0.05688,0.02843],[1.5,0.05083,0.02541],\
        [2.0,0.04501,0.02295],[3.0,0.04139,0.02269],\
        [4.0,0.04104,0.02398],[5.0,0.04174,0.02546],\
        [6.0,0.04286,0.02687],[8.0,0.04558,0.02927],\
        [10.0,0.04844,0.03115],[15.0,0.05502,0.03405],\
        [20.0,0.06024,0.03516]]),\
        'Pt':(78,192.217,[\
        [0.001,4433.0,4421.0],[0.0015,1986.0,1974.0],\
        [0.002,1081.0,1069.0],[0.0021216,950.6,939.3],\
        [0.0021216,1034.0,1021.0],[0.00216138,1431.0,1405.0],\
        [0.0022019,2341.0,2292.0],[0.0022019,2487.0,2434.0],\
        [0.00241348,2512.0,2457.0],[0.0026454,2307.0,2258.0],\
        [0.0026454,2663.0,2606.0],[0.003,1965.0,1925.0],\
        [0.0030265,1923.0,1884.0],[0.0030265,2041.0,2000.0],\
        [0.00315838,1844.0,1806.0],[0.003296,1671.0,1637.0],\
        [0.003296,1742.0,1707.0],[0.004,1100.0,1078.0],\
        [0.005,640.2,626.2],[0.006,408.3,397.9],\
        [0.008,198.7,191.7],[0.01,113.2,107.8],\
        [0.0115637,78.44,73.88],[0.0115637,194.6,159.4],\
        [0.0123887,161.8,133.9],[0.0132726,134.9,112.7],\
        [0.0132726,185.3,146.3],[0.0135729,184.8,139.5],\
        [0.0138799,166.6,132.5],[0.0138799,192.1,151.7],\
        [0.015,157.8,126.5],[0.02,75.74,63.33],\
        [0.03,26.41,22.68],[0.04,12.45,10.67],\
        [0.05,6.954,5.879],[0.06,4.339,3.595],\
        [0.0783948,2.203,1.738],[0.0783948,9.301,2.627],\
        [0.08,8.731,2.592],[0.1,4.993,2.081],\
        [0.15,1.795,1.006],[0.2,0.8896,0.5413],\
        [0.3,0.3625,0.2216],[0.4,0.2118,0.1233],\
        [0.5,0.1492,0.08265],[0.6,0.1168,0.0623],\
        [0.8,0.08456,0.04325],[1.0,0.06857,0.03459],\
        [1.25,0.05727,0.02871],[1.5,0.05112,0.0256],\
        [2.0,0.04522,0.02307],[3.0,0.0416,0.02279],\
        [4.0,0.04124,0.02408],[5.0,0.04196,0.02557],\
        [6.0,0.0431,0.02699],[8.0,0.04584,0.02939],\
        [10.0,0.04872,0.03127],[15.0,0.05537,0.03418],\
        [20.0,0.06064,0.03529]]),\
        'Au':(79,195.078,[\
        [0.001,4652.0,4639.0],[0.0015,2089.0,2076.0],\
        [0.002,1137.0,1125.0],[0.0022057,918.7,907.4],\
        [0.0022057,997.1,983.6],[0.00224799,1386.0,1360.0],\
        [0.0022911,2258.0,2208.0],[0.0022911,2389.0,2336.0],\
        [0.00250689,2380.0,2325.0],[0.002743,2203.0,2154.0],\
        [0.002743,2541.0,2484.0],[0.003,2049.0,2005.0],\
        [0.0031478,1822.0,1783.0],[0.0031478,1933.0,1892.0],\
        [0.00328343,1748.0,1710.0],[0.0034249,1585.0,1552.0],\
        [0.0034249,1652.0,1618.0],[0.004,1144.0,1120.0],\
        [0.005,666.1,651.2],[0.006,425.3,414.3],\
        [0.008,207.2,199.9],[0.01,118.1,112.6],\
        [0.0119187,75.82,71.29],[0.0119187,187.0,152.1],\
        [0.012794,154.6,127.2],[0.0137336,128.3,106.6],\
        [0.0137336,176.4,137.9],[0.0140398,176.6,131.7],\
        [0.0143528,158.8,125.2],[0.0143528,183.0,143.2],\
        [0.015,163.7,129.4],[0.02,78.83,65.22],\
        [0.03,27.52,23.49],[0.04,12.98,11.09],\
        [0.05,7.256,6.124],[0.06,4.528,3.751],\
        [0.08,2.185,1.72],[0.0807249,2.137,1.678],\
        [0.0807249,8.904,2.512],[0.1,5.158,2.074],\
        [0.15,1.86,1.026],[0.2,0.9214,0.5563],\
        [0.3,0.3744,0.2289],[0.4,0.218,0.1274],\
        [0.5,0.153,0.08523],[0.6,0.1194,0.06409],\
        [0.8,0.08603,0.04427],[1.0,0.06953,0.03525],\
        [1.25,0.05794,0.02915],[1.5,0.05167,0.02593],\
        [2.0,0.0457,0.02333],[3.0,0.04201,0.02302],\
        [4.0,0.04166,0.02432],[5.0,0.04239,0.02582],\
        [6.0,0.04355,0.02725],[8.0,0.04633,0.02968],\
        [10.0,0.04926,0.03159],[15.0,0.05598,0.0345],\
        [20.0,0.06136,0.03565]]),\
        'Hg':(80,196.96655,[\
        [0.001,4830.0,4817.0],[0.0015,2174.0,2161.0],\
        [0.002,1184.0,1172.0],[0.0022949,877.3,866.0],\
        [0.0022949,992.5,977.8],[0.00233947,1407.0,1378.0],\
        [0.0023849,2151.0,2101.0],[0.0023849,2316.0,2261.0],\
        [0.00260577,2257.0,2202.0],[0.0028471,2080.0,2030.0],\
        [0.0028471,2400.0,2343.0],[0.003,2117.0,2069.0],\
        [0.0032785,1704.0,1666.0],[0.0032785,1808.0,1767.0],\
        [0.00341712,1638.0,1600.0],[0.0035616,1486.0,1454.0],\
        [0.0035616,1549.0,1515.0],[0.004,1179.0,1153.0],\
        [0.005,686.9,671.0],[0.006,438.7,427.2],\
        [0.008,214.0,206.5],[0.01,122.1,116.4],\
        [0.0122839,72.66,68.21],[0.0122839,178.0,143.7],\
        [0.0132113,146.4,119.7],[0.0142087,120.9,99.88],\
        [0.0142087,166.3,128.9],[0.0145206,167.4,123.3],\
        [0.0148393,150.1,117.3],[0.0148393,172.8,134.0],\
        [0.015,168.1,130.7],[0.02,81.23,66.47],\
        [0.03,28.41,24.1],[0.04,13.42,11.41],\
        [0.05,7.504,6.321],[0.06,4.683,3.878],\
        [0.08,2.259,1.782],[0.0831023,2.055,1.607],\
        [0.0831023,8.464,2.384],[0.1,5.279,2.043],\
        [0.15,1.909,1.036],[0.2,0.9456,0.5661],\
        [0.3,0.3834,0.2342],[0.4,0.2224,0.1304],\
        [0.5,0.1555,0.08711],[0.6,0.121,0.06536],\
        [0.8,0.08679,0.04493],[1.0,0.06993,0.03563],\
        [1.25,0.05814,0.02936],[1.5,0.05179,0.02605],\
        [2.0,0.04575,0.02339],[3.0,0.04207,0.02307],\
        [4.0,0.04172,0.02436],[5.0,0.04246,0.02586],\
        [6.0,0.04362,0.0273],[8.0,0.04643,0.02975],\
        [10.0,0.04937,0.03165],[15.0,0.05613,0.0346],\
        [20.0,0.06154,0.03576]]),\
        'Tl':(81,200.59,[\
        [0.001,5008.0,4995.0],[0.0015,2259.0,2247.0],\
        [0.002,1231.0,1219.0],[0.0023893,835.2,824.0],\
        [0.0023893,1136.0,1115.0],[0.00243673,1582.0,1546.0],\
        [0.0024851,2049.0,1999.0],[0.0024851,2364.0,2303.0],\
        [0.00271062,2207.0,2150.0],[0.0029566,1958.0,1910.0],\
        [0.0029566,2267.0,2210.0],[0.003,2188.0,2135.0],\
        [0.0034157,1591.0,1553.0],[0.0034157,1687.0,1647.0],\
        [0.00355698,1530.0,1495.0],[0.0037041,1392.0,1360.0],\
        [0.0037041,1452.0,1419.0],[0.004,1212.0,1185.0],\
        [0.005,706.8,690.0],[0.006,451.8,439.8],\
        [0.008,220.8,213.1],[0.01,126.0,120.2],\
        [0.0126575,69.57,65.21],[0.0126575,169.3,135.7],\
        [0.0136396,147.3,112.6],[0.0146979,113.9,93.56],\
        [0.0146979,157.2,120.7],[0.015,149.7,115.4],\
        [0.0153467,141.6,109.7],[0.0153467,163.2,125.4],\
        [0.02,83.61,67.61],[0.03,29.29,24.67],\
        [0.04,13.85,11.73],[0.05,7.751,6.513],\
        [0.06,4.838,4.003],[0.08,2.332,1.844],\
        [0.0855304,1.976,1.539],[0.0855304,8.046,2.264],\
        [0.1,5.398,2.007],[0.15,1.957,1.044],\
        [0.2,0.9696,0.5753],[0.3,0.3923,0.2393],\
        [0.4,0.2267,0.1334],[0.5,0.158,0.08897],\
        [0.6,0.1226,0.06661],[0.8,0.08751,0.04557],\
        [1.0,0.07031,0.036],[1.25,0.05832,0.02955],\
        [1.5,0.05187,0.02616],[2.0,0.04581,0.02345],\
        [3.0,0.0421,0.02309],[4.0,0.04175,0.02437],\
        [5.0,0.04248,0.02587],[6.0,0.04366,0.02731],\
        [8.0,0.04647,0.02975],[10.0,0.04943,0.03167],\
        [15.0,0.05622,0.03463],[20.0,0.06162,0.03578]]),\
        'Pb':(82,204.3833,[\
        [0.001,5210.0,5197.0],[0.0015,2356.0,2344.0],\
        [0.002,1285.0,1274.0],[0.002484,800.6,789.5],\
        [0.002484,1397.0,1366.0],[0.00253429,1726.0,1682.0],\
        [0.0025856,1944.0,1895.0],[0.0025856,2458.0,2390.0],\
        [0.003,1965.0,1913.0],[0.0030664,1857.0,1808.0],\
        [0.0030664,2146.0,2090.0],[0.0033013,1796.0,1748.0],\
        [0.0035542,1496.0,1459.0],[0.0035542,1585.0,1546.0],\
        [0.00369948,1442.0,1405.0],[0.0038507,1311.0,1279.0],\
        [0.0038507,1368.0,1335.0],[0.004,1251.0,1221.0],\
        [0.005,730.4,712.4],[0.006,467.2,454.6],\
        [0.008,228.7,220.7],[0.01,130.6,124.7],\
        [0.0130352,67.01,62.7],[0.0130352,162.1,129.1],\
        [0.015,111.6,91.0],[0.0152,107.8,88.07],\
        [0.0152,148.5,113.1],[0.0155269,141.6,108.3],\
        [0.0158608,134.4,103.2],[0.0158608,154.8,118.0],\
        [0.02,86.36,68.99],[0.03,30.32,25.36],\
        [0.04,14.36,12.11],[0.05,8.041,6.74],\
        [0.06,5.021,4.149],[0.08,2.419,1.916],\
        [0.0880045,1.91,1.482],[0.0880045,7.683,2.16],\
        [0.1,5.549,1.976],[0.15,2.014,1.056],\
        [0.2,0.9985,0.587],[0.3,0.4031,0.2455],\
        [0.4,0.2323,0.137],[0.5,0.1614,0.09128],\
        [0.6,0.1248,0.06819],[0.8,0.0887,0.04644],\
        [1.0,0.07102,0.03654],[1.25,0.05876,0.02988],\
        [1.5,0.05222,0.0264],[2.0,0.04606,0.0236],\
        [3.0,0.04234,0.02322],[4.0,0.04197,0.02449],\
        [5.0,0.04272,0.026],[6.0,0.04391,0.02744],\
        [8.0,0.04675,0.02989],[10.0,0.04972,0.03181],\
        [15.0,0.05658,0.03478],[20.0,0.06206,0.03595]]),\
        'Bi':(83,207.2,[\
        [0.001,5441.0,5427.0],[0.0015,2468.0,2455.0],\
        [0.002,1348.0,1336.0],[0.0025796,772.4,761.2],\
        [0.0025796,1777.0,1731.0],[0.00263305,1850.0,1799.0],\
        [0.0026876,1852.0,1802.0],[0.0026876,2576.0,2500.0],\
        [0.003,2053.0,1996.0],[0.0031769,1774.0,1725.0],\
        [0.0031769,2048.0,1992.0],[0.00342677,1707.0,1659.0],\
        [0.0036963,1415.0,1378.0],[0.0036963,1498.0,1460.0],\
        [0.00384472,1366.0,1329.0],[0.0039991,1243.0,1211.0],\
        [0.0039991,1297.0,1264.0],[0.004,1296.0,1263.0],\
        [0.005,758.0,738.6],[0.006,485.5,472.1],\
        [0.008,237.8,229.5],[0.01,136.0,129.8],\
        [0.0134186,64.91,60.64],[0.0134186,156.0,123.4],\
        [0.015,116.0,93.58],[0.0157111,102.7,83.46],\
        [0.0157111,141.6,106.9],[0.0160457,135.1,102.4],\
        [0.0163875,128.2,97.69],[0.0163875,147.8,111.6],\
        [0.02,89.52,70.6],[0.03,31.52,26.17],\
        [0.04,14.95,12.55],[0.05,8.379,7.004],\
        [0.06,5.233,4.32],[0.08,2.522,1.999],\
        [0.0905259,1.856,1.434],[0.0905259,7.38,2.073],\
        [0.1,5.739,1.951],[0.15,2.082,1.071],\
        [0.2,1.033,0.6014],[0.3,0.4163,0.2532],\
        [0.4,0.2391,0.1414],[0.5,0.1656,0.09411],\
        [0.6,0.1277,0.07017],[0.8,0.09036,0.04758],\
        [1.0,0.07214,0.0373],[1.25,0.05955,0.03039],\
        [1.5,0.05285,0.02678],[2.0,0.04659,0.02389],\
        [3.0,0.04279,0.02347],[4.0,0.04242,0.02475],\
        [5.0,0.04317,0.02626],[6.0,0.04437,0.02772],\
        [8.0,0.04725,0.0302],[10.0,0.05025,0.03213],\
        [15.0,0.05721,0.03514],[20.0,0.06276,0.03632]]),\
        'Po':(84,208.98038,[\
        [0.001,5724.0,5710.0],[0.0015,2604.0,2591.0],\
        [0.002,1423.0,1411.0],[0.002683,748.2,736.9],\
        [0.002683,2206.0,2142.0],[0.0027399,1941.0,1884.0],\
        [0.002798,1775.0,1726.0],[0.002798,2711.0,2625.0],\
        [0.003,2155.0,2090.0],[0.0033019,1693.0,1645.0],\
        [0.0033019,1956.0,1900.0],[0.00356733,1622.0,1576.0],\
        [0.0038541,1339.0,1303.0],[0.0038541,1419.0,1381.0],\
        [0.004,1299.0,1264.0],[0.0041494,1190.0,1158.0],\
        [0.0041494,1242.0,1209.0],[0.005,793.1,772.1],\
        [0.006,508.5,494.2],[0.008,249.4,240.6],\
        [0.01,142.7,136.3],[0.0138138,63.37,59.1],\
        [0.0138138,151.3,118.9],[0.015,121.9,97.28],\
        [0.0162443,98.49,79.65],[0.0162443,136.1,101.9],\
        [0.0165882,129.7,97.55],[0.0169393,123.2,93.08],\
        [0.0169393,142.0,106.3],[0.02,93.52,72.78],\
        [0.03,33.03,27.21],[0.04,15.69,13.11],\
        [0.05,8.802,7.334],[0.06,5.499,4.532],\
        [0.08,2.649,2.103],[0.093105,1.82,1.4],\
        [0.093105,7.14,2.005],[0.1,5.991,1.936],\
        [0.15,2.17,1.095],[0.2,1.078,0.6207],\
        [0.3,0.4335,0.263],[0.4,0.2483,0.1471],\
        [0.5,0.1714,0.09781],[0.6,0.1318,0.07281],\
        [0.8,0.09286,0.04916],[1.0,0.07391,0.03839],\
        [1.25,0.06087,0.03117],[1.5,0.05394,0.0274],\
        [2.0,0.04749,0.02438],[3.0,0.04362,0.02392],\
        [4.0,0.04323,0.02521],[5.0,0.04399,0.02674],\
        [6.0,0.04522,0.02822],[8.0,0.04816,0.03074],\
        [10.0,0.05124,0.03271],[15.0,0.05835,0.03577],\
        [20.0,0.06398,0.03694]]),\
        'At':(85,209.0,[\
        [0.001,5868.0,5854.0],[0.00102078,5651.0,5637.0],\
        [0.001042,5435.0,5420.0],[0.001042,5551.0,5537.0],\
        [0.0015,2731.0,2717.0],[0.002,1495.0,1482.0],\
        [0.0027867,722.5,711.2],[0.0027867,2431.0,2355.0],\
        [0.00284705,1928.0,1869.0],[0.0029087,1686.0,1638.0],\
        [0.0029087,2763.0,2671.0],[0.003,2250.0,2178.0],\
        [0.003426,1614.0,1566.0],[0.003426,1866.0,1811.0],\
        [0.004,1275.0,1240.0],[0.004008,1269.0,1233.0],\
        [0.004008,1345.0,1308.0],[0.00415963,1234.0,1196.0],\
        [0.004317,1126.0,1095.0],[0.004317,1175.0,1142.0],\
        [0.005,825.1,802.5],[0.006,529.9,514.6],\
        [0.008,260.1,250.9],[0.01,149.0,142.3],\
        [0.0142135,61.62,57.38],[0.0142135,146.1,114.0],\
        [0.015,127.9,100.8],[0.0167847,94.17,75.76],\
        [0.0167847,130.2,96.7],[0.0171352,133.8,92.64],\
        [0.017493,118.1,88.47],[0.017493,136.0,101.0],\
        [0.02,97.04,74.46],[0.03,34.42,28.12],\
        [0.04,16.38,13.61],[0.05,9.196,7.637],\
        [0.06,5.748,4.729],[0.08,2.769,2.2],\
        [0.0957299,1.777,1.361],[0.0957299,6.895,1.935],\
        [0.1,6.174,1.897],[0.15,2.249,1.112],\
        [0.2,1.118,0.6369],[0.3,0.4491,0.2718],\
        [0.4,0.2565,0.1522],[0.5,0.1765,0.1012],\
        [0.6,0.1354,0.07517],[0.8,0.09495,0.05055],\
        [1.0,0.07538,0.03934],[1.25,0.06189,0.03181],\
        [1.5,0.05479,0.02791],[2.0,0.04821,0.02478],\
        [3.0,0.04424,0.02427],[4.0,0.04383,0.02556],\
        [5.0,0.04461,0.0271],[6.0,0.04585,0.02859],\
        [8.0,0.04883,0.03113],[10.0,0.05195,0.03311],\
        [15.0,0.05918,0.03619],[20.0,0.06493,0.03739]]),\
        'Rn':(86,210.0,[\
        [0.001,5826.0,5812.0],[0.00104738,5354.0,5340.0],\
        [0.001097,4909.0,4895.0],[0.001097,5013.0,5000.0],\
        [0.0015,2719.0,2706.0],[0.002,1490.0,1478.0],\
        [0.0028924,663.4,652.6],[0.0028924,2319.0,2243.0],\
        [0.003,1554.0,1507.0],[0.0030215,1524.0,1479.0],\
        [0.0030215,2470.0,2384.0],[0.00326957,1867.0,1804.0],\
        [0.003538,1479.0,1433.0],[0.003538,1710.0,1657.0],\
        [0.004,1266.0,1229.0],[0.004159,1148.0,1115.0],\
        [0.004159,1217.0,1182.0],[0.00431748,1112.0,1080.0],\
        [0.004482,1017.0,987.7],[0.004482,1061.0,1031.0],\
        [0.005,816.3,793.1],[0.006,524.0,508.5],\
        [0.008,257.7,248.5],[0.01,147.7,141.1],\
        [0.0146194,56.97,52.96],[0.0146194,134.4,104.2],\
        [0.015,125.9,98.07],[0.0173371,85.57,68.51],\
        [0.0173371,118.5,87.24],[0.0176895,122.5,83.66],\
        [0.018049,107.7,80.02],[0.018049,124.1,91.3],\
        [0.02,95.63,72.31],[0.03,34.08,27.6],\
        [0.04,16.24,13.42],[0.05,9.125,7.552],\
        [0.06,5.706,4.686],[0.08,2.749,2.185],\
        [0.098404,1.649,1.258],[0.098404,6.371,1.779],\
        [0.1,6.086,1.766],[0.15,2.215,1.073],\
        [0.2,1.101,0.6204],[0.3,0.442,0.2668],\
        [0.4,0.2518,0.1496],[0.5,0.1728,0.09941],\
        [0.6,0.1322,0.07377],[0.8,0.0923,0.04942],\
        [1.0,0.07303,0.03832],[1.25,0.05984,0.03089],\
        [1.5,0.0529,0.02704],[2.0,0.04649,0.02396],\
        [3.0,0.04264,0.02344],[4.0,0.04224,0.02469],\
        [5.0,0.04298,0.0262],[6.0,0.04418,0.02766],\
        [8.0,0.04705,0.03016],[10.0,0.05007,0.03216],\
        [15.0,0.05704,0.03534],[20.0,0.0626,0.0367]]),\
        'Fr':(87,222.0,[\
        [0.001,6238.0,6224.0],[0.00107378,5356.0,5342.0],\
        [0.001153,4673.0,4659.0],[0.001153,4772.0,4758.0],\
        [0.0015,2846.0,2833.0],[0.002,1562.0,1549.0],\
        [0.0029999,641.4,630.6],[0.0029999,1995.0,1929.0],\
        [0.003,1994.0,1928.0],[0.0031362,1449.0,1405.0],\
        [0.0031362,2255.0,2175.0],[0.00338938,1761.0,1700.0],\
        [0.003663,1415.0,1370.0],[0.003663,1641.0,1588.0],\
        [0.004,1322.0,1281.0],[0.004327,1086.0,1053.0],\
        [0.004327,1153.0,1118.0],[0.00448656,1059.0,1023.0],\
        [0.004652,966.6,937.7],[0.004652,1008.0,978.0],\
        [0.005,848.9,823.8],[0.006,545.1,528.5],\
        [0.008,268.4,258.8],[0.01,153.9,147.1],\
        [0.015,55.73,51.74],[0.0150312,55.44,51.46],\
        [0.0150312,130.4,100.3],[0.016406,103.1,80.86],\
        [0.0179065,81.84,65.21],[0.0179065,113.7,82.99],\
        [0.0182691,117.9,79.47],[0.018639,103.1,76.02],\
        [0.018639,118.7,86.66],[0.02,99.33,73.95],\
        [0.03,35.5,28.49],[0.04,16.94,13.91],\
        [0.05,9.525,7.851],[0.06,5.959,4.881],\
        [0.08,2.871,2.283],[0.1,1.655,1.261],\
        [0.101137,1.61,1.224],[0.101137,6.089,1.71],\
        [0.15,2.295,1.087],[0.2,1.141,0.6351],\
        [0.3,0.4577,0.275],[0.4,0.2601,0.1542],\
        [0.5,0.178,0.1025],[0.6,0.1358,0.07597],\
        [0.8,0.09444,0.05067],[1.0,0.0745,0.0392],\
        [1.25,0.06087,0.03151],[1.5,0.05376,0.02752],\
        [2.0,0.04721,0.02432],[3.0,0.04324,0.02372],\
        [4.0,0.04283,0.02495],[5.0,0.04358,0.02644],\
        [6.0,0.04479,0.02788],[8.0,0.04769,0.03033],\
        [10.0,0.05077,0.03227],[15.0,0.05786,0.03525],\
        [20.0,0.0635,0.03641]]),\
        'Ra':(88,223.0,[\
        [0.001,6201.0,6187.0],[0.0010284,5895.0,5881.0],\
        [0.0010576,5602.0,5588.0],[0.0010576,5683.0,5669.0],\
        [0.00113049,5019.0,5005.0],[0.0012084,4424.0,4411.0],\
        [0.0012084,4516.0,4502.0],[0.0015,2950.0,2937.0],\
        [0.002,1620.0,1608.0],[0.003,666.4,655.5],\
        [0.0031049,616.9,606.1],[0.0031049,1715.0,1657.0],\
        [0.00317584,1506.0,1457.0],[0.0032484,1374.0,1331.0],\
        [0.0032484,2039.0,1965.0],[0.0035096,1647.0,1587.0],\
        [0.0037918,1342.0,1297.0],[0.0037918,1558.0,1506.0],\
        [0.004,1367.0,1322.0],[0.0044895,1024.0,991.7],\
        [0.0044895,1086.0,1052.0],[0.00465278,999.5,964.3],\
        [0.004822,912.9,884.6],[0.004822,952.2,922.8],\
        [0.005,874.1,847.2],[0.006,561.3,543.8],\
        [0.008,276.9,266.9],[0.01,158.9,151.9],\
        [0.015,57.6,53.53],[0.0154444,53.55,49.62],\
        [0.0154444,125.3,95.81],[0.0168961,98.39,76.77],\
        [0.0184843,77.66,61.6],[0.0184843,108.1,78.35],\
        [0.0188568,112.6,75.0],[0.0192367,97.99,71.75],\
        [0.0192367,112.8,81.72],[0.02,102.3,74.96],\
        [0.03,36.64,29.13],[0.04,17.5,14.29],\
        [0.05,9.85,8.088],[0.06,6.166,5.039],\
        [0.08,2.971,2.363],[0.1,1.712,1.308],\
        [0.103922,1.56,1.181],[0.103922,5.826,1.638],\
        [0.15,2.355,1.091],[0.2,1.172,0.644],\
        [0.3,0.4696,0.2811],[0.4,0.2662,0.158],\
        [0.5,0.1817,0.105],[0.6,0.1383,0.07772],\
        [0.8,0.09579,0.05165],[1.0,0.07535,0.03983],\
        [1.25,0.06141,0.03191],[1.5,0.05415,0.02779],\
        [2.0,0.04751,0.02452],[3.0,0.04348,0.02387],\
        [4.0,0.04304,0.02509],[5.0,0.04379,0.02658],\
        [6.0,0.045,0.02802],[8.0,0.04793,0.0305],\
        [10.0,0.05102,0.03245],[15.0,0.05815,0.03549],\
        [20.0,0.06383,0.03668]]),\
        'Ac':(89,226.0,[\
        [0.001,6469.0,6455.0],[0.00103923,6034.0,6020.0],\
        [0.00108,5622.0,5608.0],[0.00108,5702.0,5688.0],\
        [0.00117069,4905.0,4891.0],[0.001269,4203.0,4190.0],\
        [0.001269,4289.0,4275.0],[0.0015,3082.0,3069.0],\
        [0.002,1696.0,1683.0],[0.003,698.1,687.0],\
        [0.003219,595.9,585.1],[0.003219,1537.0,1485.0],\
        [0.00329373,1404.0,1358.0],[0.0033702,1307.0,1264.0],\
        [0.0033702,1892.0,1822.0],[0.00362962,1564.0,1508.0],\
        [0.003909,1296.0,1252.0],[0.003909,1504.0,1453.0],\
        [0.004,1426.0,1377.0],[0.004656,974.5,942.8],\
        [0.004656,1034.0,1000.0],[0.005,868.7,840.8],\
        [0.005002,867.8,839.9],[0.005002,905.1,876.1],\
        [0.006,582.9,564.1],[0.008,287.8,277.3],\
        [0.01,165.3,158.0],[0.015,60.02,55.83],\
        [0.015871,52.13,48.23],[0.015871,121.4,92.24],\
        [0.0174031,104.2,73.5],[0.0190832,74.26,58.65],\
        [0.0190832,103.6,74.48],[0.0194579,107.9,71.33],\
        [0.01984,94.03,68.31],[0.01984,108.2,77.74],\
        [0.02,106.2,76.45],[0.03,38.11,30.0],\
        [0.04,18.23,14.79],[0.05,10.27,8.396],\
        [0.06,6.433,5.242],[0.08,3.1,2.465],\
        [0.1,1.786,1.367],[0.106756,1.525,1.15],\
        [0.106756,5.622,1.582],[0.15,2.434,1.1],\
        [0.2,1.213,0.6581],[0.3,0.4859,0.2896],\
        [0.4,0.2749,0.1632],[0.5,0.1872,0.1085],\
        [0.6,0.1421,0.08018],[0.8,0.09804,0.05311],\
        [1.0,0.07686,0.0408],[1.25,0.06251,0.03258],\
        [1.5,0.05504,0.02831],[2.0,0.04822,0.0249],\
        [3.0,0.04409,0.02419],[4.0,0.04363,0.02539],\
        [5.0,0.04438,0.02688],[6.0,0.0456,0.02832],\
        [8.0,0.04856,0.03079],[10.0,0.05171,0.03275],\
        [15.0,0.05895,0.03575],[20.0,0.06473,0.03692]]),\
        'Th':(90,227.0,[\
        [0.001,6614.0,6600.0],[0.00108088,5747.0,5733.0],\
        [0.0011683,4976.0,4962.0],[0.0011683,5048.0,5034.0],\
        [0.0012463,4463.0,4449.0],[0.0013295,3937.0,3924.0],\
        [0.0013295,4017.0,4003.0],[0.0015,3161.0,3148.0],\
        [0.002,1742.0,1729.0],[0.003,718.0,707.0],\
        [0.003332,567.1,556.5],[0.003332,1394.0,1346.0],\
        [0.00341048,1304.0,1260.0],[0.0034908,1226.0,1185.0],\
        [0.0034908,1749.0,1683.0],[0.004,1253.0,1208.0],\
        [0.0040461,1217.0,1174.0],[0.0040461,1415.0,1364.0],\
        [0.00442089,1137.0,1098.0],[0.0048304,910.3,879.7],\
        [0.0048304,965.5,933.0],[0.005,887.8,858.1],\
        [0.0051823,812.9,785.9],[0.0051823,847.7,819.6],\
        [0.006,594.5,574.9],[0.008,293.9,283.0],\
        [0.01,168.9,161.5],[0.015,61.41,57.18],\
        [0.0163003,49.91,46.11],[0.0163003,115.6,87.32],\
        [0.0179166,99.24,69.24],[0.0196932,69.84,54.92],\
        [0.0196932,95.27,68.36],[0.02,93.68,67.14],\
        [0.0204721,88.51,63.83],[0.0204721,101.8,72.59],\
        [0.03,38.92,30.32],[0.04,18.65,15.03],\
        [0.05,10.52,8.558],[0.06,6.592,5.355],\
        [0.08,3.178,2.526],[0.1,1.83,1.403],\
        [0.109651,1.465,1.1],[0.109651,5.336,1.502],\
        [0.15,2.472,1.09],[0.2,1.234,0.6603],\
        [0.3,0.4939,0.2931],[0.4,0.2789,0.1656],\
        [0.5,0.1895,0.1101],[0.6,0.1435,0.08128],\
        [0.8,0.09861,0.05366],[1.0,0.07709,0.04109],\
        [1.25,0.06251,0.03269],[1.5,0.05498,0.02834],\
        [2.0,0.04812,0.02487],[3.0,0.04396,0.02411],\
        [4.0,0.04347,0.02528],[5.0,0.04421,0.02674],\
        [6.0,0.04542,0.02817],[8.0,0.04836,0.0306],\
        [10.0,0.05149,0.03253],[15.0,0.05871,0.0355],\
        [20.0,0.06447,0.03664]]),\
        'Pa':(91,232.0381,[\
        [0.001,6530.0,6515.0],[0.00100334,6490.0,6476.0],\
        [0.0010067,6451.0,6437.0],[0.0010067,6868.0,6853.0],\
        [0.00111018,5755.0,5740.0],[0.0012243,4794.0,4780.0],\
        [0.0012243,4863.0,4848.0],[0.00130316,4311.0,4296.0],\
        [0.0013871,3815.0,3801.0],[0.0013871,3891.0,3877.0],\
        [0.0015,3327.0,3313.0],[0.002,1834.0,1821.0],\
        [0.003,755.8,744.4],[0.0034418,554.8,544.0],\
        [0.0034418,1363.0,1314.0],[0.00352548,1266.0,1222.0],\
        [0.0036112,1185.0,1144.0],[0.0036112,1695.0,1628.0],\
        [0.004,1315.0,1265.0],[0.0041738,1182.0,1139.0],\
        [0.0041738,1374.0,1324.0],[0.005,875.9,845.4],\
        [0.0050009,875.5,845.0],[0.0050009,928.8,896.4],\
        [0.00518067,851.4,821.9],[0.0053669,781.0,754.1],\
        [0.0053669,814.4,786.4],[0.006,621.7,600.4],\
        [0.008,307.4,295.8],[0.01,176.9,169.0],\
        [0.015,64.42,60.0],[0.0167331,49.03,45.22],\
        [0.0167331,113.0,84.83],[0.02,70.25,54.86],\
        [0.0203137,67.47,52.84],[0.0203137,94.52,67.04],\
        [0.0207054,89.95,64.18],[0.0211046,85.76,61.53],\
        [0.0211046,98.61,69.9],[0.03,40.77,31.46],\
        [0.04,19.57,15.67],[0.05,11.05,8.95],\
        [0.06,6.929,5.612],[0.08,3.342,2.655],\
        [0.1,1.924,1.477],[0.112601,1.445,1.081],\
        [0.112601,5.198,1.466],[0.15,2.575,1.106],\
        [0.2,1.288,0.6792],[0.3,0.5152,0.3042],\
        [0.4,0.2904,0.1723],[0.5,0.1969,0.1146],\
        [0.6,0.1487,0.08453],[0.8,0.1018,0.05563],\
        [1.0,0.07937,0.04247],[1.25,0.0642,0.03367],\
        [1.5,0.05637,0.02911],[2.0,0.04927,0.02547],\
        [3.0,0.04496,0.02463],[4.0,0.04445,0.0258],\
        [5.0,0.04519,0.02727],[6.0,0.04641,0.0287],\
        [8.0,0.04943,0.03117],[10.0,0.05261,0.03311],\
        [15.0,0.06,0.03609],[20.0,0.06592,0.03724]]),\
        'U':(92,231.03588,[\
        [0.001,6626.0,6612.0],[0.0010222,6375.0,6360.0],\
        [0.0010449,6127.0,6112.0],[0.0010449,6519.0,6504.0],\
        [0.00115314,5446.0,5431.0],[0.0012726,4526.0,4511.0],\
        [0.0012726,4589.0,4575.0],[0.00135409,4065.0,4051.0],\
        [0.0014408,3598.0,3584.0],[0.0014408,3668.0,3654.0],\
        [0.0015,3382.0,3368.0],[0.002,1865.0,1852.0],\
        [0.003,769.2,757.8],[0.0035517,525.7,515.1],\
        [0.0035517,1266.0,1220.0],[0.00363859,1188.0,1142.0],\
        [0.0037276,1112.0,1072.0],[0.0037276,1582.0,1517.0],\
        [0.004,1329.0,1277.0],[0.0043034,1110.0,1068.0],\
        [0.0043034,1292.0,1242.0],[0.005,889.1,856.9],\
        [0.0051822,811.8,782.5],[0.0051822,861.1,830.1],\
        [0.00536198,791.5,763.2],[0.005548,728.2,702.2],\
        [0.005548,759.2,732.2],[0.006,628.4,606.2],\
        [0.008,310.8,298.9],[0.01,179.1,171.1],\
        [0.015,65.28,60.84],[0.0171663,46.63,42.93],\
        [0.0171663,107.0,79.8],[0.02,71.06,54.96],\
        [0.0209476,63.0,49.14],[0.0209476,88.38,62.22],\
        [0.0213487,95.15,59.59],[0.0217574,80.23,57.15],\
        [0.0217574,92.22,64.87],[0.03,41.28,31.49],\
        [0.04,19.83,15.76],[0.05,11.21,9.034],\
        [0.06,7.035,5.678],[0.08,3.395,2.695],\
        [0.1,1.954,1.502],[0.115606,1.378,1.027],\
        [0.115606,4.893,1.382],[0.15,2.591,1.083],\
        [0.2,1.298,0.6746],[0.3,0.5192,0.305],\
        [0.4,0.2922,0.1732],[0.5,0.1976,0.1152],\
        [0.6,0.149,0.08494],[0.8,0.1016,0.05574],\
        [1.0,0.07896,0.04241],[1.25,0.0637,0.03351],\
        [1.5,0.05587,0.02891],[2.0,0.04878,0.02523],\
        [3.0,0.04447,0.02434],[4.0,0.04392,0.02546],\
        [5.0,0.04463,0.02689],[6.0,0.04583,0.02829],\
        [8.0,0.04879,0.03068],[10.0,0.05195,0.03259],\
        [15.0,0.05927,0.03552],[20.0,0.06512,0.03662]])}
    return xmac_dict

main()