Newer
Older
#include "MantidKernel/NeutronAtom.h"
#include "MantidKernel/PhysicalConstants.h"
#include <algorithm>
#include <sstream>
#include <stdexcept>
namespace Mantid {
namespace PhysicalConstants {
using std::string;
Atom::Atom(const std::string &symbol, const uint16_t z, const uint16_t a,
const double abundance, const double mass, const double density)
: symbol(symbol), z_number(z), a_number(a), abundance(abundance),
mass(mass), mass_density(density),
number_density(density * N_A * 1.e-24 /
mass), // Convert from cm^-3 to Angstroms^-3
neutron(
getNeutronNoExceptions(z, a)) /// Get the corresponding neutronic atom
{}
Atom::Atom(const Atom &other)
: symbol(other.symbol), z_number(other.z_number), a_number(other.a_number),
abundance(other.abundance), mass(other.mass),
mass_density(other.mass_density), number_density(other.number_density),
: symbol("user"), z_number(neutron.z_number), a_number(neutron.a_number),
abundance(0), mass(0.), mass_density(0.), number_density(0.),
Russell Taylor
committed
// ---------- START DO NOT EDIT AREA----------
Russell Taylor
committed
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
static const Atom H("H", 1, 0, 0.000000, 1.007940, 0.0708);
static const Atom H1("H", 1, 1, 99.988500, 1.007825, 0.070791924393);
static const Atom H2("H", 1, 2, 0.011500, 2.014102, 0.141475093639);
static const Atom H3("H", 1, 3, 0.000000, 3.016049, 0.21185416606);
static const Atom H4("H", 1, 4, 0.000000, 4.027830, 0.282923947854);
static const Atom H5("H", 1, 5, 0.000000, 5.039540, 0.353988761236);
static const Atom H6("H", 1, 6, 0.000000, 6.044940, 0.424610345854);
static const Atom He("He", 2, 0, 0.000000, 4.002602, 0.122);
static const Atom He3("He", 2, 3, 0.000137, 3.016029, 0.0919290940702);
static const Atom He4("He", 2, 4, 99.999863, 4.002603, 0.122000038091);
static const Atom He5("He", 2, 5, 0.000000, 5.012220, 0.152773330948);
static const Atom He6("He", 2, 6, 0.000000, 6.018888, 0.183456748435);
static const Atom He7("He", 2, 7, 0.000000, 7.028030, 0.214215567773);
static const Atom He8("He", 2, 8, 0.000000, 8.033922, 0.244875329598);
static const Atom He9("He", 2, 9, 0.000000, 9.043820, 0.275657194995);
static const Atom He10("He", 2, 10, 0.000000, 10.052400, 0.306398887524);
static const Atom Li("Li", 3, 0, 0.000000, 6.941000, 0.534);
static const Atom Li4("Li", 3, 4, 0.000000, 4.027180, 0.309827707823);
static const Atom Li5("Li", 3, 5, 0.000000, 5.012540, 0.385635551073);
static const Atom Li6("Li", 3, 6, 7.590000, 6.015122, 0.462768377496);
static const Atom Li7("Li", 3, 7, 92.410000, 7.016004, 0.539770369687);
static const Atom Li8("Li", 3, 8, 0.000000, 8.022487, 0.617203270105);
static const Atom Li9("Li", 3, 9, 0.000000, 9.026789, 0.694468430975);
static const Atom Li10("Li", 3, 10, 0.000000, 10.035481, 0.772071294338);
static const Atom Li11("Li", 3, 11, 0.000000, 11.043796, 0.849645161216);
static const Atom Li12("Li", 3, 12, 0.000000, 12.053780, 0.927347431206);
static const Atom Be("Be", 4, 0, 0.000000, 9.012182, 1.848);
static const Atom Be5("Be", 4, 5, 0.000000, 5.040790, 1.03364311995);
static const Atom Be6("Be", 4, 6, 0.000000, 6.019726, 1.23437960396);
static const Atom Be7("Be", 4, 7, 0.000000, 7.016929, 1.4388618829);
static const Atom Be8("Be", 4, 8, 0.000000, 8.005305, 1.64153407092);
static const Atom Be9("Be", 4, 9, 100.000000, 9.012182, 1.84800002051);
static const Atom Be10("Be", 4, 10, 0.000000, 10.013534, 2.05333295284);
static const Atom Be11("Be", 4, 11, 0.000000, 11.021658, 2.26005466645);
static const Atom Be12("Be", 4, 12, 0.000000, 12.026921, 2.46618965396);
static const Atom Be13("Be", 4, 13, 0.000000, 13.036130, 2.67313379157);
static const Atom Be14("Be", 4, 14, 0.000000, 14.042820, 2.87956139368);
static const Atom B("B", 5, 0, 0.000000, 10.811000, 2.34);
static const Atom B7("B", 5, 7, 0.000000, 7.029920, 1.52159955601);
static const Atom B8("B", 5, 8, 0.000000, 8.024607, 1.73689572454);
static const Atom B9("B", 5, 9, 0.000000, 9.013329, 1.95090087799);
static const Atom B10("B", 5, 10, 19.900000, 10.012937, 2.16726228656);
static const Atom B11("B", 5, 11, 80.100000, 11.009305, 2.38292247433);
static const Atom B12("B", 5, 12, 0.000000, 12.014352, 2.60046100398);
static const Atom B13("B", 5, 13, 0.000000, 13.017780, 2.81764923707);
static const Atom B14("B", 5, 14, 0.000000, 14.025404, 3.03574557025);
static const Atom B15("B", 5, 15, 0.000000, 15.031097, 3.25342401073);
static const Atom B16("B", 5, 16, 0.000000, 16.039810, 3.47175611877);
static const Atom B17("B", 5, 17, 0.000000, 17.046930, 3.68974342799);
static const Atom B18("B", 5, 18, 0.000000, 18.056170, 3.90818960318);
static const Atom B19("B", 5, 19, 0.000000, 19.063730, 4.12627214874);
static const Atom C("C", 6, 0, 0.000000, 12.010700, 2.1);
static const Atom C8("C", 6, 8, 0.000000, 8.037675, 1.40534003014);
static const Atom C9("C", 6, 9, 0.000000, 9.031040, 1.57902405438);
static const Atom C10("C", 6, 10, 0.000000, 10.016853, 1.75138763852);
static const Atom C11("C", 6, 11, 0.000000, 11.011434, 1.92528420325);
static const Atom C12("C", 6, 12, 98.930000, 12.000000, 2.09812916816);
static const Atom C13("C", 6, 13, 1.070000, 13.003355, 2.27355983909);
static const Atom C14("C", 6, 14, 0.000000, 14.003242, 2.44838420532);
static const Atom C15("C", 6, 15, 0.000000, 15.010599, 2.62451468524);
static const Atom C16("C", 6, 16, 0.000000, 16.014701, 2.80007594062);
static const Atom C17("C", 6, 17, 0.000000, 17.022584, 2.97629833399);
static const Atom C18("C", 6, 18, 0.000000, 18.026760, 3.15187258028);
static const Atom C19("C", 6, 19, 0.000000, 19.035250, 3.32820110402);
static const Atom C20("C", 6, 20, 0.000000, 20.040320, 3.50393166094);
static const Atom C21("C", 6, 21, 0.000000, 21.049340, 3.68035285204);
static const Atom C22("C", 6, 22, 0.000000, 22.056450, 3.85644009092);
static const Atom N("N", 7, 0, 0.000000, 14.006700, 0.808);
static const Atom N10("N", 7, 10, 0.000000, 10.042620, 0.57932539142);
static const Atom N11("N", 7, 11, 0.000000, 11.026800, 0.636099466684);
static const Atom N12("N", 7, 12, 0.000000, 12.018613, 0.693313875902);
static const Atom N13("N", 7, 13, 0.000000, 13.005739, 0.750257860355);
static const Atom N14("N", 7, 14, 99.632000, 14.003074, 0.807790828404);
static const Atom N15("N", 7, 15, 0.368000, 15.000109, 0.865306459759);
static const Atom N16("N", 7, 16, 0.000000, 16.006101, 0.923338825791);
static const Atom N17("N", 7, 17, 0.000000, 17.008450, 0.981160987242);
static const Atom N18("N", 7, 18, 0.000000, 18.014082, 1.03917255713);
static const Atom N19("N", 7, 19, 0.000000, 19.017027, 1.09702912292);
static const Atom N20("N", 7, 20, 0.000000, 20.023370, 1.15508170804);
static const Atom N21("N", 7, 21, 0.000000, 21.027090, 1.212982981);
static const Atom N22("N", 7, 22, 0.000000, 22.034440, 1.27109365661);
static const Atom N23("N", 7, 23, 0.000000, 23.040510, 1.32913049326);
static const Atom N24("N", 7, 24, 0.000000, 24.050500, 1.3873934617);
static const Atom O("O", 8, 0, 0.000000, 15.999400, 1.14);
static const Atom O12("O", 8, 12, 0.000000, 12.034405, 0.857483511882);
static const Atom O13("O", 8, 13, 0.000000, 13.024810, 0.928052514469);
static const Atom O14("O", 8, 14, 0.000000, 14.008595, 0.998149845032);
static const Atom O15("O", 8, 15, 0.000000, 15.003065, 1.06900849757);
static const Atom O16("O", 8, 16, 99.757000, 15.994915, 1.13968040484);
static const Atom O17("O", 8, 17, 0.038000, 16.999132, 1.21123354063);
static const Atom O18("O", 8, 18, 0.205000, 17.999160, 1.28248827181);
static const Atom O19("O", 8, 19, 0.000000, 19.003579, 1.35405578084);
static const Atom O20("O", 8, 20, 0.000000, 20.004076, 1.42534387965);
static const Atom O21("O", 8, 21, 0.000000, 21.008655, 1.49692280336);
static const Atom O22("O", 8, 22, 0.000000, 22.009970, 1.56826917259);
static const Atom O23("O", 8, 23, 0.000000, 23.015690, 1.63992940985);
static const Atom O24("O", 8, 24, 0.000000, 24.020370, 1.71151554433);
static const Atom O25("O", 8, 25, 0.000000, 25.029140, 1.78339310224);
static const Atom O26("O", 8, 26, 0.000000, 26.037750, 1.85525925972);
static const Atom F("F", 9, 0, 0.000000, 18.998403, 1.5);
static const Atom F14("F", 9, 14, 0.000000, 14.036080, 1.1082047148);
static const Atom F15("F", 9, 15, 0.000000, 15.018010, 1.18573201984);
static const Atom F16("F", 9, 16, 0.000000, 16.011466, 1.26416934872);
static const Atom F17("F", 9, 17, 0.000000, 17.002095, 1.34238349358);
static const Atom F18("F", 9, 18, 0.000000, 18.000938, 1.42124610504);
static const Atom F19("F", 9, 19, 100.000000, 18.998403, 1.5);
static const Atom F20("F", 9, 20, 0.000000, 19.999981, 1.57907860277);
static const Atom F21("F", 9, 21, 0.000000, 20.999949, 1.65803004697);
static const Atom F22("F", 9, 22, 0.000000, 22.002999, 1.73722486846);
static const Atom F23("F", 9, 23, 0.000000, 23.003570, 1.81622395507);
static const Atom F24("F", 9, 24, 0.000000, 24.008100, 1.89553562059);
static const Atom F25("F", 9, 25, 0.000000, 25.012090, 1.97480465095);
static const Atom F26("F", 9, 26, 0.000000, 26.019630, 2.05435396802);
static const Atom F27("F", 9, 27, 0.000000, 27.026890, 2.13388117797);
static const Atom F28("F", 9, 28, 0.000000, 28.035670, 2.21352839801);
static const Atom F29("F", 9, 29, 0.000000, 29.043260, 2.29308166278);
static const Atom Ne("Ne", 10, 0, 0.000000, 20.179700, 1.207);
static const Atom Ne16("Ne", 10, 16, 0.000000, 16.025757, 0.958541935658);
static const Atom Ne17("Ne", 10, 17, 0.000000, 17.017700, 1.0178726096);
static const Atom Ne18("Ne", 10, 18, 0.000000, 18.005697, 1.07696726907);
static const Atom Ne19("Ne", 10, 19, 0.000000, 19.001880, 1.13655153043);
static const Atom Ne20("Ne", 10, 20, 90.480000, 19.992440, 1.19579950605);
static const Atom Ne21("Ne", 10, 21, 0.270000, 20.993847, 1.25569622022);
static const Atom Ne22("Ne", 10, 22, 9.250000, 21.991386, 1.31536159163);
static const Atom Ne23("Ne", 10, 23, 0.000000, 22.994467, 1.37535850778);
static const Atom Ne24("Ne", 10, 24, 0.000000, 23.993615, 1.43512011105);
static const Atom Ne25("Ne", 10, 25, 0.000000, 24.997790, 1.49518241252);
static const Atom Ne26("Ne", 10, 26, 0.000000, 26.000460, 1.55515469606);
static const Atom Ne27("Ne", 10, 27, 0.000000, 27.007620, 1.61539553809);
static const Atom Ne28("Ne", 10, 28, 0.000000, 28.012110, 1.67547668053);
static const Atom Ne29("Ne", 10, 29, 0.000000, 29.019350, 1.73572230757);
static const Atom Ne30("Ne", 10, 30, 0.000000, 30.023870, 1.79580524438);
static const Atom Ne31("Ne", 10, 31, 0.000000, 31.033110, 1.85617049659);
static const Atom Ne32("Ne", 10, 32, 0.000000, 32.039910, 1.91638980609);
Russell Taylor
committed
static const Atom Na("Na", 11, 0, 0.000000, 22.989770, 0.971);
static const Atom Na18("Na", 11, 18, 0.000000, 18.027180, 0.761399169283);
static const Atom Na19("Na", 11, 19, 0.000000, 19.013879, 0.803073563111);
static const Atom Na20("Na", 11, 20, 0.000000, 20.007348, 0.845033895859);
static const Atom Na21("Na", 11, 21, 0.000000, 20.997655, 0.886860682038);
static const Atom Na22("Na", 11, 22, 0.000000, 21.994437, 0.92896093057);
static const Atom Na23("Na", 11, 23, 100.000000, 22.989770, 0.970999986062);
static const Atom Na24("Na", 11, 24, 0.000000, 23.990963, 1.01328657892);
static const Atom Na25("Na", 11, 25, 0.000000, 24.989954, 1.05548014279);
static const Atom Na26("Na", 11, 26, 0.000000, 25.992590, 1.09782763768);
static const Atom Na27("Na", 11, 27, 0.000000, 26.994010, 1.14012379028);
static const Atom Na28("Na", 11, 28, 0.000000, 27.998890, 1.18256608004);
static const Atom Na29("Na", 11, 29, 0.000000, 29.002810, 1.22496782308);
static const Atom Na30("Na", 11, 30, 0.000000, 30.009230, 1.26747515656);
static const Atom Na31("Na", 11, 31, 0.000000, 31.013600, 1.30989590587);
static const Atom Na32("Na", 11, 32, 0.000000, 32.019650, 1.35238761197);
static const Atom Na33("Na", 11, 33, 0.000000, 33.027390, 1.3949506972);
static const Atom Na34("Na", 11, 34, 0.000000, 34.034900, 1.43750406811);
static const Atom Na35("Na", 11, 35, 0.000000, 35.044180, 1.48013219706);
Russell Taylor
committed
static const Atom Mg("Mg", 12, 0, 0.000000, 24.305000, 1.738);
static const Atom Mg20("Mg", 12, 20, 0.000000, 20.018863, 1.43150725752);
static const Atom Mg21("Mg", 12, 21, 0.000000, 21.011714, 1.50250396758);
static const Atom Mg22("Mg", 12, 22, 0.000000, 21.999574, 1.57314378876);
static const Atom Mg23("Mg", 12, 23, 0.000000, 22.994125, 1.64426204798);
static const Atom Mg24("Mg", 12, 24, 78.990000, 23.985042, 1.71512046172);
static const Atom Mg25("Mg", 12, 25, 10.000000, 24.985837, 1.78668523928);
static const Atom Mg26("Mg", 12, 26, 11.010000, 25.982593, 1.8579611892);
static const Atom Mg27("Mg", 12, 27, 0.000000, 26.984341, 1.92959408377);
static const Atom Mg28("Mg", 12, 28, 0.000000, 27.983877, 2.00106882142);
static const Atom Mg29("Mg", 12, 29, 0.000000, 28.988550, 2.07291091956);
static const Atom Mg30("Mg", 12, 30, 0.000000, 29.990460, 2.14455541987);
static const Atom Mg31("Mg", 12, 31, 0.000000, 30.996550, 2.21649882329);
static const Atom Mg32("Mg", 12, 32, 0.000000, 31.999150, 2.28819266406);
static const Atom Mg33("Mg", 12, 33, 0.000000, 33.005590, 2.36016109525);
static const Atom Mg34("Mg", 12, 34, 0.000000, 34.009070, 2.43191786299);
static const Atom Mg35("Mg", 12, 35, 0.000000, 35.017490, 2.50402787986);
static const Atom Mg36("Mg", 12, 36, 0.000000, 36.022450, 2.57589047933);
static const Atom Mg37("Mg", 12, 37, 0.000000, 37.031240, 2.64802695412);
Russell Taylor
committed
static const Atom Al("Al", 13, 0, 0.000000, 26.981538, 2.6989);
static const Atom Al21("Al", 13, 21, 0.000000, 21.028040, 2.10338555037);
static const Atom Al22("Al", 13, 22, 0.000000, 22.019520, 2.20256097069);
static const Atom Al23("Al", 13, 23, 0.000000, 23.007265, 2.30136278771);
static const Atom Al24("Al", 13, 24, 0.000000, 23.999941, 2.40065784111);
static const Atom Al25("Al", 13, 25, 0.000000, 24.990429, 2.49973399398);
static const Atom Al26("Al", 13, 26, 0.000000, 25.986892, 2.59940785811);
static const Atom Al27("Al", 13, 27, 100.000000, 26.981538, 2.69890004401);
static const Atom Al28("Al", 13, 28, 0.000000, 27.981910, 2.79896488424);
static const Atom Al29("Al", 13, 29, 0.000000, 28.980445, 2.89884596166);
static const Atom Al30("Al", 13, 30, 0.000000, 29.982960, 2.99912520717);
static const Atom Al31("Al", 13, 31, 0.000000, 30.983946, 3.09925149039);
static const Atom Al32("Al", 13, 32, 0.000000, 31.988120, 3.19969666177);
static const Atom Al33("Al", 13, 33, 0.000000, 32.990870, 3.29999939377);
static const Atom Al34("Al", 13, 34, 0.000000, 33.996930, 3.40063321731);
static const Atom Al35("Al", 13, 35, 0.000000, 34.999940, 3.50096195651);
static const Atom Al36("Al", 13, 36, 0.000000, 36.006350, 3.60163078973);
static const Atom Al37("Al", 13, 37, 0.000000, 37.010310, 3.70205455519);
static const Atom Al38("Al", 13, 38, 0.000000, 38.016900, 3.80274139339);
static const Atom Al39("Al", 13, 39, 0.000000, 39.021900, 3.90326918762);
Russell Taylor
committed
static const Atom Si("Si", 14, 0, 0.000000, 28.085500, 2.33);
static const Atom Si22("Si", 14, 22, 0.000000, 22.034530, 1.82800572893);
static const Atom Si23("Si", 14, 23, 0.000000, 23.025520, 1.9102192092);
static const Atom Si24("Si", 14, 24, 0.000000, 24.011546, 1.99202087127);
static const Atom Si25("Si", 14, 25, 0.000000, 25.004107, 2.0743646832);
static const Atom Si26("Si", 14, 26, 0.000000, 25.992330, 2.15634861049);
static const Atom Si27("Si", 14, 27, 0.000000, 26.986705, 2.23884289369);
static const Atom Si28("Si", 14, 28, 92.229700, 27.976927, 2.32099264108);
static const Atom Si29("Si", 14, 29, 4.683200, 28.976495, 2.40391777599);
static const Atom Si30("Si", 14, 30, 3.087200, 29.973770, 2.48665270736);
static const Atom Si31("Si", 14, 31, 0.000000, 30.975363, 2.56974582682);
Russell Taylor
committed
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
static const Atom Si32("Si", 14, 32, 0.000000, 31.974148, 2.65260597365);
static const Atom Si33("Si", 14, 33, 0.000000, 32.978001, 2.73588657243);
static const Atom Si34("Si", 14, 34, 0.000000, 33.978576, 2.81889523348);
static const Atom Si35("Si", 14, 35, 0.000000, 34.984580, 2.90235428958);
static const Atom Si36("Si", 14, 36, 0.000000, 35.986690, 2.9854902957);
static const Atom Si37("Si", 14, 37, 0.000000, 36.993000, 3.06897473785);
static const Atom Si38("Si", 14, 38, 0.000000, 37.995980, 3.15218292001);
static const Atom Si39("Si", 14, 39, 0.000000, 39.002300, 3.23566819177);
static const Atom Si40("Si", 14, 40, 0.000000, 40.005800, 3.31891951363);
static const Atom Si41("Si", 14, 41, 0.000000, 41.012700, 3.40245290274);
static const Atom Si42("Si", 14, 42, 0.000000, 42.016100, 3.4856959285);
static const Atom P("P", 15, 0, 0.000000, 30.973761, 1.82);
static const Atom P24("P", 15, 24, 0.000000, 24.034350, 1.41224428638);
static const Atom P25("P", 15, 25, 0.000000, 25.020260, 1.47017577878);
static const Atom P26("P", 15, 26, 0.000000, 26.011780, 1.52843691149);
static const Atom P27("P", 15, 27, 0.000000, 26.999190, 1.58645654301);
static const Atom P28("P", 15, 28, 0.000000, 27.992312, 1.64481180829);
static const Atom P29("P", 15, 29, 0.000000, 28.981801, 1.70295362413);
static const Atom P30("P", 15, 30, 0.000000, 29.978314, 1.76150810733);
static const Atom P31("P", 15, 31, 100.000000, 30.973762, 1.82000002997);
static const Atom P32("P", 15, 32, 0.000000, 31.973907, 1.8787680008);
static const Atom P33("P", 15, 33, 0.000000, 32.971725, 1.93739920851);
static const Atom P34("P", 15, 34, 0.000000, 33.973636, 1.99627089264);
static const Atom P35("P", 15, 35, 0.000000, 34.973314, 2.05501139639);
static const Atom P36("P", 15, 36, 0.000000, 35.978260, 2.11406142121);
static const Atom P37("P", 15, 37, 0.000000, 36.979610, 2.17290015894);
static const Atom P38("P", 15, 38, 0.000000, 37.984470, 2.23194514221);
static const Atom P39("P", 15, 39, 0.000000, 38.986420, 2.29081913559);
static const Atom P40("P", 15, 40, 0.000000, 39.991050, 2.34985060419);
static const Atom P41("P", 15, 41, 0.000000, 40.994800, 2.40883036451);
static const Atom P42("P", 15, 42, 0.000000, 42.000090, 2.46790061433);
static const Atom P43("P", 15, 43, 0.000000, 43.003310, 2.52684923216);
static const Atom P44("P", 15, 44, 0.000000, 44.009880, 2.58599469403);
static const Atom P45("P", 15, 45, 0.000000, 45.015140, 2.64506318106);
static const Atom P46("P", 15, 46, 0.000000, 46.023830, 2.70433321288);
static const Atom S("S", 16, 0, 0.000000, 32.065000, 2.07);
static const Atom S26("S", 16, 26, 0.000000, 26.027880, 1.68026544831);
static const Atom S27("S", 16, 27, 0.000000, 27.018800, 1.74423564634);
static const Atom S28("S", 16, 28, 0.000000, 28.004370, 1.8078604678);
static const Atom S29("S", 16, 29, 0.000000, 28.996610, 1.87191588024);
static const Atom S30("S", 16, 30, 0.000000, 29.984903, 1.93571648869);
static const Atom S31("S", 16, 31, 0.000000, 30.979554, 1.99992757237);
static const Atom S32("S", 16, 32, 94.930000, 31.972071, 2.06400082109);
static const Atom S33("S", 16, 33, 0.760000, 32.971458, 2.1285176702);
static const Atom S34("S", 16, 34, 4.290000, 33.967867, 2.1928421749);
static const Atom S35("S", 16, 35, 0.000000, 34.969032, 2.25747377295);
static const Atom S36("S", 16, 36, 0.020000, 35.967081, 2.32190417657);
static const Atom S37("S", 16, 37, 0.000000, 36.971126, 2.38672166663);
static const Atom S38("S", 16, 38, 0.000000, 37.971163, 2.45128044316);
static const Atom S39("S", 16, 39, 0.000000, 38.975140, 2.51609355372);
static const Atom S40("S", 16, 40, 0.000000, 39.975470, 2.58067122719);
static const Atom S41("S", 16, 41, 0.000000, 40.980030, 2.64552197412);
static const Atom S42("S", 16, 42, 0.000000, 41.981490, 2.71017259629);
static const Atom S43("S", 16, 43, 0.000000, 42.986600, 2.77505884921);
static const Atom S44("S", 16, 44, 0.000000, 43.988320, 2.83972625604);
static const Atom S45("S", 16, 45, 0.000000, 44.994820, 2.90470224232);
static const Atom S46("S", 16, 46, 0.000000, 45.999570, 2.96956525495);
static const Atom S47("S", 16, 47, 0.000000, 47.007620, 3.0346413036);
static const Atom S48("S", 16, 48, 0.000000, 48.012990, 3.09954434118);
static const Atom S49("S", 16, 49, 0.000000, 49.022010, 3.16468300951);
static const Atom Cl("Cl", 17, 0, 0.000000, 35.453000, 1.56);
static const Atom Cl28("Cl", 17, 28, 0.000000, 28.028510, 1.23330819959);
static const Atom Cl29("Cl", 17, 29, 0.000000, 29.014110, 1.27667649);
static const Atom Cl30("Cl", 17, 30, 0.000000, 30.004770, 1.32026743012);
static const Atom Cl31("Cl", 17, 31, 0.000000, 30.992420, 1.36372592446);
static const Atom Cl32("Cl", 17, 32, 0.000000, 31.985689, 1.40743166559);
static const Atom Cl33("Cl", 17, 33, 0.000000, 32.977452, 1.45107113102);
static const Atom Cl34("Cl", 17, 34, 0.000000, 33.973762, 1.49491068945);
static const Atom Cl35("Cl", 17, 35, 75.780000, 34.968853, 1.53869659063);
static const Atom Cl36("Cl", 17, 36, 0.000000, 35.968307, 1.58267449418);
static const Atom Cl37("Cl", 17, 37, 24.220000, 36.965903, 1.6265706162);
static const Atom Cl38("Cl", 17, 38, 0.000000, 37.968011, 1.67066528807);
static const Atom Cl39("Cl", 17, 39, 0.000000, 38.968008, 1.7146670807);
static const Atom Cl40("Cl", 17, 40, 0.000000, 39.970420, 1.75877514456);
static const Atom Cl41("Cl", 17, 41, 0.000000, 40.970650, 1.80278718303);
static const Atom Cl42("Cl", 17, 42, 0.000000, 41.973170, 1.8468999859);
static const Atom Cl43("Cl", 17, 43, 0.000000, 42.974200, 1.8909472259);
static const Atom Cl44("Cl", 17, 44, 0.000000, 43.978540, 1.93514011226);
static const Atom Cl45("Cl", 17, 45, 0.000000, 44.979700, 1.97919307252);
static const Atom Cl46("Cl", 17, 46, 0.000000, 45.984120, 2.02338947903);
static const Atom Cl47("Cl", 17, 47, 0.000000, 46.987950, 2.06755992441);
static const Atom Cl48("Cl", 17, 48, 0.000000, 47.994850, 2.11186545567);
static const Atom Cl49("Cl", 17, 49, 0.000000, 48.999890, 2.15608914337);
static const Atom Cl50("Cl", 17, 50, 0.000000, 50.007730, 2.20043603644);
static const Atom Cl51("Cl", 17, 51, 0.000000, 51.013530, 2.2446931656);
static const Atom Ar("Ar", 18, 0, 0.000000, 39.948000, 1.4);
static const Atom Ar30("Ar", 18, 30, 0.000000, 30.021560, 1.05212235907);
static const Atom Ar31("Ar", 18, 31, 0.000000, 31.012130, 1.08683743867);
static const Atom Ar32("Ar", 18, 32, 0.000000, 31.997660, 1.12137588866);
static const Atom Ar33("Ar", 18, 33, 0.000000, 32.989930, 1.15615054571);
static const Atom Ar34("Ar", 18, 34, 0.000000, 33.980270, 1.19085756483);
static const Atom Ar35("Ar", 18, 35, 0.000000, 34.975257, 1.22572743016);
static const Atom Ar36("Ar", 18, 36, 0.336500, 35.967546, 1.26050277341);
static const Atom Ar37("Ar", 18, 37, 0.000000, 36.966776, 1.29552133423);
static const Atom Ar38("Ar", 18, 38, 0.063200, 37.962732, 1.33042517973);
static const Atom Ar39("Ar", 18, 39, 0.000000, 38.964313, 1.36552613898);
static const Atom Ar40("Ar", 18, 40, 99.600300, 39.962383, 1.40050406459);
static const Atom Ar41("Ar", 18, 41, 0.000000, 40.964501, 1.43562383899);
static const Atom Ar42("Ar", 18, 42, 0.000000, 41.963050, 1.47061855412);
static const Atom Ar43("Ar", 18, 43, 0.000000, 42.965670, 1.50575593271);
static const Atom Ar44("Ar", 18, 44, 0.000000, 43.965365, 1.54079080304);
static const Atom Ar45("Ar", 18, 45, 0.000000, 44.968090, 1.57593186142);
static const Atom Ar46("Ar", 18, 46, 0.000000, 45.968090, 1.61097742065);
static const Atom Ar47("Ar", 18, 47, 0.000000, 46.972190, 1.64616666667);
static const Atom Ar48("Ar", 18, 48, 0.000000, 47.975070, 1.6813131571);
static const Atom Ar49("Ar", 18, 49, 0.000000, 48.982180, 1.71660789026);
static const Atom Ar50("Ar", 18, 50, 0.000000, 49.985940, 1.75178522079);
static const Atom Ar51("Ar", 18, 51, 0.000000, 50.993240, 1.7870866126);
static const Atom Ar52("Ar", 18, 52, 0.000000, 51.998170, 1.82230494643);
static const Atom Ar53("Ar", 18, 53, 0.000000, 53.006230, 1.85763297286);
static const Atom K("K", 19, 0, 0.000000, 39.098300, 0.862);
static const Atom K32("K", 19, 32, 0.000000, 32.021920, 0.705987089976);
static const Atom K33("K", 19, 33, 0.000000, 33.007260, 0.727710875409);
static const Atom K34("K", 19, 34, 0.000000, 33.998410, 0.749562753879);
static const Atom K35("K", 19, 35, 0.000000, 34.988012, 0.771380503602);
static const Atom K36("K", 19, 36, 0.000000, 35.981293, 0.793279364218);
static const Atom K37("K", 19, 37, 0.000000, 36.973377, 0.815151832597);
static const Atom K38("K", 19, 38, 0.000000, 37.969080, 0.837104095222);
static const Atom K39("K", 19, 39, 93.258100, 38.963707, 0.859032626682);
static const Atom K40("K", 19, 40, 0.011700, 39.963999, 0.881086053704);
static const Atom K41("K", 19, 41, 6.730200, 40.961826, 0.90308514657);
static const Atom K42("K", 19, 42, 0.000000, 41.962403, 0.925144864923);
static const Atom K43("K", 19, 43, 0.000000, 42.960716, 0.947154663809);
static const Atom K44("K", 19, 44, 0.000000, 43.961560, 0.969220265843);
static const Atom K45("K", 19, 45, 0.000000, 44.960700, 0.991248299798);
static const Atom K46("K", 19, 46, 0.000000, 45.961976, 1.01332342613);
static const Atom K47("K", 19, 47, 0.000000, 46.961678, 1.0353638505);
static const Atom K48("K", 19, 48, 0.000000, 47.965513, 1.05749539509);
static const Atom K49("K", 19, 49, 0.000000, 48.967450, 1.07958509449);
static const Atom K50("K", 19, 50, 0.000000, 49.972780, 1.10174959934);
static const Atom K51("K", 19, 51, 0.000000, 50.976380, 1.12387596289);
static const Atom K52("K", 19, 52, 0.000000, 51.982610, 1.14606031004);
static const Atom K53("K", 19, 53, 0.000000, 52.987120, 1.16820673635);
static const Atom K54("K", 19, 54, 0.000000, 53.993990, 1.19040519358);
static const Atom K55("K", 19, 55, 0.000000, 54.999390, 1.21257124172);
static const Atom Ca("Ca", 20, 0, 0.000000, 40.078000, 1.55);
static const Atom Ca34("Ca", 20, 34, 0.000000, 34.014120, 1.31548196018);
static const Atom Ca35("Ca", 20, 35, 0.000000, 35.004770, 1.35379493737);
static const Atom Ca36("Ca", 20, 36, 0.000000, 35.993090, 1.39201780278);
static const Atom Ca37("Ca", 20, 37, 0.000000, 36.985872, 1.43041323419);
static const Atom Ca38("Ca", 20, 38, 0.000000, 37.976319, 1.46871836045);
static const Atom Ca39("Ca", 20, 39, 0.000000, 38.970718, 1.50717631706);
static const Atom Ca40("Ca", 20, 40, 96.941000, 39.962591, 1.54553661261);
static const Atom Ca41("Ca", 20, 41, 0.000000, 40.962278, 1.58419909589);
static const Atom Ca42("Ca", 20, 42, 0.647000, 41.958618, 1.62273213147);
static const Atom Ca43("Ca", 20, 43, 0.135000, 42.958767, 1.6614124592);
static const Atom Ca44("Ca", 20, 44, 2.086000, 43.955481, 1.69995997068);
static const Atom Ca45("Ca", 20, 45, 0.000000, 44.956186, 1.73866181309);
static const Atom Ca46("Ca", 20, 46, 0.004000, 45.953693, 1.77723997804);
static const Atom Ca47("Ca", 20, 47, 0.000000, 46.954546, 1.8159475791);
static const Atom Ca48("Ca", 20, 48, 0.187000, 47.952534, 1.85454433105);
static const Atom Ca49("Ca", 20, 49, 0.000000, 48.955673, 1.89334031514);
static const Atom Ca50("Ca", 20, 50, 0.000000, 49.957518, 1.9320862543);
static const Atom Ca51("Ca", 20, 51, 0.000000, 50.961470, 1.97091368082);
static const Atom Ca52("Ca", 20, 52, 0.000000, 51.965100, 2.00972865412);
static const Atom Ca53("Ca", 20, 53, 0.000000, 52.970050, 2.04859467788);
static const Atom Ca54("Ca", 20, 54, 0.000000, 53.974680, 2.08744832576);
static const Atom Ca55("Ca", 20, 55, 0.000000, 54.980550, 2.12634993014);
static const Atom Ca56("Ca", 20, 56, 0.000000, 55.985790, 2.16522716952);
static const Atom Ca57("Ca", 20, 57, 0.000000, 56.992360, 2.2041558461);
static const Atom Sc("Sc", 21, 0, 0.000000, 44.955910, 2.989);
static const Atom Sc36("Sc", 21, 36, 0.000000, 36.014920, 2.39453713383);
static const Atom Sc37("Sc", 21, 37, 0.000000, 37.003050, 2.46023529387);
static const Atom Sc38("Sc", 21, 38, 0.000000, 37.994700, 2.52616748944);
static const Atom Sc39("Sc", 21, 39, 0.000000, 38.984790, 2.59199596471);
static const Atom Sc40("Sc", 21, 40, 0.000000, 39.977964, 2.65802948702);
static const Atom Sc41("Sc", 21, 41, 0.000000, 40.969251, 2.72393756762);
static const Atom Sc42("Sc", 21, 42, 0.000000, 41.965517, 2.79017663562);
static const Atom Sc43("Sc", 21, 43, 0.000000, 42.961151, 2.85637373015);
static const Atom Sc44("Sc", 21, 44, 0.000000, 43.959403, 2.9227448753);
static const Atom Sc45("Sc", 21, 45, 100.000000, 44.955910, 2.9890000133);
static const Atom Sc46("Sc", 21, 46, 0.000000, 45.955170, 3.05543818436);
static const Atom Sc47("Sc", 21, 47, 0.000000, 46.952408, 3.12174189138);
static const Atom Sc48("Sc", 21, 48, 0.000000, 47.952235, 3.18821775413);
static const Atom Sc49("Sc", 21, 49, 0.000000, 48.950024, 3.25455811563);
static const Atom Sc50("Sc", 21, 50, 0.000000, 49.952187, 3.32118929286);
static const Atom Sc51("Sc", 21, 51, 0.000000, 50.953603, 3.38777080404);
static const Atom Sc52("Sc", 21, 52, 0.000000, 51.956650, 3.45446075611);
static const Atom Sc53("Sc", 21, 53, 0.000000, 52.959240, 3.52112032345);
static const Atom Sc54("Sc", 21, 54, 0.000000, 53.963000, 3.587857681);
static const Atom Sc55("Sc", 21, 55, 0.000000, 54.967430, 3.6546395851);
static const Atom Sc56("Sc", 21, 56, 0.000000, 55.972660, 3.72147467908);
static const Atom Sc57("Sc", 21, 57, 0.000000, 56.977040, 3.7882532588);
static const Atom Sc58("Sc", 21, 58, 0.000000, 57.983070, 3.85514154268);
static const Atom Sc59("Sc", 21, 59, 0.000000, 58.988040, 3.92195934995);
static const Atom Ti("Ti", 22, 0, 0.000000, 47.867000, 4.54);
static const Atom Ti38("Ti", 22, 38, 0.000000, 38.009770, 3.60507982117);
static const Atom Ti39("Ti", 22, 39, 0.000000, 39.001320, 3.69912450749);
static const Atom Ti40("Ti", 22, 40, 0.000000, 39.990500, 3.79294440847);
static const Atom Ti41("Ti", 22, 41, 0.000000, 40.983130, 3.88709152861);
static const Atom Ti42("Ti", 22, 42, 0.000000, 41.973032, 3.9809799085);
static const Atom Ti43("Ti", 22, 43, 0.000000, 42.968523, 4.07539838344);
static const Atom Ti44("Ti", 22, 44, 0.000000, 43.959690, 4.16940676265);
static const Atom Ti45("Ti", 22, 45, 0.000000, 44.958124, 4.26410437926);
static const Atom Ti46("Ti", 22, 46, 8.250000, 45.952630, 4.35842935488);
static const Atom Ti47("Ti", 22, 47, 7.440000, 46.951764, 4.45319338275);
static const Atom Ti48("Ti", 22, 48, 73.720000, 47.947947, 4.54767751967);
static const Atom Ti49("Ti", 22, 49, 5.410000, 48.947871, 4.64251641908);
static const Atom Ti50("Ti", 22, 50, 5.180000, 49.944792, 4.73707055245);
static const Atom Ti51("Ti", 22, 51, 0.000000, 50.946616, 4.83208967848);
static const Atom Ti52("Ti", 22, 52, 0.000000, 51.946898, 4.92696256126);
static const Atom Ti53("Ti", 22, 53, 0.000000, 52.949730, 5.02207730169);
static const Atom Ti54("Ti", 22, 54, 0.000000, 53.950870, 5.11703156245);
static const Atom Ti55("Ti", 22, 55, 0.000000, 54.955120, 5.2122807947);
static const Atom Ti56("Ti", 22, 56, 0.000000, 55.957990, 5.30739913928);
static const Atom Ti57("Ti", 22, 57, 0.000000, 56.962900, 5.40271096998);
static const Atom Ti58("Ti", 22, 58, 0.000000, 57.966110, 5.49786156225);
static const Atom Ti59("Ti", 22, 59, 0.000000, 58.971960, 5.59326254831);
static const Atom Ti60("Ti", 22, 60, 0.000000, 59.975640, 5.68845771826);
static const Atom Ti61("Ti", 22, 61, 0.000000, 60.982020, 5.78390897278);
static const Atom V("V", 23, 0, 0.000000, 50.941500, 6.11);
static const Atom V40("V", 23, 40, 0.000000, 40.011090, 4.7989902123);
static const Atom V41("V", 23, 41, 0.000000, 40.999740, 4.91757037779);
static const Atom V42("V", 23, 42, 0.000000, 41.991230, 5.03649117713);
static const Atom V43("V", 23, 43, 0.000000, 42.980650, 5.15516369757);
static const Atom V44("V", 23, 44, 0.000000, 43.974400, 5.27435556472);
static const Atom V45("V", 23, 45, 0.000000, 44.965782, 5.39326341038);
static const Atom V46("V", 23, 46, 0.000000, 45.960200, 5.51253533848);
static const Atom V47("V", 23, 47, 0.000000, 46.954907, 5.63184203761);
static const Atom V48("V", 23, 48, 0.000000, 47.952255, 5.7514654063);
static const Atom V49("V", 23, 49, 0.000000, 48.948517, 5.87095861447);
static const Atom V50("V", 23, 50, 0.250000, 49.947163, 5.99073770321);
static const Atom V51("V", 23, 51, 99.750000, 50.943964, 6.11029549988);
static const Atom V52("V", 23, 52, 0.000000, 51.944780, 6.23033487367);
static const Atom V53("V", 23, 53, 0.000000, 52.944343, 6.35022399674);
static const Atom V54("V", 23, 54, 0.000000, 53.946444, 6.47041749536);
static const Atom V55("V", 23, 55, 0.000000, 54.947240, 6.59045447032);
static const Atom V56("V", 23, 56, 0.000000, 55.950360, 6.71077018933);
static const Atom V57("V", 23, 57, 0.000000, 56.952360, 6.83095157386);
static const Atom V58("V", 23, 58, 0.000000, 57.956650, 6.95140762443);
static const Atom V59("V", 23, 59, 0.000000, 58.959300, 7.07166697094);
static const Atom V60("V", 23, 60, 0.000000, 59.964500, 7.19223216827);
static const Atom V61("V", 23, 61, 0.000000, 60.967410, 7.31252269957);
static const Atom V62("V", 23, 62, 0.000000, 61.973140, 7.4331514659);
static const Atom V63("V", 23, 63, 0.000000, 62.976750, 7.55352595624);
static const Atom Cr("Cr", 24, 0, 0.000000, 51.996100, 7.19);
static const Atom Cr42("Cr", 24, 42, 0.000000, 42.006430, 5.80863241089);
static const Atom Cr43("Cr", 24, 43, 0.000000, 42.997710, 5.9457062145);
static const Atom Cr44("Cr", 24, 44, 0.000000, 43.985470, 6.08229327392);
static const Atom Cr45("Cr", 24, 45, 0.000000, 44.979160, 6.21970033137);
static const Atom Cr46("Cr", 24, 46, 0.000000, 45.968362, 6.35648678997);
static const Atom Cr47("Cr", 24, 47, 0.000000, 46.962907, 6.49401207648);
static const Atom Cr48("Cr", 24, 48, 0.000000, 47.954036, 6.63106499987);
static const Atom Cr49("Cr", 24, 49, 0.000000, 48.951341, 6.76897195192);
static const Atom Cr50("Cr", 24, 50, 4.345000, 49.946050, 6.90651984714);
static const Atom Cr51("Cr", 24, 51, 0.000000, 50.944772, 7.04462275521);
static const Atom Cr52("Cr", 24, 52, 83.789000, 51.940512, 7.18231329967);
static const Atom Cr53("Cr", 24, 53, 9.501000, 52.940654, 7.32061252329);
static const Atom Cr54("Cr", 24, 54, 2.365000, 53.938885, 7.45864752224);
static const Atom Cr55("Cr", 24, 55, 0.000000, 54.940844, 7.5971980552);
static const Atom Cr56("Cr", 24, 56, 0.000000, 55.940645, 7.73545011164);
static const Atom Cr57("Cr", 24, 57, 0.000000, 56.943750, 7.87415907155);
static const Atom Cr58("Cr", 24, 58, 0.000000, 57.944250, 8.01250781309);
static const Atom Cr59("Cr", 24, 59, 0.000000, 58.948630, 8.15139307948);
static const Atom Cr60("Cr", 24, 60, 0.000000, 59.949730, 8.28982478878);
static const Atom Cr61("Cr", 24, 61, 0.000000, 60.954090, 8.42870728959);
static const Atom Cr62("Cr", 24, 62, 0.000000, 61.955800, 8.56722334944);
static const Atom Cr63("Cr", 24, 63, 0.000000, 62.961860, 8.70634092557);
static const Atom Cr64("Cr", 24, 64, 0.000000, 63.964200, 8.84494410158);
static const Atom Cr65("Cr", 24, 65, 0.000000, 64.970370, 8.98407688846);
static const Atom Mn("Mn", 25, 0, 0.000000, 54.938049, 7.33);
static const Atom Mn44("Mn", 25, 44, 0.000000, 44.006870, 5.87152916734);
static const Atom Mn45("Mn", 25, 45, 0.000000, 44.994510, 6.00330307143);
static const Atom Mn46("Mn", 25, 46, 0.000000, 45.986720, 6.13568671869);
static const Atom Mn47("Mn", 25, 47, 0.000000, 46.976100, 6.26769277882);
static const Atom Mn48("Mn", 25, 48, 0.000000, 47.968870, 6.40015114297);
static const Atom Mn49("Mn", 25, 49, 0.000000, 48.959623, 6.5323403929);
static const Atom Mn50("Mn", 25, 50, 0.000000, 49.954244, 6.66504572305);
static const Atom Mn51("Mn", 25, 51, 0.000000, 50.948216, 6.79766439494);
static const Atom Mn52("Mn", 25, 52, 0.000000, 51.945570, 6.93073445024);
static const Atom Mn53("Mn", 25, 53, 0.000000, 52.941295, 7.06358702602);
static const Atom Mn54("Mn", 25, 54, 0.000000, 53.940363, 7.19688575501);
static const Atom Mn55("Mn", 25, 55, 100.000000, 54.938050, 7.33000008005);
static const Atom Mn56("Mn", 25, 56, 0.000000, 55.938909, 7.46353780969);
static const Atom Mn57("Mn", 25, 57, 0.000000, 56.938287, 7.59687777973);
static const Atom Mn58("Mn", 25, 58, 0.000000, 57.939990, 7.73052801165);
static const Atom Mn59("Mn", 25, 59, 0.000000, 58.940450, 7.86401239877);
static const Atom Mn60("Mn", 25, 60, 0.000000, 59.943190, 7.99780099035);
static const Atom Mn61("Mn", 25, 61, 0.000000, 60.944460, 8.1313934501);
static const Atom Mn62("Mn", 25, 62, 0.000000, 61.947970, 8.2652847774);
static const Atom Mn63("Mn", 25, 63, 0.000000, 62.949810, 8.39895328828);
static const Atom Mn64("Mn", 25, 64, 0.000000, 63.953730, 8.53289931901);
static const Atom Mn65("Mn", 25, 65, 0.000000, 64.956100, 8.66663854408);
static const Atom Mn66("Mn", 25, 66, 0.000000, 65.960820, 8.80069131323);
static const Atom Mn67("Mn", 25, 67, 0.000000, 66.963820, 8.93451459479);
static const Atom Fe("Fe", 26, 0, 0.000000, 55.845000, 7.874);
static const Atom Fe45("Fe", 26, 45, 0.000000, 45.014560, 6.34693608094);
static const Atom Fe46("Fe", 26, 46, 0.000000, 46.000810, 6.48599477017);
static const Atom Fe47("Fe", 26, 47, 0.000000, 46.992890, 6.62587547426);
static const Atom Fe48("Fe", 26, 48, 0.000000, 47.980560, 6.7651343798);
static const Atom Fe49("Fe", 26, 49, 0.000000, 48.973610, 6.90515185137);
static const Atom Fe50("Fe", 26, 50, 0.000000, 49.962990, 7.04465186248);
static const Atom Fe51("Fe", 26, 51, 0.000000, 50.956825, 7.18478001701);
static const Atom Fe52("Fe", 26, 52, 0.000000, 51.948117, 7.32454961515);
static const Atom Fe53("Fe", 26, 53, 0.000000, 52.945312, 7.46515156326);
static const Atom Fe54("Fe", 26, 54, 5.845000, 53.939615, 7.60534563408);
static const Atom Fe55("Fe", 26, 55, 0.000000, 54.938298, 7.74615737223);
static const Atom Fe56("Fe", 26, 56, 91.754000, 55.934942, 7.88668160257);
static const Atom Fe57("Fe", 26, 57, 2.119000, 56.935399, 8.02774338551);
static const Atom Fe58("Fe", 26, 58, 0.282000, 57.933281, 8.16844212834);
static const Atom Fe59("Fe", 26, 59, 0.000000, 58.934880, 8.30966512771);
static const Atom Fe60("Fe", 26, 60, 0.000000, 59.934077, 8.45054923982);
static const Atom Fe61("Fe", 26, 61, 0.000000, 60.936749, 8.59192338841);
static const Atom Fe62("Fe", 26, 62, 0.000000, 61.936770, 8.73292375289);
static const Atom Fe63("Fe", 26, 63, 0.000000, 62.940120, 8.87439349772);
static const Atom Fe64("Fe", 26, 64, 0.000000, 63.940870, 9.0154966493);
static const Atom Fe65("Fe", 26, 65, 0.000000, 64.944940, 9.15706791226);
static const Atom Fe66("Fe", 26, 66, 0.000000, 65.945980, 9.29821195308);
static const Atom Fe67("Fe", 26, 67, 0.000000, 66.950000, 9.43977616617);
static const Atom Fe68("Fe", 26, 68, 0.000000, 67.952510, 9.58112747318);
static const Atom Fe69("Fe", 26, 69, 0.000000, 68.957700, 9.72285665324);
static const Atom Co("Co", 27, 0, 0.000000, 58.933200, 8.9);
static const Atom Co48("Co", 27, 48, 0.000000, 48.001760, 7.24915097093);
static const Atom Co49("Co", 27, 49, 0.000000, 48.989720, 7.39835115012);
static const Atom Co50("Co", 27, 50, 0.000000, 49.981540, 7.54813426048);
static const Atom Co51("Co", 27, 51, 0.000000, 50.970720, 7.69751868217);
static const Atom Co52("Co", 27, 52, 0.000000, 51.963590, 7.8474603619);
static const Atom Co53("Co", 27, 53, 0.000000, 52.954225, 7.99706451542);
static const Atom Co54("Co", 27, 54, 0.000000, 53.948464, 8.1472129545);
static const Atom Co55("Co", 27, 55, 0.000000, 54.942003, 8.29725566557);
static const Atom Co56("Co", 27, 56, 0.000000, 55.939844, 8.44794802777);
static const Atom Co57("Co", 27, 57, 0.000000, 56.936296, 8.59843070086);
static const Atom Co58("Co", 27, 58, 0.000000, 57.935758, 8.74936780355);
static const Atom Co59("Co", 27, 59, 100.000000, 58.933200, 8.9000000302);
static const Atom Co60("Co", 27, 60, 0.000000, 59.933822, 9.05111240489);
static const Atom Co61("Co", 27, 61, 0.000000, 60.932479, 9.20192805855);
static const Atom Co62("Co", 27, 62, 0.000000, 61.934054, 9.3531842934);
static const Atom Co63("Co", 27, 63, 0.000000, 62.933615, 9.50413643753);
static const Atom Co64("Co", 27, 64, 0.000000, 63.935814, 9.6554869683);
static const Atom Co65("Co", 27, 65, 0.000000, 64.936485, 9.80660674289);
static const Atom Co66("Co", 27, 66, 0.000000, 65.939830, 9.95813034079);
static const Atom Co67("Co", 27, 67, 0.000000, 66.940610, 10.1092665764);
static const Atom Co68("Co", 27, 68, 0.000000, 67.944360, 10.2608513368);
static const Atom Co69("Co", 27, 69, 0.000000, 68.945200, 10.4119966335);
static const Atom Co70("Co", 27, 70, 0.000000, 69.949810, 10.5637112697);
static const Atom Co71("Co", 27, 71, 0.000000, 70.951730, 10.7150196663);
static const Atom Co72("Co", 27, 72, 0.000000, 71.956410, 10.8667448739);
static const Atom Ni("Ni", 28, 0, 0.000000, 58.693400, 8.902);
static const Atom Ni50("Ni", 28, 50, 0.000000, 49.995930, 7.58285887101);
static const Atom Ni51("Ni", 28, 51, 0.000000, 50.987720, 7.73328318755);
static const Atom Ni52("Ni", 28, 52, 0.000000, 51.975680, 7.88312660981);
static const Atom Ni53("Ni", 28, 53, 0.000000, 52.968460, 8.03370107917);
static const Atom Ni54("Ni", 28, 54, 0.000000, 53.957910, 8.18377048902);
static const Atom Ni55("Ni", 28, 55, 0.000000, 54.951336, 8.33444293689);
static const Atom Ni56("Ni", 28, 56, 0.000000, 55.942136, 8.48471710059);
static const Atom Ni57("Ni", 28, 57, 0.000000, 56.939800, 8.63603232391);
static const Atom Ni58("Ni", 28, 58, 68.076900, 57.935348, 8.78702659934);
static const Atom Ni59("Ni", 28, 59, 0.000000, 58.934352, 8.93854501432);
static const Atom Ni60("Ni", 28, 60, 26.223100, 59.930791, 9.08967444246);
static const Atom Ni61("Ni", 28, 61, 1.139900, 60.931060, 9.24138488622);
static const Atom Ni62("Ni", 28, 62, 3.634500, 61.928349, 9.39264314246);
static const Atom Ni63("Ni", 28, 63, 0.000000, 62.929673, 9.54451349139);
static const Atom Ni64("Ni", 28, 64, 0.925600, 63.927970, 9.69592467601);
static const Atom Ni65("Ni", 28, 65, 0.000000, 64.930088, 9.84791549605);
static const Atom Ni66("Ni", 28, 66, 0.000000, 65.929115, 9.99943744493);
static const Atom Ni67("Ni", 28, 67, 0.000000, 66.931570, 10.1514793169);
static const Atom Ni68("Ni", 28, 68, 0.000000, 67.931845, 10.3031905494);
static const Atom Ni69("Ni", 28, 69, 0.000000, 68.935180, 10.4553658905);
static const Atom Ni70("Ni", 28, 70, 0.000000, 69.936140, 10.6071810166);
static const Atom Ni71("Ni", 28, 71, 0.000000, 70.940000, 10.7594359843);
static const Atom Ni72("Ni", 28, 72, 0.000000, 71.941300, 10.911302678);
static const Atom Ni73("Ni", 28, 73, 0.000000, 72.946080, 11.0636971816);
static const Atom Ni74("Ni", 28, 74, 0.000000, 73.947910, 11.2156442602);
static const Atom Ni75("Ni", 28, 75, 0.000000, 74.952970, 11.3680812313);
static const Atom Ni76("Ni", 28, 76, 0.000000, 75.955330, 11.5201086947);
static const Atom Ni77("Ni", 28, 77, 0.000000, 76.960830, 11.6726124004);
static const Atom Ni78("Ni", 28, 78, 0.000000, 77.963800, 11.8247323822);
static const Atom Cu("Cu", 29, 0, 0.000000, 63.546000, 8.96);
static const Atom Cu52("Cu", 29, 52, 0.000000, 51.997180, 7.33161383565);
static const Atom Cu53("Cu", 29, 53, 0.000000, 52.985550, 7.4709742234);
static const Atom Cu54("Cu", 29, 54, 0.000000, 53.976710, 7.61072800176);
static const Atom Cu55("Cu", 29, 55, 0.000000, 54.966050, 7.75022515973);
static const Atom Cu56("Cu", 29, 56, 0.000000, 55.958560, 7.89016928839);
static const Atom Cu57("Cu", 29, 57, 0.000000, 56.949216, 8.02985200264);
static const Atom Cu58("Cu", 29, 58, 0.000000, 57.944541, 8.17019300463);
static const Atom Cu59("Cu", 29, 59, 0.000000, 58.939504, 8.31048306323);
static const Atom Cu60("Cu", 29, 60, 0.000000, 59.937368, 8.45118210707);
static const Atom Cu61("Cu", 29, 61, 0.000000, 60.933462, 8.59163159462);
static const Atom Cu62("Cu", 29, 62, 0.000000, 61.932587, 8.73250841154);
static const Atom Cu63("Cu", 29, 63, 69.170000, 62.929601, 8.8730876193);
static const Atom Cu64("Cu", 29, 64, 0.000000, 63.929768, 9.01411135845);
static const Atom Cu65("Cu", 29, 65, 30.830000, 64.927794, 9.15483321613);
static const Atom Cu66("Cu", 29, 66, 0.000000, 65.928873, 9.29598561798);
static const Atom Cu67("Cu", 29, 67, 0.000000, 66.927750, 9.43682749504);
static const Atom Cu68("Cu", 29, 68, 0.000000, 67.929640, 9.57809420577);
static const Atom Cu69("Cu", 29, 69, 0.000000, 68.929425, 9.71906411104);
static const Atom Cu70("Cu", 29, 70, 0.000000, 69.932409, 9.86048507601);
static const Atom Cu71("Cu", 29, 71, 0.000000, 70.932620, 10.0015150474);
static const Atom Cu72("Cu", 29, 72, 0.000000, 71.935520, 10.1429241683);
static const Atom Cu73("Cu", 29, 73, 0.000000, 72.936490, 10.2840611588);
static const Atom Cu74("Cu", 29, 74, 0.000000, 73.940200, 10.42558449);
static const Atom Cu75("Cu", 29, 75, 0.000000, 74.941700, 10.5667962106);
static const Atom Cu76("Cu", 29, 76, 0.000000, 75.945990, 10.7084013219);
static const Atom Cu77("Cu", 29, 77, 0.000000, 76.947950, 10.8496779026);
static const Atom Cu78("Cu", 29, 78, 0.000000, 77.952810, 10.991363384);
static const Atom Cu79("Cu", 29, 79, 0.000000, 78.955280, 11.1327118749);
static const Atom Cu80("Cu", 29, 80, 0.000000, 79.961890, 11.2746441066);
static const Atom Zn("Zn", 30, 0, 0.000000, 65.409000, 7.133);
static const Atom Zn54("Zn", 30, 54, 0.000000, 53.992950, 5.88805382058);
static const Atom Zn55("Zn", 30, 55, 0.000000, 54.983980, 5.9961278928);
static const Atom Zn56("Zn", 30, 56, 0.000000, 55.972380, 6.10391515755);
static const Atom Zn57("Zn", 30, 57, 0.000000, 56.964910, 6.21215280818);
static const Atom Zn58("Zn", 30, 58, 0.000000, 57.954600, 6.32008075036);
static const Atom Zn59("Zn", 30, 59, 0.000000, 58.949270, 6.42855177284);
static const Atom Zn60("Zn", 30, 60, 0.000000, 59.941832, 6.53679291315);
static const Atom Zn61("Zn", 30, 61, 0.000000, 60.939514, 6.64559240108);
static const Atom Zn62("Zn", 30, 62, 0.000000, 61.934334, 6.75407978141);
static const Atom Zn63("Zn", 30, 63, 0.000000, 62.933216, 6.86301008844);
static const Atom Zn64("Zn", 30, 64, 48.630000, 63.929147, 6.97161862584);
static const Atom Zn65("Zn", 30, 65, 0.000000, 64.929245, 7.08068163859);
static const Atom Zn66("Zn", 30, 66, 27.900000, 65.926037, 7.18938403728);
static const Atom Zn67("Zn", 30, 67, 4.100000, 66.927131, 7.29855562246);
static const Atom Zn68("Zn", 30, 68, 18.750000, 67.924848, 7.40735889451);
static const Atom Zn69("Zn", 30, 69, 0.000000, 68.926553, 7.51659719787);
static const Atom Zn70("Zn", 30, 70, 0.620000, 69.925325, 7.62551549825);
static const Atom Zn71("Zn", 30, 71, 0.000000, 70.927727, 7.7348297129);
static const Atom Zn72("Zn", 30, 72, 0.000000, 71.926861, 7.84378754473);
static const Atom Zn73("Zn", 30, 73, 0.000000, 72.929780, 7.9531581394);
static const Atom Zn74("Zn", 30, 74, 0.000000, 73.929460, 8.06217551377);
static const Atom Zn75("Zn", 30, 75, 0.000000, 74.932940, 8.17160728676);
static const Atom Zn76("Zn", 30, 76, 0.000000, 75.933390, 8.28070863138);
static const Atom Zn77("Zn", 30, 77, 0.000000, 76.937090, 8.39016439588);
static const Atom Zn78("Zn", 30, 78, 0.000000, 77.938570, 8.49937806433);
static const Atom Zn79("Zn", 30, 79, 0.000000, 78.942680, 8.60887854026);
static const Atom Zn80("Zn", 30, 80, 0.000000, 79.944410, 8.71811947179);
static const Atom Zn81("Zn", 30, 81, 0.000000, 80.950480, 8.82783369016);
static const Atom Zn82("Zn", 30, 82, 0.000000, 81.954840, 8.93736142916);
static const Atom Ga("Ga", 31, 0, 0.000000, 69.723000, 5.904);
static const Atom Ga56("Ga", 31, 56, 0.000000, 55.994910, 4.74153362076);
static const Atom Ga57("Ga", 31, 57, 0.000000, 56.982930, 4.82519711888);
static const Atom Ga58("Ga", 31, 58, 0.000000, 57.974250, 4.90914005421);
static const Atom Ga59("Ga", 31, 59, 0.000000, 58.963370, 4.99289669808);
static const Atom Ga60("Ga", 31, 60, 0.000000, 59.957060, 5.07704032012);
static const Atom Ga61("Ga", 31, 61, 0.000000, 60.949170, 5.16105015103);
static const Atom Ga62("Ga", 31, 62, 0.000000, 61.944180, 5.24530554795);
static const Atom Ga63("Ga", 31, 63, 0.000000, 62.939140, 5.32955671098);
static const Atom Ga64("Ga", 31, 64, 0.000000, 63.936838, 5.41403972222);
static const Atom Ga65("Ga", 31, 65, 0.000000, 64.932739, 5.49837059259);
static const Atom Ga66("Ga", 31, 66, 0.000000, 65.931592, 5.58295138144);
static const Atom Ga67("Ga", 31, 67, 0.000000, 66.928205, 5.66734250864);
static const Atom Ga68("Ga", 31, 68, 0.000000, 67.927983, 5.75200170079);
static const Atom Ga69("Ga", 31, 69, 60.108000, 68.925581, 5.83647620188);
static const Atom Ga70("Ga", 31, 70, 0.000000, 69.926028, 5.92119199277);
static const Atom Ga71("Ga", 31, 71, 39.892000, 70.924705, 6.0057579037);
static const Atom Ga72("Ga", 31, 72, 0.000000, 71.926369, 6.09057678152);
static const Atom Ga73("Ga", 31, 73, 0.000000, 72.925170, 6.17515315864);
static const Atom Ga74("Ga", 31, 74, 0.000000, 73.926940, 6.25998097844);
static const Atom Ga75("Ga", 31, 75, 0.000000, 74.926501, 6.34462174468);
static const Atom Ga76("Ga", 31, 76, 0.000000, 75.928930, 6.42950536724);
static const Atom Ga77("Ga", 31, 77, 0.000000, 76.929280, 6.51421294437);
static const Atom Ga78("Ga", 31, 78, 0.000000, 77.931660, 6.59909241771);
static const Atom Ga79("Ga", 31, 79, 0.000000, 78.932920, 6.68387705176);
static const Atom Ga80("Ga", 31, 80, 0.000000, 79.936590, 6.76886575965);
static const Atom Ga81("Ga", 31, 81, 0.000000, 80.937750, 6.85364192591);
static const Atom Ga82("Ga", 31, 82, 0.000000, 81.943160, 6.93877797341);
static const Atom Ga83("Ga", 31, 83, 0.000000, 82.946870, 7.02377006841);
static const Atom Ga84("Ga", 31, 84, 0.000000, 83.952340, 7.10891119659);
static const Atom Ge("Ge", 32, 0, 0.000000, 72.640000, 5.323);
static const Atom Ge58("Ge", 32, 58, 0.000000, 57.991010, 4.2495339514);
static const Atom Ge59("Ge", 32, 59, 0.000000, 58.981750, 4.32213457117);
static const Atom Ge60("Ge", 32, 60, 0.000000, 59.970190, 4.39456664882);
static const Atom Ge61("Ge", 32, 61, 0.000000, 60.963790, 4.46737684705);
static const Atom Ge62("Ge", 32, 62, 0.000000, 61.954650, 4.53998626032);
static const Atom Ge63("Ge", 32, 63, 0.000000, 62.949640, 4.61289831663);
static const Atom Ge64("Ge", 32, 64, 0.000000, 63.941570, 4.68558613863);
static const Atom Ge65("Ge", 32, 65, 0.000000, 64.939440, 4.75870923899);
static const Atom Ge66("Ge", 32, 66, 0.000000, 65.933850, 4.83157879336);
static const Atom Ge67("Ge", 32, 67, 0.000000, 66.932738, 4.90477649193);
static const Atom Ge68("Ge", 32, 68, 0.000000, 67.928097, 4.97771558826);
static const Atom Ge69("Ge", 32, 69, 0.000000, 68.927972, 5.05098561338);
static const Atom Ge70("Ge", 32, 70, 20.840000, 69.924250, 5.12399208259);
static const Atom Ge71("Ge", 32, 71, 0.000000, 70.924954, 5.19732282684);
static const Atom Ge72("Ge", 32, 72, 27.540000, 71.922076, 5.27039112903);
static const Atom Ge73("Ge", 32, 73, 7.730000, 72.923459, 5.34377167382);
static const Atom Ge74("Ge", 32, 74, 36.280000, 73.921178, 5.41688369436);
static const Atom Ge75("Ge", 32, 75, 0.000000, 74.922860, 5.49028608368);
static const Atom Ge76("Ge", 32, 76, 7.610000, 75.921403, 5.56345851559);
static const Atom Ge77("Ge", 32, 77, 0.000000, 76.923548, 5.63689494308);
static const Atom Ge78("Ge", 32, 78, 0.000000, 77.922853, 5.71012316243);
static const Atom Ge79("Ge", 32, 79, 0.000000, 78.925400, 5.78358898954);
static const Atom Ge80("Ge", 32, 80, 0.000000, 79.925445, 5.85687147212);
static const Atom Ge81("Ge", 32, 81, 0.000000, 80.928820, 5.93039797439);
static const Atom Ge82("Ge", 32, 82, 0.000000, 81.929550, 6.00373065322);
static const Atom Ge83("Ge", 32, 83, 0.000000, 82.934510, 6.077373303);
static const Atom Ge84("Ge", 32, 84, 0.000000, 83.937310, 6.15085766974);
static const Atom Ge85("Ge", 32, 85, 0.000000, 84.942690, 6.22453109678);
static const Atom Ge86("Ge", 32, 86, 0.000000, 85.946270, 6.29807262128);
static const Atom As("As", 33, 0, 0.000000, 74.921600, 5.73);
static const Atom As60("As", 33, 60, 0.000000, 59.993130, 4.58827140504);
static const Atom As61("As", 33, 61, 0.000000, 60.980620, 4.66379458794);
static const Atom As62("As", 33, 62, 0.000000, 61.973200, 4.73970705377);
static const Atom As63("As", 33, 63, 0.000000, 62.963690, 4.81545967652);
static const Atom As64("As", 33, 64, 0.000000, 63.957570, 4.89147156628);
static const Atom As65("As", 33, 65, 0.000000, 64.949480, 4.96733279054);
static const Atom As66("As", 33, 66, 0.000000, 65.944370, 5.04342192505);
static const Atom As67("As", 33, 67, 0.000000, 66.939190, 5.11950570596);
static const Atom As68("As", 33, 68, 0.000000, 67.936790, 5.19580210113);
static const Atom As69("As", 33, 69, 0.000000, 68.932280, 5.27193712361);
static const Atom As70("As", 33, 70, 0.000000, 69.930930, 5.34831382272);
static const Atom As71("As", 33, 71, 0.000000, 70.927115, 5.42450199876);
static const Atom As72("As", 33, 72, 0.000000, 71.926753, 5.50095426005);
static const Atom As73("As", 33, 73, 0.000000, 72.923825, 5.57721027381);
static const Atom As74("As", 33, 74, 0.000000, 73.923929, 5.65369818241);
static const Atom As75("As", 33, 75, 100.000000, 74.921596, 5.72999972467);
static const Atom As76("As", 33, 76, 0.000000, 75.922394, 5.80654066447);
static const Atom As77("As", 33, 77, 0.000000, 76.920648, 5.88288706222);
static const Atom As78("As", 33, 78, 0.000000, 77.921829, 5.95945735502);
static const Atom As79("As", 33, 79, 0.000000, 78.920948, 6.03586992323);
static const Atom As80("As", 33, 80, 0.000000, 79.922578, 6.11247453258);
static const Atom As81("As", 33, 81, 0.000000, 80.922133, 6.18892044604);
static const Atom As82("As", 33, 82, 0.000000, 81.924500, 6.26558142111);
static const Atom As83("As", 33, 83, 0.000000, 82.924980, 6.34209807852);
static const Atom As84("As", 33, 84, 0.000000, 83.929060, 6.41889006375);
static const Atom As85("As", 33, 85, 0.000000, 84.931810, 6.49558033064);
static const Atom As86("As", 33, 86, 0.000000, 85.936230, 6.57239831904);
static const Atom As87("As", 33, 87, 0.000000, 86.939580, 6.6491344739);
static const Atom As88("As", 33, 88, 0.000000, 87.944560, 6.72599529108);
static const Atom As89("As", 33, 89, 0.000000, 88.949230, 6.80283239947);
static const Atom Se("Se", 34, 0, 0.000000, 78.960000, 4.79);
static const Atom Se65("Se", 34, 65, 0.000000, 64.964660, 3.94099191236);
static const Atom Se66("Se", 34, 66, 0.000000, 65.955210, 4.00108226824);
static const Atom Se67("Se", 34, 67, 0.000000, 66.950090, 4.06143529762);
static const Atom Se68("Se", 34, 68, 0.000000, 67.941870, 4.12160026976);
static const Atom Se69("Se", 34, 69, 0.000000, 68.939560, 4.18212376393);
static const Atom Se70("Se", 34, 70, 0.000000, 69.933500, 4.2424197695);
static const Atom Se71("Se", 34, 71, 0.000000, 70.932270, 4.3030087804);
static const Atom Se72("Se", 34, 72, 0.000000, 71.927112, 4.36335950456);
static const Atom Se73("Se", 34, 73, 0.000000, 72.926767, 4.42400220276);
static const Atom Se74("Se", 34, 74, 0.890000, 73.922477, 4.48440555869);
static const Atom Se75("Se", 34, 75, 0.000000, 74.922524, 4.54507203703);
static const Atom Se76("Se", 34, 76, 9.370000, 75.919214, 4.60553489791);
static const Atom Se77("Se", 34, 77, 7.630000, 76.919915, 4.66624101993);
static const Atom Se78("Se", 34, 78, 23.770000, 77.917310, 4.72674661227);
static const Atom Se79("Se", 34, 79, 0.000000, 78.918500, 4.78748244734);
static const Atom Se80("Se", 34, 80, 49.610000, 79.916522, 4.84802608184);
static const Atom Se81("Se", 34, 81, 0.000000, 80.917993, 4.90877895125);
static const Atom Se82("Se", 34, 82, 8.730000, 81.916700, 4.9693641464);
static const Atom Se83("Se", 34, 83, 0.000000, 82.919119, 5.03017451887);
static const Atom Se84("Se", 34, 84, 0.000000, 83.918465, 5.09079847201);
static const Atom Se85("Se", 34, 85, 0.000000, 84.922240, 5.15169110436);
static const Atom Se86("Se", 34, 86, 0.000000, 85.924271, 5.21247793934);
static const Atom Se87("Se", 34, 87, 0.000000, 86.928520, 5.27339932624);
static const Atom Se88("Se", 34, 88, 0.000000, 87.931420, 5.33423887791);
static const Atom Se89("Se", 34, 89, 0.000000, 88.936020, 5.39518155775);
static const Atom Se90("Se", 34, 90, 0.000000, 89.939420, 5.45605144124);
static const Atom Se91("Se", 34, 91, 0.000000, 90.945370, 5.51707601697);
static const Atom Se92("Se", 34, 92, 0.000000, 91.949330, 5.57797987209);
static const Atom Br("Br", 35, 0, 0.000000, 79.904000, 3.12);
static const Atom Br67("Br", 35, 67, 0.000000, 66.964790, 2.61476452743);
static const Atom Br68("Br", 35, 68, 0.000000, 67.958250, 2.65355601722);
static const Atom Br69("Br", 35, 69, 0.000000, 68.950180, 2.69228776532);
static const Atom Br70("Br", 35, 70, 0.000000, 69.944620, 2.73111752103);
static const Atom Br71("Br", 35, 71, 0.000000, 70.939250, 2.76995469563);
static const Atom Br72("Br", 35, 72, 0.000000, 71.936500, 2.80889417301);
static const Atom Br73("Br", 35, 73, 0.000000, 72.931790, 2.84775711854);
static const Atom Br74("Br", 35, 74, 0.000000, 73.929891, 2.88672982479);
static const Atom Br75("Br", 35, 75, 0.000000, 74.925776, 2.9256160032);
static const Atom Br76("Br", 35, 76, 0.000000, 75.924542, 2.96461467561);
static const Atom Br77("Br", 35, 77, 0.000000, 76.921380, 3.00353806568);
static const Atom Br78("Br", 35, 78, 0.000000, 77.921146, 3.04257578494);
static const Atom Br79("Br", 35, 79, 50.690000, 78.918338, 3.08151298198);
static const Atom Br80("Br", 35, 80, 0.000000, 79.918530, 3.12056735082);
static const Atom Br81("Br", 35, 81, 49.310000, 80.916291, 3.15952678114);
static const Atom Br82("Br", 35, 82, 0.000000, 81.916805, 3.19859370745);
static const Atom Br83("Br", 35, 83, 0.000000, 82.915180, 3.23757711254);
static const Atom Br84("Br", 35, 84, 0.000000, 83.916504, 3.2766756668);
static const Atom Br85("Br", 35, 85, 0.000000, 84.915608, 3.31568753704);
static const Atom Br86("Br", 35, 86, 0.000000, 85.918797, 3.3548589137);
static const Atom Br87("Br", 35, 87, 0.000000, 86.920711, 3.39398050561);
static const Atom Br88("Br", 35, 88, 0.000000, 87.924070, 3.43315852022);
static const Atom Br89("Br", 35, 89, 0.000000, 88.926390, 3.47229596516);
static const Atom Br90("Br", 35, 90, 0.000000, 89.930630, 3.51150838006);
static const Atom Br91("Br", 35, 91, 0.000000, 90.933970, 3.55068565278);
static const Atom Br92("Br", 35, 92, 0.000000, 91.939260, 3.58993906688);
static const Atom Br93("Br", 35, 93, 0.000000, 92.943100, 3.62913586304);
static const Atom Br94("Br", 35, 94, 0.000000, 93.948680, 3.66840060072);
static const Atom Kr("Kr", 36, 0, 0.000000, 83.798000, 2.16);
static const Atom Kr69("Kr", 36, 69, 0.000000, 68.965320, 1.7776688131);
static const Atom Kr70("Kr", 36, 70, 0.000000, 69.956010, 1.80320510752);
static const Atom Kr71("Kr", 36, 71, 0.000000, 70.950510, 1.82883960954);
static const Atom Kr72("Kr", 36, 72, 0.000000, 71.941910, 1.85439420511);
static const Atom Kr73("Kr", 36, 73, 0.000000, 72.938930, 1.88009366333);
static const Atom Kr74("Kr", 36, 74, 0.000000, 73.933260, 1.90572378338);
static const Atom Kr75("Kr", 36, 75, 0.000000, 74.931034, 1.93144267691);
static const Atom Kr76("Kr", 36, 76, 0.000000, 75.925948, 1.95708785031);
static const Atom Kr77("Kr", 36, 77, 0.000000, 76.924668, 1.98283112819);
static const Atom Kr78("Kr", 36, 78, 0.350000, 77.920386, 2.0084970257);
static const Atom Kr79("Kr", 36, 79, 0.000000, 78.920083, 2.034265487);
static const Atom Kr80("Kr", 36, 80, 2.280000, 79.916378, 2.05994625743);
static const Atom Kr81("Kr", 36, 81, 0.000000, 80.916592, 2.08572804506);
static const Atom Kr82("Kr", 36, 82, 11.580000, 81.913485, 2.11142421938);
static const Atom Kr83("Kr", 36, 83, 11.490000, 82.914136, 2.13721728156);
static const Atom Kr84("Kr", 36, 84, 57.000000, 83.911507, 2.16292578725);
static const Atom Kr85("Kr", 36, 85, 0.000000, 84.912527, 2.18872835056);
static const Atom Kr86("Kr", 36, 86, 17.300000, 85.910610, 2.21445521669);
static const Atom Kr87("Kr", 36, 87, 0.000000, 86.913354, 2.24030221829);
static const Atom Kr88("Kr", 36, 88, 0.000000, 87.914447, 2.26610665553);
static const Atom Kr89("Kr", 36, 89, 0.000000, 88.917630, 2.29196497291);
static const Atom Kr90("Kr", 36, 90, 0.000000, 89.919524, 2.31779006468);
static const Atom Kr91("Kr", 36, 91, 0.000000, 90.923440, 2.34366727607);
static const Atom Kr92("Kr", 36, 92, 0.000000, 91.926153, 2.3695134786);
static const Atom Kr93("Kr", 36, 93, 0.000000, 92.931270, 2.39542164729);
static const Atom Kr94("Kr", 36, 94, 0.000000, 93.934360, 2.42127756748);
static const Atom Kr95("Kr", 36, 95, 0.000000, 94.939840, 2.44719509296);
static const Atom Kr96("Kr", 36, 96, 0.000000, 95.943070, 2.47305462183);
static const Atom Kr97("Kr", 36, 97, 0.000000, 96.948560, 2.49897240507);
static const Atom Rb("Rb", 37, 0, 0.000000, 85.467800, 1.532);
static const Atom Rb71("Rb", 37, 71, 0.000000, 70.965320, 1.27204479629);
static const Atom Rb72("Rb", 37, 72, 0.000000, 71.959080, 1.28985782435);
static const Atom Rb73("Rb", 37, 73, 0.000000, 72.950370, 1.30762657796);
static const Atom Rb74("Rb", 37, 74, 0.000000, 73.944470, 1.32544570049);
static const Atom Rb75("Rb", 37, 75, 0.000000, 74.938569, 1.34326480508);
static const Atom Rb76("Rb", 37, 76, 0.000000, 75.935071, 1.36112698317);
static const Atom Rb77("Rb", 37, 77, 0.000000, 76.930407, 1.37896826084);
static const Atom Rb78("Rb", 37, 78, 0.000000, 77.928141, 1.39685252238);
static const Atom Rb79("Rb", 37, 79, 0.000000, 78.923997, 1.41470312099);
static const Atom Rb80("Rb", 37, 80, 0.000000, 79.922519, 1.43260150733);
static const Atom Rb81("Rb", 37, 81, 0.000000, 80.918994, 1.45046320144);
static const Atom Rb82("Rb", 37, 82, 0.000000, 81.918208, 1.4683739918);
static const Atom Rb83("Rb", 37, 83, 0.000000, 82.915112, 1.48624337568);
static const Atom Rb84("Rb", 37, 84, 0.000000, 83.914385, 1.5041552236);
static const Atom Rb85("Rb", 37, 85, 72.170000, 84.911789, 1.52203357531);
static const Atom Rb86("Rb", 37, 86, 0.000000, 85.911167, 1.53994730176);
static const Atom Rb87("Rb", 37, 87, 27.830000, 86.909183, 1.55783662528);
static const Atom Rb88("Rb", 37, 88, 0.000000, 87.911319, 1.57579978317);
static const Atom Rb89("Rb", 37, 89, 0.000000, 88.912280, 1.59374188829);
static const Atom Rb90("Rb", 37, 90, 0.000000, 89.914809, 1.61171209962);
static const Atom Rb91("Rb", 37, 91, 0.000000, 90.916534, 1.62966789935);
static const Atom Rb92("Rb", 37, 92, 0.000000, 91.919725, 1.64764997695);
static const Atom Rb93("Rb", 37, 93, 0.000000, 92.922033, 1.66561622688);
static const Atom Rb94("Rb", 37, 94, 0.000000, 93.926407, 1.68361950962);
static const Atom Rb95("Rb", 37, 95, 0.000000, 94.929319, 1.70159658618);
static const Atom Rb96("Rb", 37, 96, 0.000000, 95.934284, 1.71961046251);
static const Atom Rb97("Rb", 37, 97, 0.000000, 96.937340, 1.73759012026);
static const Atom Rb98("Rb", 37, 98, 0.000000, 97.941700, 1.75559315204);
static const Atom Rb99("Rb", 37, 99, 0.000000, 98.945420, 1.7735847119);
static const Atom Rb100("Rb", 37, 100, 0.000000, 99.949870, 1.79158935693);
static const Atom Rb101("Rb", 37, 101, 0.000000, 100.953200, 1.80957392609);
static const Atom Rb102("Rb", 37, 102, 0.000000, 101.959210, 1.82760653392);
static const Atom Sr("Sr", 38, 0, 0.000000, 87.620000, 2.54);
static const Atom Sr73("Sr", 38, 73, 0.000000, 72.965970, 2.11519703036);
static const Atom Sr74("Sr", 38, 74, 0.000000, 73.956310, 2.14390581374);
static const Atom Sr75("Sr", 38, 75, 0.000000, 74.949920, 2.17270939055);
static const Atom Sr76("Sr", 38, 76, 0.000000, 75.941610, 2.20145730883);
static const Atom Sr77("Sr", 38, 77, 0.000000, 76.937760, 2.23033451723);
static const Atom Sr78("Sr", 38, 78, 0.000000, 77.932179, 2.25916154599);
static const Atom Sr79("Sr", 38, 79, 0.000000, 78.929707, 2.28807870098);
static const Atom Sr80("Sr", 38, 80, 0.000000, 79.924525, 2.31691729628);
static const Atom Sr81("Sr", 38, 81, 0.000000, 80.923213, 2.34586807829);
static const Atom Sr82("Sr", 38, 82, 0.000000, 81.918401, 2.37471739945);
static const Atom Sr83("Sr", 38, 83, 0.000000, 82.917555, 2.40368169025);
static const Atom Sr84("Sr", 38, 84, 0.560000, 83.913425, 2.43255078178);
static const Atom Sr85("Sr", 38, 85, 0.000000, 84.912933, 2.46152533463);
static const Atom Sr86("Sr", 38, 86, 9.860000, 85.909262, 2.49040774362);
static const Atom Sr87("Sr", 38, 87, 7.000000, 86.908879, 2.51938545334);
static const Atom Sr88("Sr", 38, 88, 82.580000, 87.905614, 2.5482796202);
static const Atom Sr89("Sr", 38, 89, 0.000000, 88.907453, 2.57732173438);
static const Atom Sr90("Sr", 38, 90, 0.000000, 89.907738, 2.60631880283);
static const Atom Sr91("Sr", 38, 91, 0.000000, 90.910210, 2.63537929012);
static const Atom Sr92("Sr", 38, 92, 0.000000, 91.911030, 2.66439187628);
static const Atom Sr93("Sr", 38, 93, 0.000000, 92.914022, 2.69346742616);
static const Atom Sr94("Sr", 38, 94, 0.000000, 93.915360, 2.72249502853);
static const Atom Sr95("Sr", 38, 95, 0.000000, 94.919358, 2.75159974115);
static const Atom Sr96("Sr", 38, 96, 0.000000, 95.921680, 2.78065586852);
static const Atom Sr97("Sr", 38, 97, 0.000000, 96.926149, 2.80977423488);
static const Atom Sr98("Sr", 38, 98, 0.000000, 97.928471, 2.83883036225);
static const Atom Sr99("Sr", 38, 99, 0.000000, 98.933320, 2.86795974435);
static const Atom Sr100("Sr", 38, 100, 0.000000, 99.935350, 2.89700740698);
static const Atom Sr101("Sr", 38, 101, 0.000000, 100.940520, 2.9261460945);
static const Atom Sr102("Sr", 38, 102, 0.000000, 101.943020, 2.95520738188);
static const Atom Sr103("Sr", 38, 103, 0.000000, 102.948950, 2.98436810089);
static const Atom Sr104("Sr", 38, 104, 0.000000, 103.952330, 3.01345489843);
static const Atom Y("Y", 39, 0, 0.000000, 88.905850, 4.469);
static const Atom Y77("Y", 39, 77, 0.000000, 76.949620, 3.86800026972);
static const Atom Y78("Y", 39, 78, 0.000000, 77.943500, 3.91795929627);
static const Atom Y79("Y", 39, 79, 0.000000, 78.937350, 3.96791681481);
static const Atom Y80("Y", 39, 80, 0.000000, 79.934340, 4.01803217066);
static const Atom Y81("Y", 39, 81, 0.000000, 80.929130, 4.06803693986);
static const Atom Y82("Y", 39, 82, 0.000000, 81.926790, 4.11818597438);
static const Atom Y83("Y", 39, 83, 0.000000, 82.922350, 4.16822944891);
static const Atom Y84("Y", 39, 84, 0.000000, 83.920390, 4.21839758475);
static const Atom Y85("Y", 39, 85, 0.000000, 84.916427, 4.26846503647);
static const Atom Y86("Y", 39, 86, 0.000000, 85.914888, 4.31865433458);
static const Atom Y87("Y", 39, 87, 0.000000, 86.910878, 4.36871941372);
static const Atom Y88("Y", 39, 88, 0.000000, 87.909503, 4.41891698572);
static const Atom Y89("Y", 39, 89, 100.000000, 88.905848, 4.46899989444);
static const Atom Y90("Y", 39, 90, 0.000000, 89.907151, 4.51933207552);
static const Atom Y91("Y", 39, 91, 0.000000, 90.907303, 4.56960635444);
static const Atom Y92("Y", 39, 92, 0.000000, 91.908947, 4.61995565132);
static const Atom Y93("Y", 39, 93, 0.000000, 92.909582, 4.67025422914);
static const Atom Y94("Y", 39, 94, 0.000000, 93.911594, 4.72062202415);
static const Atom Y95("Y", 39, 95, 0.000000, 94.912824, 4.77095051064);
static const Atom Y96("Y", 39, 96, 0.000000, 95.915898, 4.82137168884);
static const Atom Y97("Y", 39, 97, 0.000000, 96.918131, 4.87175059278);
static const Atom Y98("Y", 39, 98, 0.000000, 97.922220, 4.92222279164);
static const Atom Y99("Y", 39, 99, 0.000000, 98.924635, 4.97261084411);
static const Atom Y100("Y", 39, 100, 0.000000, 99.927760, 5.02303458591);
static const Atom Y101("Y", 39, 101, 0.000000, 100.930310, 5.07342942439);
static const Atom Y102("Y", 39, 102, 0.000000, 101.933560, 5.12385944952);
static const Atom Y103("Y", 39, 103, 0.000000, 102.936940, 5.17429600932);
static const Atom Y104("Y", 39, 104, 0.000000, 103.941450, 5.22478937044);
static const Atom Y105("Y", 39, 105, 0.000000, 104.945090, 5.27523899957);
static const Atom Y106("Y", 39, 106, 0.000000, 105.950220, 5.32576352602);
static const Atom Zr("Zr", 40, 0, 0.000000, 91.224000, 6.506);
static const Atom Zr79("Zr", 40, 79, 0.000000, 78.949160, 5.63057128563);
static const Atom Zr80("Zr", 40, 80, 0.000000, 79.940550, 5.70127618061);
static const Atom Zr81("Zr", 40, 81, 0.000000, 80.936820, 5.77232911208);
static const Atom Zr82("Zr", 40, 82, 0.000000, 81.931090, 5.84323940564);
static const Atom Zr83("Zr", 40, 83, 0.000000, 82.928650, 5.91438433855);
static const Atom Zr84("Zr", 40, 84, 0.000000, 83.923250, 5.98531816737);
static const Atom Zr85("Zr", 40, 85, 0.000000, 84.921470, 6.05651017079);
static const Atom Zr86("Zr", 40, 86, 0.000000, 85.916470, 6.12747252719);
static const Atom Zr87("Zr", 40, 87, 0.000000, 86.914817, 6.19867358811);
static const Atom Zr88("Zr", 40, 88, 0.000000, 87.910226, 6.26966511396);
static const Atom Zr89("Zr", 40, 89, 0.000000, 88.908889, 6.34088871168);
static const Atom Zr90("Zr", 40, 90, 51.450000, 89.904704, 6.41190917162);
static const Atom Zr91("Zr", 40, 91, 11.220000, 90.905645, 6.48329525531);
static const Atom Zr92("Zr", 40, 92, 17.150000, 91.905040, 6.55457106563);
static const Atom Zr93("Zr", 40, 93, 0.000000, 92.906476, 6.62599239513);
static const Atom Zr94("Zr", 40, 94, 17.380000, 93.906316, 6.69729994952);
static const Atom Zr95("Zr", 40, 95, 0.000000, 94.908043, 6.76874206137);
static const Atom Zr96("Zr", 40, 96, 2.800000, 95.908276, 6.84007765123);
static const Atom Zr97("Zr", 40, 97, 0.000000, 96.910951, 6.91158738058);
static const Atom Zr98("Zr", 40, 98, 0.000000, 97.912746, 6.98303434925);
static const Atom Zr99("Zr", 40, 99, 0.000000, 98.916511, 7.05462181625);
static const Atom Zr100("Zr", 40, 100, 0.000000, 99.917760, 7.12602984478);
static const Atom Zr101("Zr", 40, 101, 0.000000, 100.921140, 7.19758985399);
static const Atom Zr102("Zr", 40, 102, 0.000000, 101.922980, 7.26904003201);
static const Atom Zr103("Zr", 40, 103, 0.000000, 102.926600, 7.34061715777);
static const Atom Zr104("Zr", 40, 104, 0.000000, 103.928780, 7.41209158423);
static const Atom Zr105("Zr", 40, 105, 0.000000, 104.933050, 7.48371506731);
static const Atom Zr106("Zr", 40, 106, 0.000000, 105.935910, 7.55523799066);
static const Atom Zr107("Zr", 40, 107, 0.000000, 106.940860, 7.62690997062);
static const Atom Zr108("Zr", 40, 108, 0.000000, 107.944280, 7.69847283259);
static const Atom Nb("Nb", 41, 0, 0.000000, 92.906380, 8.57);
static const Atom Nb81("Nb", 41, 81, 0.000000, 80.949050, 7.46701527387);
static const Atom Nb82("Nb", 41, 82, 0.000000, 81.943130, 7.55871258895);
static const Atom Nb83("Nb", 41, 83, 0.000000, 82.936700, 7.6503628599);
static const Atom Nb84("Nb", 41, 84, 0.000000, 83.933570, 7.74231753406);
static const Atom Nb85("Nb", 41, 85, 0.000000, 84.927910, 7.83403883242);
static const Atom Nb86("Nb", 41, 86, 0.000000, 85.925040, 7.92601748986);
static const Atom Nb87("Nb", 41, 87, 0.000000, 86.920360, 8.01782918676);
static const Atom Nb88("Nb", 41, 88, 0.000000, 87.917960, 8.10985119859);
static const Atom Nb89("Nb", 41, 89, 0.000000, 88.913500, 8.20168318903);
static const Atom Nb90("Nb", 41, 90, 0.000000, 89.911264, 8.29372032879);
static const Atom Nb91("Nb", 41, 91, 0.000000, 90.906991, 8.38556956874);
static const Atom Nb92("Nb", 41, 92, 0.000000, 91.907193, 8.47783161634);
static const Atom Nb93("Nb", 41, 93, 100.000000, 92.906378, 8.56999976939);
static const Atom Nb94("Nb", 41, 94, 0.000000, 93.907284, 8.66232673789);
static const Atom Nb95("Nb", 41, 95, 0.000000, 94.906835, 8.75452878117);
static const Atom Nb96("Nb", 41, 96, 0.000000, 95.908100, 8.8468888466);
static const Atom Nb97("Nb", 41, 97, 0.000000, 96.908097, 8.93913197508);
static const Atom Nb98("Nb", 41, 98, 0.000000, 97.910331, 9.03158143359);
static const Atom Nb99("Nb", 41, 99, 0.000000, 98.911618, 9.12394354683);
static const Atom Nb100("Nb", 41, 100, 0.000000, 99.914181, 9.21642336264);
static const Atom Nb101("Nb", 41, 101, 0.000000, 100.915252, 9.3087655513);
static const Atom Nb102("Nb", 41, 102, 0.000000, 101.918040, 9.40126612187);
static const Atom Nb103("Nb", 41, 103, 0.000000, 102.919140, 9.4936109856);
static const Atom Nb104("Nb", 41, 104, 0.000000, 103.922460, 9.58616062966);