Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
tsoc
openmm
Commits
14e78600
Commit
14e78600
authored
Nov 19, 2015
by
Peter Eastman
Browse files
Deleted GBVIForce
parent
b20c20fe
Changes
32
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
1 addition
and
8311 deletions
+1
-8311
platforms/reference/tests/TestReferenceGBVIForce.cpp
platforms/reference/tests/TestReferenceGBVIForce.cpp
+0
-247
serialization/include/openmm/serialization/GBVIForceProxy.h
serialization/include/openmm/serialization/GBVIForceProxy.h
+0
-53
serialization/src/GBVIForceProxy.cpp
serialization/src/GBVIForceProxy.cpp
+0
-103
serialization/src/SerializationProxyRegistration.cpp
serialization/src/SerializationProxyRegistration.cpp
+0
-3
serialization/tests/TestSerializeGBVIForce.cpp
serialization/tests/TestSerializeGBVIForce.cpp
+0
-108
wrappers/python/simtk/openmm/app/data/amber03_gbvi.xml
wrappers/python/simtk/openmm/app/data/amber03_gbvi.xml
+0
-1954
wrappers/python/simtk/openmm/app/data/amber10_gbvi.xml
wrappers/python/simtk/openmm/app/data/amber10_gbvi.xml
+0
-1829
wrappers/python/simtk/openmm/app/data/amber96_gbvi.xml
wrappers/python/simtk/openmm/app/data/amber96_gbvi.xml
+0
-1958
wrappers/python/simtk/openmm/app/data/amber99_gbvi.xml
wrappers/python/simtk/openmm/app/data/amber99_gbvi.xml
+0
-1958
wrappers/python/simtk/openmm/app/forcefield.py
wrappers/python/simtk/openmm/app/forcefield.py
+0
-86
wrappers/python/simtk/openmm/app/internal/amber_file_parser.py
...ers/python/simtk/openmm/app/internal/amber_file_parser.py
+1
-3
wrappers/python/src/swig_doxygen/swigInputConfig.py
wrappers/python/src/swig_doxygen/swigInputConfig.py
+0
-9
No files found.
platforms/reference/tests/TestReferenceGBVIForce.cpp
deleted
100644 → 0
View file @
b20c20fe
/* -------------------------------------------------------------------------- *
* OpenMM *
* -------------------------------------------------------------------------- *
* This is part of the OpenMM molecular simulation toolkit originating from *
* Simbios, the NIH National Center for Physics-Based Simulation of *
* Biological Structures at Stanford, funded under the NIH Roadmap for *
* Medical Research, grant U54 GM072970. See https://simtk.org. *
* *
* Portions copyright (c) 2008-2009 Stanford University and the Authors. *
* Authors: Peter Eastman *
* Contributors: *
* *
* Permission is hereby granted, free of charge, to any person obtaining a *
* copy of this software and associated documentation files (the "Software"), *
* to deal in the Software without restriction, including without limitation *
* the rights to use, copy, modify, merge, publish, distribute, sublicense, *
* and/or sell copies of the Software, and to permit persons to whom the *
* Software is furnished to do so, subject to the following conditions: *
* *
* The above copyright notice and this permission notice shall be included in *
* all copies or substantial portions of the Software. *
* *
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR *
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, *
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL *
* THE AUTHORS, CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, *
* DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR *
* OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE *
* USE OR OTHER DEALINGS IN THE SOFTWARE. *
* -------------------------------------------------------------------------- */
/**
* This tests the reference implementation of GBVIForce.
*/
#include "openmm/internal/AssertionUtilities.h"
#include "openmm/Context.h"
#include "ReferencePlatform.h"
#include "openmm/HarmonicBondForce.h"
#include "openmm/GBVIForce.h"
#include "openmm/GBSAOBCForce.h"
#include "openmm/System.h"
#include "openmm/LangevinIntegrator.h"
#include "openmm/NonbondedForce.h"
#include "SimTKOpenMMRealType.h"
#include "sfmt/SFMT.h"
#include <iostream>
#include <vector>
using
namespace
OpenMM
;
using
namespace
std
;
ReferencePlatform
platform
;
const
double
TOL
=
1e-5
;
void
testSingleParticle
()
{
System
system
;
system
.
addParticle
(
2.0
);
LangevinIntegrator
integrator
(
0
,
0.1
,
0.01
);
GBVIForce
*
forceField
=
new
GBVIForce
();
double
charge
=
-
1.0
;
double
radius
=
0.15
;
double
gamma
=
1.0
;
forceField
->
addParticle
(
charge
,
radius
,
gamma
);
system
.
addForce
(
forceField
);
ASSERT
(
!
forceField
->
usesPeriodicBoundaryConditions
());
ASSERT
(
!
system
.
usesPeriodicBoundaryConditions
());
Context
context
(
system
,
integrator
,
platform
);
vector
<
Vec3
>
positions
(
1
);
positions
[
0
]
=
Vec3
(
0
,
0
,
0
);
context
.
setPositions
(
positions
);
State
state
=
context
.
getState
(
State
::
Energy
);
double
bornRadius
=
radius
;
double
eps0
=
EPSILON0
;
double
tau
=
(
1.0
/
forceField
->
getSoluteDielectric
()
-
1.0
/
forceField
->
getSolventDielectric
());
double
bornEnergy
=
(
-
charge
*
charge
/
(
8
*
PI_M
*
eps0
))
*
tau
/
bornRadius
;
double
nonpolarEnergy
=
-
gamma
*
tau
*
std
::
pow
(
radius
/
bornRadius
,
3.0
);
double
expectedE
=
(
bornEnergy
+
nonpolarEnergy
);
double
obtainedE
=
state
.
getPotentialEnergy
();
double
diff
=
fabs
((
obtainedE
-
expectedE
)
/
expectedE
);
ASSERT_EQUAL_TOL
((
bornEnergy
+
nonpolarEnergy
),
state
.
getPotentialEnergy
(),
0.01
);
}
void
testEnergyEthane
(
int
applyBornRadiiScaling
)
{
const
int
numParticles
=
8
;
System
system
;
LangevinIntegrator
integrator
(
0
,
0.1
,
0.01
);
// harmonic bond
double
C_HBondDistance
=
0.1097
;
double
C_CBondDistance
=
0.1504
;
HarmonicBondForce
*
bonds
=
new
HarmonicBondForce
();
bonds
->
addBond
(
0
,
1
,
C_HBondDistance
,
0.0
);
bonds
->
addBond
(
2
,
1
,
C_HBondDistance
,
0.0
);
bonds
->
addBond
(
3
,
1
,
C_HBondDistance
,
0.0
);
bonds
->
addBond
(
1
,
4
,
C_CBondDistance
,
0.0
);
bonds
->
addBond
(
5
,
4
,
C_HBondDistance
,
0.0
);
bonds
->
addBond
(
6
,
4
,
C_HBondDistance
,
0.0
);
bonds
->
addBond
(
7
,
4
,
C_HBondDistance
,
0.0
);
system
.
addForce
(
bonds
);
double
C_radius
,
C_gamma
,
C_charge
,
H_radius
,
H_gamma
,
H_charge
;
int
AM1_BCC
=
1
;
H_charge
=
-
0.053
;
C_charge
=
-
3.0
*
H_charge
;
if
(
AM1_BCC
)
{
C_radius
=
0.180
;
C_gamma
=
-
0.2863
;
H_radius
=
0.125
;
H_gamma
=
0.2437
;
}
else
{
C_radius
=
0.215
;
C_gamma
=
-
1.1087
;
H_radius
=
0.150
;
H_gamma
=
0.1237
;
}
NonbondedForce
*
nonbonded
=
new
NonbondedForce
();
nonbonded
->
setNonbondedMethod
(
NonbondedForce
::
NoCutoff
);
GBVIForce
*
forceField
=
new
GBVIForce
();
if
(
applyBornRadiiScaling
)
{
forceField
->
setBornRadiusScalingMethod
(
GBVIForce
::
QuinticSpline
);
}
else
{
forceField
->
setBornRadiusScalingMethod
(
GBVIForce
::
NoScaling
);
}
for
(
int
i
=
0
;
i
<
numParticles
;
i
++
)
{
system
.
addParticle
(
1.0
);
forceField
->
addParticle
(
H_charge
,
H_radius
,
H_gamma
);
nonbonded
->
addParticle
(
H_charge
,
H_radius
,
0.0
);
}
forceField
->
setParticleParameters
(
1
,
C_charge
,
C_radius
,
C_gamma
);
forceField
->
setParticleParameters
(
4
,
C_charge
,
C_radius
,
C_gamma
);
nonbonded
->
setParticleParameters
(
1
,
C_charge
,
C_radius
,
0.0
);
nonbonded
->
setParticleParameters
(
4
,
C_charge
,
C_radius
,
0.0
);
forceField
->
addBond
(
0
,
1
,
C_HBondDistance
);
forceField
->
addBond
(
2
,
1
,
C_HBondDistance
);
forceField
->
addBond
(
3
,
1
,
C_HBondDistance
);
forceField
->
addBond
(
1
,
4
,
C_CBondDistance
);
forceField
->
addBond
(
5
,
4
,
C_HBondDistance
);
forceField
->
addBond
(
6
,
4
,
C_HBondDistance
);
forceField
->
addBond
(
7
,
4
,
C_HBondDistance
);
std
::
vector
<
pair
<
int
,
int
>
>
bondExceptions
;
std
::
vector
<
double
>
bondDistances
;
bondExceptions
.
push_back
(
pair
<
int
,
int
>
(
0
,
1
));
bondDistances
.
push_back
(
C_HBondDistance
);
bondExceptions
.
push_back
(
pair
<
int
,
int
>
(
2
,
1
));
bondDistances
.
push_back
(
C_HBondDistance
);
bondExceptions
.
push_back
(
pair
<
int
,
int
>
(
3
,
1
));
bondDistances
.
push_back
(
C_HBondDistance
);
bondExceptions
.
push_back
(
pair
<
int
,
int
>
(
1
,
4
));
bondDistances
.
push_back
(
C_CBondDistance
);
bondExceptions
.
push_back
(
pair
<
int
,
int
>
(
5
,
4
));
bondDistances
.
push_back
(
C_HBondDistance
);
bondExceptions
.
push_back
(
pair
<
int
,
int
>
(
6
,
4
));
bondDistances
.
push_back
(
C_HBondDistance
);
bondExceptions
.
push_back
(
pair
<
int
,
int
>
(
7
,
4
));
bondDistances
.
push_back
(
C_HBondDistance
);
nonbonded
->
createExceptionsFromBonds
(
bondExceptions
,
0.0
,
0.0
);
system
.
addForce
(
forceField
);
system
.
addForce
(
nonbonded
);
Context
context
(
system
,
integrator
,
platform
);
vector
<
Vec3
>
positions
(
numParticles
);
positions
[
0
]
=
Vec3
(
0.5480
,
1.7661
,
0.0000
);
positions
[
1
]
=
Vec3
(
0.7286
,
0.8978
,
0.6468
);
positions
[
2
]
=
Vec3
(
0.4974
,
0.0000
,
0.0588
);
positions
[
3
]
=
Vec3
(
0.0000
,
0.9459
,
1.4666
);
positions
[
4
]
=
Vec3
(
2.1421
,
0.8746
,
1.1615
);
positions
[
5
]
=
Vec3
(
2.3239
,
0.0050
,
1.8065
);
positions
[
6
]
=
Vec3
(
2.8705
,
0.8295
,
0.3416
);
positions
[
7
]
=
Vec3
(
2.3722
,
1.7711
,
1.7518
);
context
.
setPositions
(
positions
);
State
state
=
context
.
getState
(
State
::
Forces
|
State
::
Energy
);
// Take a small step in the direction of the energy gradient.
double
norm
=
0.0
;
double
forceSum
[
3
]
=
{
0.0
,
0.0
,
0.0
};
for
(
int
i
=
0
;
i
<
numParticles
;
++
i
)
{
Vec3
f
=
state
.
getForces
()[
i
];
norm
+=
f
[
0
]
*
f
[
0
]
+
f
[
1
]
*
f
[
1
]
+
f
[
2
]
*
f
[
2
];
forceSum
[
0
]
+=
f
[
0
];
forceSum
[
1
]
+=
f
[
1
];
forceSum
[
2
]
+=
f
[
2
];
}
norm
=
std
::
sqrt
(
norm
);
const
double
delta
=
1e-4
;
double
step
=
delta
/
norm
;
for
(
int
i
=
0
;
i
<
numParticles
;
++
i
)
{
Vec3
p
=
positions
[
i
];
Vec3
f
=
state
.
getForces
()[
i
];
positions
[
i
]
=
Vec3
(
p
[
0
]
-
f
[
0
]
*
step
,
p
[
1
]
-
f
[
1
]
*
step
,
p
[
2
]
-
f
[
2
]
*
step
);
}
context
.
setPositions
(
positions
);
State
state2
=
context
.
getState
(
State
::
Energy
);
// See whether the potential energy changed by the expected amount.
ASSERT_EQUAL_TOL
(
norm
,
(
state2
.
getPotentialEnergy
()
-
state
.
getPotentialEnergy
())
/
delta
,
0.01
)
}
int
main
()
{
try
{
testSingleParticle
();
testEnergyEthane
(
0
);
testEnergyEthane
(
1
);
}
catch
(
const
exception
&
e
)
{
cout
<<
"exception: "
<<
e
.
what
()
<<
endl
;
return
1
;
}
cout
<<
"Done"
<<
endl
;
return
0
;
}
serialization/include/openmm/serialization/GBVIForceProxy.h
deleted
100644 → 0
View file @
b20c20fe
#ifndef OPENMM_GBVIFORCE_PROXY_H_
#define OPENMM_GBVIFORCE_PROXY_H_
/* -------------------------------------------------------------------------- *
* OpenMM *
* -------------------------------------------------------------------------- *
* This is part of the OpenMM molecular simulation toolkit originating from *
* Simbios, the NIH National Center for Physics-Based Simulation of *
* Biological Structures at Stanford, funded under the NIH Roadmap for *
* Medical Research, grant U54 GM072970. See https://simtk.org. *
* *
* Portions copyright (c) 2010 Stanford University and the Authors. *
* Authors: Peter Eastman *
* Contributors: *
* *
* Permission is hereby granted, free of charge, to any person obtaining a *
* copy of this software and associated documentation files (the "Software"), *
* to deal in the Software without restriction, including without limitation *
* the rights to use, copy, modify, merge, publish, distribute, sublicense, *
* and/or sell copies of the Software, and to permit persons to whom the *
* Software is furnished to do so, subject to the following conditions: *
* *
* The above copyright notice and this permission notice shall be included in *
* all copies or substantial portions of the Software. *
* *
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR *
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, *
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL *
* THE AUTHORS, CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, *
* DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR *
* OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE *
* USE OR OTHER DEALINGS IN THE SOFTWARE. *
* -------------------------------------------------------------------------- */
#include "openmm/internal/windowsExport.h"
#include "openmm/serialization/SerializationProxy.h"
namespace
OpenMM
{
/**
* This is a proxy for serializing GBVIForce objects.
*/
class
OPENMM_EXPORT
GBVIForceProxy
:
public
SerializationProxy
{
public:
GBVIForceProxy
();
void
serialize
(
const
void
*
object
,
SerializationNode
&
node
)
const
;
void
*
deserialize
(
const
SerializationNode
&
node
)
const
;
};
}
// namespace OpenMM
#endif
/*OPENMM_GBVIFORCE_PROXY_H_*/
serialization/src/GBVIForceProxy.cpp
deleted
100644 → 0
View file @
b20c20fe
/* -------------------------------------------------------------------------- *
* OpenMM *
* -------------------------------------------------------------------------- *
* This is part of the OpenMM molecular simulation toolkit originating from *
* Simbios, the NIH National Center for Physics-Based Simulation of *
* Biological Structures at Stanford, funded under the NIH Roadmap for *
* Medical Research, grant U54 GM072970. See https://simtk.org. *
* *
* Portions copyright (c) 2010-2014 Stanford University and the Authors. *
* Authors: Peter Eastman *
* Contributors: *
* *
* Permission is hereby granted, free of charge, to any person obtaining a *
* copy of this software and associated documentation files (the "Software"), *
* to deal in the Software without restriction, including without limitation *
* the rights to use, copy, modify, merge, publish, distribute, sublicense, *
* and/or sell copies of the Software, and to permit persons to whom the *
* Software is furnished to do so, subject to the following conditions: *
* *
* The above copyright notice and this permission notice shall be included in *
* all copies or substantial portions of the Software. *
* *
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR *
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, *
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL *
* THE AUTHORS, CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, *
* DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR *
* OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE *
* USE OR OTHER DEALINGS IN THE SOFTWARE. *
* -------------------------------------------------------------------------- */
#include "openmm/serialization/GBVIForceProxy.h"
#include "openmm/serialization/SerializationNode.h"
#include "openmm/Force.h"
#include "openmm/GBVIForce.h"
#include <sstream>
using
namespace
OpenMM
;
using
namespace
std
;
GBVIForceProxy
::
GBVIForceProxy
()
:
SerializationProxy
(
"GBVIForce"
)
{
}
void
GBVIForceProxy
::
serialize
(
const
void
*
object
,
SerializationNode
&
node
)
const
{
node
.
setIntProperty
(
"version"
,
2
);
const
GBVIForce
&
force
=
*
reinterpret_cast
<
const
GBVIForce
*>
(
object
);
node
.
setIntProperty
(
"forceGroup"
,
force
.
getForceGroup
());
node
.
setIntProperty
(
"method"
,
(
int
)
force
.
getNonbondedMethod
());
node
.
setIntProperty
(
"scalingMethod"
,
(
int
)
force
.
getBornRadiusScalingMethod
());
node
.
setDoubleProperty
(
"quinticLowerLimitFactor"
,
force
.
getQuinticLowerLimitFactor
());
node
.
setDoubleProperty
(
"quinticUpperBornRadiusLimit"
,
force
.
getQuinticUpperBornRadiusLimit
());
node
.
setDoubleProperty
(
"cutoff"
,
force
.
getCutoffDistance
());
node
.
setDoubleProperty
(
"soluteDielectric"
,
force
.
getSoluteDielectric
());
node
.
setDoubleProperty
(
"solventDielectric"
,
force
.
getSolventDielectric
());
SerializationNode
&
particles
=
node
.
createChildNode
(
"Particles"
);
for
(
int
i
=
0
;
i
<
force
.
getNumParticles
();
i
++
)
{
double
charge
,
radius
,
gamma
;
force
.
getParticleParameters
(
i
,
charge
,
radius
,
gamma
);
particles
.
createChildNode
(
"Particle"
).
setDoubleProperty
(
"q"
,
charge
).
setDoubleProperty
(
"r"
,
radius
).
setDoubleProperty
(
"gamma"
,
gamma
);
}
SerializationNode
&
bonds
=
node
.
createChildNode
(
"Bonds"
);
for
(
int
i
=
0
;
i
<
force
.
getNumBonds
();
i
++
)
{
int
particle1
,
particle2
;
double
distance
;
force
.
getBondParameters
(
i
,
particle1
,
particle2
,
distance
);
bonds
.
createChildNode
(
"Bond"
).
setIntProperty
(
"p1"
,
particle1
).
setIntProperty
(
"p2"
,
particle2
).
setDoubleProperty
(
"d"
,
distance
);
}
}
void
*
GBVIForceProxy
::
deserialize
(
const
SerializationNode
&
node
)
const
{
if
(
node
.
getIntProperty
(
"version"
)
!=
1
&&
node
.
getIntProperty
(
"version"
)
!=
2
)
throw
OpenMMException
(
"Unsupported version number"
);
GBVIForce
*
force
=
new
GBVIForce
();
try
{
force
->
setForceGroup
(
node
.
getIntProperty
(
"forceGroup"
,
0
));
force
->
setNonbondedMethod
((
GBVIForce
::
NonbondedMethod
)
node
.
getIntProperty
(
"method"
));
force
->
setCutoffDistance
(
node
.
getDoubleProperty
(
"cutoff"
));
force
->
setSoluteDielectric
(
node
.
getDoubleProperty
(
"soluteDielectric"
));
force
->
setSolventDielectric
(
node
.
getDoubleProperty
(
"solventDielectric"
));
if
(
node
.
getIntProperty
(
"version"
)
>=
2
){
force
->
setBornRadiusScalingMethod
(
(
GBVIForce
::
BornRadiusScalingMethod
)
node
.
getIntProperty
(
"scalingMethod"
));
force
->
setQuinticLowerLimitFactor
(
node
.
getDoubleProperty
(
"quinticLowerLimitFactor"
));
force
->
setQuinticUpperBornRadiusLimit
(
node
.
getDoubleProperty
(
"quinticUpperBornRadiusLimit"
));
}
const
SerializationNode
&
particles
=
node
.
getChildNode
(
"Particles"
);
for
(
int
i
=
0
;
i
<
(
int
)
particles
.
getChildren
().
size
();
i
++
)
{
const
SerializationNode
&
particle
=
particles
.
getChildren
()[
i
];
force
->
addParticle
(
particle
.
getDoubleProperty
(
"q"
),
particle
.
getDoubleProperty
(
"r"
),
particle
.
getDoubleProperty
(
"gamma"
));
}
const
SerializationNode
&
bonds
=
node
.
getChildNode
(
"Bonds"
);
for
(
int
i
=
0
;
i
<
(
int
)
bonds
.
getChildren
().
size
();
i
++
)
{
const
SerializationNode
&
bond
=
bonds
.
getChildren
()[
i
];
force
->
addBond
(
bond
.
getIntProperty
(
"p1"
),
bond
.
getIntProperty
(
"p2"
),
bond
.
getDoubleProperty
(
"d"
));
}
}
catch
(...)
{
delete
force
;
throw
;
}
return
force
;
}
serialization/src/SerializationProxyRegistration.cpp
View file @
14e78600
...
...
@@ -45,7 +45,6 @@
#include "openmm/CustomNonbondedForce.h"
#include "openmm/CustomTorsionForce.h"
#include "openmm/GBSAOBCForce.h"
#include "openmm/GBVIForce.h"
#include "openmm/HarmonicAngleForce.h"
#include "openmm/HarmonicBondForce.h"
#include "openmm/LangevinIntegrator.h"
...
...
@@ -78,7 +77,6 @@
#include "openmm/serialization/CustomNonbondedForceProxy.h"
#include "openmm/serialization/CustomTorsionForceProxy.h"
#include "openmm/serialization/GBSAOBCForceProxy.h"
#include "openmm/serialization/GBVIForceProxy.h"
#include "openmm/serialization/HarmonicAngleForceProxy.h"
#include "openmm/serialization/HarmonicBondForceProxy.h"
#include "openmm/serialization/LangevinIntegratorProxy.h"
...
...
@@ -132,7 +130,6 @@ extern "C" void registerSerializationProxies() {
SerializationProxy
::
registerProxy
(
typeid
(
Discrete2DFunction
),
new
Discrete2DFunctionProxy
());
SerializationProxy
::
registerProxy
(
typeid
(
Discrete3DFunction
),
new
Discrete3DFunctionProxy
());
SerializationProxy
::
registerProxy
(
typeid
(
GBSAOBCForce
),
new
GBSAOBCForceProxy
());
SerializationProxy
::
registerProxy
(
typeid
(
GBVIForce
),
new
GBVIForceProxy
());
SerializationProxy
::
registerProxy
(
typeid
(
HarmonicAngleForce
),
new
HarmonicAngleForceProxy
());
SerializationProxy
::
registerProxy
(
typeid
(
HarmonicBondForce
),
new
HarmonicBondForceProxy
());
SerializationProxy
::
registerProxy
(
typeid
(
LangevinIntegrator
),
new
LangevinIntegratorProxy
());
...
...
serialization/tests/TestSerializeGBVIForce.cpp
deleted
100644 → 0
View file @
b20c20fe
/* -------------------------------------------------------------------------- *
* OpenMM *
* -------------------------------------------------------------------------- *
* This is part of the OpenMM molecular simulation toolkit originating from *
* Simbios, the NIH National Center for Physics-Based Simulation of *
* Biological Structures at Stanford, funded under the NIH Roadmap for *
* Medical Research, grant U54 GM072970. See https://simtk.org. *
* *
* Portions copyright (c) 2010-2014 Stanford University and the Authors. *
* Authors: Peter Eastman *
* Contributors: *
* *
* Permission is hereby granted, free of charge, to any person obtaining a *
* copy of this software and associated documentation files (the "Software"), *
* to deal in the Software without restriction, including without limitation *
* the rights to use, copy, modify, merge, publish, distribute, sublicense, *
* and/or sell copies of the Software, and to permit persons to whom the *
* Software is furnished to do so, subject to the following conditions: *
* *
* The above copyright notice and this permission notice shall be included in *
* all copies or substantial portions of the Software. *
* *
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR *
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, *
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL *
* THE AUTHORS, CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, *
* DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR *
* OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE *
* USE OR OTHER DEALINGS IN THE SOFTWARE. *
* -------------------------------------------------------------------------- */
#include "openmm/internal/AssertionUtilities.h"
#include "openmm/GBVIForce.h"
#include "openmm/serialization/XmlSerializer.h"
#include <iostream>
#include <sstream>
using
namespace
OpenMM
;
using
namespace
std
;
void
testSerialization
()
{
// Create a Force.
GBVIForce
force
;
force
.
setForceGroup
(
3
);
force
.
setNonbondedMethod
(
GBVIForce
::
CutoffPeriodic
);
force
.
setBornRadiusScalingMethod
(
GBVIForce
::
QuinticSpline
);
force
.
setQuinticLowerLimitFactor
(
0.123
);
force
.
setQuinticUpperBornRadiusLimit
(
5.123
);
force
.
setCutoffDistance
(
2.0
);
force
.
setSoluteDielectric
(
5.1
);
force
.
setSolventDielectric
(
50.0
);
force
.
addParticle
(
1
,
0.1
,
0.01
);
force
.
addParticle
(
0.5
,
0.2
,
0.02
);
force
.
addParticle
(
-
0.5
,
0.3
,
0.03
);
force
.
addBond
(
0
,
1
,
2.0
);
force
.
addBond
(
3
,
5
,
1.2
);
// Serialize and then deserialize it.
stringstream
buffer
;
XmlSerializer
::
serialize
<
GBVIForce
>
(
&
force
,
"Force"
,
buffer
);
GBVIForce
*
copy
=
XmlSerializer
::
deserialize
<
GBVIForce
>
(
buffer
);
// Compare the two forces to see if they are identical.
GBVIForce
&
force2
=
*
copy
;
ASSERT_EQUAL
(
force
.
getForceGroup
(),
force2
.
getForceGroup
());
ASSERT_EQUAL
(
force
.
getNonbondedMethod
(),
force2
.
getNonbondedMethod
());
ASSERT_EQUAL
(
force
.
getCutoffDistance
(),
force2
.
getCutoffDistance
());
ASSERT_EQUAL
(
force
.
getSoluteDielectric
(),
force2
.
getSoluteDielectric
());
ASSERT_EQUAL
(
force
.
getSolventDielectric
(),
force2
.
getSolventDielectric
());
ASSERT_EQUAL
(
force
.
getNumParticles
(),
force2
.
getNumParticles
());
ASSERT_EQUAL
(
force
.
getQuinticUpperBornRadiusLimit
(),
force2
.
getQuinticUpperBornRadiusLimit
());
ASSERT_EQUAL
(
force
.
getQuinticLowerLimitFactor
(),
force2
.
getQuinticLowerLimitFactor
());
ASSERT_EQUAL
(
force
.
getBornRadiusScalingMethod
(),
force2
.
getBornRadiusScalingMethod
());
for
(
int
i
=
0
;
i
<
force
.
getNumParticles
();
i
++
)
{
double
charge1
,
radius1
,
scale1
;
double
charge2
,
radius2
,
scale2
;
force
.
getParticleParameters
(
i
,
charge1
,
radius1
,
scale1
);
force2
.
getParticleParameters
(
i
,
charge2
,
radius2
,
scale2
);
ASSERT_EQUAL
(
charge1
,
charge2
);
ASSERT_EQUAL
(
radius1
,
radius2
);
ASSERT_EQUAL
(
scale1
,
scale2
);
}
ASSERT_EQUAL
(
force
.
getNumBonds
(),
force2
.
getNumBonds
());
for
(
int
i
=
0
;
i
<
force
.
getNumBonds
();
i
++
)
{
int
a1
,
a2
,
b1
,
b2
;
double
da
,
db
;
force
.
getBondParameters
(
i
,
a1
,
a2
,
da
);
force2
.
getBondParameters
(
i
,
b1
,
b2
,
db
);
ASSERT_EQUAL
(
a1
,
b1
);
ASSERT_EQUAL
(
a2
,
b2
);
ASSERT_EQUAL
(
da
,
db
);
}
}
int
main
()
{
try
{
testSerialization
();
}
catch
(
const
exception
&
e
)
{
cout
<<
"exception: "
<<
e
.
what
()
<<
endl
;
return
1
;
}
cout
<<
"Done"
<<
endl
;
return
0
;
}
wrappers/python/simtk/openmm/app/data/amber03_gbvi.xml
deleted
100644 → 0
View file @
b20c20fe
<ForceField>
<GBVIForce
soluteDielectric=
"1.0"
>
<Atom
type=
"0"
charge=
"0.07601"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1"
charge=
"-0.190263"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"2"
charge=
"0.07601"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"3"
charge=
"0.07601"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"4"
charge=
"0.512403"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"5"
charge=
"-0.55017"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"6"
charge=
"-0.404773"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"7"
charge=
"0.294276"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"8"
charge=
"-0.027733"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"9"
charge=
"0.120802"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"10"
charge=
"-0.229951"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"11"
charge=
"0.077428"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"12"
charge=
"0.570224"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"13"
charge=
"-0.555129"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"14"
charge=
"-0.300879"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"15"
charge=
"0.233693"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"16"
charge=
"-0.131381"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"17"
charge=
"0.053266"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"18"
charge=
"0.036707"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"19"
charge=
"0.028012"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"20"
charge=
"0.012454"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"21"
charge=
"0.002964"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"22"
charge=
"0.126329"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"23"
charge=
"0.068148"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"24"
charge=
"-0.46489"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"25"
charge=
"0.326274"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"26"
charge=
"0.565543"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"27"
charge=
"-0.685774"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"28"
charge=
"0.391052"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"29"
charge=
"-0.685774"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"30"
charge=
"0.391052"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"31"
charge=
"0.730308"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"32"
charge=
"-0.578332"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"33"
charge=
"-0.392069"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"34"
charge=
"0.282413"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"35"
charge=
"-0.035317"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"36"
charge=
"0.094292"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"37"
charge=
"-0.121405"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"38"
charge=
"0.069032"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"39"
charge=
"0.67864"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"40"
charge=
"-0.55094"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"41"
charge=
"-0.587163"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"42"
charge=
"0.438035"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"43"
charge=
"0.620495"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"44"
charge=
"-0.565045"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"45"
charge=
"-0.430106"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"46"
charge=
"0.254543"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"47"
charge=
"0.044609"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"48"
charge=
"0.059601"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"49"
charge=
"-0.09365"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"50"
charge=
"0.043321"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"51"
charge=
"0.583519"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"52"
charge=
"-0.526813"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"53"
charge=
"-0.781735"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"54"
charge=
"0.355079"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"55"
charge=
"0.617141"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"56"
charge=
"-0.523909"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"57"
charge=
"-0.558201"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"58"
charge=
"0.319676"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"59"
charge=
"0.007225"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"60"
charge=
"0.082375"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"61"
charge=
"-0.047555"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"62"
charge=
"-0.014836"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"63"
charge=
"0.745168"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"64"
charge=
"-0.730385"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"65"
charge=
"-0.730385"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"66"
charge=
"0.443199"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"67"
charge=
"-0.501445"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"68"
charge=
"-0.4157"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"69"
charge=
"0.2719"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"70"
charge=
"-0.0351"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"71"
charge=
"0.0508"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"72"
charge=
"-0.2413"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"73"
charge=
"0.1122"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"74"
charge=
"-0.8844"
radius=
"0.195"
gamma=
"-4.273956"
/>
<Atom
type=
"75"
charge=
"0.5973"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"76"
charge=
"-0.5679"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"77"
charge=
"-0.396165"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"78"
charge=
"0.295187"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"79"
charge=
"-0.073501"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"80"
charge=
"0.14051"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"81"
charge=
"-0.221371"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"82"
charge=
"0.146537"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"83"
charge=
"-0.285182"
radius=
"0.195"
gamma=
"-4.273956"
/>
<Atom
type=
"84"
charge=
"0.189274"
radius=
"0.125"
gamma=
"3.6563976"
/>
<Atom
type=
"85"
charge=
"0.643035"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"86"
charge=
"-0.584861"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"87"
charge=
"-0.435921"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"88"
charge=
"0.290077"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"89"
charge=
"-0.030547"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"90"
charge=
"0.132146"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"91"
charge=
"-0.033006"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"92"
charge=
"0.078951"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"93"
charge=
"-0.132272"
radius=
"0.195"
gamma=
"-4.273956"
/>
<Atom
type=
"94"
charge=
"0.624788"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"95"
charge=
"-0.573167"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"96"
charge=
"-0.384536"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"97"
charge=
"0.263963"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"98"
charge=
"-0.060898"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"99"
charge=
"0.10962"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"100"
charge=
"-0.018753"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"101"
charge=
"0.034966"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"102"
charge=
"-0.038364"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"103"
charge=
"0.048444"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"104"
charge=
"0.638937"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"105"
charge=
"-0.559031"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"106"
charge=
"-0.588722"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"107"
charge=
"0.447661"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"108"
charge=
"0.587056"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"109"
charge=
"-0.563753"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"110"
charge=
"-0.387353"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"111"
charge=
"0.300605"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"112"
charge=
"0.03747"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"113"
charge=
"0.152255"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"114"
charge=
"-0.032112"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"115"
charge=
"0.030995"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"116"
charge=
"-0.020264"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"117"
charge=
"0.030791"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"118"
charge=
"0.667812"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"119"
charge=
"-0.628483"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"120"
charge=
"-0.883393"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"121"
charge=
"0.408312"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"122"
charge=
"0.418577"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"123"
charge=
"-0.56531"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"124"
charge=
"-0.423392"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"125"
charge=
"0.306811"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"126"
charge=
"0.031633"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"127"
charge=
"0.0651"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"128"
charge=
"0.074772"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"129"
charge=
"-0.003535"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"130"
charge=
"-0.033909"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"131"
charge=
"-0.004135"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"132"
charge=
"0.765188"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"133"
charge=
"-0.824035"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"134"
charge=
"-0.824035"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"135"
charge=
"0.469735"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"136"
charge=
"-0.592528"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"137"
charge=
"-0.374282"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"138"
charge=
"0.253981"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"139"
charge=
"-0.128844"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"140"
charge=
"0.088859"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"141"
charge=
"0.580584"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"142"
charge=
"-0.509157"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"143"
charge=
"-0.506799"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"144"
charge=
"0.351021"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"145"
charge=
"0.119066"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"146"
charge=
"0.137761"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"147"
charge=
"-0.122638"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"148"
charge=
"0.086329"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"149"
charge=
"-0.001547"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"150"
charge=
"-0.205785"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"151"
charge=
"0.318273"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"152"
charge=
"0.147273"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"153"
charge=
"0.122182"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"154"
charge=
"-0.601482"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"155"
charge=
"0.043744"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"156"
charge=
"0.110157"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"157"
charge=
"0.515947"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"158"
charge=
"-0.599831"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"159"
charge=
"-0.52812"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"160"
charge=
"0.281695"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"161"
charge=
"0.031249"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"162"
charge=
"0.085175"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"163"
charge=
"-0.152267"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"164"
charge=
"0.054608"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"165"
charge=
"0.278406"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"166"
charge=
"-0.423316"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"167"
charge=
"0.02596"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"168"
charge=
"0.126832"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"169"
charge=
"-0.097984"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"170"
charge=
"0.266865"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"171"
charge=
"-0.297563"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"172"
charge=
"0.160413"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"173"
charge=
"0.662405"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"174"
charge=
"-0.528966"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"175"
charge=
"-0.424967"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"176"
charge=
"0.285873"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"177"
charge=
"0.375022"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"178"
charge=
"-0.014621"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"179"
charge=
"-0.332123"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"180"
charge=
"0.107725"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"181"
charge=
"0.182399"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"182"
charge=
"-0.087602"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"183"
charge=
"0.305096"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"184"
charge=
"-0.013105"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"185"
charge=
"0.230635"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"186"
charge=
"-0.148766"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"187"
charge=
"0.377295"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"188"
charge=
"-0.192052"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"189"
charge=
"0.235237"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"190"
charge=
"0.566646"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"191"
charge=
"-0.560417"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"192"
charge=
"-0.451047"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"193"
charge=
"0.328831"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"194"
charge=
"-0.101874"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"195"
charge=
"0.174193"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"196"
charge=
"0.062238"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"197"
charge=
"0.061662"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"198"
charge=
"-0.129989"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"199"
charge=
"0.030227"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"200"
charge=
"0.02223"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"201"
charge=
"0.011551"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"202"
charge=
"-0.101251"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"203"
charge=
"0.023792"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"204"
charge=
"0.569383"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"205"
charge=
"-0.619535"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"206"
charge=
"-0.355153"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"207"
charge=
"0.262417"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"208"
charge=
"-0.101497"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"209"
charge=
"0.136951"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"210"
charge=
"-0.144399"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"211"
charge=
"0.052533"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"212"
charge=
"0.191982"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"213"
charge=
"0.000825"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"214"
charge=
"-0.123036"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"215"
charge=
"0.022376"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"216"
charge=
"-0.123036"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"217"
charge=
"0.022376"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"218"
charge=
"0.573471"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"219"
charge=
"-0.557847"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"220"
charge=
"-0.453388"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"221"
charge=
"0.289695"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"222"
charge=
"-0.0245"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"223"
charge=
"0.099553"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"224"
charge=
"0.035478"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"225"
charge=
"0.004797"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"226"
charge=
"-0.019962"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"227"
charge=
"-0.01561"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"228"
charge=
"0.041105"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"229"
charge=
"0.008304"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"230"
charge=
"0.188382"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"231"
charge=
"0.01681"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"232"
charge=
"-0.894254"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"233"
charge=
"0.332053"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"234"
charge=
"0.608464"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"235"
charge=
"-0.563281"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"236"
charge=
"-0.435875"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"237"
charge=
"0.251302"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"238"
charge=
"-0.038773"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"239"
charge=
"0.129478"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"240"
charge=
"-0.108273"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"241"
charge=
"0.045214"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"242"
charge=
"0.033341"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"243"
charge=
"0.010208"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"244"
charge=
"-0.047841"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"245"
charge=
"0.070715"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"246"
charge=
"-0.069974"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"247"
charge=
"0.119522"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"248"
charge=
"-0.250358"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"249"
charge=
"0.294561"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"250"
charge=
"0.725129"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"251"
charge=
"-0.563157"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"252"
charge=
"-0.394918"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"253"
charge=
"0.280537"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"254"
charge=
"-0.087681"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"255"
charge=
"0.12308"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"256"
charge=
"0.019227"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"257"
charge=
"0.04884"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"258"
charge=
"-0.208167"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"259"
charge=
"0.124228"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"260"
charge=
"-0.211958"
radius=
"0.195"
gamma=
"-4.273956"
/>
<Atom
type=
"261"
charge=
"-0.284698"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"262"
charge=
"0.128394"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"263"
charge=
"0.599684"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"264"
charge=
"-0.566424"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"265"
charge=
"-0.463"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"266"
charge=
"0.2315"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"267"
charge=
"0.2315"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"268"
charge=
"-0.423888"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"269"
charge=
"0.290111"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"270"
charge=
"-0.054293"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"271"
charge=
"0.06269"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"272"
charge=
"0.06269"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"273"
charge=
"0.06269"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"274"
charge=
"-0.37129"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"275"
charge=
"0.234053"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"276"
charge=
"-0.030057"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"277"
charge=
"0.102448"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"278"
charge=
"-0.09872"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"279"
charge=
"0.060989"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"280"
charge=
"0.021313"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"281"
charge=
"-0.083109"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"282"
charge=
"0.098466"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"283"
charge=
"-0.156974"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"284"
charge=
"0.123731"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"285"
charge=
"-0.099824"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"286"
charge=
"0.114679"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"287"
charge=
"-0.156974"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"288"
charge=
"0.123731"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"289"
charge=
"-0.083109"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"290"
charge=
"0.098466"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"291"
charge=
"0.547987"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"292"
charge=
"-0.506795"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"293"
charge=
"-0.088116"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"294"
charge=
"-0.011906"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"295"
charge=
"0.043951"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"296"
charge=
"0.013059"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"297"
charge=
"0.019574"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"298"
charge=
"-0.003351"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"299"
charge=
"0.019352"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"300"
charge=
"-0.034577"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"301"
charge=
"0.059977"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"302"
charge=
"0.33372"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"303"
charge=
"-0.434559"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"304"
charge=
"-0.54143"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"305"
charge=
"0.345415"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"306"
charge=
"0.11814"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"307"
charge=
"0.142177"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"308"
charge=
"0.146998"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"309"
charge=
"0.040081"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"310"
charge=
"-0.640312"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"311"
charge=
"0.446255"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"312"
charge=
"0.483424"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"313"
charge=
"-0.580829"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"314"
charge=
"-0.245382"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"315"
charge=
"0.255339"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"316"
charge=
"-0.271249"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"317"
charge=
"0.163757"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"318"
charge=
"0.237868"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"319"
charge=
"0.044688"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"320"
charge=
"-0.176489"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"321"
charge=
"0.060019"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"322"
charge=
"-0.601931"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"323"
charge=
"0.405484"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"324"
charge=
"0.559878"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"325"
charge=
"-0.55202"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"326"
charge=
"-0.427579"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"327"
charge=
"0.241716"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"328"
charge=
"-0.020082"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"329"
charge=
"0.106629"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"330"
charge=
"-0.098364"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"331"
charge=
"0.065424"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"332"
charge=
"-0.099797"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"333"
charge=
"-0.174053"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"334"
charge=
"0.170633"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"335"
charge=
"-0.298433"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"336"
charge=
"0.322375"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"337"
charge=
"0.141523"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"338"
charge=
"-0.210701"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"339"
charge=
"0.125512"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"340"
charge=
"-0.133022"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"341"
charge=
"0.119467"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"342"
charge=
"-0.164054"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"343"
charge=
"0.11925"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"344"
charge=
"-0.153992"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"345"
charge=
"0.123084"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"346"
charge=
"0.089641"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"347"
charge=
"0.584129"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"348"
charge=
"-0.49473"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"349"
charge=
"-0.48756"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"350"
charge=
"0.263521"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"351"
charge=
"0.009614"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"352"
charge=
"0.095501"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"353"
charge=
"-0.051853"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"354"
charge=
"0.019145"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"355"
charge=
"0.112601"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"356"
charge=
"-0.183461"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"357"
charge=
"0.132715"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"358"
charge=
"-0.181823"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"359"
charge=
"0.137303"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"360"
charge=
"0.206277"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"361"
charge=
"-0.421233"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"362"
charge=
"0.329691"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"363"
charge=
"-0.181823"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"364"
charge=
"0.137303"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"365"
charge=
"-0.183461"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"366"
charge=
"0.132715"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"367"
charge=
"0.62229"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"368"
charge=
"-0.526607"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"369"
charge=
"-0.450087"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"370"
charge=
"0.440048"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"371"
charge=
"-0.051858"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"372"
charge=
"-0.026204"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"373"
charge=
"0.395217"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"374"
charge=
"-0.115672"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"375"
charge=
"-0.090132"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"376"
charge=
"-0.008985"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"377"
charge=
"-0.090132"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"378"
charge=
"-0.008985"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"379"
charge=
"0.447359"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"380"
charge=
"-0.404629"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"381"
charge=
"-0.622202"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"382"
charge=
"0.359784"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"383"
charge=
"-0.054102"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"384"
charge=
"0.123283"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"385"
charge=
"-0.185718"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"386"
charge=
"0.069652"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"387"
charge=
"0.664014"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"388"
charge=
"-0.747007"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"389"
charge=
"-0.747007"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"390"
charge=
"-0.49534"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"391"
charge=
"0.313864"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"392"
charge=
"-0.122265"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"393"
charge=
"0.093073"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"394"
charge=
"0.01582"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"395"
charge=
"0.040376"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"396"
charge=
"0.013697"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"397"
charge=
"-0.001366"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"398"
charge=
"0.183324"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"399"
charge=
"0.048691"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"400"
charge=
"-0.468682"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"401"
charge=
"0.343094"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"402"
charge=
"0.577784"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"403"
charge=
"-0.712318"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"404"
charge=
"0.406216"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"405"
charge=
"-0.712318"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"406"
charge=
"0.406216"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"407"
charge=
"0.648763"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"408"
charge=
"-0.739382"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"409"
charge=
"-0.739382"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"410"
charge=
"-0.62653"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"411"
charge=
"0.343242"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"412"
charge=
"0.014405"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"413"
charge=
"0.085796"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"414"
charge=
"-0.029468"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"415"
charge=
"0.045738"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"416"
charge=
"0.551512"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"417"
charge=
"-0.56744"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"418"
charge=
"-0.766241"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"419"
charge=
"0.366624"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"420"
charge=
"0.607381"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"421"
charge=
"-0.718691"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"422"
charge=
"-0.718691"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"423"
charge=
"-0.649462"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"424"
charge=
"0.426853"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"425"
charge=
"-0.306286"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"426"
charge=
"0.183181"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"427"
charge=
"-0.078986"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"428"
charge=
"0.018648"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"429"
charge=
"0.84483"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"430"
charge=
"-0.813714"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"431"
charge=
"-0.813714"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"432"
charge=
"0.73235"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"433"
charge=
"-0.781175"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"434"
charge=
"-0.781175"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"435"
charge=
"-0.555037"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"436"
charge=
"0.345483"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"437"
charge=
"-0.110929"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"438"
charge=
"0.147206"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"439"
charge=
"-0.162428"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"440"
charge=
"0.131999"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"441"
charge=
"-0.290711"
radius=
"0.195"
gamma=
"-4.273956"
/>
<Atom
type=
"442"
charge=
"0.192419"
radius=
"0.125"
gamma=
"3.6563976"
/>
<Atom
type=
"443"
charge=
"0.671942"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"444"
charge=
"-0.750971"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"445"
charge=
"-0.750971"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"446"
charge=
"-0.515135"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"447"
charge=
"0.324299"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"448"
charge=
"-0.23563"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"449"
charge=
"0.164628"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"450"
charge=
"0.004813"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"451"
charge=
"0.030788"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"452"
charge=
"-0.024848"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"453"
charge=
"0.03484"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"454"
charge=
"0.662321"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"455"
charge=
"-0.588799"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"456"
charge=
"-0.88357"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"457"
charge=
"0.395334"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"458"
charge=
"0.600448"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"459"
charge=
"-0.715224"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"460"
charge=
"-0.715224"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"461"
charge=
"-0.748778"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"462"
charge=
"0.396125"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"463"
charge=
"-0.133159"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"464"
charge=
"0.10573"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"465"
charge=
"0.185749"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"466"
charge=
"-0.045957"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"467"
charge=
"-0.033125"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"468"
charge=
"-0.011832"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"469"
charge=
"0.757964"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"470"
charge=
"-0.792463"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"471"
charge=
"-0.792463"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"472"
charge=
"0.731186"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"473"
charge=
"-0.780593"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"474"
charge=
"-0.780593"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"475"
charge=
"-0.523362"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"476"
charge=
"0.349622"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"477"
charge=
"-0.316659"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"478"
charge=
"0.1602"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"479"
charge=
"0.661797"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"480"
charge=
"-0.745899"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"481"
charge=
"-0.745899"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"482"
charge=
"-0.69251"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"483"
charge=
"0.357784"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"484"
charge=
"0.113471"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"485"
charge=
"0.07049"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"486"
charge=
"-0.032237"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"487"
charge=
"0.047858"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"488"
charge=
"-0.034691"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"489"
charge=
"-0.218767"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"490"
charge=
"0.294104"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"491"
charge=
"0.152151"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"492"
charge=
"0.108726"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"493"
charge=
"-0.552887"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"494"
charge=
"0.073505"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"495"
charge=
"0.095147"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"496"
charge=
"0.622331"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"497"
charge=
"-0.726166"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"498"
charge=
"-0.726166"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"499"
charge=
"-0.678107"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"500"
charge=
"0.378617"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"501"
charge=
"-0.045762"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"502"
charge=
"0.135589"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"503"
charge=
"-0.088284"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"504"
charge=
"0.068197"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"505"
charge=
"0.197858"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"506"
charge=
"-0.476371"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"507"
charge=
"0.048815"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"508"
charge=
"0.126861"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"509"
charge=
"-0.084778"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"510"
charge=
"0.280364"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"511"
charge=
"-0.254856"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"512"
charge=
"0.153659"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"513"
charge=
"0.585209"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"514"
charge=
"-0.707605"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"515"
charge=
"-0.707605"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"516"
charge=
"-0.464193"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"517"
charge=
"0.315351"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"518"
charge=
"-0.076871"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"519"
charge=
"0.125219"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"520"
charge=
"-0.062807"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"521"
charge=
"0.092794"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"522"
charge=
"0.057843"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"523"
charge=
"-0.015072"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"524"
charge=
"0.276076"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"525"
charge=
"-0.033413"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"526"
charge=
"0.226049"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"527"
charge=
"-0.129808"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"528"
charge=
"0.369253"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"529"
charge=
"-0.163636"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"530"
charge=
"0.22042"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"531"
charge=
"0.513757"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"532"
charge=
"-0.671879"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"533"
charge=
"-0.671879"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"534"
charge=
"-0.50927"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"535"
charge=
"0.314575"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"536"
charge=
"-0.227333"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"537"
charge=
"0.143304"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"538"
charge=
"0.044365"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"539"
charge=
"0.064001"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"540"
charge=
"-0.162378"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"541"
charge=
"0.04007"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"542"
charge=
"0.058658"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"543"
charge=
"0.008847"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"544"
charge=
"-0.101376"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"545"
charge=
"0.022516"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"546"
charge=
"0.671034"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"547"
charge=
"-0.750517"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"548"
charge=
"-0.750517"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"549"
charge=
"-0.556595"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"550"
charge=
"0.338672"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"551"
charge=
"-0.22988"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"552"
charge=
"0.19071"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"553"
charge=
"-0.102213"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"554"
charge=
"0.054816"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"555"
charge=
"0.195714"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"556"
charge=
"0.005286"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"557"
charge=
"-0.136225"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"558"
charge=
"0.025188"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"559"
charge=
"-0.136225"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"560"
charge=
"0.025188"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"561"
charge=
"0.598427"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"562"
charge=
"-0.714214"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"563"
charge=
"-0.714214"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"564"
charge=
"-0.629569"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"565"
charge=
"0.35746"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"566"
charge=
"-0.053541"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"567"
charge=
"0.138544"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"568"
charge=
"-0.046022"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"569"
charge=
"0.042912"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"570"
charge=
"0.020231"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"571"
charge=
"0.010971"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"572"
charge=
"-0.046165"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"573"
charge=
"0.061437"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"574"
charge=
"-0.032772"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"575"
charge=
"0.101654"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"576"
charge=
"-0.168623"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"577"
charge=
"0.285503"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"578"
charge=
"0.541818"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"579"
charge=
"-0.685909"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"580"
charge=
"-0.685909"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"581"
charge=
"-0.564246"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"582"
charge=
"0.334412"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"583"
charge=
"-0.159882"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"584"
charge=
"0.142833"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"585"
charge=
"0.058364"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"586"
charge=
"0.052479"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"587"
charge=
"-0.230352"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"588"
charge=
"0.127983"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"589"
charge=
"-0.21857"
radius=
"0.195"
gamma=
"-4.273956"
/>
<Atom
type=
"590"
charge=
"-0.262571"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"591"
charge=
"0.123031"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"592"
charge=
"0.664918"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"593"
charge=
"-0.747459"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"594"
charge=
"-0.747459"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"595"
charge=
"-0.625562"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"596"
charge=
"0.349898"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"597"
charge=
"-0.088182"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"598"
charge=
"0.134954"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"599"
charge=
"-0.057583"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"600"
charge=
"0.064041"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"601"
charge=
"0.007991"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"602"
charge=
"-0.098964"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"603"
charge=
"0.11212"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"604"
charge=
"-0.161136"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"605"
charge=
"0.128127"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"606"
charge=
"-0.097375"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"607"
charge=
"0.117481"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"608"
charge=
"-0.161136"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"609"
charge=
"0.128127"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"610"
charge=
"-0.098964"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"611"
charge=
"0.11212"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"612"
charge=
"0.595519"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"613"
charge=
"-0.71276"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"614"
charge=
"-0.71276"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"615"
charge=
"-0.268742"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"616"
charge=
"0.062285"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"617"
charge=
"0.034717"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"618"
charge=
"0.059879"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"619"
charge=
"0.007548"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"620"
charge=
"0.065773"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"621"
charge=
"0.016889"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"622"
charge=
"-0.385442"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"623"
charge=
"0.177938"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"624"
charge=
"0.643321"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"625"
charge=
"-0.736661"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"626"
charge=
"-0.736661"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"627"
charge=
"-0.676281"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"628"
charge=
"0.369239"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"629"
charge=
"-0.072385"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"630"
charge=
"0.158185"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"631"
charge=
"0.132964"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"632"
charge=
"0.048008"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"633"
charge=
"-0.580479"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"634"
charge=
"0.402742"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"635"
charge=
"0.594367"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"636"
charge=
"-0.712184"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"637"
charge=
"-0.712184"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"638"
charge=
"-0.351668"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"639"
charge=
"0.29932"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"640"
charge=
"-0.500569"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"641"
charge=
"0.237658"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"642"
charge=
"0.294422"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"643"
charge=
"0.031148"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"644"
charge=
"-0.137163"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"645"
charge=
"0.051258"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"646"
charge=
"-0.605568"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"647"
charge=
"0.408646"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"648"
charge=
"0.681669"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"649"
charge=
"-0.755835"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"650"
charge=
"-0.755835"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"651"
charge=
"-0.629974"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"652"
charge=
"0.341228"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"653"
charge=
"-0.04425"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"654"
charge=
"0.128436"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"655"
charge=
"-0.058372"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"656"
charge=
"0.06959"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"657"
charge=
"-0.146344"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"658"
charge=
"-0.168076"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"659"
charge=
"0.178686"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"660"
charge=
"-0.30197"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"661"
charge=
"0.344032"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"662"
charge=
"0.143447"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"663"
charge=
"-0.223194"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"664"
charge=
"0.136724"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"665"
charge=
"-0.137673"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"666"
charge=
"0.122474"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"667"
charge=
"-0.173223"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"668"
charge=
"0.121634"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"669"
charge=
"-0.187847"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"670"
charge=
"0.143053"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"671"
charge=
"0.102028"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"672"
charge=
"0.615569"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"673"
charge=
"-0.722785"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"674"
charge=
"-0.722785"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"675"
charge=
"-0.675628"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"676"
charge=
"0.350448"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"677"
charge=
"-0.012728"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"678"
charge=
"0.146871"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"679"
charge=
"-0.058078"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"680"
charge=
"0.016619"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"681"
charge=
"0.133018"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"682"
charge=
"-0.194675"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"683"
charge=
"0.149917"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"684"
charge=
"-0.21882"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"685"
charge=
"0.148692"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"686"
charge=
"0.247734"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"687"
charge=
"-0.47512"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"688"
charge=
"0.370016"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"689"
charge=
"-0.21882"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"690"
charge=
"0.148692"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"691"
charge=
"-0.194675"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"692"
charge=
"0.149917"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"693"
charge=
"0.665555"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"694"
charge=
"-0.747778"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"695"
charge=
"-0.747778"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"696"
charge=
"-0.217054"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"697"
charge=
"0.243122"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"698"
charge=
"-0.37412"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"699"
charge=
"0.09772"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"700"
charge=
"0.202309"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"701"
charge=
"-0.022953"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"702"
charge=
"-0.137796"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"703"
charge=
"0.029428"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"704"
charge=
"-0.137796"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"705"
charge=
"0.029428"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"706"
charge=
"0.525616"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"707"
charge=
"-0.677808"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"708"
charge=
"-0.677808"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"709"
charge=
"-0.463"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"710"
charge=
"0.2315"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"711"
charge=
"-0.423888"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"712"
charge=
"0.290111"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"713"
charge=
"-0.054293"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"714"
charge=
"0.06269"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"715"
charge=
"0.07601"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"716"
charge=
"-0.190264"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"717"
charge=
"0.512403"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"718"
charge=
"-0.55017"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"719"
charge=
"-0.589266"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"720"
charge=
"0.446422"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"721"
charge=
"0.113871"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"722"
charge=
"0.06715"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"723"
charge=
"-0.204113"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"724"
charge=
"0.063056"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"725"
charge=
"0.676687"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"726"
charge=
"-0.592764"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"727"
charge=
"-0.670515"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"728"
charge=
"0.473505"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"729"
charge=
"0.093903"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"730"
charge=
"0.024998"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"731"
charge=
"0.029171"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"732"
charge=
"0.028728"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"733"
charge=
"-0.016208"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"734"
charge=
"0.002044"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"735"
charge=
"0.176568"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"736"
charge=
"0.048477"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"737"
charge=
"-0.450568"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"738"
charge=
"0.338467"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"739"
charge=
"0.56136"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"740"
charge=
"-0.706473"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"741"
charge=
"0.405927"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"742"
charge=
"-0.706473"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"743"
charge=
"0.405927"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"744"
charge=
"0.770284"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"745"
charge=
"-0.647234"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"746"
charge=
"-0.669106"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"747"
charge=
"0.473035"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"748"
charge=
"0.256684"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"749"
charge=
"0.013306"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"750"
charge=
"-0.062106"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"751"
charge=
"0.038289"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"752"
charge=
"0.554932"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"753"
charge=
"-0.568797"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"754"
charge=
"-0.784547"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"755"
charge=
"0.372344"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"756"
charge=
"0.602554"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"757"
charge=
"-0.583293"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"758"
charge=
"-0.588807"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"759"
charge=
"0.446269"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"760"
charge=
"0.015024"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"761"
charge=
"0.090798"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"762"
charge=
"-0.071792"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"763"
charge=
"0.002802"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"764"
charge=
"0.770432"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"765"
charge=
"-0.787966"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"766"
charge=
"-0.787966"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"767"
charge=
"0.602072"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"768"
charge=
"-0.586206"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"769"
charge=
"-0.610355"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"770"
charge=
"0.453452"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"771"
charge=
"0.07215"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"772"
charge=
"0.083203"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"773"
charge=
"-0.155113"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"774"
charge=
"0.113742"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"775"
charge=
"-0.29338"
radius=
"0.195"
gamma=
"-4.273956"
/>
<Atom
type=
"776"
charge=
"0.190705"
radius=
"0.125"
gamma=
"3.6563976"
/>
<Atom
type=
"777"
charge=
"0.747857"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"778"
charge=
"-0.622908"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"779"
charge=
"-0.603779"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"780"
charge=
"0.45126"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"781"
charge=
"0.201127"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"782"
charge=
"0.02893"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"783"
charge=
"-0.013277"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"784"
charge=
"0.001827"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"785"
charge=
"-0.030707"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"786"
charge=
"0.024665"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"787"
charge=
"0.669568"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"788"
charge=
"-0.585802"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"789"
charge=
"-0.889652"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"790"
charge=
"0.397306"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"791"
charge=
"0.606634"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"792"
charge=
"-0.584415"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"793"
charge=
"-0.465328"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"794"
charge=
"0.405109"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"795"
charge=
"0.127199"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"796"
charge=
"0.023038"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"797"
charge=
"0.088282"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"798"
charge=
"-0.034219"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"799"
charge=
"-0.009673"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"800"
charge=
"-0.021524"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"801"
charge=
"0.740015"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"802"
charge=
"-0.780545"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"803"
charge=
"-0.780545"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"804"
charge=
"0.552551"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"805"
charge=
"-0.598835"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"806"
charge=
"-0.600766"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"807"
charge=
"0.450255"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"808"
charge=
"0.126891"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"809"
charge=
"0.036849"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"810"
charge=
"0.648768"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"811"
charge=
"-0.599357"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"812"
charge=
"-0.702202"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"813"
charge=
"0.484067"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"814"
charge=
"0.270112"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"815"
charge=
"0.023946"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"816"
charge=
"-0.066199"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"817"
charge=
"0.045493"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"818"
charge=
"-0.029295"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"819"
charge=
"-0.217584"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"820"
charge=
"0.29384"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"821"
charge=
"0.147532"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"822"
charge=
"0.110099"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"823"
charge=
"-0.551585"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"824"
charge=
"0.071109"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"825"
charge=
"0.096199"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"826"
charge=
"0.590651"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"827"
charge=
"-0.579809"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"828"
charge=
"-0.697797"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"829"
charge=
"0.482599"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"830"
charge=
"0.181926"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"831"
charge=
"0.060125"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"832"
charge=
"-0.114822"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"833"
charge=
"0.057721"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"834"
charge=
"0.209925"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"835"
charge=
"-0.486658"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"836"
charge=
"0.055422"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"837"
charge=
"0.126178"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"838"
charge=
"-0.090417"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"839"
charge=
"0.281999"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"840"
charge=
"-0.258671"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"841"
charge=
"0.154335"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"842"
charge=
"0.601906"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"843"
charge=
"-0.586694"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"844"
charge=
"-0.745211"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"845"
charge=
"0.498404"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"846"
charge=
"0.223794"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"847"
charge=
"0.029571"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"848"
charge=
"-0.063494"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"849"
charge=
"0.089473"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"850"
charge=
"-0.005485"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"851"
charge=
"-0.014619"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"852"
charge=
"0.275668"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"853"
charge=
"-0.020417"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"854"
charge=
"0.220661"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"855"
charge=
"-0.119388"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"856"
charge=
"0.36359"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"857"
charge=
"-0.156771"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"858"
charge=
"0.221434"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"859"
charge=
"0.737512"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"860"
charge=
"-0.621"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"861"
charge=
"-0.605757"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"862"
charge=
"0.451919"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"863"
charge=
"0.025768"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"864"
charge=
"0.062754"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"865"
charge=
"0.044198"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"866"
charge=
"0.038704"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"867"
charge=
"-0.172672"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"868"
charge=
"0.038544"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"869"
charge=
"0.058447"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"870"
charge=
"0.003617"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"871"
charge=
"-0.111609"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"872"
charge=
"0.025639"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"873"
charge=
"0.733445"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"874"
charge=
"-0.62882"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"875"
charge=
"-0.624705"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"876"
charge=
"0.458235"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"877"
charge=
"0.069804"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"878"
charge=
"0.092394"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"879"
charge=
"-0.118019"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"880"
charge=
"0.037615"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"881"
charge=
"0.177099"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"882"
charge=
"0.013272"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"883"
charge=
"-0.157414"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"884"
charge=
"0.031964"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"885"
charge=
"-0.157414"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"886"
charge=
"0.031964"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"887"
charge=
"0.656583"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"888"
charge=
"-0.593318"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"889"
charge=
"-0.743778"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"890"
charge=
"0.497926"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"891"
charge=
"0.163115"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"892"
charge=
"0.070671"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"893"
charge=
"-0.044702"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"894"
charge=
"0.023815"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"895"
charge=
"0.007065"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"896"
charge=
"0.017881"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"897"
charge=
"-0.061357"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"898"
charge=
"0.065779"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"899"
charge=
"-0.029056"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"900"
charge=
"0.102772"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"901"
charge=
"-0.181839"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"902"
charge=
"0.289529"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"903"
charge=
"0.633667"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"904"
charge=
"-0.596645"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"905"
charge=
"-0.597213"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"906"
charge=
"0.449071"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"907"
charge=
"0.060906"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"908"
charge=
"0.075421"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"909"
charge=
"0.051523"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"910"
charge=
"0.038926"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"911"
charge=
"-0.254386"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"912"
charge=
"0.129517"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"913"
charge=
"-0.206852"
radius=
"0.195"
gamma=
"-4.273956"
/>
<Atom
type=
"914"
charge=
"-0.284358"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"915"
charge=
"0.128754"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"916"
charge=
"0.683639"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"917"
charge=
"-0.599042"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"918"
charge=
"-0.629494"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"919"
charge=
"0.459831"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"920"
charge=
"0.175018"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"921"
charge=
"0.05153"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"922"
charge=
"-0.056597"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"923"
charge=
"0.044331"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"924"
charge=
"0.000827"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"925"
charge=
"-0.101529"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"926"
charge=
"0.10861"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"927"
charge=
"-0.156341"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"928"
charge=
"0.128346"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"929"
charge=
"-0.104791"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"930"
charge=
"0.119084"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"931"
charge=
"-0.156341"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"932"
charge=
"0.128346"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"933"
charge=
"-0.101529"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"934"
charge=
"0.10861"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"935"
charge=
"0.596118"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"936"
charge=
"-0.578021"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"937"
charge=
"-0.421739"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"938"
charge=
"0.471857"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"939"
charge=
"0.048486"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"940"
charge=
"0.039901"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"941"
charge=
"0.106081"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"942"
charge=
"-0.000632"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"943"
charge=
"-0.123305"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"944"
charge=
"0.028355"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"945"
charge=
"0.251986"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"946"
charge=
"-0.021715"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"947"
charge=
"0.68047"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"948"
charge=
"-0.599226"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"949"
charge=
"-0.664403"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"950"
charge=
"0.471468"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"951"
charge=
"0.14029"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"952"
charge=
"0.09115"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"953"
charge=
"0.111987"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"954"
charge=
"0.039285"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"955"
charge=
"-0.593805"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"956"
charge=
"0.407492"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"957"
charge=
"0.59248"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"958"
charge=
"-0.578162"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"959"
charge=
"-0.570235"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"960"
charge=
"0.440078"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"961"
charge=
"0.028754"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"962"
charge=
"0.078538"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"963"
charge=
"0.270941"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"964"
charge=
"-0.014476"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"965"
charge=
"-0.160657"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"966"
charge=
"0.053833"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"967"
charge=
"-0.621934"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"968"
charge=
"0.409167"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"969"
charge=
"0.709968"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"970"
charge=
"-0.611797"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"971"
charge=
"-0.621979"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"972"
charge=
"0.457326"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"973"
charge=
"0.117919"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"974"
charge=
"0.073247"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"975"
charge=
"-0.053219"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"976"
charge=
"0.055273"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"977"
charge=
"-0.14409"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"978"
charge=
"-0.172104"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"979"
charge=
"0.1795"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"980"
charge=
"-0.300089"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"981"
charge=
"0.343546"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"982"
charge=
"0.145233"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"983"
charge=
"-0.220933"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"984"
charge=
"0.13597"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"985"
charge=
"-0.139029"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"986"
charge=
"0.123118"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"987"
charge=
"-0.177371"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"988"
charge=
"0.122346"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"989"
charge=
"-0.170285"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"990"
charge=
"0.135963"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"991"
charge=
"0.083829"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"992"
charge=
"0.62646"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"993"
charge=
"-0.570557"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"994"
charge=
"-0.592849"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"995"
charge=
"0.447616"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"996"
charge=
"0.090652"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"997"
charge=
"0.113265"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"998"
charge=
"-0.050705"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"999"
charge=
"0.006441"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1000"
charge=
"0.130909"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1001"
charge=
"-0.198282"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1002"
charge=
"0.148246"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1003"
charge=
"-0.213863"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1004"
charge=
"0.14809"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1005"
charge=
"0.242629"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1006"
charge=
"-0.475387"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1007"
charge=
"0.370782"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1008"
charge=
"-0.213863"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1009"
charge=
"0.14809"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1010"
charge=
"-0.198282"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1011"
charge=
"0.148246"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1012"
charge=
"0.620893"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1013"
charge=
"-0.574301"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1014"
charge=
"-0.73745"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"1015"
charge=
"0.495817"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1016"
charge=
"-0.082837"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1017"
charge=
"0.017007"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1018"
charge=
"0.240887"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1019"
charge=
"-0.034674"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1020"
charge=
"-0.20913"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1021"
charge=
"0.043124"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1022"
charge=
"-0.20913"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1023"
charge=
"0.043124"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1024"
charge=
"0.890641"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1025"
charge=
"-0.621511"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1026"
charge=
"1.1659"
radius=
"0.215"
gamma=
"-17.2301304"
/>
<Atom
type=
"1027"
charge=
"-0.7761"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1028"
charge=
"-0.7761"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1029"
charge=
"-0.4954"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1030"
charge=
"-0.0069"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1031"
charge=
"0.0754"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1032"
charge=
"0.1629"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1033"
charge=
"0.1176"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1034"
charge=
"-0.3691"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1035"
charge=
"0.0431"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1036"
charge=
"0.1838"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1037"
charge=
"-0.0268"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1038"
charge=
"0.1607"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1039"
charge=
"0.1877"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1040"
charge=
"-0.6175"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1041"
charge=
"0.0725"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1042"
charge=
"0.6897"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1043"
charge=
"-0.9123"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1044"
charge=
"0.4167"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1045"
charge=
"-0.7624"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1046"
charge=
"0.5716"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1047"
charge=
"0.0598"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1048"
charge=
"-0.7417"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1049"
charge=
"0.38"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1050"
charge=
"0.0713"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1051"
charge=
"0.0985"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1052"
charge=
"-0.0854"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1053"
charge=
"0.0718"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1054"
charge=
"-0.5232"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1055"
charge=
"1.1659"
radius=
"0.215"
gamma=
"-17.2301304"
/>
<Atom
type=
"1056"
charge=
"-0.7761"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1057"
charge=
"-0.7761"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1058"
charge=
"-0.4954"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1059"
charge=
"-0.0069"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1060"
charge=
"0.0754"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1061"
charge=
"0.1629"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1062"
charge=
"0.1176"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1063"
charge=
"-0.3691"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1064"
charge=
"0.0431"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1065"
charge=
"0.1838"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1066"
charge=
"-0.0268"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1067"
charge=
"0.1607"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1068"
charge=
"0.1877"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1069"
charge=
"-0.6175"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1070"
charge=
"0.0725"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1071"
charge=
"0.6897"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1072"
charge=
"-0.9123"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1073"
charge=
"0.4167"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1074"
charge=
"-0.7624"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1075"
charge=
"0.5716"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1076"
charge=
"0.0598"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1077"
charge=
"-0.7417"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1078"
charge=
"0.38"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1079"
charge=
"0.0713"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1080"
charge=
"0.0985"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1081"
charge=
"-0.0854"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1082"
charge=
"0.0718"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1083"
charge=
"-0.6549"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1084"
charge=
"0.4396"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1085"
charge=
"0.4422"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1086"
charge=
"-0.6318"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1087"
charge=
"-0.0069"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1088"
charge=
"0.0754"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1089"
charge=
"0.1629"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1090"
charge=
"0.1176"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1091"
charge=
"-0.3691"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1092"
charge=
"0.0431"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1093"
charge=
"0.1838"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1094"
charge=
"-0.0268"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1095"
charge=
"0.1607"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1096"
charge=
"0.1877"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1097"
charge=
"-0.6175"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1098"
charge=
"0.0725"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1099"
charge=
"0.6897"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1100"
charge=
"-0.9123"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1101"
charge=
"0.4167"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1102"
charge=
"-0.7624"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1103"
charge=
"0.5716"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1104"
charge=
"0.0598"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1105"
charge=
"-0.7417"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1106"
charge=
"0.38"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1107"
charge=
"0.0713"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1108"
charge=
"0.0985"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1109"
charge=
"-0.0854"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1110"
charge=
"0.0718"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1111"
charge=
"-0.5232"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1112"
charge=
"0.4422"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1113"
charge=
"-0.6318"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1114"
charge=
"-0.0069"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1115"
charge=
"0.0754"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1116"
charge=
"0.1629"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1117"
charge=
"0.1176"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1118"
charge=
"-0.3691"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1119"
charge=
"0.0431"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1120"
charge=
"0.1838"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1121"
charge=
"-0.0268"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1122"
charge=
"0.1607"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1123"
charge=
"0.1877"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1124"
charge=
"-0.6175"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1125"
charge=
"0.0725"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1126"
charge=
"0.6897"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1127"
charge=
"-0.9123"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1128"
charge=
"0.4167"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1129"
charge=
"-0.7624"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1130"
charge=
"0.5716"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1131"
charge=
"0.0598"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1132"
charge=
"-0.7417"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1133"
charge=
"0.38"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1134"
charge=
"0.0713"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1135"
charge=
"0.0985"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1136"
charge=
"-0.0854"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1137"
charge=
"0.0718"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1138"
charge=
"-0.6549"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1139"
charge=
"0.4396"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1140"
charge=
"1.1659"
radius=
"0.215"
gamma=
"-17.2301304"
/>
<Atom
type=
"1141"
charge=
"-0.7761"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1142"
charge=
"-0.7761"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1143"
charge=
"-0.4954"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1144"
charge=
"-0.0069"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1145"
charge=
"0.0754"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1146"
charge=
"0.1629"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1147"
charge=
"0.1176"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1148"
charge=
"-0.3691"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1149"
charge=
"-0.0116"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1150"
charge=
"0.1963"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1151"
charge=
"-0.0339"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1152"
charge=
"-0.0183"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1153"
charge=
"0.2293"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1154"
charge=
"-0.5222"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1155"
charge=
"0.1863"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1156"
charge=
"0.8439"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1157"
charge=
"-0.9773"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1158"
charge=
"0.4314"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1159"
charge=
"-0.7748"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1160"
charge=
"0.7959"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1161"
charge=
"-0.6548"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1162"
charge=
"0.0713"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1163"
charge=
"0.0985"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1164"
charge=
"-0.0854"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1165"
charge=
"0.0718"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1166"
charge=
"-0.5232"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1167"
charge=
"1.1659"
radius=
"0.215"
gamma=
"-17.2301304"
/>
<Atom
type=
"1168"
charge=
"-0.7761"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1169"
charge=
"-0.7761"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1170"
charge=
"-0.4954"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1171"
charge=
"-0.0069"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1172"
charge=
"0.0754"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1173"
charge=
"0.1629"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1174"
charge=
"0.1176"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1175"
charge=
"-0.3691"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1176"
charge=
"-0.0116"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1177"
charge=
"0.1963"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1178"
charge=
"-0.0339"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1179"
charge=
"-0.0183"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1180"
charge=
"0.2293"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1181"
charge=
"-0.5222"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1182"
charge=
"0.1863"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1183"
charge=
"0.8439"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1184"
charge=
"-0.9773"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1185"
charge=
"0.4314"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1186"
charge=
"-0.7748"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1187"
charge=
"0.7959"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1188"
charge=
"-0.6548"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1189"
charge=
"0.0713"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1190"
charge=
"0.0985"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1191"
charge=
"-0.0854"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1192"
charge=
"0.0718"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1193"
charge=
"-0.6549"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1194"
charge=
"0.4396"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1195"
charge=
"0.4422"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1196"
charge=
"-0.6318"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1197"
charge=
"-0.0069"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1198"
charge=
"0.0754"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1199"
charge=
"0.1629"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1200"
charge=
"0.1176"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1201"
charge=
"-0.3691"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1202"
charge=
"-0.0116"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1203"
charge=
"0.1963"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1204"
charge=
"-0.0339"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1205"
charge=
"-0.0183"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1206"
charge=
"0.2293"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1207"
charge=
"-0.5222"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1208"
charge=
"0.1863"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1209"
charge=
"0.8439"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1210"
charge=
"-0.9773"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1211"
charge=
"0.4314"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1212"
charge=
"-0.7748"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1213"
charge=
"0.7959"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1214"
charge=
"-0.6548"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1215"
charge=
"0.0713"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1216"
charge=
"0.0985"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1217"
charge=
"-0.0854"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1218"
charge=
"0.0718"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1219"
charge=
"-0.5232"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1220"
charge=
"0.4422"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1221"
charge=
"-0.6318"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1222"
charge=
"-0.0069"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1223"
charge=
"0.0754"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1224"
charge=
"0.1629"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1225"
charge=
"0.1176"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1226"
charge=
"-0.3691"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1227"
charge=
"-0.0116"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1228"
charge=
"0.1963"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1229"
charge=
"-0.0339"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1230"
charge=
"-0.0183"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1231"
charge=
"0.2293"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1232"
charge=
"-0.5222"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1233"
charge=
"0.1863"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1234"
charge=
"0.8439"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1235"
charge=
"-0.9773"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1236"
charge=
"0.4314"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1237"
charge=
"-0.7748"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1238"
charge=
"0.7959"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1239"
charge=
"-0.6548"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1240"
charge=
"0.0713"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1241"
charge=
"0.0985"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1242"
charge=
"-0.0854"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1243"
charge=
"0.0718"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1244"
charge=
"-0.6549"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1245"
charge=
"0.4396"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1246"
charge=
"1.1659"
radius=
"0.215"
gamma=
"-17.2301304"
/>
<Atom
type=
"1247"
charge=
"-0.7761"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1248"
charge=
"-0.7761"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1249"
charge=
"-0.4954"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1250"
charge=
"-0.0069"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1251"
charge=
"0.0754"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1252"
charge=
"0.1629"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1253"
charge=
"0.1176"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1254"
charge=
"-0.3691"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1255"
charge=
"0.0358"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1256"
charge=
"0.1746"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1257"
charge=
"0.0577"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1258"
charge=
"0.0736"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1259"
charge=
"0.1997"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1260"
charge=
"-0.5725"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1261"
charge=
"0.1991"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1262"
charge=
"0.4918"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1263"
charge=
"-0.5699"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1264"
charge=
"-0.5053"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1265"
charge=
"0.352"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1266"
charge=
"0.7432"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1267"
charge=
"-0.923"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1268"
charge=
"0.4235"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1269"
charge=
"-0.6636"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1270"
charge=
"0.1814"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1271"
charge=
"0.0713"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1272"
charge=
"0.0985"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1273"
charge=
"-0.0854"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1274"
charge=
"0.0718"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1275"
charge=
"-0.5232"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1276"
charge=
"1.1659"
radius=
"0.215"
gamma=
"-17.2301304"
/>
<Atom
type=
"1277"
charge=
"-0.7761"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1278"
charge=
"-0.7761"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1279"
charge=
"-0.4954"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1280"
charge=
"-0.0069"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1281"
charge=
"0.0754"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1282"
charge=
"0.1629"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1283"
charge=
"0.1176"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1284"
charge=
"-0.3691"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1285"
charge=
"0.0358"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1286"
charge=
"0.1746"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1287"
charge=
"0.0577"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1288"
charge=
"0.0736"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1289"
charge=
"0.1997"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1290"
charge=
"-0.5725"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1291"
charge=
"0.1991"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1292"
charge=
"0.4918"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1293"
charge=
"-0.5699"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1294"
charge=
"-0.5053"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1295"
charge=
"0.352"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1296"
charge=
"0.7432"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1297"
charge=
"-0.923"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1298"
charge=
"0.4235"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1299"
charge=
"-0.6636"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1300"
charge=
"0.1814"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1301"
charge=
"0.0713"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1302"
charge=
"0.0985"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1303"
charge=
"-0.0854"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1304"
charge=
"0.0718"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1305"
charge=
"-0.6549"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1306"
charge=
"0.4396"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1307"
charge=
"0.4422"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1308"
charge=
"-0.6318"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1309"
charge=
"-0.0069"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1310"
charge=
"0.0754"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1311"
charge=
"0.1629"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1312"
charge=
"0.1176"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1313"
charge=
"-0.3691"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1314"
charge=
"0.0358"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1315"
charge=
"0.1746"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1316"
charge=
"0.0577"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1317"
charge=
"0.0736"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1318"
charge=
"0.1997"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1319"
charge=
"-0.5725"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1320"
charge=
"0.1991"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1321"
charge=
"0.4918"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1322"
charge=
"-0.5699"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1323"
charge=
"-0.5053"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1324"
charge=
"0.352"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1325"
charge=
"0.7432"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1326"
charge=
"-0.923"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1327"
charge=
"0.4235"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1328"
charge=
"-0.6636"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1329"
charge=
"0.1814"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1330"
charge=
"0.0713"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1331"
charge=
"0.0985"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1332"
charge=
"-0.0854"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1333"
charge=
"0.0718"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1334"
charge=
"-0.5232"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1335"
charge=
"0.4422"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1336"
charge=
"-0.6318"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1337"
charge=
"-0.0069"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1338"
charge=
"0.0754"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1339"
charge=
"0.1629"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1340"
charge=
"0.1176"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1341"
charge=
"-0.3691"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1342"
charge=
"0.0358"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1343"
charge=
"0.1746"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1344"
charge=
"0.0577"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1345"
charge=
"0.0736"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1346"
charge=
"0.1997"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1347"
charge=
"-0.5725"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1348"
charge=
"0.1991"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1349"
charge=
"0.4918"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1350"
charge=
"-0.5699"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1351"
charge=
"-0.5053"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1352"
charge=
"0.352"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1353"
charge=
"0.7432"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1354"
charge=
"-0.923"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1355"
charge=
"0.4235"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1356"
charge=
"-0.6636"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1357"
charge=
"0.1814"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1358"
charge=
"0.0713"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1359"
charge=
"0.0985"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1360"
charge=
"-0.0854"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1361"
charge=
"0.0718"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1362"
charge=
"-0.6549"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1363"
charge=
"0.4396"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1364"
charge=
"1.1659"
radius=
"0.215"
gamma=
"-17.2301304"
/>
<Atom
type=
"1365"
charge=
"-0.7761"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1366"
charge=
"-0.7761"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1367"
charge=
"-0.4954"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1368"
charge=
"-0.0069"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1369"
charge=
"0.0754"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1370"
charge=
"0.1629"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1371"
charge=
"0.1176"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1372"
charge=
"-0.3691"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1373"
charge=
"0.068"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1374"
charge=
"0.1804"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1375"
charge=
"-0.0239"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1376"
charge=
"-0.2209"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1377"
charge=
"0.2607"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1378"
charge=
"0.0025"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1379"
charge=
"-0.2269"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1380"
charge=
"0.077"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1381"
charge=
"0.5194"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1382"
charge=
"-0.5563"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1383"
charge=
"-0.434"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1384"
charge=
"0.342"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1385"
charge=
"0.5677"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1386"
charge=
"-0.5881"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1387"
charge=
"0.0713"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1388"
charge=
"0.0985"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1389"
charge=
"-0.0854"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1390"
charge=
"0.0718"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1391"
charge=
"-0.5232"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1392"
charge=
"1.1659"
radius=
"0.215"
gamma=
"-17.2301304"
/>
<Atom
type=
"1393"
charge=
"-0.7761"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1394"
charge=
"-0.7761"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1395"
charge=
"-0.4954"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1396"
charge=
"-0.0069"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1397"
charge=
"0.0754"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1398"
charge=
"0.1629"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1399"
charge=
"0.1176"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1400"
charge=
"-0.3691"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1401"
charge=
"0.068"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1402"
charge=
"0.1804"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1403"
charge=
"-0.0239"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1404"
charge=
"-0.2209"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1405"
charge=
"0.2607"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1406"
charge=
"0.0025"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1407"
charge=
"-0.2269"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1408"
charge=
"0.077"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1409"
charge=
"0.5194"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1410"
charge=
"-0.5563"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1411"
charge=
"-0.434"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1412"
charge=
"0.342"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1413"
charge=
"0.5677"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1414"
charge=
"-0.5881"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1415"
charge=
"0.0713"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1416"
charge=
"0.0985"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1417"
charge=
"-0.0854"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1418"
charge=
"0.0718"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1419"
charge=
"-0.6549"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1420"
charge=
"0.4396"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1421"
charge=
"0.4422"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1422"
charge=
"-0.6318"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1423"
charge=
"-0.0069"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1424"
charge=
"0.0754"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1425"
charge=
"0.1629"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1426"
charge=
"0.1176"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1427"
charge=
"-0.3691"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1428"
charge=
"0.068"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1429"
charge=
"0.1804"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1430"
charge=
"-0.0239"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1431"
charge=
"-0.2209"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1432"
charge=
"0.2607"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1433"
charge=
"0.0025"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1434"
charge=
"-0.2269"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1435"
charge=
"0.077"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1436"
charge=
"0.5194"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1437"
charge=
"-0.5563"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1438"
charge=
"-0.434"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1439"
charge=
"0.342"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1440"
charge=
"0.5677"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1441"
charge=
"-0.5881"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1442"
charge=
"0.0713"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1443"
charge=
"0.0985"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1444"
charge=
"-0.0854"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1445"
charge=
"0.0718"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1446"
charge=
"-0.5232"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1447"
charge=
"0.4422"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1448"
charge=
"-0.6318"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1449"
charge=
"-0.0069"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1450"
charge=
"0.0754"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1451"
charge=
"0.1629"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1452"
charge=
"0.1176"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1453"
charge=
"-0.3691"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1454"
charge=
"0.068"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1455"
charge=
"0.1804"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1456"
charge=
"-0.0239"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1457"
charge=
"-0.2209"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1458"
charge=
"0.2607"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1459"
charge=
"0.0025"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1460"
charge=
"-0.2269"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1461"
charge=
"0.077"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1462"
charge=
"0.5194"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1463"
charge=
"-0.5563"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1464"
charge=
"-0.434"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1465"
charge=
"0.342"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1466"
charge=
"0.5677"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1467"
charge=
"-0.5881"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1468"
charge=
"0.0713"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1469"
charge=
"0.0985"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1470"
charge=
"-0.0854"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1471"
charge=
"0.0718"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1472"
charge=
"-0.6549"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1473"
charge=
"0.4396"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1474"
charge=
"1.1662"
radius=
"0.215"
gamma=
"-17.2301304"
/>
<Atom
type=
"1475"
charge=
"-0.776"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1476"
charge=
"-0.776"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1477"
charge=
"-0.4989"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1478"
charge=
"0.0558"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1479"
charge=
"0.0679"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1480"
charge=
"0.1065"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1481"
charge=
"0.1174"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1482"
charge=
"-0.3548"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1483"
charge=
"0.0394"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1484"
charge=
"0.2007"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1485"
charge=
"-0.0251"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1486"
charge=
"0.2006"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1487"
charge=
"0.1553"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1488"
charge=
"-0.6073"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1489"
charge=
"0.0515"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1490"
charge=
"0.7009"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1491"
charge=
"-0.9019"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1492"
charge=
"0.4115"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1493"
charge=
"-0.7615"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1494"
charge=
"0.5875"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1495"
charge=
"0.0473"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1496"
charge=
"-0.6997"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1497"
charge=
"0.3053"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1498"
charge=
"0.2022"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1499"
charge=
"0.0615"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1500"
charge=
"0.067"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1501"
charge=
"0.0972"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1502"
charge=
"-0.6139"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1503"
charge=
"0.4186"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1504"
charge=
"-0.5246"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1505"
charge=
"1.1662"
radius=
"0.215"
gamma=
"-17.2301304"
/>
<Atom
type=
"1506"
charge=
"-0.776"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1507"
charge=
"-0.776"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1508"
charge=
"-0.4989"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1509"
charge=
"0.0558"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1510"
charge=
"0.0679"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1511"
charge=
"0.1065"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1512"
charge=
"0.1174"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1513"
charge=
"-0.3548"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1514"
charge=
"0.0394"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1515"
charge=
"0.2007"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1516"
charge=
"-0.0251"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1517"
charge=
"0.2006"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1518"
charge=
"0.1553"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1519"
charge=
"-0.6073"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1520"
charge=
"0.0515"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1521"
charge=
"0.7009"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1522"
charge=
"-0.9019"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1523"
charge=
"0.4115"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1524"
charge=
"-0.7615"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1525"
charge=
"0.5875"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1526"
charge=
"0.0473"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1527"
charge=
"-0.6997"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1528"
charge=
"0.3053"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1529"
charge=
"0.2022"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1530"
charge=
"0.0615"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1531"
charge=
"0.067"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1532"
charge=
"0.0972"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1533"
charge=
"-0.6139"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1534"
charge=
"0.4186"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1535"
charge=
"-0.6541"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1536"
charge=
"0.4376"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1537"
charge=
"0.4295"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1538"
charge=
"-0.6223"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1539"
charge=
"0.0558"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1540"
charge=
"0.0679"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1541"
charge=
"0.1065"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1542"
charge=
"0.1174"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1543"
charge=
"-0.3548"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1544"
charge=
"0.0394"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1545"
charge=
"0.2007"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1546"
charge=
"-0.0251"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1547"
charge=
"0.2006"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1548"
charge=
"0.1553"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1549"
charge=
"-0.6073"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1550"
charge=
"0.0515"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1551"
charge=
"0.7009"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1552"
charge=
"-0.9019"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1553"
charge=
"0.4115"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1554"
charge=
"-0.7615"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1555"
charge=
"0.5875"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1556"
charge=
"0.0473"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1557"
charge=
"-0.6997"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1558"
charge=
"0.3053"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1559"
charge=
"0.2022"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1560"
charge=
"0.0615"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1561"
charge=
"0.067"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1562"
charge=
"0.0972"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1563"
charge=
"-0.6139"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1564"
charge=
"0.4186"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1565"
charge=
"-0.5246"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1566"
charge=
"0.4295"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1567"
charge=
"-0.6223"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1568"
charge=
"0.0558"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1569"
charge=
"0.0679"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1570"
charge=
"0.1065"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1571"
charge=
"0.1174"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1572"
charge=
"-0.3548"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1573"
charge=
"0.0394"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1574"
charge=
"0.2007"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1575"
charge=
"-0.0251"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1576"
charge=
"0.2006"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1577"
charge=
"0.1553"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1578"
charge=
"-0.6073"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1579"
charge=
"0.0515"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1580"
charge=
"0.7009"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1581"
charge=
"-0.9019"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1582"
charge=
"0.4115"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1583"
charge=
"-0.7615"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1584"
charge=
"0.5875"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1585"
charge=
"0.0473"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1586"
charge=
"-0.6997"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1587"
charge=
"0.3053"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1588"
charge=
"0.2022"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1589"
charge=
"0.0615"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1590"
charge=
"0.067"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1591"
charge=
"0.0972"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1592"
charge=
"-0.6139"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1593"
charge=
"0.4186"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1594"
charge=
"-0.6541"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1595"
charge=
"0.4376"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1596"
charge=
"1.1662"
radius=
"0.215"
gamma=
"-17.2301304"
/>
<Atom
type=
"1597"
charge=
"-0.776"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1598"
charge=
"-0.776"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1599"
charge=
"-0.4989"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1600"
charge=
"0.0558"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1601"
charge=
"0.0679"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1602"
charge=
"0.1065"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1603"
charge=
"0.1174"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1604"
charge=
"-0.3548"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1605"
charge=
"0.0066"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1606"
charge=
"0.2029"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1607"
charge=
"-0.0484"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1608"
charge=
"0.0053"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1609"
charge=
"0.1958"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1610"
charge=
"-0.5215"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1611"
charge=
"0.1928"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1612"
charge=
"0.8185"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1613"
charge=
"-0.953"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1614"
charge=
"0.4234"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1615"
charge=
"-0.7584"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1616"
charge=
"0.7538"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1617"
charge=
"-0.6252"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1618"
charge=
"0.2022"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1619"
charge=
"0.0615"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1620"
charge=
"0.067"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1621"
charge=
"0.0972"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1622"
charge=
"-0.6139"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1623"
charge=
"0.4186"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1624"
charge=
"-0.5246"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1625"
charge=
"1.1662"
radius=
"0.215"
gamma=
"-17.2301304"
/>
<Atom
type=
"1626"
charge=
"-0.776"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1627"
charge=
"-0.776"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1628"
charge=
"-0.4989"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1629"
charge=
"0.0558"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1630"
charge=
"0.0679"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1631"
charge=
"0.1065"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1632"
charge=
"0.1174"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1633"
charge=
"-0.3548"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1634"
charge=
"0.0066"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1635"
charge=
"0.2029"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1636"
charge=
"-0.0484"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1637"
charge=
"0.0053"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1638"
charge=
"0.1958"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1639"
charge=
"-0.5215"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1640"
charge=
"0.1928"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1641"
charge=
"0.8185"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1642"
charge=
"-0.953"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1643"
charge=
"0.4234"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1644"
charge=
"-0.7584"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1645"
charge=
"0.7538"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1646"
charge=
"-0.6252"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1647"
charge=
"0.2022"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1648"
charge=
"0.0615"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1649"
charge=
"0.067"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1650"
charge=
"0.0972"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1651"
charge=
"-0.6139"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1652"
charge=
"0.4186"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1653"
charge=
"-0.6541"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1654"
charge=
"0.4376"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1655"
charge=
"0.4295"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1656"
charge=
"-0.6223"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1657"
charge=
"0.0558"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1658"
charge=
"0.0679"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1659"
charge=
"0.1065"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1660"
charge=
"0.1174"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1661"
charge=
"-0.3548"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1662"
charge=
"0.0066"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1663"
charge=
"0.2029"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1664"
charge=
"-0.0484"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1665"
charge=
"0.0053"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1666"
charge=
"0.1958"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1667"
charge=
"-0.5215"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1668"
charge=
"0.1928"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1669"
charge=
"0.8185"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1670"
charge=
"-0.953"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1671"
charge=
"0.4234"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1672"
charge=
"-0.7584"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1673"
charge=
"0.7538"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1674"
charge=
"-0.6252"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1675"
charge=
"0.2022"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1676"
charge=
"0.0615"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1677"
charge=
"0.067"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1678"
charge=
"0.0972"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1679"
charge=
"-0.6139"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1680"
charge=
"0.4186"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1681"
charge=
"-0.5246"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1682"
charge=
"0.4295"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1683"
charge=
"-0.6223"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1684"
charge=
"0.0558"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1685"
charge=
"0.0679"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1686"
charge=
"0.1065"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1687"
charge=
"0.1174"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1688"
charge=
"-0.3548"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1689"
charge=
"0.0066"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1690"
charge=
"0.2029"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1691"
charge=
"-0.0484"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1692"
charge=
"0.0053"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1693"
charge=
"0.1958"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1694"
charge=
"-0.5215"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1695"
charge=
"0.1928"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1696"
charge=
"0.8185"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1697"
charge=
"-0.953"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1698"
charge=
"0.4234"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1699"
charge=
"-0.7584"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1700"
charge=
"0.7538"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1701"
charge=
"-0.6252"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1702"
charge=
"0.2022"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1703"
charge=
"0.0615"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1704"
charge=
"0.067"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1705"
charge=
"0.0972"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1706"
charge=
"-0.6139"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1707"
charge=
"0.4186"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1708"
charge=
"-0.6541"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1709"
charge=
"0.4376"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1710"
charge=
"1.1662"
radius=
"0.215"
gamma=
"-17.2301304"
/>
<Atom
type=
"1711"
charge=
"-0.776"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1712"
charge=
"-0.776"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1713"
charge=
"-0.4989"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1714"
charge=
"0.0558"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1715"
charge=
"0.0679"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1716"
charge=
"0.1065"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1717"
charge=
"0.1174"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1718"
charge=
"-0.3548"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1719"
charge=
"0.0191"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1720"
charge=
"0.2006"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1721"
charge=
"0.0492"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1722"
charge=
"0.1374"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1723"
charge=
"0.164"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1724"
charge=
"-0.5709"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1725"
charge=
"0.1744"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1726"
charge=
"0.477"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1727"
charge=
"-0.5597"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1728"
charge=
"-0.4787"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1729"
charge=
"0.3424"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1730"
charge=
"0.7657"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1731"
charge=
"-0.9672"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1732"
charge=
"0.4364"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1733"
charge=
"-0.6323"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1734"
charge=
"0.1222"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1735"
charge=
"0.2022"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1736"
charge=
"0.0615"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1737"
charge=
"0.067"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1738"
charge=
"0.0972"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1739"
charge=
"-0.6139"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1740"
charge=
"0.4186"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1741"
charge=
"-0.5246"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1742"
charge=
"1.1662"
radius=
"0.215"
gamma=
"-17.2301304"
/>
<Atom
type=
"1743"
charge=
"-0.776"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1744"
charge=
"-0.776"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1745"
charge=
"-0.4989"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1746"
charge=
"0.0558"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1747"
charge=
"0.0679"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1748"
charge=
"0.1065"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1749"
charge=
"0.1174"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1750"
charge=
"-0.3548"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1751"
charge=
"0.0191"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1752"
charge=
"0.2006"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1753"
charge=
"0.0492"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1754"
charge=
"0.1374"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1755"
charge=
"0.164"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1756"
charge=
"-0.5709"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1757"
charge=
"0.1744"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1758"
charge=
"0.477"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1759"
charge=
"-0.5597"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1760"
charge=
"-0.4787"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1761"
charge=
"0.3424"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1762"
charge=
"0.7657"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1763"
charge=
"-0.9672"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1764"
charge=
"0.4364"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1765"
charge=
"-0.6323"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1766"
charge=
"0.1222"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1767"
charge=
"0.2022"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1768"
charge=
"0.0615"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1769"
charge=
"0.067"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1770"
charge=
"0.0972"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1771"
charge=
"-0.6139"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1772"
charge=
"0.4186"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1773"
charge=
"-0.6541"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1774"
charge=
"0.4376"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1775"
charge=
"0.4295"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1776"
charge=
"-0.6223"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1777"
charge=
"0.0558"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1778"
charge=
"0.0679"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1779"
charge=
"0.1065"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1780"
charge=
"0.1174"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1781"
charge=
"-0.3548"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1782"
charge=
"0.0191"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1783"
charge=
"0.2006"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1784"
charge=
"0.0492"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1785"
charge=
"0.1374"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1786"
charge=
"0.164"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1787"
charge=
"-0.5709"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1788"
charge=
"0.1744"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1789"
charge=
"0.477"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1790"
charge=
"-0.5597"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1791"
charge=
"-0.4787"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1792"
charge=
"0.3424"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1793"
charge=
"0.7657"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1794"
charge=
"-0.9672"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1795"
charge=
"0.4364"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1796"
charge=
"-0.6323"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1797"
charge=
"0.1222"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1798"
charge=
"0.2022"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1799"
charge=
"0.0615"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1800"
charge=
"0.067"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1801"
charge=
"0.0972"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1802"
charge=
"-0.6139"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1803"
charge=
"0.4186"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1804"
charge=
"-0.5246"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1805"
charge=
"0.4295"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1806"
charge=
"-0.6223"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1807"
charge=
"0.0558"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1808"
charge=
"0.0679"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1809"
charge=
"0.1065"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1810"
charge=
"0.1174"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1811"
charge=
"-0.3548"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1812"
charge=
"0.0191"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1813"
charge=
"0.2006"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1814"
charge=
"0.0492"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1815"
charge=
"0.1374"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1816"
charge=
"0.164"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1817"
charge=
"-0.5709"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1818"
charge=
"0.1744"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1819"
charge=
"0.477"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1820"
charge=
"-0.5597"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1821"
charge=
"-0.4787"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1822"
charge=
"0.3424"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1823"
charge=
"0.7657"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1824"
charge=
"-0.9672"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1825"
charge=
"0.4364"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1826"
charge=
"-0.6323"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1827"
charge=
"0.1222"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1828"
charge=
"0.2022"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1829"
charge=
"0.0615"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1830"
charge=
"0.067"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1831"
charge=
"0.0972"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1832"
charge=
"-0.6139"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1833"
charge=
"0.4186"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1834"
charge=
"-0.6541"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1835"
charge=
"0.4376"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1836"
charge=
"1.1662"
radius=
"0.215"
gamma=
"-17.2301304"
/>
<Atom
type=
"1837"
charge=
"-0.776"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1838"
charge=
"-0.776"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1839"
charge=
"-0.4989"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1840"
charge=
"0.0558"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1841"
charge=
"0.0679"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1842"
charge=
"0.1065"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1843"
charge=
"0.1174"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1844"
charge=
"-0.3548"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1845"
charge=
"0.0674"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1846"
charge=
"0.1824"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1847"
charge=
"0.0418"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1848"
charge=
"-0.1126"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1849"
charge=
"0.2188"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1850"
charge=
"-0.3635"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1851"
charge=
"0.1811"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1852"
charge=
"0.5952"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1853"
charge=
"-0.5761"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1854"
charge=
"-0.3549"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1855"
charge=
"0.3154"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1856"
charge=
"0.4687"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1857"
charge=
"-0.5477"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1858"
charge=
"0.2022"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1859"
charge=
"0.0615"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1860"
charge=
"0.067"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1861"
charge=
"0.0972"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1862"
charge=
"-0.6139"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1863"
charge=
"0.4186"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1864"
charge=
"-0.5246"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1865"
charge=
"1.1662"
radius=
"0.215"
gamma=
"-17.2301304"
/>
<Atom
type=
"1866"
charge=
"-0.776"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1867"
charge=
"-0.776"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1868"
charge=
"-0.4989"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1869"
charge=
"0.0558"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1870"
charge=
"0.0679"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1871"
charge=
"0.1065"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1872"
charge=
"0.1174"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1873"
charge=
"-0.3548"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1874"
charge=
"0.0674"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1875"
charge=
"0.1824"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1876"
charge=
"0.0418"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1877"
charge=
"-0.1126"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1878"
charge=
"0.2188"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1879"
charge=
"-0.3635"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1880"
charge=
"0.1811"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1881"
charge=
"0.5952"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1882"
charge=
"-0.5761"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1883"
charge=
"-0.3549"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1884"
charge=
"0.3154"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1885"
charge=
"0.4687"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1886"
charge=
"-0.5477"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1887"
charge=
"0.2022"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1888"
charge=
"0.0615"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1889"
charge=
"0.067"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1890"
charge=
"0.0972"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1891"
charge=
"-0.6139"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1892"
charge=
"0.4186"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1893"
charge=
"-0.6541"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1894"
charge=
"0.4376"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1895"
charge=
"0.4295"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1896"
charge=
"-0.6223"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1897"
charge=
"0.0558"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1898"
charge=
"0.0679"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1899"
charge=
"0.1065"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1900"
charge=
"0.1174"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1901"
charge=
"-0.3548"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1902"
charge=
"0.0674"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1903"
charge=
"0.1824"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1904"
charge=
"0.0418"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1905"
charge=
"-0.1126"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1906"
charge=
"0.2188"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1907"
charge=
"-0.3635"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1908"
charge=
"0.1811"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1909"
charge=
"0.5952"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1910"
charge=
"-0.5761"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1911"
charge=
"-0.3549"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1912"
charge=
"0.3154"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1913"
charge=
"0.4687"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1914"
charge=
"-0.5477"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1915"
charge=
"0.2022"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1916"
charge=
"0.0615"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1917"
charge=
"0.067"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1918"
charge=
"0.0972"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1919"
charge=
"-0.6139"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1920"
charge=
"0.4186"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1921"
charge=
"-0.5246"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1922"
charge=
"0.4295"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1923"
charge=
"-0.6223"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1924"
charge=
"0.0558"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1925"
charge=
"0.0679"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1926"
charge=
"0.1065"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1927"
charge=
"0.1174"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1928"
charge=
"-0.3548"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1929"
charge=
"0.0674"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1930"
charge=
"0.1824"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1931"
charge=
"0.0418"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1932"
charge=
"-0.1126"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1933"
charge=
"0.2188"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1934"
charge=
"-0.3635"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1935"
charge=
"0.1811"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1936"
charge=
"0.5952"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1937"
charge=
"-0.5761"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1938"
charge=
"-0.3549"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1939"
charge=
"0.3154"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1940"
charge=
"0.4687"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1941"
charge=
"-0.5477"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1942"
charge=
"0.2022"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1943"
charge=
"0.0615"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1944"
charge=
"0.067"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1945"
charge=
"0.0972"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1946"
charge=
"-0.6139"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1947"
charge=
"0.4186"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1948"
charge=
"-0.6541"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1949"
charge=
"0.4376"
radius=
"0.1"
gamma=
"9.399356"
/>
</GBVIForce>
</ForceField>
wrappers/python/simtk/openmm/app/data/amber10_gbvi.xml
deleted
100644 → 0
View file @
b20c20fe
<ForceField>
<GBVIForce
soluteDielectric=
"1.0"
>
<Atom
type=
"0"
charge=
"-0.4157"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1"
charge=
"0.2719"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"3"
charge=
"0.0823"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"4"
charge=
"-0.1825"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"5"
charge=
"0.0603"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"6"
charge=
"0.5973"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"7"
charge=
"-0.5679"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"8"
charge=
"-0.3479"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"9"
charge=
"0.2747"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"11"
charge=
"0.156"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"12"
charge=
"-0.0007"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"13"
charge=
"0.0327"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"14"
charge=
"0.039"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"15"
charge=
"0.0285"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"16"
charge=
"0.0486"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"17"
charge=
"0.0687"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"18"
charge=
"-0.5295"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"19"
charge=
"0.3456"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"20"
charge=
"0.8076"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"21"
charge=
"-0.8627"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"22"
charge=
"0.4478"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"23"
charge=
"-0.8627"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"24"
charge=
"0.4478"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"25"
charge=
"0.7341"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"26"
charge=
"-0.5894"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"27"
charge=
"-0.4157"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"28"
charge=
"0.2719"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"30"
charge=
"0.0864"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"31"
charge=
"-0.0316"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"32"
charge=
"0.0488"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"33"
charge=
"0.6462"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"34"
charge=
"-0.5554"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"35"
charge=
"-0.6376"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"36"
charge=
"0.4747"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"37"
charge=
"0.5973"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"38"
charge=
"-0.5679"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"39"
charge=
"-0.4157"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"40"
charge=
"0.2719"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"42"
charge=
"0.1048"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"43"
charge=
"-0.2041"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"44"
charge=
"0.0797"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"45"
charge=
"0.713"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"46"
charge=
"-0.5931"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"47"
charge=
"-0.9191"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"48"
charge=
"0.4196"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"49"
charge=
"0.5973"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"50"
charge=
"-0.5679"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"51"
charge=
"-0.5163"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"52"
charge=
"0.2936"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"54"
charge=
"0.088"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"55"
charge=
"-0.0303"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"56"
charge=
"-0.0122"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"57"
charge=
"0.7994"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"58"
charge=
"-0.8014"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"59"
charge=
"-0.8014"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"60"
charge=
"0.5366"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"61"
charge=
"-0.5819"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"62"
charge=
"-0.4157"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"63"
charge=
"0.2719"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"65"
charge=
"0.0508"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"66"
charge=
"-0.2413"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"67"
charge=
"0.1122"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"68"
charge=
"-0.8844"
radius=
"0.195"
gamma=
"-4.273956"
/>
<Atom
type=
"69"
charge=
"0.5973"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"70"
charge=
"-0.5679"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"71"
charge=
"-0.4157"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"72"
charge=
"0.2719"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"74"
charge=
"0.1124"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"75"
charge=
"-0.1231"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"76"
charge=
"0.1112"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"77"
charge=
"-0.3119"
radius=
"0.195"
gamma=
"-4.273956"
/>
<Atom
type=
"78"
charge=
"0.1933"
radius=
"0.125"
gamma=
"3.6563976"
/>
<Atom
type=
"79"
charge=
"0.5973"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"80"
charge=
"-0.5679"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"81"
charge=
"-0.4157"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"82"
charge=
"0.2719"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"84"
charge=
"0.0766"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"85"
charge=
"-0.079"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"86"
charge=
"0.091"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"87"
charge=
"-0.1081"
radius=
"0.195"
gamma=
"-4.273956"
/>
<Atom
type=
"88"
charge=
"0.5973"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"89"
charge=
"-0.5679"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"90"
charge=
"-0.4157"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"91"
charge=
"0.2719"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"93"
charge=
"0.0779"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"94"
charge=
"-0.0071"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"95"
charge=
"0.0256"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"96"
charge=
"-0.0174"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"97"
charge=
"0.043"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"98"
charge=
"0.6801"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"99"
charge=
"-0.5838"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"100"
charge=
"-0.6511"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"101"
charge=
"0.4641"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"102"
charge=
"0.5973"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"103"
charge=
"-0.5679"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"104"
charge=
"-0.4157"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"105"
charge=
"0.2719"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"107"
charge=
"0.085"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"108"
charge=
"-0.0036"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"109"
charge=
"0.0171"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"110"
charge=
"-0.0645"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"111"
charge=
"0.0352"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"112"
charge=
"0.6951"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"113"
charge=
"-0.6086"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"114"
charge=
"-0.9407"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"115"
charge=
"0.4251"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"116"
charge=
"0.5973"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"117"
charge=
"-0.5679"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"118"
charge=
"-0.5163"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"119"
charge=
"0.2936"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"121"
charge=
"0.1105"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"122"
charge=
"0.056"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"123"
charge=
"-0.0173"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"124"
charge=
"0.0136"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"125"
charge=
"-0.0425"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"126"
charge=
"0.8054"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"127"
charge=
"-0.8188"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"128"
charge=
"-0.8188"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"129"
charge=
"0.5366"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"130"
charge=
"-0.5819"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"131"
charge=
"-0.4157"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"132"
charge=
"0.2719"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"134"
charge=
"0.0698"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"135"
charge=
"0.5973"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"136"
charge=
"-0.5679"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"137"
charge=
"-0.4157"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"138"
charge=
"0.2719"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"140"
charge=
"0.0881"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"141"
charge=
"-0.0462"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"142"
charge=
"0.0402"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"143"
charge=
"-0.0266"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"144"
charge=
"-0.3811"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"145"
charge=
"0.3649"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"146"
charge=
"0.2057"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"147"
charge=
"0.1392"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"148"
charge=
"-0.5727"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"149"
charge=
"0.1292"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"150"
charge=
"0.1147"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"151"
charge=
"0.5973"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"152"
charge=
"-0.5679"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"153"
charge=
"-0.4157"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"154"
charge=
"0.2719"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"156"
charge=
"0.136"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"157"
charge=
"-0.0074"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"158"
charge=
"0.0367"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"159"
charge=
"0.1868"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"160"
charge=
"-0.5432"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"161"
charge=
"0.1635"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"162"
charge=
"0.1435"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"163"
charge=
"-0.2795"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"164"
charge=
"0.3339"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"165"
charge=
"-0.2207"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"166"
charge=
"0.1862"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"167"
charge=
"0.5973"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"168"
charge=
"-0.5679"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"169"
charge=
"-0.3479"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"170"
charge=
"0.2747"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"172"
charge=
"0.1212"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"173"
charge=
"-0.0414"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"174"
charge=
"0.081"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"175"
charge=
"-0.0012"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"176"
charge=
"-0.1513"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"177"
charge=
"0.3866"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"178"
charge=
"-0.017"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"179"
charge=
"0.2681"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"180"
charge=
"-0.1718"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"181"
charge=
"0.3911"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"182"
charge=
"-0.1141"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"183"
charge=
"0.2317"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"184"
charge=
"0.7341"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"185"
charge=
"-0.5894"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"186"
charge=
"-0.4157"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"187"
charge=
"0.2719"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"189"
charge=
"0.0869"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"190"
charge=
"0.1303"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"191"
charge=
"0.0187"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"192"
charge=
"-0.3204"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"193"
charge=
"0.0882"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"194"
charge=
"-0.043"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"195"
charge=
"0.0236"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"196"
charge=
"-0.066"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"197"
charge=
"0.0186"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"198"
charge=
"0.5973"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"199"
charge=
"-0.5679"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"200"
charge=
"-0.4157"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"201"
charge=
"0.2719"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"203"
charge=
"0.0922"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"204"
charge=
"-0.1102"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"205"
charge=
"0.0457"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"206"
charge=
"0.3531"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"207"
charge=
"-0.0361"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"208"
charge=
"-0.4121"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"209"
charge=
"0.1"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"210"
charge=
"-0.4121"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"211"
charge=
"0.1"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"212"
charge=
"0.5973"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"213"
charge=
"-0.5679"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"214"
charge=
"-0.4157"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"215"
charge=
"0.2719"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"217"
charge=
"0.0994"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"218"
charge=
"-0.04845"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"219"
charge=
"0.034"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"220"
charge=
"0.06612"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"221"
charge=
"0.01041"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"222"
charge=
"-0.03768"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"223"
charge=
"0.01155"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"224"
charge=
"0.32604"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"225"
charge=
"-0.03358"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"226"
charge=
"-1.03581"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"227"
charge=
"0.38604"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"228"
charge=
"0.5973"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"229"
charge=
"-0.5679"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"230"
charge=
"-0.3479"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"231"
charge=
"0.2747"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"233"
charge=
"0.1426"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"234"
charge=
"-0.0094"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"235"
charge=
"0.0362"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"236"
charge=
"0.0187"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"237"
charge=
"0.0103"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"238"
charge=
"-0.0479"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"239"
charge=
"0.0621"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"240"
charge=
"-0.0143"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"241"
charge=
"0.1135"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"242"
charge=
"-0.3854"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"243"
charge=
"0.34"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"244"
charge=
"0.7341"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"245"
charge=
"-0.5894"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"246"
charge=
"-0.4157"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"247"
charge=
"0.2719"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"249"
charge=
"0.088"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"250"
charge=
"0.0342"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"251"
charge=
"0.0241"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"252"
charge=
"0.0018"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"253"
charge=
"0.044"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"254"
charge=
"-0.2737"
radius=
"0.195"
gamma=
"-4.273956"
/>
<Atom
type=
"255"
charge=
"-0.0536"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"256"
charge=
"0.0684"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"257"
charge=
"0.5973"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"258"
charge=
"-0.5679"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"259"
charge=
"-0.4157"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"260"
charge=
"0.2719"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"262"
charge=
"0.0978"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"263"
charge=
"-0.0343"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"264"
charge=
"0.0295"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"265"
charge=
"0.0118"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"266"
charge=
"-0.1256"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"267"
charge=
"0.133"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"268"
charge=
"-0.1704"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"269"
charge=
"0.143"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"270"
charge=
"-0.1072"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"271"
charge=
"0.1297"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"272"
charge=
"-0.1704"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"273"
charge=
"0.143"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"274"
charge=
"-0.1256"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"275"
charge=
"0.133"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"276"
charge=
"0.5973"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"277"
charge=
"-0.5679"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"278"
charge=
"-0.2548"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"279"
charge=
"0.0192"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"280"
charge=
"0.0391"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"281"
charge=
"0.0189"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"282"
charge=
"0.0213"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"283"
charge=
"-0.007"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"284"
charge=
"0.0253"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"286"
charge=
"0.0641"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"287"
charge=
"0.5896"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"288"
charge=
"-0.5748"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"289"
charge=
"-0.4157"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"290"
charge=
"0.2719"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"292"
charge=
"0.0843"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"293"
charge=
"0.2117"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"294"
charge=
"0.0352"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"295"
charge=
"-0.6546"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"296"
charge=
"0.4275"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"297"
charge=
"0.5973"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"298"
charge=
"-0.5679"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"299"
charge=
"-0.4157"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"300"
charge=
"0.2719"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"302"
charge=
"0.1007"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"303"
charge=
"0.3654"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"304"
charge=
"0.0043"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"305"
charge=
"-0.2438"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"306"
charge=
"0.0642"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"307"
charge=
"-0.6761"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"308"
charge=
"0.4102"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"309"
charge=
"0.5973"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"310"
charge=
"-0.5679"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"311"
charge=
"-0.4157"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"312"
charge=
"0.2719"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"314"
charge=
"0.1123"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"315"
charge=
"-0.005"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"316"
charge=
"0.0339"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"317"
charge=
"-0.1415"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"318"
charge=
"-0.1638"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"319"
charge=
"0.2062"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"320"
charge=
"-0.3418"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"321"
charge=
"0.3412"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"322"
charge=
"0.138"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"323"
charge=
"-0.2601"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"324"
charge=
"0.1572"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"325"
charge=
"-0.1134"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"326"
charge=
"0.1417"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"327"
charge=
"-0.1972"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"328"
charge=
"0.1447"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"329"
charge=
"-0.2387"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"330"
charge=
"0.17"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"331"
charge=
"0.1243"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"332"
charge=
"0.5973"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"333"
charge=
"-0.5679"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"334"
charge=
"-0.4157"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"335"
charge=
"0.2719"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"337"
charge=
"0.0876"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"338"
charge=
"-0.0152"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"339"
charge=
"0.0295"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"340"
charge=
"-0.0011"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"341"
charge=
"-0.1906"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"342"
charge=
"0.1699"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"343"
charge=
"-0.2341"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"344"
charge=
"0.1656"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"345"
charge=
"0.3226"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"346"
charge=
"-0.5579"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"347"
charge=
"0.3992"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"348"
charge=
"-0.2341"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"349"
charge=
"0.1656"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"350"
charge=
"-0.1906"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"351"
charge=
"0.1699"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"352"
charge=
"0.5973"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"353"
charge=
"-0.5679"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"354"
charge=
"-0.4157"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"355"
charge=
"0.2719"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"357"
charge=
"0.0969"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"358"
charge=
"0.2985"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"359"
charge=
"-0.0297"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"360"
charge=
"-0.3192"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"361"
charge=
"0.0791"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"362"
charge=
"-0.3192"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"363"
charge=
"0.0791"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"364"
charge=
"0.5973"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"365"
charge=
"-0.5679"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"366"
charge=
"-0.3821"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"367"
charge=
"0.2681"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"369"
charge=
"0.1067"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"370"
charge=
"-0.2093"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"371"
charge=
"0.0764"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"372"
charge=
"0.7731"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"373"
charge=
"-0.8055"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"374"
charge=
"-0.8055"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"375"
charge=
"-0.3481"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"376"
charge=
"0.2764"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"378"
charge=
"0.1447"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"379"
charge=
"-0.0374"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"380"
charge=
"0.0371"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"381"
charge=
"0.0744"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"382"
charge=
"0.0185"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"383"
charge=
"0.1114"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"384"
charge=
"0.0468"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"385"
charge=
"-0.5564"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"386"
charge=
"0.3479"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"387"
charge=
"0.8368"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"388"
charge=
"-0.8737"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"389"
charge=
"0.4493"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"390"
charge=
"-0.8737"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"391"
charge=
"0.4493"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"392"
charge=
"0.8557"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"393"
charge=
"-0.8266"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"394"
charge=
"-0.8266"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"395"
charge=
"-0.3821"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"396"
charge=
"0.2681"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"398"
charge=
"0.1358"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"399"
charge=
"-0.2299"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"400"
charge=
"0.1023"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"401"
charge=
"0.7153"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"402"
charge=
"-0.601"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"403"
charge=
"-0.9084"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"404"
charge=
"0.415"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"405"
charge=
"0.805"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"406"
charge=
"-0.8147"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"407"
charge=
"-0.8147"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"408"
charge=
"-0.5192"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"409"
charge=
"0.3055"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"411"
charge=
"0.1046"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"412"
charge=
"-0.0677"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"413"
charge=
"-0.0212"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"414"
charge=
"0.8851"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"415"
charge=
"-0.8162"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"416"
charge=
"-0.8162"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"417"
charge=
"0.7256"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"418"
charge=
"-0.7887"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"419"
charge=
"-0.7887"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"420"
charge=
"-0.3821"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"421"
charge=
"0.2681"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"423"
charge=
"0.1396"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"424"
charge=
"-0.1996"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"425"
charge=
"0.1437"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"426"
charge=
"-0.3102"
radius=
"0.195"
gamma=
"-4.273956"
/>
<Atom
type=
"427"
charge=
"0.2068"
radius=
"0.125"
gamma=
"3.6563976"
/>
<Atom
type=
"428"
charge=
"0.7497"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"429"
charge=
"-0.7981"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"430"
charge=
"-0.7981"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"431"
charge=
"-0.3821"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"432"
charge=
"0.2681"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"434"
charge=
"0.0938"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"435"
charge=
"-0.1943"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"436"
charge=
"0.1228"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"437"
charge=
"-0.0529"
radius=
"0.195"
gamma=
"-4.273956"
/>
<Atom
type=
"438"
charge=
"0.7618"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"439"
charge=
"-0.8041"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"440"
charge=
"-0.8041"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"441"
charge=
"-0.3821"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"442"
charge=
"0.2681"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"444"
charge=
"0.1232"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"445"
charge=
"-0.0664"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"446"
charge=
"0.0452"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"447"
charge=
"-0.021"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"448"
charge=
"0.0203"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"449"
charge=
"0.7093"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"450"
charge=
"-0.6098"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"451"
charge=
"-0.9574"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"452"
charge=
"0.4304"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"453"
charge=
"0.7775"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"454"
charge=
"-0.8042"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"455"
charge=
"-0.8042"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"456"
charge=
"-0.5192"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"457"
charge=
"0.3055"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"459"
charge=
"0.1399"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"460"
charge=
"0.0071"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"461"
charge=
"-0.0078"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"462"
charge=
"0.0675"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"463"
charge=
"-0.0548"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"464"
charge=
"0.8183"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"465"
charge=
"-0.822"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"466"
charge=
"-0.822"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"467"
charge=
"0.742"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"468"
charge=
"-0.793"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"469"
charge=
"-0.793"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"470"
charge=
"-0.3821"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"471"
charge=
"0.2681"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"473"
charge=
"0.1056"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"474"
charge=
"0.7231"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"475"
charge=
"-0.7855"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"476"
charge=
"-0.7855"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"477"
charge=
"-0.3821"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"478"
charge=
"0.2681"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"480"
charge=
"0.11"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"481"
charge=
"-0.1046"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"482"
charge=
"0.0565"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"483"
charge=
"0.0293"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"484"
charge=
"-0.3892"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"485"
charge=
"0.3755"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"486"
charge=
"0.1925"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"487"
charge=
"0.1418"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"488"
charge=
"-0.5629"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"489"
charge=
"0.1001"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"490"
charge=
"0.1241"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"491"
charge=
"0.7615"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"492"
charge=
"-0.8016"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"493"
charge=
"-0.8016"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"494"
charge=
"-0.3821"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"495"
charge=
"0.2681"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"497"
charge=
"0.165"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"498"
charge=
"-0.1068"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"499"
charge=
"0.062"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"500"
charge=
"0.2724"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"501"
charge=
"-0.5517"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"502"
charge=
"0.1558"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"503"
charge=
"0.1448"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"504"
charge=
"-0.267"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"505"
charge=
"0.3319"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"506"
charge=
"-0.2588"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"507"
charge=
"0.1957"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"508"
charge=
"0.7916"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"509"
charge=
"-0.8065"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"510"
charge=
"-0.8065"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"511"
charge=
"-0.3481"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"512"
charge=
"0.2764"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"514"
charge=
"0.1115"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"515"
charge=
"-0.08"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"516"
charge=
"0.0868"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"517"
charge=
"0.0298"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"518"
charge=
"-0.1501"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"519"
charge=
"0.3883"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"520"
charge=
"-0.0251"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"521"
charge=
"0.2694"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"522"
charge=
"-0.1683"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"523"
charge=
"0.3913"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"524"
charge=
"-0.1256"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"525"
charge=
"0.2336"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"526"
charge=
"0.8032"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"527"
charge=
"-0.8177"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"528"
charge=
"-0.8177"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"529"
charge=
"-0.3821"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"530"
charge=
"0.2681"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"532"
charge=
"0.1375"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"533"
charge=
"0.0363"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"534"
charge=
"0.0766"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"535"
charge=
"-0.3498"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"536"
charge=
"0.1021"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"537"
charge=
"-0.0323"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"538"
charge=
"0.0321"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"539"
charge=
"-0.0699"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"540"
charge=
"0.0196"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"541"
charge=
"0.8343"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"542"
charge=
"-0.819"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"543"
charge=
"-0.819"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"544"
charge=
"-0.3821"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"545"
charge=
"0.2681"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"547"
charge=
"0.1346"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"548"
charge=
"-0.2469"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"549"
charge=
"0.0974"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"550"
charge=
"0.3706"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"551"
charge=
"-0.0374"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"552"
charge=
"-0.4163"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"553"
charge=
"0.1038"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"554"
charge=
"-0.4163"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"555"
charge=
"0.1038"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"556"
charge=
"0.8326"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"557"
charge=
"-0.8199"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"558"
charge=
"-0.8199"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"559"
charge=
"-0.3481"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"560"
charge=
"0.2764"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"562"
charge=
"0.1438"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"563"
charge=
"-0.0538"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"564"
charge=
"0.0482"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"565"
charge=
"0.0227"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"566"
charge=
"0.0134"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"567"
charge=
"-0.0392"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"568"
charge=
"0.0611"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"569"
charge=
"-0.0176"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"570"
charge=
"0.1121"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"571"
charge=
"-0.3741"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"572"
charge=
"0.3374"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"573"
charge=
"0.8488"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"574"
charge=
"-0.8252"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"575"
charge=
"-0.8252"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"576"
charge=
"-0.3821"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"577"
charge=
"0.2681"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"579"
charge=
"0.1277"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"580"
charge=
"-0.0236"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"581"
charge=
"0.048"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"582"
charge=
"0.0492"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"583"
charge=
"0.0317"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"584"
charge=
"-0.2692"
radius=
"0.195"
gamma=
"-4.273956"
/>
<Atom
type=
"585"
charge=
"-0.0376"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"586"
charge=
"0.0625"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"587"
charge=
"0.8013"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"588"
charge=
"-0.8105"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"589"
charge=
"-0.8105"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"590"
charge=
"-0.3821"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"591"
charge=
"0.2681"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"593"
charge=
"0.1098"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"594"
charge=
"-0.0959"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"595"
charge=
"0.0443"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"596"
charge=
"0.0552"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"597"
charge=
"-0.13"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"598"
charge=
"0.1408"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"599"
charge=
"-0.1847"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"600"
charge=
"0.1461"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"601"
charge=
"-0.0944"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"602"
charge=
"0.128"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"603"
charge=
"-0.1847"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"604"
charge=
"0.1461"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"605"
charge=
"-0.13"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"606"
charge=
"0.1408"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"607"
charge=
"0.766"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"608"
charge=
"-0.8026"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"609"
charge=
"-0.8026"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"610"
charge=
"-0.2802"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"611"
charge=
"0.0434"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"612"
charge=
"0.0331"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"613"
charge=
"0.0466"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"614"
charge=
"0.0172"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"615"
charge=
"-0.0543"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"616"
charge=
"0.0381"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"618"
charge=
"0.0776"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"619"
charge=
"0.6631"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"620"
charge=
"-0.7697"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"621"
charge=
"-0.7697"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"622"
charge=
"-0.3821"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"623"
charge=
"0.2681"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"625"
charge=
"0.1304"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"626"
charge=
"0.1123"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"627"
charge=
"0.0813"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"628"
charge=
"-0.6514"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"629"
charge=
"0.4474"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"630"
charge=
"0.8113"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"631"
charge=
"-0.8132"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"632"
charge=
"-0.8132"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"633"
charge=
"-0.3821"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"634"
charge=
"0.2681"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"636"
charge=
"0.1207"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"637"
charge=
"0.3025"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"638"
charge=
"0.0078"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"639"
charge=
"-0.1853"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"640"
charge=
"0.0586"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"641"
charge=
"-0.6496"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"642"
charge=
"0.4119"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"643"
charge=
"0.781"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"644"
charge=
"-0.8044"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"645"
charge=
"-0.8044"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"646"
charge=
"-0.3821"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"647"
charge=
"0.2681"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"649"
charge=
"0.1272"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"650"
charge=
"-0.0742"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"651"
charge=
"0.0497"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"652"
charge=
"-0.0796"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"653"
charge=
"-0.1808"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"654"
charge=
"0.2043"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"655"
charge=
"-0.3316"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"656"
charge=
"0.3413"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"657"
charge=
"0.1222"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"658"
charge=
"-0.2594"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"659"
charge=
"0.1567"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"660"
charge=
"-0.102"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"661"
charge=
"0.1401"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"662"
charge=
"-0.2287"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"663"
charge=
"0.1507"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"664"
charge=
"-0.1837"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"665"
charge=
"0.1491"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"666"
charge=
"0.1078"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"667"
charge=
"0.7658"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"668"
charge=
"-0.8011"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"669"
charge=
"-0.8011"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"670"
charge=
"-0.3821"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"671"
charge=
"0.2681"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"673"
charge=
"0.1092"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"674"
charge=
"-0.0752"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"675"
charge=
"0.049"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"676"
charge=
"0.0243"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"677"
charge=
"-0.1922"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"678"
charge=
"0.178"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"679"
charge=
"-0.2458"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"680"
charge=
"0.1673"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"681"
charge=
"0.3395"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"682"
charge=
"-0.5643"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"683"
charge=
"0.4017"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"684"
charge=
"-0.2458"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"685"
charge=
"0.1673"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"686"
charge=
"-0.1922"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"687"
charge=
"0.178"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"688"
charge=
"0.7817"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"689"
charge=
"-0.807"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"690"
charge=
"-0.807"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"691"
charge=
"-0.3821"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"692"
charge=
"0.2681"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"694"
charge=
"0.1438"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"695"
charge=
"0.194"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"696"
charge=
"0.0308"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"697"
charge=
"-0.3064"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"698"
charge=
"0.0836"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"699"
charge=
"-0.3064"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"700"
charge=
"0.0836"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"701"
charge=
"0.835"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"702"
charge=
"-0.8173"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"703"
charge=
"-0.8173"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"704"
charge=
"-0.463"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"705"
charge=
"0.2315"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"706"
charge=
"-0.4157"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"707"
charge=
"0.2719"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"708"
charge=
"-0.149"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"709"
charge=
"0.0976"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"710"
charge=
"0.1123"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"711"
charge=
"-0.3662"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"712"
charge=
"0.5972"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"713"
charge=
"-0.5679"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"714"
charge=
"0.1414"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"715"
charge=
"0.1997"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"717"
charge=
"0.0889"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"718"
charge=
"-0.0597"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"719"
charge=
"0.03"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"720"
charge=
"0.6163"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"721"
charge=
"-0.5722"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"722"
charge=
"0.1305"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"723"
charge=
"0.2083"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"725"
charge=
"0.1242"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"726"
charge=
"0.0118"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"727"
charge=
"0.0226"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"728"
charge=
"0.0236"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"729"
charge=
"0.0309"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"730"
charge=
"0.0935"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"731"
charge=
"0.0527"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"732"
charge=
"-0.565"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"733"
charge=
"0.3592"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"734"
charge=
"0.8281"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"735"
charge=
"-0.8693"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"736"
charge=
"0.4494"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"737"
charge=
"-0.8693"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"738"
charge=
"0.4494"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"739"
charge=
"0.7214"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"740"
charge=
"-0.6013"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"741"
charge=
"0.1801"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"742"
charge=
"0.1921"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"744"
charge=
"0.1231"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"745"
charge=
"-0.0283"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"746"
charge=
"0.0515"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"747"
charge=
"0.5833"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"748"
charge=
"-0.5744"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"749"
charge=
"-0.8634"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"750"
charge=
"0.4097"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"751"
charge=
"0.6163"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"752"
charge=
"-0.5722"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"753"
charge=
"0.0782"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"754"
charge=
"0.22"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"756"
charge=
"0.1141"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"757"
charge=
"-0.0235"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"758"
charge=
"-0.0169"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"759"
charge=
"0.8194"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"760"
charge=
"-0.8084"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"761"
charge=
"-0.8084"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"762"
charge=
"0.5621"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"763"
charge=
"-0.5889"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"764"
charge=
"0.1325"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"765"
charge=
"0.2023"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"767"
charge=
"0.1411"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"768"
charge=
"-0.1195"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"769"
charge=
"0.1188"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"770"
charge=
"-0.3298"
radius=
"0.195"
gamma=
"-4.273956"
/>
<Atom
type=
"771"
charge=
"0.1975"
radius=
"0.125"
gamma=
"3.6563976"
/>
<Atom
type=
"772"
charge=
"0.6123"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"773"
charge=
"-0.5713"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"774"
charge=
"0.2069"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"775"
charge=
"0.1815"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"777"
charge=
"0.0922"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"778"
charge=
"-0.0277"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"779"
charge=
"0.068"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"780"
charge=
"-0.0984"
radius=
"0.195"
gamma=
"-4.273956"
/>
<Atom
type=
"781"
charge=
"0.6123"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"782"
charge=
"-0.5713"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"783"
charge=
"0.1493"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"784"
charge=
"0.1996"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"786"
charge=
"0.1015"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"787"
charge=
"0.0651"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"788"
charge=
"0.005"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"789"
charge=
"-0.0903"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"790"
charge=
"0.0331"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"791"
charge=
"0.7354"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"792"
charge=
"-0.6133"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"793"
charge=
"-1.0031"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"794"
charge=
"0.4429"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"795"
charge=
"0.6123"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"796"
charge=
"-0.5713"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"797"
charge=
"0.0017"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"798"
charge=
"0.2391"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"800"
charge=
"0.1202"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"801"
charge=
"0.0909"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"802"
charge=
"-0.0232"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"803"
charge=
"-0.0236"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"804"
charge=
"-0.0315"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"805"
charge=
"0.8087"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"806"
charge=
"-0.8189"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"807"
charge=
"-0.8189"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"808"
charge=
"0.5621"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"809"
charge=
"-0.5889"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"810"
charge=
"0.2943"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"811"
charge=
"0.1642"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"813"
charge=
"0.0895"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"814"
charge=
"0.6163"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"815"
charge=
"-0.5722"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"816"
charge=
"0.1542"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"817"
charge=
"0.1963"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"819"
charge=
"0.0958"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"820"
charge=
"0.0259"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"821"
charge=
"0.0209"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"822"
charge=
"-0.0399"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"823"
charge=
"-0.3819"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"824"
charge=
"0.3632"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"825"
charge=
"0.2127"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"826"
charge=
"0.1385"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"827"
charge=
"-0.5711"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"828"
charge=
"0.1046"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"829"
charge=
"0.1299"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"830"
charge=
"0.6123"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"831"
charge=
"-0.5713"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"832"
charge=
"0.1472"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"833"
charge=
"0.2016"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"835"
charge=
"0.138"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"836"
charge=
"0.0489"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"837"
charge=
"0.0223"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"838"
charge=
"0.174"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"839"
charge=
"-0.5579"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"840"
charge=
"0.1804"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"841"
charge=
"0.1397"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"842"
charge=
"-0.2781"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"843"
charge=
"0.3324"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"844"
charge=
"-0.2349"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"845"
charge=
"0.1963"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"846"
charge=
"0.6123"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"847"
charge=
"-0.5713"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"848"
charge=
"0.256"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"849"
charge=
"0.1704"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"851"
charge=
"0.1047"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"852"
charge=
"0.0484"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"853"
charge=
"0.0531"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"854"
charge=
"-0.0236"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"855"
charge=
"-0.151"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"856"
charge=
"0.3821"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"857"
charge=
"-0.0011"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"858"
charge=
"0.2645"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"859"
charge=
"-0.1739"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"860"
charge=
"0.3921"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"861"
charge=
"-0.1433"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"862"
charge=
"0.2495"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"863"
charge=
"0.7214"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"864"
charge=
"-0.6013"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"865"
charge=
"0.0311"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"866"
charge=
"0.2329"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"868"
charge=
"0.1031"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"869"
charge=
"0.1885"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"870"
charge=
"0.0213"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"871"
charge=
"-0.372"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"872"
charge=
"0.0947"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"873"
charge=
"-0.0387"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"874"
charge=
"0.0201"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"875"
charge=
"-0.0908"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"876"
charge=
"0.0226"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"877"
charge=
"0.6123"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"878"
charge=
"-0.5713"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"879"
charge=
"0.101"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"880"
charge=
"0.2148"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"882"
charge=
"0.1053"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"883"
charge=
"-0.0244"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"884"
charge=
"0.0256"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"885"
charge=
"0.3421"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"886"
charge=
"-0.038"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"887"
charge=
"-0.4106"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"888"
charge=
"0.098"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"889"
charge=
"-0.4104"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"890"
charge=
"0.098"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"891"
charge=
"0.6123"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"892"
charge=
"-0.5713"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"893"
charge=
"0.0966"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"894"
charge=
"0.2165"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"896"
charge=
"0.118"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"897"
charge=
"0.0212"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"898"
charge=
"0.0283"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"899"
charge=
"-0.0048"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"900"
charge=
"0.0121"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"901"
charge=
"-0.0608"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"902"
charge=
"0.0633"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"903"
charge=
"-0.0181"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"904"
charge=
"0.1171"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"905"
charge=
"-0.3764"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"906"
charge=
"0.3382"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"907"
charge=
"0.7214"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"908"
charge=
"-0.6013"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"909"
charge=
"0.1592"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"910"
charge=
"0.1984"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"912"
charge=
"0.1116"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"913"
charge=
"0.0865"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"914"
charge=
"0.0125"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"915"
charge=
"0.0334"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"916"
charge=
"0.0292"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"917"
charge=
"-0.2774"
radius=
"0.195"
gamma=
"-4.273956"
/>
<Atom
type=
"918"
charge=
"-0.0341"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"919"
charge=
"0.0597"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"920"
charge=
"0.6123"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"921"
charge=
"-0.5713"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"922"
charge=
"0.1737"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"923"
charge=
"0.1921"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"925"
charge=
"0.1041"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"926"
charge=
"0.033"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"927"
charge=
"0.0104"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"928"
charge=
"0.0031"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"929"
charge=
"-0.1392"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"930"
charge=
"0.1374"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"931"
charge=
"-0.1602"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"932"
charge=
"0.1433"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"933"
charge=
"-0.1208"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"934"
charge=
"0.1329"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"935"
charge=
"-0.1603"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"936"
charge=
"0.1433"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"937"
charge=
"-0.1391"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"938"
charge=
"0.1374"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"939"
charge=
"0.6123"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"940"
charge=
"-0.5713"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"941"
charge=
"-0.202"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"942"
charge=
"0.312"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"943"
charge=
"-0.012"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"944"
charge=
"0.1"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"945"
charge=
"-0.121"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"946"
charge=
"0.1"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"947"
charge=
"-0.115"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"948"
charge=
"0.1"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"950"
charge=
"0.1"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"951"
charge=
"0.526"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"952"
charge=
"-0.5"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"953"
charge=
"0.1849"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"954"
charge=
"0.1898"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"956"
charge=
"0.0782"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"957"
charge=
"0.2596"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"958"
charge=
"0.0273"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"959"
charge=
"-0.6714"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"960"
charge=
"0.4239"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"961"
charge=
"0.6163"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"962"
charge=
"-0.5722"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"963"
charge=
"0.1812"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"964"
charge=
"0.1934"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"966"
charge=
"0.1087"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"967"
charge=
"0.4514"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"968"
charge=
"-0.0323"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"969"
charge=
"-0.2554"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"970"
charge=
"0.0627"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"971"
charge=
"-0.6764"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"972"
charge=
"0.407"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"973"
charge=
"0.6163"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"974"
charge=
"-0.5722"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"975"
charge=
"0.1913"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"976"
charge=
"0.1888"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"978"
charge=
"0.1162"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"979"
charge=
"0.0543"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"980"
charge=
"0.0222"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"981"
charge=
"-0.1654"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"982"
charge=
"-0.1788"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"983"
charge=
"0.2195"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"984"
charge=
"-0.3444"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"985"
charge=
"0.3412"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"986"
charge=
"0.1575"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"987"
charge=
"-0.271"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"988"
charge=
"0.1589"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"989"
charge=
"-0.108"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"990"
charge=
"0.1411"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"991"
charge=
"-0.2034"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"992"
charge=
"0.1458"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"993"
charge=
"-0.2265"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"994"
charge=
"0.1646"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"995"
charge=
"0.1132"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"996"
charge=
"0.6123"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"997"
charge=
"-0.5713"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"998"
charge=
"0.194"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"999"
charge=
"0.1873"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1001"
charge=
"0.0983"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1002"
charge=
"0.0659"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1003"
charge=
"0.0102"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1004"
charge=
"-0.0205"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1005"
charge=
"-0.2002"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1006"
charge=
"0.172"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1007"
charge=
"-0.2239"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1008"
charge=
"0.165"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1009"
charge=
"0.3139"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1010"
charge=
"-0.5578"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1011"
charge=
"0.4001"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1012"
charge=
"-0.2239"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1013"
charge=
"0.165"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1014"
charge=
"-0.2002"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1015"
charge=
"0.172"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1016"
charge=
"0.6123"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1017"
charge=
"-0.5713"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1018"
charge=
"0.0577"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"1019"
charge=
"0.2272"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1021"
charge=
"0.1093"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1022"
charge=
"0.3196"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1023"
charge=
"-0.0221"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1024"
charge=
"-0.3129"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1025"
charge=
"0.0735"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1026"
charge=
"-0.3129"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1027"
charge=
"0.0735"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1028"
charge=
"0.6163"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1029"
charge=
"-0.5722"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1030"
charge=
"1.1662"
radius=
"0.215"
gamma=
"-17.2301304"
/>
<Atom
type=
"1031"
charge=
"-0.776"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1032"
charge=
"-0.776"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1033"
charge=
"-0.4989"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1035"
charge=
"0.0679"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1036"
charge=
"0.1065"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1037"
charge=
"0.1174"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1038"
charge=
"-0.3548"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1039"
charge=
"0.0394"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1040"
charge=
"0.2007"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1041"
charge=
"-0.0251"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1043"
charge=
"0.1553"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1044"
charge=
"-0.6073"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1045"
charge=
"0.0515"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1046"
charge=
"0.7009"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1047"
charge=
"-0.9019"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1048"
charge=
"0.4115"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1049"
charge=
"-0.7615"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1050"
charge=
"0.5875"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1051"
charge=
"0.0473"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1052"
charge=
"-0.6997"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1053"
charge=
"0.3053"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1054"
charge=
"0.2022"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1055"
charge=
"0.0615"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1056"
charge=
"0.067"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1057"
charge=
"0.0972"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1058"
charge=
"-0.6139"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1059"
charge=
"0.4186"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1060"
charge=
"-0.5246"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1061"
charge=
"1.1662"
radius=
"0.215"
gamma=
"-17.2301304"
/>
<Atom
type=
"1062"
charge=
"-0.776"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1063"
charge=
"-0.776"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1064"
charge=
"-0.4989"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1066"
charge=
"0.0679"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1067"
charge=
"0.1065"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1068"
charge=
"0.1174"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1069"
charge=
"-0.3548"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1070"
charge=
"0.0394"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1071"
charge=
"0.2007"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1072"
charge=
"-0.0251"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1074"
charge=
"0.1553"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1075"
charge=
"-0.6073"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1076"
charge=
"0.0515"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1077"
charge=
"0.7009"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1078"
charge=
"-0.9019"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1079"
charge=
"0.4115"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1080"
charge=
"-0.7615"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1081"
charge=
"0.5875"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1082"
charge=
"0.0473"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1083"
charge=
"-0.6997"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1084"
charge=
"0.3053"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1085"
charge=
"0.2022"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1086"
charge=
"0.0615"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1087"
charge=
"0.067"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1088"
charge=
"0.0972"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1089"
charge=
"-0.6139"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1090"
charge=
"0.4186"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1091"
charge=
"-0.6541"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1092"
charge=
"0.4376"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1093"
charge=
"0.4295"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1094"
charge=
"-0.6223"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1096"
charge=
"0.0679"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1097"
charge=
"0.1065"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1098"
charge=
"0.1174"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1099"
charge=
"-0.3548"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1100"
charge=
"0.0394"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1101"
charge=
"0.2007"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1102"
charge=
"-0.0251"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1104"
charge=
"0.1553"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1105"
charge=
"-0.6073"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1106"
charge=
"0.0515"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1107"
charge=
"0.7009"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1108"
charge=
"-0.9019"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1109"
charge=
"0.4115"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1110"
charge=
"-0.7615"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1111"
charge=
"0.5875"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1112"
charge=
"0.0473"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1113"
charge=
"-0.6997"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1114"
charge=
"0.3053"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1115"
charge=
"0.2022"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1116"
charge=
"0.0615"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1117"
charge=
"0.067"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1118"
charge=
"0.0972"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1119"
charge=
"-0.6139"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1120"
charge=
"0.4186"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1121"
charge=
"-0.5246"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1122"
charge=
"0.4295"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1123"
charge=
"-0.6223"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1125"
charge=
"0.0679"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1126"
charge=
"0.1065"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1127"
charge=
"0.1174"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1128"
charge=
"-0.3548"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1129"
charge=
"0.0394"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1130"
charge=
"0.2007"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1131"
charge=
"-0.0251"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1133"
charge=
"0.1553"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1134"
charge=
"-0.6073"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1135"
charge=
"0.0515"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1136"
charge=
"0.7009"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1137"
charge=
"-0.9019"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1138"
charge=
"0.4115"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1139"
charge=
"-0.7615"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1140"
charge=
"0.5875"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1141"
charge=
"0.0473"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1142"
charge=
"-0.6997"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1143"
charge=
"0.3053"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1144"
charge=
"0.2022"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1145"
charge=
"0.0615"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1146"
charge=
"0.067"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1147"
charge=
"0.0972"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1148"
charge=
"-0.6139"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1149"
charge=
"0.4186"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1150"
charge=
"-0.6541"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1151"
charge=
"0.4376"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1152"
charge=
"1.1662"
radius=
"0.215"
gamma=
"-17.2301304"
/>
<Atom
type=
"1153"
charge=
"-0.776"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1154"
charge=
"-0.776"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1155"
charge=
"-0.4989"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1157"
charge=
"0.0679"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1158"
charge=
"0.1065"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1159"
charge=
"0.1174"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1160"
charge=
"-0.3548"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1161"
charge=
"0.0066"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1162"
charge=
"0.2029"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1163"
charge=
"-0.0484"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1165"
charge=
"0.1958"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1167"
charge=
"0.1928"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1168"
charge=
"0.8185"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1169"
charge=
"-0.953"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1170"
charge=
"0.4234"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1171"
charge=
"-0.7584"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1172"
charge=
"0.7538"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1173"
charge=
"-0.6252"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1174"
charge=
"0.2022"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1175"
charge=
"0.0615"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1176"
charge=
"0.067"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1177"
charge=
"0.0972"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1178"
charge=
"-0.6139"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1179"
charge=
"0.4186"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1180"
charge=
"-0.5246"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1181"
charge=
"1.1662"
radius=
"0.215"
gamma=
"-17.2301304"
/>
<Atom
type=
"1182"
charge=
"-0.776"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1183"
charge=
"-0.776"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1184"
charge=
"-0.4989"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1186"
charge=
"0.0679"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1187"
charge=
"0.1065"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1188"
charge=
"0.1174"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1189"
charge=
"-0.3548"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1190"
charge=
"0.0066"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1191"
charge=
"0.2029"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1192"
charge=
"-0.0484"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1194"
charge=
"0.1958"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1196"
charge=
"0.1928"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1197"
charge=
"0.8185"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1198"
charge=
"-0.953"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1199"
charge=
"0.4234"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1200"
charge=
"-0.7584"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1201"
charge=
"0.7538"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1202"
charge=
"-0.6252"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1203"
charge=
"0.2022"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1204"
charge=
"0.0615"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1205"
charge=
"0.067"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1206"
charge=
"0.0972"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1207"
charge=
"-0.6139"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1208"
charge=
"0.4186"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1209"
charge=
"-0.6541"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1210"
charge=
"0.4376"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1211"
charge=
"0.4295"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1212"
charge=
"-0.6223"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1214"
charge=
"0.0679"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1215"
charge=
"0.1065"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1216"
charge=
"0.1174"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1217"
charge=
"-0.3548"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1218"
charge=
"0.0066"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1219"
charge=
"0.2029"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1220"
charge=
"-0.0484"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1222"
charge=
"0.1958"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1224"
charge=
"0.1928"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1225"
charge=
"0.8185"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1226"
charge=
"-0.953"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1227"
charge=
"0.4234"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1228"
charge=
"-0.7584"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1229"
charge=
"0.7538"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1230"
charge=
"-0.6252"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1231"
charge=
"0.2022"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1232"
charge=
"0.0615"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1233"
charge=
"0.067"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1234"
charge=
"0.0972"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1235"
charge=
"-0.6139"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1236"
charge=
"0.4186"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1237"
charge=
"-0.5246"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1238"
charge=
"0.4295"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1239"
charge=
"-0.6223"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1241"
charge=
"0.0679"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1242"
charge=
"0.1065"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1243"
charge=
"0.1174"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1244"
charge=
"-0.3548"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1245"
charge=
"0.0066"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1246"
charge=
"0.2029"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1247"
charge=
"-0.0484"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1249"
charge=
"0.1958"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1251"
charge=
"0.1928"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1252"
charge=
"0.8185"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1253"
charge=
"-0.953"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1254"
charge=
"0.4234"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1255"
charge=
"-0.7584"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1256"
charge=
"0.7538"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1257"
charge=
"-0.6252"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1258"
charge=
"0.2022"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1259"
charge=
"0.0615"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1260"
charge=
"0.067"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1261"
charge=
"0.0972"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1262"
charge=
"-0.6139"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1263"
charge=
"0.4186"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1264"
charge=
"-0.6541"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1265"
charge=
"0.4376"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1266"
charge=
"1.1659"
radius=
"0.215"
gamma=
"-17.2301304"
/>
<Atom
type=
"1267"
charge=
"-0.7761"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1268"
charge=
"-0.7761"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1269"
charge=
"-0.4954"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1271"
charge=
"0.0754"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1272"
charge=
"0.1629"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1273"
charge=
"0.1176"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1274"
charge=
"-0.3691"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1275"
charge=
"0.0431"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1276"
charge=
"0.1838"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1277"
charge=
"-0.0268"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1278"
charge=
"0.1607"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1279"
charge=
"0.1877"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1280"
charge=
"-0.6175"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1281"
charge=
"0.0725"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1282"
charge=
"0.6897"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1283"
charge=
"-0.9123"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1284"
charge=
"0.4167"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1285"
charge=
"-0.7624"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1286"
charge=
"0.5716"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1287"
charge=
"0.0598"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1288"
charge=
"-0.7417"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1289"
charge=
"0.38"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1290"
charge=
"0.0713"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1291"
charge=
"0.0985"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1292"
charge=
"-0.0854"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1293"
charge=
"0.0718"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1294"
charge=
"-0.5232"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1295"
charge=
"1.1659"
radius=
"0.215"
gamma=
"-17.2301304"
/>
<Atom
type=
"1296"
charge=
"-0.7761"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1297"
charge=
"-0.7761"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1298"
charge=
"-0.4954"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1300"
charge=
"0.0754"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1301"
charge=
"0.1629"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1302"
charge=
"0.1176"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1303"
charge=
"-0.3691"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1304"
charge=
"0.0431"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1305"
charge=
"0.1838"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1306"
charge=
"-0.0268"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1307"
charge=
"0.1607"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1308"
charge=
"0.1877"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1309"
charge=
"-0.6175"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1310"
charge=
"0.0725"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1311"
charge=
"0.6897"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1312"
charge=
"-0.9123"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1313"
charge=
"0.4167"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1314"
charge=
"-0.7624"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1315"
charge=
"0.5716"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1316"
charge=
"0.0598"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1317"
charge=
"-0.7417"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1318"
charge=
"0.38"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1319"
charge=
"0.0713"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1320"
charge=
"0.0985"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1321"
charge=
"-0.0854"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1322"
charge=
"0.0718"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1323"
charge=
"-0.6549"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1324"
charge=
"0.4396"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1325"
charge=
"0.4422"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1326"
charge=
"-0.6318"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1328"
charge=
"0.0754"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1329"
charge=
"0.1629"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1330"
charge=
"0.1176"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1331"
charge=
"-0.3691"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1332"
charge=
"0.0431"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1333"
charge=
"0.1838"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1334"
charge=
"-0.0268"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1335"
charge=
"0.1607"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1336"
charge=
"0.1877"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1337"
charge=
"-0.6175"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1338"
charge=
"0.0725"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1339"
charge=
"0.6897"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1340"
charge=
"-0.9123"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1341"
charge=
"0.4167"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1342"
charge=
"-0.7624"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1343"
charge=
"0.5716"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1344"
charge=
"0.0598"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1345"
charge=
"-0.7417"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1346"
charge=
"0.38"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1347"
charge=
"0.0713"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1348"
charge=
"0.0985"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1349"
charge=
"-0.0854"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1350"
charge=
"0.0718"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1351"
charge=
"-0.5232"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1352"
charge=
"0.4422"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1353"
charge=
"-0.6318"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1355"
charge=
"0.0754"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1356"
charge=
"0.1629"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1357"
charge=
"0.1176"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1358"
charge=
"-0.3691"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1359"
charge=
"0.0431"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1360"
charge=
"0.1838"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1361"
charge=
"-0.0268"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1362"
charge=
"0.1607"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1363"
charge=
"0.1877"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1364"
charge=
"-0.6175"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1365"
charge=
"0.0725"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1366"
charge=
"0.6897"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1367"
charge=
"-0.9123"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1368"
charge=
"0.4167"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1369"
charge=
"-0.7624"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1370"
charge=
"0.5716"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1371"
charge=
"0.0598"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1372"
charge=
"-0.7417"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1373"
charge=
"0.38"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1374"
charge=
"0.0713"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1375"
charge=
"0.0985"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1376"
charge=
"-0.0854"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1377"
charge=
"0.0718"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1378"
charge=
"-0.6549"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1379"
charge=
"0.4396"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1380"
charge=
"1.1659"
radius=
"0.215"
gamma=
"-17.2301304"
/>
<Atom
type=
"1381"
charge=
"-0.7761"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1382"
charge=
"-0.7761"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1383"
charge=
"-0.4954"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1385"
charge=
"0.0754"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1386"
charge=
"0.1629"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1387"
charge=
"0.1176"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1388"
charge=
"-0.3691"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1389"
charge=
"-0.0116"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1390"
charge=
"0.1963"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1391"
charge=
"-0.0339"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1392"
charge=
"-0.0183"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1393"
charge=
"0.2293"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1394"
charge=
"-0.5222"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1395"
charge=
"0.1863"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1396"
charge=
"0.8439"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1397"
charge=
"-0.9773"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1398"
charge=
"0.4314"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1399"
charge=
"-0.7748"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1400"
charge=
"0.7959"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1401"
charge=
"-0.6548"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1402"
charge=
"0.0713"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1403"
charge=
"0.0985"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1404"
charge=
"-0.0854"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1405"
charge=
"0.0718"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1406"
charge=
"-0.5232"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1407"
charge=
"1.1659"
radius=
"0.215"
gamma=
"-17.2301304"
/>
<Atom
type=
"1408"
charge=
"-0.7761"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1409"
charge=
"-0.7761"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1410"
charge=
"-0.4954"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1412"
charge=
"0.0754"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1413"
charge=
"0.1629"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1414"
charge=
"0.1176"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1415"
charge=
"-0.3691"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1416"
charge=
"-0.0116"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1417"
charge=
"0.1963"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1418"
charge=
"-0.0339"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1419"
charge=
"-0.0183"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1420"
charge=
"0.2293"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1421"
charge=
"-0.5222"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1422"
charge=
"0.1863"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1423"
charge=
"0.8439"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1424"
charge=
"-0.9773"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1425"
charge=
"0.4314"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1426"
charge=
"-0.7748"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1427"
charge=
"0.7959"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1428"
charge=
"-0.6548"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1429"
charge=
"0.0713"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1430"
charge=
"0.0985"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1431"
charge=
"-0.0854"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1432"
charge=
"0.0718"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1433"
charge=
"-0.6549"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1434"
charge=
"0.4396"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1435"
charge=
"0.4422"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1436"
charge=
"-0.6318"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1438"
charge=
"0.0754"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1439"
charge=
"0.1629"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1440"
charge=
"0.1176"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1441"
charge=
"-0.3691"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1442"
charge=
"-0.0116"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1443"
charge=
"0.1963"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1444"
charge=
"-0.0339"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1445"
charge=
"-0.0183"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1446"
charge=
"0.2293"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1447"
charge=
"-0.5222"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1448"
charge=
"0.1863"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1449"
charge=
"0.8439"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1450"
charge=
"-0.9773"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1451"
charge=
"0.4314"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1452"
charge=
"-0.7748"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1453"
charge=
"0.7959"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1454"
charge=
"-0.6548"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1455"
charge=
"0.0713"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1456"
charge=
"0.0985"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1457"
charge=
"-0.0854"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1458"
charge=
"0.0718"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1459"
charge=
"-0.5232"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1460"
charge=
"0.4422"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1461"
charge=
"-0.6318"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1463"
charge=
"0.0754"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1464"
charge=
"0.1629"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1465"
charge=
"0.1176"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1466"
charge=
"-0.3691"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1467"
charge=
"-0.0116"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1468"
charge=
"0.1963"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1469"
charge=
"-0.0339"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1470"
charge=
"-0.0183"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1471"
charge=
"0.2293"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1472"
charge=
"-0.5222"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1473"
charge=
"0.1863"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1474"
charge=
"0.8439"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1475"
charge=
"-0.9773"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1476"
charge=
"0.4314"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1477"
charge=
"-0.7748"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1478"
charge=
"0.7959"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1479"
charge=
"-0.6548"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1480"
charge=
"0.0713"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1481"
charge=
"0.0985"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1482"
charge=
"-0.0854"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1483"
charge=
"0.0718"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1484"
charge=
"-0.6549"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1485"
charge=
"0.4396"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1486"
charge=
"1.1659"
radius=
"0.215"
gamma=
"-17.2301304"
/>
<Atom
type=
"1487"
charge=
"-0.7761"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1488"
charge=
"-0.7761"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1489"
charge=
"-0.4954"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1491"
charge=
"0.0754"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1492"
charge=
"0.1629"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1493"
charge=
"0.1176"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1494"
charge=
"-0.3691"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1495"
charge=
"0.0358"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1496"
charge=
"0.1746"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1497"
charge=
"0.0577"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1498"
charge=
"0.0736"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1499"
charge=
"0.1997"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1500"
charge=
"-0.5725"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1501"
charge=
"0.1991"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1502"
charge=
"0.4918"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1503"
charge=
"-0.5699"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1504"
charge=
"-0.5053"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1505"
charge=
"0.352"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1506"
charge=
"0.7432"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1507"
charge=
"-0.923"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1508"
charge=
"0.4235"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1509"
charge=
"-0.6636"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1510"
charge=
"0.1814"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1511"
charge=
"0.0713"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1512"
charge=
"0.0985"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1513"
charge=
"-0.0854"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1514"
charge=
"0.0718"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1515"
charge=
"-0.5232"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1516"
charge=
"1.1659"
radius=
"0.215"
gamma=
"-17.2301304"
/>
<Atom
type=
"1517"
charge=
"-0.7761"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1518"
charge=
"-0.7761"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1519"
charge=
"-0.4954"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1521"
charge=
"0.0754"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1522"
charge=
"0.1629"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1523"
charge=
"0.1176"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1524"
charge=
"-0.3691"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1525"
charge=
"0.0358"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1526"
charge=
"0.1746"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1527"
charge=
"0.0577"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1528"
charge=
"0.0736"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1529"
charge=
"0.1997"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1530"
charge=
"-0.5725"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1531"
charge=
"0.1991"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1532"
charge=
"0.4918"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1533"
charge=
"-0.5699"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1534"
charge=
"-0.5053"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1535"
charge=
"0.352"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1536"
charge=
"0.7432"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1537"
charge=
"-0.923"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1538"
charge=
"0.4235"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1539"
charge=
"-0.6636"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1540"
charge=
"0.1814"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1541"
charge=
"0.0713"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1542"
charge=
"0.0985"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1543"
charge=
"-0.0854"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1544"
charge=
"0.0718"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1545"
charge=
"-0.6549"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1546"
charge=
"0.4396"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1547"
charge=
"0.4422"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1548"
charge=
"-0.6318"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1550"
charge=
"0.0754"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1551"
charge=
"0.1629"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1552"
charge=
"0.1176"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1553"
charge=
"-0.3691"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1554"
charge=
"0.0358"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1555"
charge=
"0.1746"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1556"
charge=
"0.0577"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1557"
charge=
"0.0736"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1558"
charge=
"0.1997"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1559"
charge=
"-0.5725"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1560"
charge=
"0.1991"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1561"
charge=
"0.4918"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1562"
charge=
"-0.5699"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1563"
charge=
"-0.5053"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1564"
charge=
"0.352"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1565"
charge=
"0.7432"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1566"
charge=
"-0.923"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1567"
charge=
"0.4235"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1568"
charge=
"-0.6636"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1569"
charge=
"0.1814"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1570"
charge=
"0.0713"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1571"
charge=
"0.0985"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1572"
charge=
"-0.0854"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1573"
charge=
"0.0718"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1574"
charge=
"-0.5232"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1575"
charge=
"0.4422"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1576"
charge=
"-0.6318"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1578"
charge=
"0.0754"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1579"
charge=
"0.1629"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1580"
charge=
"0.1176"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1581"
charge=
"-0.3691"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1582"
charge=
"0.0358"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1583"
charge=
"0.1746"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1584"
charge=
"0.0577"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1585"
charge=
"0.0736"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1586"
charge=
"0.1997"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1587"
charge=
"-0.5725"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1588"
charge=
"0.1991"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1589"
charge=
"0.4918"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1590"
charge=
"-0.5699"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1591"
charge=
"-0.5053"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1592"
charge=
"0.352"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1593"
charge=
"0.7432"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1594"
charge=
"-0.923"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1595"
charge=
"0.4235"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1596"
charge=
"-0.6636"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1597"
charge=
"0.1814"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1598"
charge=
"0.0713"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1599"
charge=
"0.0985"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1600"
charge=
"-0.0854"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1601"
charge=
"0.0718"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1602"
charge=
"-0.6549"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1603"
charge=
"0.4396"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1604"
charge=
"1.1659"
radius=
"0.215"
gamma=
"-17.2301304"
/>
<Atom
type=
"1605"
charge=
"-0.7761"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1606"
charge=
"-0.7761"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1607"
charge=
"-0.4954"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1609"
charge=
"0.0754"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1610"
charge=
"0.1629"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1611"
charge=
"0.1176"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1612"
charge=
"-0.3691"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1613"
charge=
"0.068"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1614"
charge=
"0.1804"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1615"
charge=
"-0.0239"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1616"
charge=
"-0.2209"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1617"
charge=
"0.2607"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1618"
charge=
"0.0025"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1619"
charge=
"-0.2269"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1620"
charge=
"0.077"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1621"
charge=
"0.5194"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1622"
charge=
"-0.5563"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1623"
charge=
"-0.434"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1624"
charge=
"0.342"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1625"
charge=
"0.5677"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1626"
charge=
"-0.5881"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1627"
charge=
"0.0713"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1628"
charge=
"0.0985"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1629"
charge=
"-0.0854"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1630"
charge=
"0.0718"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1631"
charge=
"-0.5232"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1632"
charge=
"1.1659"
radius=
"0.215"
gamma=
"-17.2301304"
/>
<Atom
type=
"1633"
charge=
"-0.7761"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1634"
charge=
"-0.7761"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1635"
charge=
"-0.4954"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1637"
charge=
"0.0754"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1638"
charge=
"0.1629"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1639"
charge=
"0.1176"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1640"
charge=
"-0.3691"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1641"
charge=
"0.068"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1642"
charge=
"0.1804"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1643"
charge=
"-0.0239"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1644"
charge=
"-0.2209"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1645"
charge=
"0.2607"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1646"
charge=
"0.0025"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1647"
charge=
"-0.2269"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1648"
charge=
"0.077"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1649"
charge=
"0.5194"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1650"
charge=
"-0.5563"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1651"
charge=
"-0.434"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1652"
charge=
"0.342"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1653"
charge=
"0.5677"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1654"
charge=
"-0.5881"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1655"
charge=
"0.0713"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1656"
charge=
"0.0985"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1657"
charge=
"-0.0854"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1658"
charge=
"0.0718"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1659"
charge=
"-0.6549"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1660"
charge=
"0.4396"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1661"
charge=
"0.4422"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1662"
charge=
"-0.6318"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1664"
charge=
"0.0754"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1665"
charge=
"0.1629"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1666"
charge=
"0.1176"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1667"
charge=
"-0.3691"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1668"
charge=
"0.068"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1669"
charge=
"0.1804"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1670"
charge=
"-0.0239"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1671"
charge=
"-0.2209"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1672"
charge=
"0.2607"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1673"
charge=
"0.0025"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1674"
charge=
"-0.2269"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1675"
charge=
"0.077"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1676"
charge=
"0.5194"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1677"
charge=
"-0.5563"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1678"
charge=
"-0.434"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1679"
charge=
"0.342"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1680"
charge=
"0.5677"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1681"
charge=
"-0.5881"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1682"
charge=
"0.0713"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1683"
charge=
"0.0985"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1684"
charge=
"-0.0854"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1685"
charge=
"0.0718"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1686"
charge=
"-0.5232"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1687"
charge=
"0.4422"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1688"
charge=
"-0.6318"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1690"
charge=
"0.0754"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1691"
charge=
"0.1629"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1692"
charge=
"0.1176"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1693"
charge=
"-0.3691"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1694"
charge=
"0.068"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1695"
charge=
"0.1804"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1696"
charge=
"-0.0239"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1697"
charge=
"-0.2209"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1698"
charge=
"0.2607"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1699"
charge=
"0.0025"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1700"
charge=
"-0.2269"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1701"
charge=
"0.077"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1702"
charge=
"0.5194"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1703"
charge=
"-0.5563"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1704"
charge=
"-0.434"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1705"
charge=
"0.342"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1706"
charge=
"0.5677"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1707"
charge=
"-0.5881"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1708"
charge=
"0.0713"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1709"
charge=
"0.0985"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1710"
charge=
"-0.0854"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1711"
charge=
"0.0718"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1712"
charge=
"-0.6549"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1713"
charge=
"0.4396"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1714"
charge=
"1.1662"
radius=
"0.215"
gamma=
"-17.2301304"
/>
<Atom
type=
"1715"
charge=
"-0.776"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1716"
charge=
"-0.776"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1717"
charge=
"-0.4989"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1719"
charge=
"0.0679"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1720"
charge=
"0.1065"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1721"
charge=
"0.1174"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1722"
charge=
"-0.3548"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1723"
charge=
"0.0191"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1724"
charge=
"0.2006"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1725"
charge=
"0.0492"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1727"
charge=
"0.164"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1728"
charge=
"-0.5709"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1729"
charge=
"0.1744"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1730"
charge=
"0.477"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1731"
charge=
"-0.5597"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1732"
charge=
"-0.4787"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1733"
charge=
"0.3424"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1734"
charge=
"0.7657"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1735"
charge=
"-0.9672"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1736"
charge=
"0.4364"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1737"
charge=
"-0.6323"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1738"
charge=
"0.1222"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1739"
charge=
"0.2022"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1740"
charge=
"0.0615"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1741"
charge=
"0.067"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1742"
charge=
"0.0972"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1743"
charge=
"-0.6139"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1744"
charge=
"0.4186"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1745"
charge=
"-0.5246"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1746"
charge=
"1.1662"
radius=
"0.215"
gamma=
"-17.2301304"
/>
<Atom
type=
"1747"
charge=
"-0.776"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1748"
charge=
"-0.776"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1749"
charge=
"-0.4989"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1751"
charge=
"0.0679"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1752"
charge=
"0.1065"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1753"
charge=
"0.1174"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1754"
charge=
"-0.3548"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1755"
charge=
"0.0191"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1756"
charge=
"0.2006"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1757"
charge=
"0.0492"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1759"
charge=
"0.164"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1760"
charge=
"-0.5709"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1761"
charge=
"0.1744"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1762"
charge=
"0.477"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1763"
charge=
"-0.5597"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1764"
charge=
"-0.4787"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1765"
charge=
"0.3424"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1766"
charge=
"0.7657"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1767"
charge=
"-0.9672"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1768"
charge=
"0.4364"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1769"
charge=
"-0.6323"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1770"
charge=
"0.1222"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1771"
charge=
"0.2022"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1772"
charge=
"0.0615"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1773"
charge=
"0.067"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1774"
charge=
"0.0972"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1775"
charge=
"-0.6139"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1776"
charge=
"0.4186"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1777"
charge=
"-0.6541"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1778"
charge=
"0.4376"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1779"
charge=
"0.4295"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1780"
charge=
"-0.6223"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1782"
charge=
"0.0679"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1783"
charge=
"0.1065"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1784"
charge=
"0.1174"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1785"
charge=
"-0.3548"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1786"
charge=
"0.0191"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1787"
charge=
"0.2006"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1788"
charge=
"0.0492"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1790"
charge=
"0.164"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1791"
charge=
"-0.5709"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1792"
charge=
"0.1744"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1793"
charge=
"0.477"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1794"
charge=
"-0.5597"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1795"
charge=
"-0.4787"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1796"
charge=
"0.3424"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1797"
charge=
"0.7657"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1798"
charge=
"-0.9672"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1799"
charge=
"0.4364"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1800"
charge=
"-0.6323"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1801"
charge=
"0.1222"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1802"
charge=
"0.2022"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1803"
charge=
"0.0615"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1804"
charge=
"0.067"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1805"
charge=
"0.0972"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1806"
charge=
"-0.6139"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1807"
charge=
"0.4186"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1808"
charge=
"-0.5246"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1809"
charge=
"0.4295"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1810"
charge=
"-0.6223"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1812"
charge=
"0.0679"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1813"
charge=
"0.1065"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1814"
charge=
"0.1174"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1815"
charge=
"-0.3548"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1816"
charge=
"0.0191"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1817"
charge=
"0.2006"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1818"
charge=
"0.0492"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1820"
charge=
"0.164"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1821"
charge=
"-0.5709"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1822"
charge=
"0.1744"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1823"
charge=
"0.477"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1824"
charge=
"-0.5597"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1825"
charge=
"-0.4787"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1826"
charge=
"0.3424"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1827"
charge=
"0.7657"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1828"
charge=
"-0.9672"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1829"
charge=
"0.4364"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1830"
charge=
"-0.6323"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1831"
charge=
"0.1222"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1832"
charge=
"0.2022"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1833"
charge=
"0.0615"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1834"
charge=
"0.067"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1835"
charge=
"0.0972"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1836"
charge=
"-0.6139"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1837"
charge=
"0.4186"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1838"
charge=
"-0.6541"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1839"
charge=
"0.4376"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1840"
charge=
"1.1662"
radius=
"0.215"
gamma=
"-17.2301304"
/>
<Atom
type=
"1841"
charge=
"-0.776"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1842"
charge=
"-0.776"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1843"
charge=
"-0.4989"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1845"
charge=
"0.0679"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1846"
charge=
"0.1065"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1847"
charge=
"0.1174"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1848"
charge=
"-0.3548"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1849"
charge=
"0.0674"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1850"
charge=
"0.1824"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1851"
charge=
"0.0418"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1853"
charge=
"0.2188"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1855"
charge=
"0.1811"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1856"
charge=
"0.5952"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1857"
charge=
"-0.5761"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1858"
charge=
"-0.3549"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1859"
charge=
"0.3154"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1860"
charge=
"0.4687"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1861"
charge=
"-0.5477"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1862"
charge=
"0.2022"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1863"
charge=
"0.0615"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1864"
charge=
"0.067"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1865"
charge=
"0.0972"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1866"
charge=
"-0.6139"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1867"
charge=
"0.4186"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1868"
charge=
"-0.5246"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1869"
charge=
"1.1662"
radius=
"0.215"
gamma=
"-17.2301304"
/>
<Atom
type=
"1870"
charge=
"-0.776"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1871"
charge=
"-0.776"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1872"
charge=
"-0.4989"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1874"
charge=
"0.0679"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1875"
charge=
"0.1065"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1876"
charge=
"0.1174"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1877"
charge=
"-0.3548"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1878"
charge=
"0.0674"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1879"
charge=
"0.1824"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1880"
charge=
"0.0418"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1882"
charge=
"0.2188"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1884"
charge=
"0.1811"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1885"
charge=
"0.5952"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1886"
charge=
"-0.5761"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1887"
charge=
"-0.3549"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1888"
charge=
"0.3154"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1889"
charge=
"0.4687"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1890"
charge=
"-0.5477"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1891"
charge=
"0.2022"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1892"
charge=
"0.0615"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1893"
charge=
"0.067"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1894"
charge=
"0.0972"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1895"
charge=
"-0.6139"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1896"
charge=
"0.4186"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1897"
charge=
"-0.6541"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1898"
charge=
"0.4376"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1899"
charge=
"0.4295"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1900"
charge=
"-0.6223"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1902"
charge=
"0.0679"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1903"
charge=
"0.1065"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1904"
charge=
"0.1174"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1905"
charge=
"-0.3548"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1906"
charge=
"0.0674"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1907"
charge=
"0.1824"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1908"
charge=
"0.0418"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1910"
charge=
"0.2188"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1912"
charge=
"0.1811"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1913"
charge=
"0.5952"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1914"
charge=
"-0.5761"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1915"
charge=
"-0.3549"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1916"
charge=
"0.3154"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1917"
charge=
"0.4687"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1918"
charge=
"-0.5477"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1919"
charge=
"0.2022"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1920"
charge=
"0.0615"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1921"
charge=
"0.067"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1922"
charge=
"0.0972"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1923"
charge=
"-0.6139"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1924"
charge=
"0.4186"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1925"
charge=
"-0.5246"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1926"
charge=
"0.4295"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1927"
charge=
"-0.6223"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1929"
charge=
"0.0679"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1930"
charge=
"0.1065"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1931"
charge=
"0.1174"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1932"
charge=
"-0.3548"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1933"
charge=
"0.0674"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1934"
charge=
"0.1824"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1935"
charge=
"0.0418"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1937"
charge=
"0.2188"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1939"
charge=
"0.1811"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1940"
charge=
"0.5952"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1941"
charge=
"-0.5761"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1942"
charge=
"-0.3549"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1943"
charge=
"0.3154"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1944"
charge=
"0.4687"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1945"
charge=
"-0.5477"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1946"
charge=
"0.2022"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1947"
charge=
"0.0615"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1948"
charge=
"0.067"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1949"
charge=
"0.0972"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1950"
charge=
"-0.6139"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1951"
charge=
"0.4186"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1952"
charge=
"-0.6541"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1953"
charge=
"0.4376"
radius=
"0.1"
gamma=
"9.399356"
/>
</GBVIForce>
</ForceField>
wrappers/python/simtk/openmm/app/data/amber96_gbvi.xml
deleted
100644 → 0
View file @
b20c20fe
<ForceField>
<GBVIForce
soluteDielectric=
"1.0"
>
<Atom
type=
"0"
charge=
"-0.4157"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1"
charge=
"0.2719"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"2"
charge=
"0.0337"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"3"
charge=
"0.0823"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"4"
charge=
"-0.1825"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"5"
charge=
"0.0603"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"6"
charge=
"0.5973"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"7"
charge=
"-0.5679"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"8"
charge=
"-0.3479"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"9"
charge=
"0.2747"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"10"
charge=
"-0.2637"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"11"
charge=
"0.156"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"12"
charge=
"-0.0007"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"13"
charge=
"0.0327"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"14"
charge=
"0.039"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"15"
charge=
"0.0285"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"16"
charge=
"0.0486"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"17"
charge=
"0.0687"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"18"
charge=
"-0.5295"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"19"
charge=
"0.3456"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"20"
charge=
"0.8076"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"21"
charge=
"-0.8627"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"22"
charge=
"0.4478"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"23"
charge=
"-0.8627"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"24"
charge=
"0.4478"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"25"
charge=
"0.7341"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"26"
charge=
"-0.5894"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"27"
charge=
"-0.4157"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"28"
charge=
"0.2719"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"29"
charge=
"0.0341"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"30"
charge=
"0.0864"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"31"
charge=
"-0.0316"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"32"
charge=
"0.0488"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"33"
charge=
"0.6462"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"34"
charge=
"-0.5554"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"35"
charge=
"-0.6376"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"36"
charge=
"0.4747"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"37"
charge=
"0.5973"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"38"
charge=
"-0.5679"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"39"
charge=
"-0.4157"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"40"
charge=
"0.2719"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"41"
charge=
"0.0143"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"42"
charge=
"0.1048"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"43"
charge=
"-0.2041"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"44"
charge=
"0.0797"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"45"
charge=
"0.713"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"46"
charge=
"-0.5931"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"47"
charge=
"-0.9191"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"48"
charge=
"0.4196"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"49"
charge=
"0.5973"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"50"
charge=
"-0.5679"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"51"
charge=
"-0.5163"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"52"
charge=
"0.2936"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"53"
charge=
"0.0381"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"54"
charge=
"0.088"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"55"
charge=
"-0.0303"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"56"
charge=
"-0.0122"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"57"
charge=
"0.7994"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"58"
charge=
"-0.8014"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"59"
charge=
"-0.8014"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"60"
charge=
"0.5366"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"61"
charge=
"-0.5819"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"62"
charge=
"-0.4157"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"63"
charge=
"0.2719"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"64"
charge=
"-0.0351"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"65"
charge=
"0.0508"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"66"
charge=
"-0.2413"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"67"
charge=
"0.1122"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"68"
charge=
"-0.8844"
radius=
"0.195"
gamma=
"-4.273956"
/>
<Atom
type=
"69"
charge=
"0.5973"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"70"
charge=
"-0.5679"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"71"
charge=
"-0.4157"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"72"
charge=
"0.2719"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"73"
charge=
"0.0213"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"74"
charge=
"0.1124"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"75"
charge=
"-0.1231"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"76"
charge=
"0.1112"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"77"
charge=
"-0.3119"
radius=
"0.195"
gamma=
"-4.273956"
/>
<Atom
type=
"78"
charge=
"0.1933"
radius=
"0.125"
gamma=
"3.6563976"
/>
<Atom
type=
"79"
charge=
"0.5973"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"80"
charge=
"-0.5679"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"81"
charge=
"-0.4157"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"82"
charge=
"0.2719"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"83"
charge=
"0.0429"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"84"
charge=
"0.0766"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"85"
charge=
"-0.079"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"86"
charge=
"0.091"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"87"
charge=
"-0.1081"
radius=
"0.195"
gamma=
"-4.273956"
/>
<Atom
type=
"88"
charge=
"0.5973"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"89"
charge=
"-0.5679"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"90"
charge=
"-0.4157"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"91"
charge=
"0.2719"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"92"
charge=
"0.0145"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"93"
charge=
"0.0779"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"94"
charge=
"-0.0071"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"95"
charge=
"0.0256"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"96"
charge=
"-0.0174"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"97"
charge=
"0.043"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"98"
charge=
"0.6801"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"99"
charge=
"-0.5838"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"100"
charge=
"-0.6511"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"101"
charge=
"0.4641"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"102"
charge=
"0.5973"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"103"
charge=
"-0.5679"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"104"
charge=
"-0.4157"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"105"
charge=
"0.2719"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"106"
charge=
"-0.0031"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"107"
charge=
"0.085"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"108"
charge=
"-0.0036"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"109"
charge=
"0.0171"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"110"
charge=
"-0.0645"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"111"
charge=
"0.0352"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"112"
charge=
"0.6951"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"113"
charge=
"-0.6086"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"114"
charge=
"-0.9407"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"115"
charge=
"0.4251"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"116"
charge=
"0.5973"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"117"
charge=
"-0.5679"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"118"
charge=
"-0.5163"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"119"
charge=
"0.2936"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"120"
charge=
"0.0397"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"121"
charge=
"0.1105"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"122"
charge=
"0.056"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"123"
charge=
"-0.0173"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"124"
charge=
"0.0136"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"125"
charge=
"-0.0425"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"126"
charge=
"0.8054"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"127"
charge=
"-0.8188"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"128"
charge=
"-0.8188"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"129"
charge=
"0.5366"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"130"
charge=
"-0.5819"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"131"
charge=
"-0.4157"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"132"
charge=
"0.2719"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"133"
charge=
"-0.0252"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"134"
charge=
"0.0698"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"135"
charge=
"0.5973"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"136"
charge=
"-0.5679"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"137"
charge=
"-0.4157"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"138"
charge=
"0.2719"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"139"
charge=
"0.0188"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"140"
charge=
"0.0881"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"141"
charge=
"-0.0462"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"142"
charge=
"0.0402"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"143"
charge=
"-0.0266"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"144"
charge=
"-0.3811"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"145"
charge=
"0.3649"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"146"
charge=
"0.2057"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"147"
charge=
"0.1392"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"148"
charge=
"-0.5727"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"149"
charge=
"0.1292"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"150"
charge=
"0.1147"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"151"
charge=
"0.5973"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"152"
charge=
"-0.5679"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"153"
charge=
"-0.4157"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"154"
charge=
"0.2719"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"155"
charge=
"-0.0581"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"156"
charge=
"0.136"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"157"
charge=
"-0.0074"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"158"
charge=
"0.0367"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"159"
charge=
"0.1868"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"160"
charge=
"-0.5432"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"161"
charge=
"0.1635"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"162"
charge=
"0.1435"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"163"
charge=
"-0.2795"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"164"
charge=
"0.3339"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"165"
charge=
"-0.2207"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"166"
charge=
"0.1862"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"167"
charge=
"0.5973"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"168"
charge=
"-0.5679"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"169"
charge=
"-0.3479"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"170"
charge=
"0.2747"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"171"
charge=
"-0.1354"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"172"
charge=
"0.1212"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"173"
charge=
"-0.0414"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"174"
charge=
"0.081"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"175"
charge=
"-0.0012"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"176"
charge=
"-0.1513"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"177"
charge=
"0.3866"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"178"
charge=
"-0.017"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"179"
charge=
"0.2681"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"180"
charge=
"-0.1718"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"181"
charge=
"0.3911"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"182"
charge=
"-0.1141"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"183"
charge=
"0.2317"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"184"
charge=
"0.7341"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"185"
charge=
"-0.5894"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"186"
charge=
"-0.4157"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"187"
charge=
"0.2719"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"188"
charge=
"-0.0597"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"189"
charge=
"0.0869"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"190"
charge=
"0.1303"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"191"
charge=
"0.0187"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"192"
charge=
"-0.3204"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"193"
charge=
"0.0882"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"194"
charge=
"-0.043"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"195"
charge=
"0.0236"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"196"
charge=
"-0.066"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"197"
charge=
"0.0186"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"198"
charge=
"0.5973"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"199"
charge=
"-0.5679"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"200"
charge=
"-0.4157"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"201"
charge=
"0.2719"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"202"
charge=
"-0.0518"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"203"
charge=
"0.0922"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"204"
charge=
"-0.1102"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"205"
charge=
"0.0457"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"206"
charge=
"0.3531"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"207"
charge=
"-0.0361"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"208"
charge=
"-0.4121"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"209"
charge=
"0.1"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"210"
charge=
"-0.4121"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"211"
charge=
"0.1"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"212"
charge=
"0.5973"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"213"
charge=
"-0.5679"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"214"
charge=
"-0.4157"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"215"
charge=
"0.2719"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"216"
charge=
"-0.07206"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"217"
charge=
"0.0994"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"218"
charge=
"-0.04845"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"219"
charge=
"0.034"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"220"
charge=
"0.06612"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"221"
charge=
"0.01041"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"222"
charge=
"-0.03768"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"223"
charge=
"0.01155"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"224"
charge=
"0.32604"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"225"
charge=
"-0.03358"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"226"
charge=
"-1.03581"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"227"
charge=
"0.38604"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"228"
charge=
"0.5973"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"229"
charge=
"-0.5679"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"230"
charge=
"-0.3479"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"231"
charge=
"0.2747"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"232"
charge=
"-0.24"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"233"
charge=
"0.1426"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"234"
charge=
"-0.0094"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"235"
charge=
"0.0362"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"236"
charge=
"0.0187"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"237"
charge=
"0.0103"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"238"
charge=
"-0.0479"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"239"
charge=
"0.0621"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"240"
charge=
"-0.0143"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"241"
charge=
"0.1135"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"242"
charge=
"-0.3854"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"243"
charge=
"0.34"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"244"
charge=
"0.7341"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"245"
charge=
"-0.5894"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"246"
charge=
"-0.4157"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"247"
charge=
"0.2719"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"248"
charge=
"-0.0237"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"249"
charge=
"0.088"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"250"
charge=
"0.0342"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"251"
charge=
"0.0241"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"252"
charge=
"0.0018"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"253"
charge=
"0.044"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"254"
charge=
"-0.2737"
radius=
"0.195"
gamma=
"-4.273956"
/>
<Atom
type=
"255"
charge=
"-0.0536"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"256"
charge=
"0.0684"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"257"
charge=
"0.5973"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"258"
charge=
"-0.5679"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"259"
charge=
"-0.4157"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"260"
charge=
"0.2719"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"261"
charge=
"-0.0024"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"262"
charge=
"0.0978"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"263"
charge=
"-0.0343"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"264"
charge=
"0.0295"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"265"
charge=
"0.0118"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"266"
charge=
"-0.1256"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"267"
charge=
"0.133"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"268"
charge=
"-0.1704"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"269"
charge=
"0.143"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"270"
charge=
"-0.1072"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"271"
charge=
"0.1297"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"272"
charge=
"-0.1704"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"273"
charge=
"0.143"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"274"
charge=
"-0.1256"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"275"
charge=
"0.133"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"276"
charge=
"0.5973"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"277"
charge=
"-0.5679"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"278"
charge=
"-0.2548"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"279"
charge=
"0.0192"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"280"
charge=
"0.0391"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"281"
charge=
"0.0189"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"282"
charge=
"0.0213"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"283"
charge=
"-0.007"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"284"
charge=
"0.0253"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"285"
charge=
"-0.0266"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"286"
charge=
"0.0641"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"287"
charge=
"0.5896"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"288"
charge=
"-0.5748"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"289"
charge=
"-0.4157"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"290"
charge=
"0.2719"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"291"
charge=
"-0.0249"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"292"
charge=
"0.0843"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"293"
charge=
"0.2117"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"294"
charge=
"0.0352"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"295"
charge=
"-0.6546"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"296"
charge=
"0.4275"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"297"
charge=
"0.5973"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"298"
charge=
"-0.5679"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"299"
charge=
"-0.4157"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"300"
charge=
"0.2719"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"301"
charge=
"-0.0389"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"302"
charge=
"0.1007"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"303"
charge=
"0.3654"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"304"
charge=
"0.0043"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"305"
charge=
"-0.2438"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"306"
charge=
"0.0642"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"307"
charge=
"-0.6761"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"308"
charge=
"0.4102"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"309"
charge=
"0.5973"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"310"
charge=
"-0.5679"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"311"
charge=
"-0.4157"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"312"
charge=
"0.2719"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"313"
charge=
"-0.0275"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"314"
charge=
"0.1123"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"315"
charge=
"-0.005"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"316"
charge=
"0.0339"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"317"
charge=
"-0.1415"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"318"
charge=
"-0.1638"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"319"
charge=
"0.2062"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"320"
charge=
"-0.3418"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"321"
charge=
"0.3412"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"322"
charge=
"0.138"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"323"
charge=
"-0.2601"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"324"
charge=
"0.1572"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"325"
charge=
"-0.1134"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"326"
charge=
"0.1417"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"327"
charge=
"-0.1972"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"328"
charge=
"0.1447"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"329"
charge=
"-0.2387"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"330"
charge=
"0.17"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"331"
charge=
"0.1243"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"332"
charge=
"0.5973"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"333"
charge=
"-0.5679"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"334"
charge=
"-0.4157"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"335"
charge=
"0.2719"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"336"
charge=
"-0.0014"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"337"
charge=
"0.0876"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"338"
charge=
"-0.0152"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"339"
charge=
"0.0295"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"340"
charge=
"-0.0011"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"341"
charge=
"-0.1906"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"342"
charge=
"0.1699"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"343"
charge=
"-0.2341"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"344"
charge=
"0.1656"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"345"
charge=
"0.3226"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"346"
charge=
"-0.5579"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"347"
charge=
"0.3992"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"348"
charge=
"-0.2341"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"349"
charge=
"0.1656"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"350"
charge=
"-0.1906"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"351"
charge=
"0.1699"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"352"
charge=
"0.5973"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"353"
charge=
"-0.5679"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"354"
charge=
"-0.4157"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"355"
charge=
"0.2719"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"356"
charge=
"-0.0875"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"357"
charge=
"0.0969"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"358"
charge=
"0.2985"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"359"
charge=
"-0.0297"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"360"
charge=
"-0.3192"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"361"
charge=
"0.0791"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"362"
charge=
"-0.3192"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"363"
charge=
"0.0791"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"364"
charge=
"0.5973"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"365"
charge=
"-0.5679"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"366"
charge=
"-0.3821"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"367"
charge=
"0.2681"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"368"
charge=
"-0.1747"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"369"
charge=
"0.1067"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"370"
charge=
"-0.2093"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"371"
charge=
"0.0764"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"372"
charge=
"0.7731"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"373"
charge=
"-0.8055"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"374"
charge=
"-0.8055"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"375"
charge=
"-0.3481"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"376"
charge=
"0.2764"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"377"
charge=
"-0.3068"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"378"
charge=
"0.1447"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"379"
charge=
"-0.0374"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"380"
charge=
"0.0371"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"381"
charge=
"0.0744"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"382"
charge=
"0.0185"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"383"
charge=
"0.1114"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"384"
charge=
"0.0468"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"385"
charge=
"-0.5564"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"386"
charge=
"0.3479"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"387"
charge=
"0.8368"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"388"
charge=
"-0.8737"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"389"
charge=
"0.4493"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"390"
charge=
"-0.8737"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"391"
charge=
"0.4493"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"392"
charge=
"0.8557"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"393"
charge=
"-0.8266"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"394"
charge=
"-0.8266"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"395"
charge=
"-0.3821"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"396"
charge=
"0.2681"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"397"
charge=
"-0.208"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"398"
charge=
"0.1358"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"399"
charge=
"-0.2299"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"400"
charge=
"0.1023"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"401"
charge=
"0.7153"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"402"
charge=
"-0.601"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"403"
charge=
"-0.9084"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"404"
charge=
"0.415"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"405"
charge=
"0.805"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"406"
charge=
"-0.8147"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"407"
charge=
"-0.8147"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"408"
charge=
"-0.5192"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"409"
charge=
"0.3055"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"410"
charge=
"-0.1817"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"411"
charge=
"0.1046"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"412"
charge=
"-0.0677"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"413"
charge=
"-0.0212"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"414"
charge=
"0.8851"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"415"
charge=
"-0.8162"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"416"
charge=
"-0.8162"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"417"
charge=
"0.7256"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"418"
charge=
"-0.7887"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"419"
charge=
"-0.7887"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"420"
charge=
"-0.3821"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"421"
charge=
"0.2681"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"422"
charge=
"-0.1635"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"423"
charge=
"0.1396"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"424"
charge=
"-0.1996"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"425"
charge=
"0.1437"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"426"
charge=
"-0.3102"
radius=
"0.195"
gamma=
"-4.273956"
/>
<Atom
type=
"427"
charge=
"0.2068"
radius=
"0.125"
gamma=
"3.6563976"
/>
<Atom
type=
"428"
charge=
"0.7497"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"429"
charge=
"-0.7981"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"430"
charge=
"-0.7981"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"431"
charge=
"-0.3821"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"432"
charge=
"0.2681"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"433"
charge=
"-0.1318"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"434"
charge=
"0.0938"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"435"
charge=
"-0.1943"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"436"
charge=
"0.1228"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"437"
charge=
"-0.0529"
radius=
"0.195"
gamma=
"-4.273956"
/>
<Atom
type=
"438"
charge=
"0.7618"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"439"
charge=
"-0.8041"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"440"
charge=
"-0.8041"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"441"
charge=
"-0.3821"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"442"
charge=
"0.2681"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"443"
charge=
"-0.2248"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"444"
charge=
"0.1232"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"445"
charge=
"-0.0664"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"446"
charge=
"0.0452"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"447"
charge=
"-0.021"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"448"
charge=
"0.0203"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"449"
charge=
"0.7093"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"450"
charge=
"-0.6098"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"451"
charge=
"-0.9574"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"452"
charge=
"0.4304"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"453"
charge=
"0.7775"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"454"
charge=
"-0.8042"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"455"
charge=
"-0.8042"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"456"
charge=
"-0.5192"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"457"
charge=
"0.3055"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"458"
charge=
"-0.2059"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"459"
charge=
"0.1399"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"460"
charge=
"0.0071"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"461"
charge=
"-0.0078"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"462"
charge=
"0.0675"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"463"
charge=
"-0.0548"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"464"
charge=
"0.8183"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"465"
charge=
"-0.822"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"466"
charge=
"-0.822"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"467"
charge=
"0.742"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"468"
charge=
"-0.793"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"469"
charge=
"-0.793"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"470"
charge=
"-0.3821"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"471"
charge=
"0.2681"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"472"
charge=
"-0.2493"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"473"
charge=
"0.1056"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"474"
charge=
"0.7231"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"475"
charge=
"-0.7855"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"476"
charge=
"-0.7855"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"477"
charge=
"-0.3821"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"478"
charge=
"0.2681"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"479"
charge=
"-0.1739"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"480"
charge=
"0.11"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"481"
charge=
"-0.1046"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"482"
charge=
"0.0565"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"483"
charge=
"0.0293"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"484"
charge=
"-0.3892"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"485"
charge=
"0.3755"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"486"
charge=
"0.1925"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"487"
charge=
"0.1418"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"488"
charge=
"-0.5629"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"489"
charge=
"0.1001"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"490"
charge=
"0.1241"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"491"
charge=
"0.7615"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"492"
charge=
"-0.8016"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"493"
charge=
"-0.8016"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"494"
charge=
"-0.3821"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"495"
charge=
"0.2681"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"496"
charge=
"-0.2699"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"497"
charge=
"0.165"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"498"
charge=
"-0.1068"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"499"
charge=
"0.062"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"500"
charge=
"0.2724"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"501"
charge=
"-0.5517"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"502"
charge=
"0.1558"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"503"
charge=
"0.1448"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"504"
charge=
"-0.267"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"505"
charge=
"0.3319"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"506"
charge=
"-0.2588"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"507"
charge=
"0.1957"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"508"
charge=
"0.7916"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"509"
charge=
"-0.8065"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"510"
charge=
"-0.8065"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"511"
charge=
"-0.3481"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"512"
charge=
"0.2764"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"513"
charge=
"-0.1445"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"514"
charge=
"0.1115"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"515"
charge=
"-0.08"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"516"
charge=
"0.0868"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"517"
charge=
"0.0298"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"518"
charge=
"-0.1501"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"519"
charge=
"0.3883"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"520"
charge=
"-0.0251"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"521"
charge=
"0.2694"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"522"
charge=
"-0.1683"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"523"
charge=
"0.3913"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"524"
charge=
"-0.1256"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"525"
charge=
"0.2336"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"526"
charge=
"0.8032"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"527"
charge=
"-0.8177"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"528"
charge=
"-0.8177"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"529"
charge=
"-0.3821"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"530"
charge=
"0.2681"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"531"
charge=
"-0.31"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"532"
charge=
"0.1375"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"533"
charge=
"0.0363"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"534"
charge=
"0.0766"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"535"
charge=
"-0.3498"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"536"
charge=
"0.1021"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"537"
charge=
"-0.0323"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"538"
charge=
"0.0321"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"539"
charge=
"-0.0699"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"540"
charge=
"0.0196"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"541"
charge=
"0.8343"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"542"
charge=
"-0.819"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"543"
charge=
"-0.819"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"544"
charge=
"-0.3821"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"545"
charge=
"0.2681"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"546"
charge=
"-0.2847"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"547"
charge=
"0.1346"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"548"
charge=
"-0.2469"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"549"
charge=
"0.0974"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"550"
charge=
"0.3706"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"551"
charge=
"-0.0374"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"552"
charge=
"-0.4163"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"553"
charge=
"0.1038"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"554"
charge=
"-0.4163"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"555"
charge=
"0.1038"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"556"
charge=
"0.8326"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"557"
charge=
"-0.8199"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"558"
charge=
"-0.8199"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"559"
charge=
"-0.3481"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"560"
charge=
"0.2764"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"561"
charge=
"-0.2903"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"562"
charge=
"0.1438"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"563"
charge=
"-0.0538"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"564"
charge=
"0.0482"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"565"
charge=
"0.0227"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"566"
charge=
"0.0134"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"567"
charge=
"-0.0392"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"568"
charge=
"0.0611"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"569"
charge=
"-0.0176"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"570"
charge=
"0.1121"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"571"
charge=
"-0.3741"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"572"
charge=
"0.3374"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"573"
charge=
"0.8488"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"574"
charge=
"-0.8252"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"575"
charge=
"-0.8252"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"576"
charge=
"-0.3821"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"577"
charge=
"0.2681"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"578"
charge=
"-0.2597"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"579"
charge=
"0.1277"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"580"
charge=
"-0.0236"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"581"
charge=
"0.048"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"582"
charge=
"0.0492"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"583"
charge=
"0.0317"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"584"
charge=
"-0.2692"
radius=
"0.195"
gamma=
"-4.273956"
/>
<Atom
type=
"585"
charge=
"-0.0376"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"586"
charge=
"0.0625"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"587"
charge=
"0.8013"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"588"
charge=
"-0.8105"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"589"
charge=
"-0.8105"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"590"
charge=
"-0.3821"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"591"
charge=
"0.2681"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"592"
charge=
"-0.1825"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"593"
charge=
"0.1098"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"594"
charge=
"-0.0959"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"595"
charge=
"0.0443"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"596"
charge=
"0.0552"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"597"
charge=
"-0.13"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"598"
charge=
"0.1408"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"599"
charge=
"-0.1847"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"600"
charge=
"0.1461"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"601"
charge=
"-0.0944"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"602"
charge=
"0.128"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"603"
charge=
"-0.1847"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"604"
charge=
"0.1461"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"605"
charge=
"-0.13"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"606"
charge=
"0.1408"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"607"
charge=
"0.766"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"608"
charge=
"-0.8026"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"609"
charge=
"-0.8026"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"610"
charge=
"-0.2802"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"611"
charge=
"0.0434"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"612"
charge=
"0.0331"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"613"
charge=
"0.0466"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"614"
charge=
"0.0172"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"615"
charge=
"-0.0543"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"616"
charge=
"0.0381"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"617"
charge=
"-0.1336"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"618"
charge=
"0.0776"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"619"
charge=
"0.6631"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"620"
charge=
"-0.7697"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"621"
charge=
"-0.7697"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"622"
charge=
"-0.3821"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"623"
charge=
"0.2681"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"624"
charge=
"-0.2722"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"625"
charge=
"0.1304"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"626"
charge=
"0.1123"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"627"
charge=
"0.0813"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"628"
charge=
"-0.6514"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"629"
charge=
"0.4474"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"630"
charge=
"0.8113"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"631"
charge=
"-0.8132"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"632"
charge=
"-0.8132"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"633"
charge=
"-0.3821"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"634"
charge=
"0.2681"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"635"
charge=
"-0.242"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"636"
charge=
"0.1207"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"637"
charge=
"0.3025"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"638"
charge=
"0.0078"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"639"
charge=
"-0.1853"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"640"
charge=
"0.0586"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"641"
charge=
"-0.6496"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"642"
charge=
"0.4119"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"643"
charge=
"0.781"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"644"
charge=
"-0.8044"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"645"
charge=
"-0.8044"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"646"
charge=
"-0.3821"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"647"
charge=
"0.2681"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"648"
charge=
"-0.2084"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"649"
charge=
"0.1272"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"650"
charge=
"-0.0742"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"651"
charge=
"0.0497"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"652"
charge=
"-0.0796"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"653"
charge=
"-0.1808"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"654"
charge=
"0.2043"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"655"
charge=
"-0.3316"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"656"
charge=
"0.3413"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"657"
charge=
"0.1222"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"658"
charge=
"-0.2594"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"659"
charge=
"0.1567"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"660"
charge=
"-0.102"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"661"
charge=
"0.1401"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"662"
charge=
"-0.2287"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"663"
charge=
"0.1507"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"664"
charge=
"-0.1837"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"665"
charge=
"0.1491"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"666"
charge=
"0.1078"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"667"
charge=
"0.7658"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"668"
charge=
"-0.8011"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"669"
charge=
"-0.8011"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"670"
charge=
"-0.3821"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"671"
charge=
"0.2681"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"672"
charge=
"-0.2015"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"673"
charge=
"0.1092"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"674"
charge=
"-0.0752"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"675"
charge=
"0.049"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"676"
charge=
"0.0243"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"677"
charge=
"-0.1922"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"678"
charge=
"0.178"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"679"
charge=
"-0.2458"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"680"
charge=
"0.1673"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"681"
charge=
"0.3395"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"682"
charge=
"-0.5643"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"683"
charge=
"0.4017"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"684"
charge=
"-0.2458"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"685"
charge=
"0.1673"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"686"
charge=
"-0.1922"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"687"
charge=
"0.178"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"688"
charge=
"0.7817"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"689"
charge=
"-0.807"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"690"
charge=
"-0.807"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"691"
charge=
"-0.3821"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"692"
charge=
"0.2681"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"693"
charge=
"-0.3438"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"694"
charge=
"0.1438"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"695"
charge=
"0.194"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"696"
charge=
"0.0308"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"697"
charge=
"-0.3064"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"698"
charge=
"0.0836"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"699"
charge=
"-0.3064"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"700"
charge=
"0.0836"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"701"
charge=
"0.835"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"702"
charge=
"-0.8173"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"703"
charge=
"-0.8173"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"704"
charge=
"-0.463"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"705"
charge=
"0.2315"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"706"
charge=
"-0.4157"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"707"
charge=
"0.2719"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"708"
charge=
"-0.149"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"709"
charge=
"0.0976"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"710"
charge=
"0.1123"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"711"
charge=
"-0.3662"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"712"
charge=
"0.5972"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"713"
charge=
"-0.5679"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"714"
charge=
"0.1414"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"715"
charge=
"0.1997"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"716"
charge=
"0.0962"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"717"
charge=
"0.0889"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"718"
charge=
"-0.0597"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"719"
charge=
"0.03"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"720"
charge=
"0.6163"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"721"
charge=
"-0.5722"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"722"
charge=
"0.1305"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"723"
charge=
"0.2083"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"724"
charge=
"-0.0223"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"725"
charge=
"0.1242"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"726"
charge=
"0.0118"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"727"
charge=
"0.0226"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"728"
charge=
"0.0236"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"729"
charge=
"0.0309"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"730"
charge=
"0.0935"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"731"
charge=
"0.0527"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"732"
charge=
"-0.565"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"733"
charge=
"0.3592"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"734"
charge=
"0.8281"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"735"
charge=
"-0.8693"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"736"
charge=
"0.4494"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"737"
charge=
"-0.8693"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"738"
charge=
"0.4494"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"739"
charge=
"0.7214"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"740"
charge=
"-0.6013"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"741"
charge=
"0.1801"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"742"
charge=
"0.1921"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"743"
charge=
"0.0368"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"744"
charge=
"0.1231"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"745"
charge=
"-0.0283"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"746"
charge=
"0.0515"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"747"
charge=
"0.5833"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"748"
charge=
"-0.5744"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"749"
charge=
"-0.8634"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"750"
charge=
"0.4097"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"751"
charge=
"0.6163"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"752"
charge=
"-0.5722"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"753"
charge=
"0.0782"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"754"
charge=
"0.22"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"755"
charge=
"0.0292"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"756"
charge=
"0.1141"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"757"
charge=
"-0.0235"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"758"
charge=
"-0.0169"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"759"
charge=
"0.8194"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"760"
charge=
"-0.8084"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"761"
charge=
"-0.8084"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"762"
charge=
"0.5621"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"763"
charge=
"-0.5889"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"764"
charge=
"0.1325"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"765"
charge=
"0.2023"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"766"
charge=
"0.0927"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"767"
charge=
"0.1411"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"768"
charge=
"-0.1195"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"769"
charge=
"0.1188"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"770"
charge=
"-0.3298"
radius=
"0.195"
gamma=
"-4.273956"
/>
<Atom
type=
"771"
charge=
"0.1975"
radius=
"0.125"
gamma=
"3.6563976"
/>
<Atom
type=
"772"
charge=
"0.6123"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"773"
charge=
"-0.5713"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"774"
charge=
"0.2069"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"775"
charge=
"0.1815"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"776"
charge=
"0.1055"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"777"
charge=
"0.0922"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"778"
charge=
"-0.0277"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"779"
charge=
"0.068"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"780"
charge=
"-0.0984"
radius=
"0.195"
gamma=
"-4.273956"
/>
<Atom
type=
"781"
charge=
"0.6123"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"782"
charge=
"-0.5713"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"783"
charge=
"0.1493"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"784"
charge=
"0.1996"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"785"
charge=
"0.0536"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"786"
charge=
"0.1015"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"787"
charge=
"0.0651"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"788"
charge=
"0.005"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"789"
charge=
"-0.0903"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"790"
charge=
"0.0331"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"791"
charge=
"0.7354"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"792"
charge=
"-0.6133"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"793"
charge=
"-1.0031"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"794"
charge=
"0.4429"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"795"
charge=
"0.6123"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"796"
charge=
"-0.5713"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"797"
charge=
"0.0017"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"798"
charge=
"0.2391"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"799"
charge=
"0.0588"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"800"
charge=
"0.1202"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"801"
charge=
"0.0909"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"802"
charge=
"-0.0232"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"803"
charge=
"-0.0236"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"804"
charge=
"-0.0315"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"805"
charge=
"0.8087"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"806"
charge=
"-0.8189"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"807"
charge=
"-0.8189"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"808"
charge=
"0.5621"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"809"
charge=
"-0.5889"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"810"
charge=
"0.2943"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"811"
charge=
"0.1642"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"812"
charge=
"-0.01"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"813"
charge=
"0.0895"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"814"
charge=
"0.6163"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"815"
charge=
"-0.5722"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"816"
charge=
"0.1542"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"817"
charge=
"0.1963"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"818"
charge=
"0.0964"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"819"
charge=
"0.0958"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"820"
charge=
"0.0259"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"821"
charge=
"0.0209"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"822"
charge=
"-0.0399"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"823"
charge=
"-0.3819"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"824"
charge=
"0.3632"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"825"
charge=
"0.2127"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"826"
charge=
"0.1385"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"827"
charge=
"-0.5711"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"828"
charge=
"0.1046"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"829"
charge=
"0.1299"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"830"
charge=
"0.6123"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"831"
charge=
"-0.5713"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"832"
charge=
"0.1472"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"833"
charge=
"0.2016"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"834"
charge=
"0.0236"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"835"
charge=
"0.138"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"836"
charge=
"0.0489"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"837"
charge=
"0.0223"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"838"
charge=
"0.174"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"839"
charge=
"-0.5579"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"840"
charge=
"0.1804"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"841"
charge=
"0.1397"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"842"
charge=
"-0.2781"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"843"
charge=
"0.3324"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"844"
charge=
"-0.2349"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"845"
charge=
"0.1963"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"846"
charge=
"0.6123"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"847"
charge=
"-0.5713"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"848"
charge=
"0.256"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"849"
charge=
"0.1704"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"850"
charge=
"0.0581"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"851"
charge=
"0.1047"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"852"
charge=
"0.0484"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"853"
charge=
"0.0531"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"854"
charge=
"-0.0236"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"855"
charge=
"-0.151"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"856"
charge=
"0.3821"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"857"
charge=
"-0.0011"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"858"
charge=
"0.2645"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"859"
charge=
"-0.1739"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"860"
charge=
"0.3921"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"861"
charge=
"-0.1433"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"862"
charge=
"0.2495"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"863"
charge=
"0.7214"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"864"
charge=
"-0.6013"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"865"
charge=
"0.0311"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"866"
charge=
"0.2329"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"867"
charge=
"0.0257"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"868"
charge=
"0.1031"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"869"
charge=
"0.1885"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"870"
charge=
"0.0213"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"871"
charge=
"-0.372"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"872"
charge=
"0.0947"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"873"
charge=
"-0.0387"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"874"
charge=
"0.0201"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"875"
charge=
"-0.0908"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"876"
charge=
"0.0226"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"877"
charge=
"0.6123"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"878"
charge=
"-0.5713"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"879"
charge=
"0.101"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"880"
charge=
"0.2148"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"881"
charge=
"0.0104"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"882"
charge=
"0.1053"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"883"
charge=
"-0.0244"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"884"
charge=
"0.0256"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"885"
charge=
"0.3421"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"886"
charge=
"-0.038"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"887"
charge=
"-0.4106"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"888"
charge=
"0.098"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"889"
charge=
"-0.4104"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"890"
charge=
"0.098"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"891"
charge=
"0.6123"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"892"
charge=
"-0.5713"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"893"
charge=
"0.0966"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"894"
charge=
"0.2165"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"895"
charge=
"-0.0015"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"896"
charge=
"0.118"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"897"
charge=
"0.0212"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"898"
charge=
"0.0283"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"899"
charge=
"-0.0048"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"900"
charge=
"0.0121"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"901"
charge=
"-0.0608"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"902"
charge=
"0.0633"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"903"
charge=
"-0.0181"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"904"
charge=
"0.1171"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"905"
charge=
"-0.3764"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"906"
charge=
"0.3382"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"907"
charge=
"0.7214"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"908"
charge=
"-0.6013"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"909"
charge=
"0.1592"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"910"
charge=
"0.1984"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"911"
charge=
"0.0221"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"912"
charge=
"0.1116"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"913"
charge=
"0.0865"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"914"
charge=
"0.0125"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"915"
charge=
"0.0334"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"916"
charge=
"0.0292"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"917"
charge=
"-0.2774"
radius=
"0.195"
gamma=
"-4.273956"
/>
<Atom
type=
"918"
charge=
"-0.0341"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"919"
charge=
"0.0597"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"920"
charge=
"0.6123"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"921"
charge=
"-0.5713"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"922"
charge=
"0.1737"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"923"
charge=
"0.1921"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"924"
charge=
"0.0733"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"925"
charge=
"0.1041"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"926"
charge=
"0.033"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"927"
charge=
"0.0104"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"928"
charge=
"0.0031"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"929"
charge=
"-0.1392"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"930"
charge=
"0.1374"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"931"
charge=
"-0.1602"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"932"
charge=
"0.1433"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"933"
charge=
"-0.1208"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"934"
charge=
"0.1329"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"935"
charge=
"-0.1603"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"936"
charge=
"0.1433"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"937"
charge=
"-0.1391"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"938"
charge=
"0.1374"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"939"
charge=
"0.6123"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"940"
charge=
"-0.5713"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"941"
charge=
"-0.202"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"942"
charge=
"0.312"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"943"
charge=
"-0.012"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"944"
charge=
"0.1"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"945"
charge=
"-0.121"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"946"
charge=
"0.1"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"947"
charge=
"-0.115"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"948"
charge=
"0.1"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"949"
charge=
"0.1"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"950"
charge=
"0.1"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"951"
charge=
"0.526"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"952"
charge=
"-0.5"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"953"
charge=
"0.1849"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"954"
charge=
"0.1898"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"955"
charge=
"0.0567"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"956"
charge=
"0.0782"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"957"
charge=
"0.2596"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"958"
charge=
"0.0273"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"959"
charge=
"-0.6714"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"960"
charge=
"0.4239"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"961"
charge=
"0.6163"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"962"
charge=
"-0.5722"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"963"
charge=
"0.1812"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"964"
charge=
"0.1934"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"965"
charge=
"0.0034"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"966"
charge=
"0.1087"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"967"
charge=
"0.4514"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"968"
charge=
"-0.0323"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"969"
charge=
"-0.2554"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"970"
charge=
"0.0627"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"971"
charge=
"-0.6764"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"972"
charge=
"0.407"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"973"
charge=
"0.6163"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"974"
charge=
"-0.5722"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"975"
charge=
"0.1913"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"976"
charge=
"0.1888"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"977"
charge=
"0.0421"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"978"
charge=
"0.1162"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"979"
charge=
"0.0543"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"980"
charge=
"0.0222"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"981"
charge=
"-0.1654"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"982"
charge=
"-0.1788"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"983"
charge=
"0.2195"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"984"
charge=
"-0.3444"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"985"
charge=
"0.3412"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"986"
charge=
"0.1575"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"987"
charge=
"-0.271"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"988"
charge=
"0.1589"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"989"
charge=
"-0.108"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"990"
charge=
"0.1411"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"991"
charge=
"-0.2034"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"992"
charge=
"0.1458"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"993"
charge=
"-0.2265"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"994"
charge=
"0.1646"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"995"
charge=
"0.1132"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"996"
charge=
"0.6123"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"997"
charge=
"-0.5713"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"998"
charge=
"0.194"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"999"
charge=
"0.1873"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1000"
charge=
"0.057"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1001"
charge=
"0.0983"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1002"
charge=
"0.0659"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1003"
charge=
"0.0102"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1004"
charge=
"-0.0205"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1005"
charge=
"-0.2002"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1006"
charge=
"0.172"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1007"
charge=
"-0.2239"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1008"
charge=
"0.165"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1009"
charge=
"0.3139"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1010"
charge=
"-0.5578"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1011"
charge=
"0.4001"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1012"
charge=
"-0.2239"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1013"
charge=
"0.165"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1014"
charge=
"-0.2002"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1015"
charge=
"0.172"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1016"
charge=
"0.6123"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1017"
charge=
"-0.5713"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1018"
charge=
"0.0577"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"1019"
charge=
"0.2272"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1020"
charge=
"-0.0054"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1021"
charge=
"0.1093"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1022"
charge=
"0.3196"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1023"
charge=
"-0.0221"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1024"
charge=
"-0.3129"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1025"
charge=
"0.0735"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1026"
charge=
"-0.3129"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1027"
charge=
"0.0735"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1028"
charge=
"0.6163"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1029"
charge=
"-0.5722"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1030"
charge=
"1.1659"
radius=
"0.215"
gamma=
"-17.2301304"
/>
<Atom
type=
"1031"
charge=
"-0.7761"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1032"
charge=
"-0.7761"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1033"
charge=
"-0.4954"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1034"
charge=
"-0.0069"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1035"
charge=
"0.0754"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1036"
charge=
"0.1629"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1037"
charge=
"0.1176"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1038"
charge=
"-0.3691"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1039"
charge=
"0.0431"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1040"
charge=
"0.1838"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1041"
charge=
"-0.0268"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1042"
charge=
"0.1607"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1043"
charge=
"0.1877"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1044"
charge=
"-0.6175"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1045"
charge=
"0.0725"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1046"
charge=
"0.6897"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1047"
charge=
"-0.9123"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1048"
charge=
"0.4167"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1049"
charge=
"-0.7624"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1050"
charge=
"0.5716"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1051"
charge=
"0.0598"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1052"
charge=
"-0.7417"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1053"
charge=
"0.38"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1054"
charge=
"0.0713"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1055"
charge=
"0.0985"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1056"
charge=
"-0.0854"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1057"
charge=
"0.0718"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1058"
charge=
"-0.5232"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1059"
charge=
"1.1659"
radius=
"0.215"
gamma=
"-17.2301304"
/>
<Atom
type=
"1060"
charge=
"-0.7761"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1061"
charge=
"-0.7761"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1062"
charge=
"-0.4954"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1063"
charge=
"-0.0069"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1064"
charge=
"0.0754"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1065"
charge=
"0.1629"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1066"
charge=
"0.1176"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1067"
charge=
"-0.3691"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1068"
charge=
"0.0431"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1069"
charge=
"0.1838"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1070"
charge=
"-0.0268"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1071"
charge=
"0.1607"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1072"
charge=
"0.1877"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1073"
charge=
"-0.6175"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1074"
charge=
"0.0725"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1075"
charge=
"0.6897"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1076"
charge=
"-0.9123"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1077"
charge=
"0.4167"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1078"
charge=
"-0.7624"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1079"
charge=
"0.5716"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1080"
charge=
"0.0598"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1081"
charge=
"-0.7417"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1082"
charge=
"0.38"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1083"
charge=
"0.0713"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1084"
charge=
"0.0985"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1085"
charge=
"-0.0854"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1086"
charge=
"0.0718"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1087"
charge=
"-0.6549"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1088"
charge=
"0.4396"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1089"
charge=
"0.4422"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1090"
charge=
"-0.6318"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1091"
charge=
"-0.0069"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1092"
charge=
"0.0754"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1093"
charge=
"0.1629"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1094"
charge=
"0.1176"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1095"
charge=
"-0.3691"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1096"
charge=
"0.0431"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1097"
charge=
"0.1838"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1098"
charge=
"-0.0268"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1099"
charge=
"0.1607"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1100"
charge=
"0.1877"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1101"
charge=
"-0.6175"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1102"
charge=
"0.0725"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1103"
charge=
"0.6897"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1104"
charge=
"-0.9123"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1105"
charge=
"0.4167"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1106"
charge=
"-0.7624"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1107"
charge=
"0.5716"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1108"
charge=
"0.0598"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1109"
charge=
"-0.7417"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1110"
charge=
"0.38"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1111"
charge=
"0.0713"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1112"
charge=
"0.0985"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1113"
charge=
"-0.0854"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1114"
charge=
"0.0718"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1115"
charge=
"-0.5232"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1116"
charge=
"0.4422"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1117"
charge=
"-0.6318"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1118"
charge=
"-0.0069"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1119"
charge=
"0.0754"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1120"
charge=
"0.1629"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1121"
charge=
"0.1176"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1122"
charge=
"-0.3691"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1123"
charge=
"0.0431"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1124"
charge=
"0.1838"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1125"
charge=
"-0.0268"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1126"
charge=
"0.1607"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1127"
charge=
"0.1877"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1128"
charge=
"-0.6175"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1129"
charge=
"0.0725"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1130"
charge=
"0.6897"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1131"
charge=
"-0.9123"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1132"
charge=
"0.4167"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1133"
charge=
"-0.7624"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1134"
charge=
"0.5716"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1135"
charge=
"0.0598"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1136"
charge=
"-0.7417"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1137"
charge=
"0.38"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1138"
charge=
"0.0713"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1139"
charge=
"0.0985"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1140"
charge=
"-0.0854"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1141"
charge=
"0.0718"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1142"
charge=
"-0.6549"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1143"
charge=
"0.4396"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1144"
charge=
"1.1659"
radius=
"0.215"
gamma=
"-17.2301304"
/>
<Atom
type=
"1145"
charge=
"-0.7761"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1146"
charge=
"-0.7761"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1147"
charge=
"-0.4954"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1148"
charge=
"-0.0069"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1149"
charge=
"0.0754"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1150"
charge=
"0.1629"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1151"
charge=
"0.1176"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1152"
charge=
"-0.3691"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1153"
charge=
"-0.0116"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1154"
charge=
"0.1963"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1155"
charge=
"-0.0339"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1156"
charge=
"-0.0183"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1157"
charge=
"0.2293"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1158"
charge=
"-0.5222"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1159"
charge=
"0.1863"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1160"
charge=
"0.8439"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1161"
charge=
"-0.9773"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1162"
charge=
"0.4314"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1163"
charge=
"-0.7748"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1164"
charge=
"0.7959"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1165"
charge=
"-0.6548"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1166"
charge=
"0.0713"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1167"
charge=
"0.0985"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1168"
charge=
"-0.0854"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1169"
charge=
"0.0718"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1170"
charge=
"-0.5232"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1171"
charge=
"1.1659"
radius=
"0.215"
gamma=
"-17.2301304"
/>
<Atom
type=
"1172"
charge=
"-0.7761"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1173"
charge=
"-0.7761"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1174"
charge=
"-0.4954"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1175"
charge=
"-0.0069"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1176"
charge=
"0.0754"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1177"
charge=
"0.1629"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1178"
charge=
"0.1176"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1179"
charge=
"-0.3691"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1180"
charge=
"-0.0116"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1181"
charge=
"0.1963"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1182"
charge=
"-0.0339"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1183"
charge=
"-0.0183"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1184"
charge=
"0.2293"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1185"
charge=
"-0.5222"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1186"
charge=
"0.1863"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1187"
charge=
"0.8439"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1188"
charge=
"-0.9773"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1189"
charge=
"0.4314"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1190"
charge=
"-0.7748"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1191"
charge=
"0.7959"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1192"
charge=
"-0.6548"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1193"
charge=
"0.0713"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1194"
charge=
"0.0985"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1195"
charge=
"-0.0854"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1196"
charge=
"0.0718"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1197"
charge=
"-0.6549"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1198"
charge=
"0.4396"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1199"
charge=
"0.4422"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1200"
charge=
"-0.6318"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1201"
charge=
"-0.0069"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1202"
charge=
"0.0754"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1203"
charge=
"0.1629"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1204"
charge=
"0.1176"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1205"
charge=
"-0.3691"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1206"
charge=
"-0.0116"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1207"
charge=
"0.1963"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1208"
charge=
"-0.0339"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1209"
charge=
"-0.0183"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1210"
charge=
"0.2293"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1211"
charge=
"-0.5222"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1212"
charge=
"0.1863"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1213"
charge=
"0.8439"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1214"
charge=
"-0.9773"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1215"
charge=
"0.4314"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1216"
charge=
"-0.7748"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1217"
charge=
"0.7959"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1218"
charge=
"-0.6548"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1219"
charge=
"0.0713"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1220"
charge=
"0.0985"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1221"
charge=
"-0.0854"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1222"
charge=
"0.0718"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1223"
charge=
"-0.5232"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1224"
charge=
"0.4422"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1225"
charge=
"-0.6318"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1226"
charge=
"-0.0069"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1227"
charge=
"0.0754"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1228"
charge=
"0.1629"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1229"
charge=
"0.1176"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1230"
charge=
"-0.3691"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1231"
charge=
"-0.0116"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1232"
charge=
"0.1963"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1233"
charge=
"-0.0339"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1234"
charge=
"-0.0183"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1235"
charge=
"0.2293"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1236"
charge=
"-0.5222"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1237"
charge=
"0.1863"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1238"
charge=
"0.8439"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1239"
charge=
"-0.9773"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1240"
charge=
"0.4314"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1241"
charge=
"-0.7748"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1242"
charge=
"0.7959"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1243"
charge=
"-0.6548"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1244"
charge=
"0.0713"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1245"
charge=
"0.0985"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1246"
charge=
"-0.0854"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1247"
charge=
"0.0718"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1248"
charge=
"-0.6549"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1249"
charge=
"0.4396"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1250"
charge=
"1.1659"
radius=
"0.215"
gamma=
"-17.2301304"
/>
<Atom
type=
"1251"
charge=
"-0.7761"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1252"
charge=
"-0.7761"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1253"
charge=
"-0.4954"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1254"
charge=
"-0.0069"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1255"
charge=
"0.0754"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1256"
charge=
"0.1629"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1257"
charge=
"0.1176"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1258"
charge=
"-0.3691"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1259"
charge=
"0.0358"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1260"
charge=
"0.1746"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1261"
charge=
"0.0577"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1262"
charge=
"0.0736"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1263"
charge=
"0.1997"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1264"
charge=
"-0.5725"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1265"
charge=
"0.1991"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1266"
charge=
"0.4918"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1267"
charge=
"-0.5699"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1268"
charge=
"-0.5053"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1269"
charge=
"0.352"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1270"
charge=
"0.7432"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1271"
charge=
"-0.923"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1272"
charge=
"0.4235"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1273"
charge=
"-0.6636"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1274"
charge=
"0.1814"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1275"
charge=
"0.0713"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1276"
charge=
"0.0985"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1277"
charge=
"-0.0854"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1278"
charge=
"0.0718"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1279"
charge=
"-0.5232"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1280"
charge=
"1.1659"
radius=
"0.215"
gamma=
"-17.2301304"
/>
<Atom
type=
"1281"
charge=
"-0.7761"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1282"
charge=
"-0.7761"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1283"
charge=
"-0.4954"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1284"
charge=
"-0.0069"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1285"
charge=
"0.0754"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1286"
charge=
"0.1629"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1287"
charge=
"0.1176"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1288"
charge=
"-0.3691"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1289"
charge=
"0.0358"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1290"
charge=
"0.1746"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1291"
charge=
"0.0577"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1292"
charge=
"0.0736"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1293"
charge=
"0.1997"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1294"
charge=
"-0.5725"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1295"
charge=
"0.1991"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1296"
charge=
"0.4918"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1297"
charge=
"-0.5699"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1298"
charge=
"-0.5053"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1299"
charge=
"0.352"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1300"
charge=
"0.7432"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1301"
charge=
"-0.923"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1302"
charge=
"0.4235"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1303"
charge=
"-0.6636"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1304"
charge=
"0.1814"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1305"
charge=
"0.0713"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1306"
charge=
"0.0985"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1307"
charge=
"-0.0854"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1308"
charge=
"0.0718"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1309"
charge=
"-0.6549"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1310"
charge=
"0.4396"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1311"
charge=
"0.4422"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1312"
charge=
"-0.6318"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1313"
charge=
"-0.0069"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1314"
charge=
"0.0754"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1315"
charge=
"0.1629"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1316"
charge=
"0.1176"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1317"
charge=
"-0.3691"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1318"
charge=
"0.0358"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1319"
charge=
"0.1746"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1320"
charge=
"0.0577"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1321"
charge=
"0.0736"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1322"
charge=
"0.1997"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1323"
charge=
"-0.5725"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1324"
charge=
"0.1991"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1325"
charge=
"0.4918"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1326"
charge=
"-0.5699"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1327"
charge=
"-0.5053"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1328"
charge=
"0.352"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1329"
charge=
"0.7432"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1330"
charge=
"-0.923"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1331"
charge=
"0.4235"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1332"
charge=
"-0.6636"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1333"
charge=
"0.1814"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1334"
charge=
"0.0713"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1335"
charge=
"0.0985"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1336"
charge=
"-0.0854"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1337"
charge=
"0.0718"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1338"
charge=
"-0.5232"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1339"
charge=
"0.4422"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1340"
charge=
"-0.6318"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1341"
charge=
"-0.0069"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1342"
charge=
"0.0754"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1343"
charge=
"0.1629"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1344"
charge=
"0.1176"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1345"
charge=
"-0.3691"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1346"
charge=
"0.0358"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1347"
charge=
"0.1746"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1348"
charge=
"0.0577"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1349"
charge=
"0.0736"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1350"
charge=
"0.1997"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1351"
charge=
"-0.5725"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1352"
charge=
"0.1991"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1353"
charge=
"0.4918"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1354"
charge=
"-0.5699"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1355"
charge=
"-0.5053"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1356"
charge=
"0.352"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1357"
charge=
"0.7432"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1358"
charge=
"-0.923"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1359"
charge=
"0.4235"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1360"
charge=
"-0.6636"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1361"
charge=
"0.1814"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1362"
charge=
"0.0713"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1363"
charge=
"0.0985"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1364"
charge=
"-0.0854"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1365"
charge=
"0.0718"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1366"
charge=
"-0.6549"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1367"
charge=
"0.4396"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1368"
charge=
"1.1659"
radius=
"0.215"
gamma=
"-17.2301304"
/>
<Atom
type=
"1369"
charge=
"-0.7761"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1370"
charge=
"-0.7761"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1371"
charge=
"-0.4954"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1372"
charge=
"-0.0069"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1373"
charge=
"0.0754"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1374"
charge=
"0.1629"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1375"
charge=
"0.1176"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1376"
charge=
"-0.3691"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1377"
charge=
"0.068"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1378"
charge=
"0.1804"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1379"
charge=
"-0.0239"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1380"
charge=
"-0.2209"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1381"
charge=
"0.2607"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1382"
charge=
"0.0025"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1383"
charge=
"-0.2269"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1384"
charge=
"0.077"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1385"
charge=
"0.5194"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1386"
charge=
"-0.5563"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1387"
charge=
"-0.434"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1388"
charge=
"0.342"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1389"
charge=
"0.5677"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1390"
charge=
"-0.5881"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1391"
charge=
"0.0713"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1392"
charge=
"0.0985"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1393"
charge=
"-0.0854"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1394"
charge=
"0.0718"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1395"
charge=
"-0.5232"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1396"
charge=
"1.1659"
radius=
"0.215"
gamma=
"-17.2301304"
/>
<Atom
type=
"1397"
charge=
"-0.7761"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1398"
charge=
"-0.7761"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1399"
charge=
"-0.4954"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1400"
charge=
"-0.0069"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1401"
charge=
"0.0754"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1402"
charge=
"0.1629"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1403"
charge=
"0.1176"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1404"
charge=
"-0.3691"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1405"
charge=
"0.068"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1406"
charge=
"0.1804"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1407"
charge=
"-0.0239"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1408"
charge=
"-0.2209"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1409"
charge=
"0.2607"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1410"
charge=
"0.0025"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1411"
charge=
"-0.2269"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1412"
charge=
"0.077"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1413"
charge=
"0.5194"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1414"
charge=
"-0.5563"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1415"
charge=
"-0.434"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1416"
charge=
"0.342"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1417"
charge=
"0.5677"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1418"
charge=
"-0.5881"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1419"
charge=
"0.0713"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1420"
charge=
"0.0985"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1421"
charge=
"-0.0854"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1422"
charge=
"0.0718"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1423"
charge=
"-0.6549"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1424"
charge=
"0.4396"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1425"
charge=
"0.4422"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1426"
charge=
"-0.6318"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1427"
charge=
"-0.0069"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1428"
charge=
"0.0754"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1429"
charge=
"0.1629"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1430"
charge=
"0.1176"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1431"
charge=
"-0.3691"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1432"
charge=
"0.068"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1433"
charge=
"0.1804"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1434"
charge=
"-0.0239"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1435"
charge=
"-0.2209"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1436"
charge=
"0.2607"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1437"
charge=
"0.0025"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1438"
charge=
"-0.2269"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1439"
charge=
"0.077"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1440"
charge=
"0.5194"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1441"
charge=
"-0.5563"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1442"
charge=
"-0.434"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1443"
charge=
"0.342"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1444"
charge=
"0.5677"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1445"
charge=
"-0.5881"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1446"
charge=
"0.0713"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1447"
charge=
"0.0985"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1448"
charge=
"-0.0854"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1449"
charge=
"0.0718"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1450"
charge=
"-0.5232"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1451"
charge=
"0.4422"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1452"
charge=
"-0.6318"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1453"
charge=
"-0.0069"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1454"
charge=
"0.0754"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1455"
charge=
"0.1629"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1456"
charge=
"0.1176"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1457"
charge=
"-0.3691"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1458"
charge=
"0.068"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1459"
charge=
"0.1804"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1460"
charge=
"-0.0239"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1461"
charge=
"-0.2209"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1462"
charge=
"0.2607"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1463"
charge=
"0.0025"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1464"
charge=
"-0.2269"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1465"
charge=
"0.077"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1466"
charge=
"0.5194"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1467"
charge=
"-0.5563"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1468"
charge=
"-0.434"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1469"
charge=
"0.342"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1470"
charge=
"0.5677"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1471"
charge=
"-0.5881"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1472"
charge=
"0.0713"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1473"
charge=
"0.0985"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1474"
charge=
"-0.0854"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1475"
charge=
"0.0718"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1476"
charge=
"-0.6549"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1477"
charge=
"0.4396"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1478"
charge=
"1.1662"
radius=
"0.215"
gamma=
"-17.2301304"
/>
<Atom
type=
"1479"
charge=
"-0.776"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1480"
charge=
"-0.776"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1481"
charge=
"-0.4989"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1482"
charge=
"0.0558"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1483"
charge=
"0.0679"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1484"
charge=
"0.1065"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1485"
charge=
"0.1174"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1486"
charge=
"-0.3548"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1487"
charge=
"0.0394"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1488"
charge=
"0.2007"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1489"
charge=
"-0.0251"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1490"
charge=
"0.2006"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1491"
charge=
"0.1553"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1492"
charge=
"-0.6073"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1493"
charge=
"0.0515"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1494"
charge=
"0.7009"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1495"
charge=
"-0.9019"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1496"
charge=
"0.4115"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1497"
charge=
"-0.7615"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1498"
charge=
"0.5875"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1499"
charge=
"0.0473"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1500"
charge=
"-0.6997"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1501"
charge=
"0.3053"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1502"
charge=
"0.2022"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1503"
charge=
"0.0615"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1504"
charge=
"0.067"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1505"
charge=
"0.0972"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1506"
charge=
"-0.6139"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1507"
charge=
"0.4186"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1508"
charge=
"-0.5246"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1509"
charge=
"1.1662"
radius=
"0.215"
gamma=
"-17.2301304"
/>
<Atom
type=
"1510"
charge=
"-0.776"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1511"
charge=
"-0.776"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1512"
charge=
"-0.4989"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1513"
charge=
"0.0558"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1514"
charge=
"0.0679"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1515"
charge=
"0.1065"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1516"
charge=
"0.1174"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1517"
charge=
"-0.3548"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1518"
charge=
"0.0394"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1519"
charge=
"0.2007"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1520"
charge=
"-0.0251"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1521"
charge=
"0.2006"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1522"
charge=
"0.1553"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1523"
charge=
"-0.6073"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1524"
charge=
"0.0515"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1525"
charge=
"0.7009"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1526"
charge=
"-0.9019"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1527"
charge=
"0.4115"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1528"
charge=
"-0.7615"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1529"
charge=
"0.5875"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1530"
charge=
"0.0473"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1531"
charge=
"-0.6997"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1532"
charge=
"0.3053"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1533"
charge=
"0.2022"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1534"
charge=
"0.0615"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1535"
charge=
"0.067"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1536"
charge=
"0.0972"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1537"
charge=
"-0.6139"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1538"
charge=
"0.4186"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1539"
charge=
"-0.6541"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1540"
charge=
"0.4376"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1541"
charge=
"0.4295"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1542"
charge=
"-0.6223"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1543"
charge=
"0.0558"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1544"
charge=
"0.0679"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1545"
charge=
"0.1065"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1546"
charge=
"0.1174"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1547"
charge=
"-0.3548"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1548"
charge=
"0.0394"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1549"
charge=
"0.2007"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1550"
charge=
"-0.0251"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1551"
charge=
"0.2006"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1552"
charge=
"0.1553"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1553"
charge=
"-0.6073"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1554"
charge=
"0.0515"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1555"
charge=
"0.7009"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1556"
charge=
"-0.9019"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1557"
charge=
"0.4115"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1558"
charge=
"-0.7615"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1559"
charge=
"0.5875"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1560"
charge=
"0.0473"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1561"
charge=
"-0.6997"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1562"
charge=
"0.3053"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1563"
charge=
"0.2022"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1564"
charge=
"0.0615"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1565"
charge=
"0.067"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1566"
charge=
"0.0972"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1567"
charge=
"-0.6139"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1568"
charge=
"0.4186"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1569"
charge=
"-0.5246"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1570"
charge=
"0.4295"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1571"
charge=
"-0.6223"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1572"
charge=
"0.0558"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1573"
charge=
"0.0679"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1574"
charge=
"0.1065"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1575"
charge=
"0.1174"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1576"
charge=
"-0.3548"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1577"
charge=
"0.0394"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1578"
charge=
"0.2007"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1579"
charge=
"-0.0251"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1580"
charge=
"0.2006"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1581"
charge=
"0.1553"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1582"
charge=
"-0.6073"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1583"
charge=
"0.0515"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1584"
charge=
"0.7009"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1585"
charge=
"-0.9019"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1586"
charge=
"0.4115"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1587"
charge=
"-0.7615"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1588"
charge=
"0.5875"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1589"
charge=
"0.0473"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1590"
charge=
"-0.6997"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1591"
charge=
"0.3053"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1592"
charge=
"0.2022"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1593"
charge=
"0.0615"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1594"
charge=
"0.067"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1595"
charge=
"0.0972"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1596"
charge=
"-0.6139"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1597"
charge=
"0.4186"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1598"
charge=
"-0.6541"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1599"
charge=
"0.4376"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1600"
charge=
"1.1662"
radius=
"0.215"
gamma=
"-17.2301304"
/>
<Atom
type=
"1601"
charge=
"-0.776"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1602"
charge=
"-0.776"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1603"
charge=
"-0.4989"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1604"
charge=
"0.0558"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1605"
charge=
"0.0679"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1606"
charge=
"0.1065"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1607"
charge=
"0.1174"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1608"
charge=
"-0.3548"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1609"
charge=
"0.0066"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1610"
charge=
"0.2029"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1611"
charge=
"-0.0484"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1612"
charge=
"0.0053"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1613"
charge=
"0.1958"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1614"
charge=
"-0.5215"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1615"
charge=
"0.1928"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1616"
charge=
"0.8185"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1617"
charge=
"-0.953"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1618"
charge=
"0.4234"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1619"
charge=
"-0.7584"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1620"
charge=
"0.7538"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1621"
charge=
"-0.6252"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1622"
charge=
"0.2022"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1623"
charge=
"0.0615"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1624"
charge=
"0.067"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1625"
charge=
"0.0972"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1626"
charge=
"-0.6139"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1627"
charge=
"0.4186"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1628"
charge=
"-0.5246"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1629"
charge=
"1.1662"
radius=
"0.215"
gamma=
"-17.2301304"
/>
<Atom
type=
"1630"
charge=
"-0.776"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1631"
charge=
"-0.776"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1632"
charge=
"-0.4989"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1633"
charge=
"0.0558"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1634"
charge=
"0.0679"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1635"
charge=
"0.1065"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1636"
charge=
"0.1174"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1637"
charge=
"-0.3548"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1638"
charge=
"0.0066"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1639"
charge=
"0.2029"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1640"
charge=
"-0.0484"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1641"
charge=
"0.0053"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1642"
charge=
"0.1958"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1643"
charge=
"-0.5215"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1644"
charge=
"0.1928"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1645"
charge=
"0.8185"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1646"
charge=
"-0.953"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1647"
charge=
"0.4234"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1648"
charge=
"-0.7584"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1649"
charge=
"0.7538"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1650"
charge=
"-0.6252"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1651"
charge=
"0.2022"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1652"
charge=
"0.0615"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1653"
charge=
"0.067"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1654"
charge=
"0.0972"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1655"
charge=
"-0.6139"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1656"
charge=
"0.4186"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1657"
charge=
"-0.6541"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1658"
charge=
"0.4376"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1659"
charge=
"0.4295"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1660"
charge=
"-0.6223"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1661"
charge=
"0.0558"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1662"
charge=
"0.0679"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1663"
charge=
"0.1065"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1664"
charge=
"0.1174"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1665"
charge=
"-0.3548"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1666"
charge=
"0.0066"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1667"
charge=
"0.2029"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1668"
charge=
"-0.0484"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1669"
charge=
"0.0053"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1670"
charge=
"0.1958"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1671"
charge=
"-0.5215"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1672"
charge=
"0.1928"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1673"
charge=
"0.8185"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1674"
charge=
"-0.953"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1675"
charge=
"0.4234"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1676"
charge=
"-0.7584"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1677"
charge=
"0.7538"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1678"
charge=
"-0.6252"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1679"
charge=
"0.2022"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1680"
charge=
"0.0615"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1681"
charge=
"0.067"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1682"
charge=
"0.0972"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1683"
charge=
"-0.6139"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1684"
charge=
"0.4186"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1685"
charge=
"-0.5246"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1686"
charge=
"0.4295"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1687"
charge=
"-0.6223"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1688"
charge=
"0.0558"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1689"
charge=
"0.0679"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1690"
charge=
"0.1065"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1691"
charge=
"0.1174"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1692"
charge=
"-0.3548"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1693"
charge=
"0.0066"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1694"
charge=
"0.2029"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1695"
charge=
"-0.0484"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1696"
charge=
"0.0053"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1697"
charge=
"0.1958"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1698"
charge=
"-0.5215"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1699"
charge=
"0.1928"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1700"
charge=
"0.8185"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1701"
charge=
"-0.953"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1702"
charge=
"0.4234"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1703"
charge=
"-0.7584"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1704"
charge=
"0.7538"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1705"
charge=
"-0.6252"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1706"
charge=
"0.2022"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1707"
charge=
"0.0615"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1708"
charge=
"0.067"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1709"
charge=
"0.0972"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1710"
charge=
"-0.6139"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1711"
charge=
"0.4186"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1712"
charge=
"-0.6541"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1713"
charge=
"0.4376"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1714"
charge=
"1.1662"
radius=
"0.215"
gamma=
"-17.2301304"
/>
<Atom
type=
"1715"
charge=
"-0.776"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1716"
charge=
"-0.776"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1717"
charge=
"-0.4989"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1718"
charge=
"0.0558"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1719"
charge=
"0.0679"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1720"
charge=
"0.1065"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1721"
charge=
"0.1174"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1722"
charge=
"-0.3548"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1723"
charge=
"0.0191"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1724"
charge=
"0.2006"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1725"
charge=
"0.0492"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1726"
charge=
"0.1374"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1727"
charge=
"0.164"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1728"
charge=
"-0.5709"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1729"
charge=
"0.1744"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1730"
charge=
"0.477"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1731"
charge=
"-0.5597"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1732"
charge=
"-0.4787"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1733"
charge=
"0.3424"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1734"
charge=
"0.7657"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1735"
charge=
"-0.9672"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1736"
charge=
"0.4364"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1737"
charge=
"-0.6323"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1738"
charge=
"0.1222"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1739"
charge=
"0.2022"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1740"
charge=
"0.0615"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1741"
charge=
"0.067"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1742"
charge=
"0.0972"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1743"
charge=
"-0.6139"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1744"
charge=
"0.4186"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1745"
charge=
"-0.5246"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1746"
charge=
"1.1662"
radius=
"0.215"
gamma=
"-17.2301304"
/>
<Atom
type=
"1747"
charge=
"-0.776"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1748"
charge=
"-0.776"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1749"
charge=
"-0.4989"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1750"
charge=
"0.0558"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1751"
charge=
"0.0679"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1752"
charge=
"0.1065"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1753"
charge=
"0.1174"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1754"
charge=
"-0.3548"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1755"
charge=
"0.0191"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1756"
charge=
"0.2006"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1757"
charge=
"0.0492"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1758"
charge=
"0.1374"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1759"
charge=
"0.164"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1760"
charge=
"-0.5709"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1761"
charge=
"0.1744"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1762"
charge=
"0.477"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1763"
charge=
"-0.5597"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1764"
charge=
"-0.4787"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1765"
charge=
"0.3424"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1766"
charge=
"0.7657"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1767"
charge=
"-0.9672"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1768"
charge=
"0.4364"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1769"
charge=
"-0.6323"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1770"
charge=
"0.1222"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1771"
charge=
"0.2022"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1772"
charge=
"0.0615"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1773"
charge=
"0.067"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1774"
charge=
"0.0972"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1775"
charge=
"-0.6139"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1776"
charge=
"0.4186"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1777"
charge=
"-0.6541"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1778"
charge=
"0.4376"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1779"
charge=
"0.4295"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1780"
charge=
"-0.6223"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1781"
charge=
"0.0558"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1782"
charge=
"0.0679"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1783"
charge=
"0.1065"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1784"
charge=
"0.1174"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1785"
charge=
"-0.3548"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1786"
charge=
"0.0191"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1787"
charge=
"0.2006"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1788"
charge=
"0.0492"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1789"
charge=
"0.1374"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1790"
charge=
"0.164"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1791"
charge=
"-0.5709"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1792"
charge=
"0.1744"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1793"
charge=
"0.477"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1794"
charge=
"-0.5597"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1795"
charge=
"-0.4787"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1796"
charge=
"0.3424"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1797"
charge=
"0.7657"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1798"
charge=
"-0.9672"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1799"
charge=
"0.4364"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1800"
charge=
"-0.6323"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1801"
charge=
"0.1222"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1802"
charge=
"0.2022"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1803"
charge=
"0.0615"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1804"
charge=
"0.067"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1805"
charge=
"0.0972"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1806"
charge=
"-0.6139"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1807"
charge=
"0.4186"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1808"
charge=
"-0.5246"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1809"
charge=
"0.4295"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1810"
charge=
"-0.6223"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1811"
charge=
"0.0558"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1812"
charge=
"0.0679"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1813"
charge=
"0.1065"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1814"
charge=
"0.1174"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1815"
charge=
"-0.3548"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1816"
charge=
"0.0191"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1817"
charge=
"0.2006"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1818"
charge=
"0.0492"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1819"
charge=
"0.1374"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1820"
charge=
"0.164"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1821"
charge=
"-0.5709"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1822"
charge=
"0.1744"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1823"
charge=
"0.477"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1824"
charge=
"-0.5597"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1825"
charge=
"-0.4787"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1826"
charge=
"0.3424"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1827"
charge=
"0.7657"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1828"
charge=
"-0.9672"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1829"
charge=
"0.4364"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1830"
charge=
"-0.6323"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1831"
charge=
"0.1222"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1832"
charge=
"0.2022"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1833"
charge=
"0.0615"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1834"
charge=
"0.067"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1835"
charge=
"0.0972"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1836"
charge=
"-0.6139"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1837"
charge=
"0.4186"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1838"
charge=
"-0.6541"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1839"
charge=
"0.4376"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1840"
charge=
"1.1662"
radius=
"0.215"
gamma=
"-17.2301304"
/>
<Atom
type=
"1841"
charge=
"-0.776"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1842"
charge=
"-0.776"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1843"
charge=
"-0.4989"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1844"
charge=
"0.0558"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1845"
charge=
"0.0679"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1846"
charge=
"0.1065"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1847"
charge=
"0.1174"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1848"
charge=
"-0.3548"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1849"
charge=
"0.0674"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1850"
charge=
"0.1824"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1851"
charge=
"0.0418"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1852"
charge=
"-0.1126"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1853"
charge=
"0.2188"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1854"
charge=
"-0.3635"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1855"
charge=
"0.1811"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1856"
charge=
"0.5952"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1857"
charge=
"-0.5761"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1858"
charge=
"-0.3549"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1859"
charge=
"0.3154"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1860"
charge=
"0.4687"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1861"
charge=
"-0.5477"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1862"
charge=
"0.2022"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1863"
charge=
"0.0615"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1864"
charge=
"0.067"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1865"
charge=
"0.0972"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1866"
charge=
"-0.6139"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1867"
charge=
"0.4186"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1868"
charge=
"-0.5246"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1869"
charge=
"1.1662"
radius=
"0.215"
gamma=
"-17.2301304"
/>
<Atom
type=
"1870"
charge=
"-0.776"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1871"
charge=
"-0.776"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1872"
charge=
"-0.4989"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1873"
charge=
"0.0558"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1874"
charge=
"0.0679"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1875"
charge=
"0.1065"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1876"
charge=
"0.1174"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1877"
charge=
"-0.3548"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1878"
charge=
"0.0674"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1879"
charge=
"0.1824"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1880"
charge=
"0.0418"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1881"
charge=
"-0.1126"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1882"
charge=
"0.2188"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1883"
charge=
"-0.3635"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1884"
charge=
"0.1811"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1885"
charge=
"0.5952"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1886"
charge=
"-0.5761"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1887"
charge=
"-0.3549"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1888"
charge=
"0.3154"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1889"
charge=
"0.4687"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1890"
charge=
"-0.5477"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1891"
charge=
"0.2022"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1892"
charge=
"0.0615"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1893"
charge=
"0.067"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1894"
charge=
"0.0972"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1895"
charge=
"-0.6139"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1896"
charge=
"0.4186"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1897"
charge=
"-0.6541"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1898"
charge=
"0.4376"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1899"
charge=
"0.4295"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1900"
charge=
"-0.6223"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1901"
charge=
"0.0558"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1902"
charge=
"0.0679"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1903"
charge=
"0.1065"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1904"
charge=
"0.1174"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1905"
charge=
"-0.3548"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1906"
charge=
"0.0674"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1907"
charge=
"0.1824"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1908"
charge=
"0.0418"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1909"
charge=
"-0.1126"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1910"
charge=
"0.2188"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1911"
charge=
"-0.3635"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1912"
charge=
"0.1811"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1913"
charge=
"0.5952"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1914"
charge=
"-0.5761"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1915"
charge=
"-0.3549"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1916"
charge=
"0.3154"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1917"
charge=
"0.4687"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1918"
charge=
"-0.5477"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1919"
charge=
"0.2022"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1920"
charge=
"0.0615"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1921"
charge=
"0.067"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1922"
charge=
"0.0972"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1923"
charge=
"-0.6139"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1924"
charge=
"0.4186"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1925"
charge=
"-0.5246"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1926"
charge=
"0.4295"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1927"
charge=
"-0.6223"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1928"
charge=
"0.0558"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1929"
charge=
"0.0679"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1930"
charge=
"0.1065"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1931"
charge=
"0.1174"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1932"
charge=
"-0.3548"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1933"
charge=
"0.0674"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1934"
charge=
"0.1824"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1935"
charge=
"0.0418"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1936"
charge=
"-0.1126"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1937"
charge=
"0.2188"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1938"
charge=
"-0.3635"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1939"
charge=
"0.1811"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1940"
charge=
"0.5952"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1941"
charge=
"-0.5761"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1942"
charge=
"-0.3549"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1943"
charge=
"0.3154"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1944"
charge=
"0.4687"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1945"
charge=
"-0.5477"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1946"
charge=
"0.2022"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1947"
charge=
"0.0615"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1948"
charge=
"0.067"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1949"
charge=
"0.0972"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1950"
charge=
"-0.6139"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1951"
charge=
"0.4186"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1952"
charge=
"-0.6541"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1953"
charge=
"0.4376"
radius=
"0.1"
gamma=
"9.399356"
/>
</GBVIForce>
</ForceField>
wrappers/python/simtk/openmm/app/data/amber99_gbvi.xml
deleted
100644 → 0
View file @
b20c20fe
<ForceField>
<GBVIForce
soluteDielectric=
"1.0"
>
<Atom
type=
"0"
charge=
"-0.4157"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1"
charge=
"0.2719"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"2"
charge=
"0.0337"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"3"
charge=
"0.0823"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"4"
charge=
"-0.1825"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"5"
charge=
"0.0603"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"6"
charge=
"0.5973"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"7"
charge=
"-0.5679"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"8"
charge=
"-0.3479"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"9"
charge=
"0.2747"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"10"
charge=
"-0.2637"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"11"
charge=
"0.156"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"12"
charge=
"-0.0007"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"13"
charge=
"0.0327"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"14"
charge=
"0.039"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"15"
charge=
"0.0285"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"16"
charge=
"0.0486"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"17"
charge=
"0.0687"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"18"
charge=
"-0.5295"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"19"
charge=
"0.3456"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"20"
charge=
"0.8076"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"21"
charge=
"-0.8627"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"22"
charge=
"0.4478"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"23"
charge=
"-0.8627"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"24"
charge=
"0.4478"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"25"
charge=
"0.7341"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"26"
charge=
"-0.5894"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"27"
charge=
"-0.4157"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"28"
charge=
"0.2719"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"29"
charge=
"0.0341"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"30"
charge=
"0.0864"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"31"
charge=
"-0.0316"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"32"
charge=
"0.0488"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"33"
charge=
"0.6462"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"34"
charge=
"-0.5554"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"35"
charge=
"-0.6376"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"36"
charge=
"0.4747"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"37"
charge=
"0.5973"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"38"
charge=
"-0.5679"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"39"
charge=
"-0.4157"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"40"
charge=
"0.2719"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"41"
charge=
"0.0143"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"42"
charge=
"0.1048"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"43"
charge=
"-0.2041"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"44"
charge=
"0.0797"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"45"
charge=
"0.713"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"46"
charge=
"-0.5931"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"47"
charge=
"-0.9191"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"48"
charge=
"0.4196"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"49"
charge=
"0.5973"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"50"
charge=
"-0.5679"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"51"
charge=
"-0.5163"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"52"
charge=
"0.2936"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"53"
charge=
"0.0381"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"54"
charge=
"0.088"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"55"
charge=
"-0.0303"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"56"
charge=
"-0.0122"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"57"
charge=
"0.7994"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"58"
charge=
"-0.8014"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"59"
charge=
"-0.8014"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"60"
charge=
"0.5366"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"61"
charge=
"-0.5819"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"62"
charge=
"-0.4157"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"63"
charge=
"0.2719"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"64"
charge=
"-0.0351"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"65"
charge=
"0.0508"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"66"
charge=
"-0.2413"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"67"
charge=
"0.1122"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"68"
charge=
"-0.8844"
radius=
"0.195"
gamma=
"-4.273956"
/>
<Atom
type=
"69"
charge=
"0.5973"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"70"
charge=
"-0.5679"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"71"
charge=
"-0.4157"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"72"
charge=
"0.2719"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"73"
charge=
"0.0213"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"74"
charge=
"0.1124"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"75"
charge=
"-0.1231"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"76"
charge=
"0.1112"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"77"
charge=
"-0.3119"
radius=
"0.195"
gamma=
"-4.273956"
/>
<Atom
type=
"78"
charge=
"0.1933"
radius=
"0.125"
gamma=
"3.6563976"
/>
<Atom
type=
"79"
charge=
"0.5973"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"80"
charge=
"-0.5679"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"81"
charge=
"-0.4157"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"82"
charge=
"0.2719"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"83"
charge=
"0.0429"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"84"
charge=
"0.0766"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"85"
charge=
"-0.079"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"86"
charge=
"0.091"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"87"
charge=
"-0.1081"
radius=
"0.195"
gamma=
"-4.273956"
/>
<Atom
type=
"88"
charge=
"0.5973"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"89"
charge=
"-0.5679"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"90"
charge=
"-0.4157"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"91"
charge=
"0.2719"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"92"
charge=
"0.0145"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"93"
charge=
"0.0779"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"94"
charge=
"-0.0071"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"95"
charge=
"0.0256"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"96"
charge=
"-0.0174"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"97"
charge=
"0.043"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"98"
charge=
"0.6801"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"99"
charge=
"-0.5838"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"100"
charge=
"-0.6511"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"101"
charge=
"0.4641"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"102"
charge=
"0.5973"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"103"
charge=
"-0.5679"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"104"
charge=
"-0.4157"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"105"
charge=
"0.2719"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"106"
charge=
"-0.0031"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"107"
charge=
"0.085"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"108"
charge=
"-0.0036"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"109"
charge=
"0.0171"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"110"
charge=
"-0.0645"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"111"
charge=
"0.0352"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"112"
charge=
"0.6951"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"113"
charge=
"-0.6086"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"114"
charge=
"-0.9407"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"115"
charge=
"0.4251"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"116"
charge=
"0.5973"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"117"
charge=
"-0.5679"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"118"
charge=
"-0.5163"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"119"
charge=
"0.2936"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"120"
charge=
"0.0397"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"121"
charge=
"0.1105"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"122"
charge=
"0.056"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"123"
charge=
"-0.0173"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"124"
charge=
"0.0136"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"125"
charge=
"-0.0425"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"126"
charge=
"0.8054"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"127"
charge=
"-0.8188"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"128"
charge=
"-0.8188"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"129"
charge=
"0.5366"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"130"
charge=
"-0.5819"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"131"
charge=
"-0.4157"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"132"
charge=
"0.2719"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"133"
charge=
"-0.0252"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"134"
charge=
"0.0698"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"135"
charge=
"0.5973"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"136"
charge=
"-0.5679"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"137"
charge=
"-0.4157"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"138"
charge=
"0.2719"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"139"
charge=
"0.0188"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"140"
charge=
"0.0881"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"141"
charge=
"-0.0462"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"142"
charge=
"0.0402"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"143"
charge=
"-0.0266"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"144"
charge=
"-0.3811"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"145"
charge=
"0.3649"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"146"
charge=
"0.2057"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"147"
charge=
"0.1392"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"148"
charge=
"-0.5727"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"149"
charge=
"0.1292"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"150"
charge=
"0.1147"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"151"
charge=
"0.5973"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"152"
charge=
"-0.5679"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"153"
charge=
"-0.4157"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"154"
charge=
"0.2719"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"155"
charge=
"-0.0581"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"156"
charge=
"0.136"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"157"
charge=
"-0.0074"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"158"
charge=
"0.0367"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"159"
charge=
"0.1868"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"160"
charge=
"-0.5432"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"161"
charge=
"0.1635"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"162"
charge=
"0.1435"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"163"
charge=
"-0.2795"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"164"
charge=
"0.3339"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"165"
charge=
"-0.2207"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"166"
charge=
"0.1862"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"167"
charge=
"0.5973"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"168"
charge=
"-0.5679"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"169"
charge=
"-0.3479"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"170"
charge=
"0.2747"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"171"
charge=
"-0.1354"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"172"
charge=
"0.1212"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"173"
charge=
"-0.0414"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"174"
charge=
"0.081"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"175"
charge=
"-0.0012"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"176"
charge=
"-0.1513"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"177"
charge=
"0.3866"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"178"
charge=
"-0.017"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"179"
charge=
"0.2681"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"180"
charge=
"-0.1718"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"181"
charge=
"0.3911"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"182"
charge=
"-0.1141"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"183"
charge=
"0.2317"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"184"
charge=
"0.7341"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"185"
charge=
"-0.5894"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"186"
charge=
"-0.4157"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"187"
charge=
"0.2719"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"188"
charge=
"-0.0597"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"189"
charge=
"0.0869"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"190"
charge=
"0.1303"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"191"
charge=
"0.0187"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"192"
charge=
"-0.3204"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"193"
charge=
"0.0882"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"194"
charge=
"-0.043"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"195"
charge=
"0.0236"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"196"
charge=
"-0.066"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"197"
charge=
"0.0186"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"198"
charge=
"0.5973"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"199"
charge=
"-0.5679"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"200"
charge=
"-0.4157"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"201"
charge=
"0.2719"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"202"
charge=
"-0.0518"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"203"
charge=
"0.0922"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"204"
charge=
"-0.1102"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"205"
charge=
"0.0457"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"206"
charge=
"0.3531"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"207"
charge=
"-0.0361"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"208"
charge=
"-0.4121"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"209"
charge=
"0.1"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"210"
charge=
"-0.4121"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"211"
charge=
"0.1"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"212"
charge=
"0.5973"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"213"
charge=
"-0.5679"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"214"
charge=
"-0.4157"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"215"
charge=
"0.2719"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"216"
charge=
"-0.07206"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"217"
charge=
"0.0994"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"218"
charge=
"-0.04845"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"219"
charge=
"0.034"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"220"
charge=
"0.06612"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"221"
charge=
"0.01041"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"222"
charge=
"-0.03768"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"223"
charge=
"0.01155"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"224"
charge=
"0.32604"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"225"
charge=
"-0.03358"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"226"
charge=
"-1.03581"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"227"
charge=
"0.38604"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"228"
charge=
"0.5973"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"229"
charge=
"-0.5679"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"230"
charge=
"-0.3479"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"231"
charge=
"0.2747"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"232"
charge=
"-0.24"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"233"
charge=
"0.1426"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"234"
charge=
"-0.0094"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"235"
charge=
"0.0362"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"236"
charge=
"0.0187"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"237"
charge=
"0.0103"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"238"
charge=
"-0.0479"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"239"
charge=
"0.0621"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"240"
charge=
"-0.0143"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"241"
charge=
"0.1135"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"242"
charge=
"-0.3854"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"243"
charge=
"0.34"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"244"
charge=
"0.7341"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"245"
charge=
"-0.5894"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"246"
charge=
"-0.4157"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"247"
charge=
"0.2719"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"248"
charge=
"-0.0237"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"249"
charge=
"0.088"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"250"
charge=
"0.0342"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"251"
charge=
"0.0241"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"252"
charge=
"0.0018"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"253"
charge=
"0.044"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"254"
charge=
"-0.2737"
radius=
"0.195"
gamma=
"-4.273956"
/>
<Atom
type=
"255"
charge=
"-0.0536"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"256"
charge=
"0.0684"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"257"
charge=
"0.5973"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"258"
charge=
"-0.5679"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"259"
charge=
"-0.4157"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"260"
charge=
"0.2719"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"261"
charge=
"-0.0024"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"262"
charge=
"0.0978"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"263"
charge=
"-0.0343"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"264"
charge=
"0.0295"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"265"
charge=
"0.0118"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"266"
charge=
"-0.1256"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"267"
charge=
"0.133"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"268"
charge=
"-0.1704"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"269"
charge=
"0.143"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"270"
charge=
"-0.1072"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"271"
charge=
"0.1297"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"272"
charge=
"-0.1704"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"273"
charge=
"0.143"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"274"
charge=
"-0.1256"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"275"
charge=
"0.133"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"276"
charge=
"0.5973"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"277"
charge=
"-0.5679"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"278"
charge=
"-0.2548"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"279"
charge=
"0.0192"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"280"
charge=
"0.0391"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"281"
charge=
"0.0189"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"282"
charge=
"0.0213"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"283"
charge=
"-0.007"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"284"
charge=
"0.0253"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"285"
charge=
"-0.0266"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"286"
charge=
"0.0641"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"287"
charge=
"0.5896"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"288"
charge=
"-0.5748"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"289"
charge=
"-0.4157"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"290"
charge=
"0.2719"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"291"
charge=
"-0.0249"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"292"
charge=
"0.0843"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"293"
charge=
"0.2117"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"294"
charge=
"0.0352"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"295"
charge=
"-0.6546"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"296"
charge=
"0.4275"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"297"
charge=
"0.5973"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"298"
charge=
"-0.5679"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"299"
charge=
"-0.4157"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"300"
charge=
"0.2719"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"301"
charge=
"-0.0389"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"302"
charge=
"0.1007"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"303"
charge=
"0.3654"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"304"
charge=
"0.0043"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"305"
charge=
"-0.2438"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"306"
charge=
"0.0642"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"307"
charge=
"-0.6761"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"308"
charge=
"0.4102"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"309"
charge=
"0.5973"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"310"
charge=
"-0.5679"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"311"
charge=
"-0.4157"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"312"
charge=
"0.2719"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"313"
charge=
"-0.0275"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"314"
charge=
"0.1123"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"315"
charge=
"-0.005"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"316"
charge=
"0.0339"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"317"
charge=
"-0.1415"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"318"
charge=
"-0.1638"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"319"
charge=
"0.2062"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"320"
charge=
"-0.3418"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"321"
charge=
"0.3412"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"322"
charge=
"0.138"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"323"
charge=
"-0.2601"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"324"
charge=
"0.1572"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"325"
charge=
"-0.1134"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"326"
charge=
"0.1417"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"327"
charge=
"-0.1972"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"328"
charge=
"0.1447"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"329"
charge=
"-0.2387"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"330"
charge=
"0.17"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"331"
charge=
"0.1243"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"332"
charge=
"0.5973"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"333"
charge=
"-0.5679"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"334"
charge=
"-0.4157"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"335"
charge=
"0.2719"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"336"
charge=
"-0.0014"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"337"
charge=
"0.0876"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"338"
charge=
"-0.0152"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"339"
charge=
"0.0295"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"340"
charge=
"-0.0011"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"341"
charge=
"-0.1906"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"342"
charge=
"0.1699"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"343"
charge=
"-0.2341"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"344"
charge=
"0.1656"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"345"
charge=
"0.3226"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"346"
charge=
"-0.5579"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"347"
charge=
"0.3992"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"348"
charge=
"-0.2341"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"349"
charge=
"0.1656"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"350"
charge=
"-0.1906"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"351"
charge=
"0.1699"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"352"
charge=
"0.5973"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"353"
charge=
"-0.5679"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"354"
charge=
"-0.4157"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"355"
charge=
"0.2719"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"356"
charge=
"-0.0875"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"357"
charge=
"0.0969"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"358"
charge=
"0.2985"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"359"
charge=
"-0.0297"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"360"
charge=
"-0.3192"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"361"
charge=
"0.0791"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"362"
charge=
"-0.3192"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"363"
charge=
"0.0791"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"364"
charge=
"0.5973"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"365"
charge=
"-0.5679"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"366"
charge=
"-0.3821"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"367"
charge=
"0.2681"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"368"
charge=
"-0.1747"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"369"
charge=
"0.1067"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"370"
charge=
"-0.2093"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"371"
charge=
"0.0764"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"372"
charge=
"0.7731"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"373"
charge=
"-0.8055"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"374"
charge=
"-0.8055"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"375"
charge=
"-0.3481"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"376"
charge=
"0.2764"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"377"
charge=
"-0.3068"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"378"
charge=
"0.1447"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"379"
charge=
"-0.0374"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"380"
charge=
"0.0371"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"381"
charge=
"0.0744"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"382"
charge=
"0.0185"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"383"
charge=
"0.1114"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"384"
charge=
"0.0468"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"385"
charge=
"-0.5564"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"386"
charge=
"0.3479"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"387"
charge=
"0.8368"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"388"
charge=
"-0.8737"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"389"
charge=
"0.4493"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"390"
charge=
"-0.8737"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"391"
charge=
"0.4493"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"392"
charge=
"0.8557"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"393"
charge=
"-0.8266"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"394"
charge=
"-0.8266"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"395"
charge=
"-0.3821"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"396"
charge=
"0.2681"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"397"
charge=
"-0.208"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"398"
charge=
"0.1358"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"399"
charge=
"-0.2299"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"400"
charge=
"0.1023"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"401"
charge=
"0.7153"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"402"
charge=
"-0.601"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"403"
charge=
"-0.9084"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"404"
charge=
"0.415"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"405"
charge=
"0.805"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"406"
charge=
"-0.8147"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"407"
charge=
"-0.8147"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"408"
charge=
"-0.5192"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"409"
charge=
"0.3055"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"410"
charge=
"-0.1817"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"411"
charge=
"0.1046"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"412"
charge=
"-0.0677"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"413"
charge=
"-0.0212"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"414"
charge=
"0.8851"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"415"
charge=
"-0.8162"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"416"
charge=
"-0.8162"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"417"
charge=
"0.7256"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"418"
charge=
"-0.7887"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"419"
charge=
"-0.7887"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"420"
charge=
"-0.3821"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"421"
charge=
"0.2681"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"422"
charge=
"-0.1635"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"423"
charge=
"0.1396"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"424"
charge=
"-0.1996"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"425"
charge=
"0.1437"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"426"
charge=
"-0.3102"
radius=
"0.195"
gamma=
"-4.273956"
/>
<Atom
type=
"427"
charge=
"0.2068"
radius=
"0.125"
gamma=
"3.6563976"
/>
<Atom
type=
"428"
charge=
"0.7497"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"429"
charge=
"-0.7981"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"430"
charge=
"-0.7981"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"431"
charge=
"-0.3821"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"432"
charge=
"0.2681"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"433"
charge=
"-0.1318"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"434"
charge=
"0.0938"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"435"
charge=
"-0.1943"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"436"
charge=
"0.1228"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"437"
charge=
"-0.0529"
radius=
"0.195"
gamma=
"-4.273956"
/>
<Atom
type=
"438"
charge=
"0.7618"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"439"
charge=
"-0.8041"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"440"
charge=
"-0.8041"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"441"
charge=
"-0.3821"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"442"
charge=
"0.2681"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"443"
charge=
"-0.2248"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"444"
charge=
"0.1232"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"445"
charge=
"-0.0664"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"446"
charge=
"0.0452"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"447"
charge=
"-0.021"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"448"
charge=
"0.0203"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"449"
charge=
"0.7093"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"450"
charge=
"-0.6098"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"451"
charge=
"-0.9574"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"452"
charge=
"0.4304"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"453"
charge=
"0.7775"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"454"
charge=
"-0.8042"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"455"
charge=
"-0.8042"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"456"
charge=
"-0.5192"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"457"
charge=
"0.3055"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"458"
charge=
"-0.2059"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"459"
charge=
"0.1399"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"460"
charge=
"0.0071"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"461"
charge=
"-0.0078"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"462"
charge=
"0.0675"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"463"
charge=
"-0.0548"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"464"
charge=
"0.8183"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"465"
charge=
"-0.822"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"466"
charge=
"-0.822"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"467"
charge=
"0.742"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"468"
charge=
"-0.793"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"469"
charge=
"-0.793"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"470"
charge=
"-0.3821"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"471"
charge=
"0.2681"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"472"
charge=
"-0.2493"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"473"
charge=
"0.1056"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"474"
charge=
"0.7231"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"475"
charge=
"-0.7855"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"476"
charge=
"-0.7855"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"477"
charge=
"-0.3821"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"478"
charge=
"0.2681"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"479"
charge=
"-0.1739"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"480"
charge=
"0.11"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"481"
charge=
"-0.1046"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"482"
charge=
"0.0565"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"483"
charge=
"0.0293"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"484"
charge=
"-0.3892"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"485"
charge=
"0.3755"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"486"
charge=
"0.1925"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"487"
charge=
"0.1418"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"488"
charge=
"-0.5629"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"489"
charge=
"0.1001"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"490"
charge=
"0.1241"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"491"
charge=
"0.7615"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"492"
charge=
"-0.8016"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"493"
charge=
"-0.8016"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"494"
charge=
"-0.3821"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"495"
charge=
"0.2681"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"496"
charge=
"-0.2699"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"497"
charge=
"0.165"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"498"
charge=
"-0.1068"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"499"
charge=
"0.062"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"500"
charge=
"0.2724"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"501"
charge=
"-0.5517"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"502"
charge=
"0.1558"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"503"
charge=
"0.1448"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"504"
charge=
"-0.267"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"505"
charge=
"0.3319"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"506"
charge=
"-0.2588"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"507"
charge=
"0.1957"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"508"
charge=
"0.7916"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"509"
charge=
"-0.8065"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"510"
charge=
"-0.8065"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"511"
charge=
"-0.3481"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"512"
charge=
"0.2764"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"513"
charge=
"-0.1445"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"514"
charge=
"0.1115"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"515"
charge=
"-0.08"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"516"
charge=
"0.0868"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"517"
charge=
"0.0298"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"518"
charge=
"-0.1501"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"519"
charge=
"0.3883"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"520"
charge=
"-0.0251"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"521"
charge=
"0.2694"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"522"
charge=
"-0.1683"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"523"
charge=
"0.3913"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"524"
charge=
"-0.1256"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"525"
charge=
"0.2336"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"526"
charge=
"0.8032"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"527"
charge=
"-0.8177"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"528"
charge=
"-0.8177"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"529"
charge=
"-0.3821"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"530"
charge=
"0.2681"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"531"
charge=
"-0.31"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"532"
charge=
"0.1375"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"533"
charge=
"0.0363"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"534"
charge=
"0.0766"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"535"
charge=
"-0.3498"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"536"
charge=
"0.1021"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"537"
charge=
"-0.0323"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"538"
charge=
"0.0321"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"539"
charge=
"-0.0699"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"540"
charge=
"0.0196"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"541"
charge=
"0.8343"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"542"
charge=
"-0.819"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"543"
charge=
"-0.819"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"544"
charge=
"-0.3821"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"545"
charge=
"0.2681"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"546"
charge=
"-0.2847"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"547"
charge=
"0.1346"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"548"
charge=
"-0.2469"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"549"
charge=
"0.0974"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"550"
charge=
"0.3706"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"551"
charge=
"-0.0374"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"552"
charge=
"-0.4163"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"553"
charge=
"0.1038"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"554"
charge=
"-0.4163"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"555"
charge=
"0.1038"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"556"
charge=
"0.8326"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"557"
charge=
"-0.8199"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"558"
charge=
"-0.8199"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"559"
charge=
"-0.3481"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"560"
charge=
"0.2764"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"561"
charge=
"-0.2903"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"562"
charge=
"0.1438"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"563"
charge=
"-0.0538"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"564"
charge=
"0.0482"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"565"
charge=
"0.0227"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"566"
charge=
"0.0134"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"567"
charge=
"-0.0392"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"568"
charge=
"0.0611"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"569"
charge=
"-0.0176"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"570"
charge=
"0.1121"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"571"
charge=
"-0.3741"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"572"
charge=
"0.3374"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"573"
charge=
"0.8488"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"574"
charge=
"-0.8252"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"575"
charge=
"-0.8252"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"576"
charge=
"-0.3821"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"577"
charge=
"0.2681"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"578"
charge=
"-0.2597"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"579"
charge=
"0.1277"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"580"
charge=
"-0.0236"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"581"
charge=
"0.048"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"582"
charge=
"0.0492"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"583"
charge=
"0.0317"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"584"
charge=
"-0.2692"
radius=
"0.195"
gamma=
"-4.273956"
/>
<Atom
type=
"585"
charge=
"-0.0376"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"586"
charge=
"0.0625"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"587"
charge=
"0.8013"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"588"
charge=
"-0.8105"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"589"
charge=
"-0.8105"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"590"
charge=
"-0.3821"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"591"
charge=
"0.2681"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"592"
charge=
"-0.1825"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"593"
charge=
"0.1098"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"594"
charge=
"-0.0959"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"595"
charge=
"0.0443"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"596"
charge=
"0.0552"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"597"
charge=
"-0.13"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"598"
charge=
"0.1408"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"599"
charge=
"-0.1847"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"600"
charge=
"0.1461"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"601"
charge=
"-0.0944"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"602"
charge=
"0.128"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"603"
charge=
"-0.1847"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"604"
charge=
"0.1461"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"605"
charge=
"-0.13"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"606"
charge=
"0.1408"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"607"
charge=
"0.766"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"608"
charge=
"-0.8026"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"609"
charge=
"-0.8026"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"610"
charge=
"-0.2802"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"611"
charge=
"0.0434"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"612"
charge=
"0.0331"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"613"
charge=
"0.0466"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"614"
charge=
"0.0172"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"615"
charge=
"-0.0543"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"616"
charge=
"0.0381"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"617"
charge=
"-0.1336"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"618"
charge=
"0.0776"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"619"
charge=
"0.6631"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"620"
charge=
"-0.7697"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"621"
charge=
"-0.7697"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"622"
charge=
"-0.3821"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"623"
charge=
"0.2681"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"624"
charge=
"-0.2722"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"625"
charge=
"0.1304"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"626"
charge=
"0.1123"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"627"
charge=
"0.0813"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"628"
charge=
"-0.6514"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"629"
charge=
"0.4474"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"630"
charge=
"0.8113"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"631"
charge=
"-0.8132"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"632"
charge=
"-0.8132"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"633"
charge=
"-0.3821"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"634"
charge=
"0.2681"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"635"
charge=
"-0.242"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"636"
charge=
"0.1207"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"637"
charge=
"0.3025"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"638"
charge=
"0.0078"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"639"
charge=
"-0.1853"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"640"
charge=
"0.0586"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"641"
charge=
"-0.6496"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"642"
charge=
"0.4119"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"643"
charge=
"0.781"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"644"
charge=
"-0.8044"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"645"
charge=
"-0.8044"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"646"
charge=
"-0.3821"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"647"
charge=
"0.2681"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"648"
charge=
"-0.2084"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"649"
charge=
"0.1272"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"650"
charge=
"-0.0742"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"651"
charge=
"0.0497"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"652"
charge=
"-0.0796"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"653"
charge=
"-0.1808"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"654"
charge=
"0.2043"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"655"
charge=
"-0.3316"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"656"
charge=
"0.3413"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"657"
charge=
"0.1222"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"658"
charge=
"-0.2594"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"659"
charge=
"0.1567"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"660"
charge=
"-0.102"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"661"
charge=
"0.1401"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"662"
charge=
"-0.2287"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"663"
charge=
"0.1507"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"664"
charge=
"-0.1837"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"665"
charge=
"0.1491"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"666"
charge=
"0.1078"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"667"
charge=
"0.7658"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"668"
charge=
"-0.8011"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"669"
charge=
"-0.8011"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"670"
charge=
"-0.3821"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"671"
charge=
"0.2681"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"672"
charge=
"-0.2015"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"673"
charge=
"0.1092"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"674"
charge=
"-0.0752"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"675"
charge=
"0.049"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"676"
charge=
"0.0243"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"677"
charge=
"-0.1922"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"678"
charge=
"0.178"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"679"
charge=
"-0.2458"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"680"
charge=
"0.1673"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"681"
charge=
"0.3395"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"682"
charge=
"-0.5643"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"683"
charge=
"0.4017"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"684"
charge=
"-0.2458"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"685"
charge=
"0.1673"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"686"
charge=
"-0.1922"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"687"
charge=
"0.178"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"688"
charge=
"0.7817"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"689"
charge=
"-0.807"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"690"
charge=
"-0.807"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"691"
charge=
"-0.3821"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"692"
charge=
"0.2681"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"693"
charge=
"-0.3438"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"694"
charge=
"0.1438"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"695"
charge=
"0.194"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"696"
charge=
"0.0308"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"697"
charge=
"-0.3064"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"698"
charge=
"0.0836"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"699"
charge=
"-0.3064"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"700"
charge=
"0.0836"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"701"
charge=
"0.835"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"702"
charge=
"-0.8173"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"703"
charge=
"-0.8173"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"704"
charge=
"-0.463"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"705"
charge=
"0.2315"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"706"
charge=
"-0.4157"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"707"
charge=
"0.2719"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"708"
charge=
"-0.149"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"709"
charge=
"0.0976"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"710"
charge=
"0.1123"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"711"
charge=
"-0.3662"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"712"
charge=
"0.5972"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"713"
charge=
"-0.5679"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"714"
charge=
"0.1414"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"715"
charge=
"0.1997"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"716"
charge=
"0.0962"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"717"
charge=
"0.0889"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"718"
charge=
"-0.0597"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"719"
charge=
"0.03"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"720"
charge=
"0.6163"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"721"
charge=
"-0.5722"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"722"
charge=
"0.1305"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"723"
charge=
"0.2083"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"724"
charge=
"-0.0223"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"725"
charge=
"0.1242"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"726"
charge=
"0.0118"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"727"
charge=
"0.0226"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"728"
charge=
"0.0236"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"729"
charge=
"0.0309"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"730"
charge=
"0.0935"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"731"
charge=
"0.0527"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"732"
charge=
"-0.565"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"733"
charge=
"0.3592"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"734"
charge=
"0.8281"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"735"
charge=
"-0.8693"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"736"
charge=
"0.4494"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"737"
charge=
"-0.8693"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"738"
charge=
"0.4494"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"739"
charge=
"0.7214"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"740"
charge=
"-0.6013"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"741"
charge=
"0.1801"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"742"
charge=
"0.1921"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"743"
charge=
"0.0368"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"744"
charge=
"0.1231"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"745"
charge=
"-0.0283"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"746"
charge=
"0.0515"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"747"
charge=
"0.5833"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"748"
charge=
"-0.5744"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"749"
charge=
"-0.8634"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"750"
charge=
"0.4097"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"751"
charge=
"0.6163"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"752"
charge=
"-0.5722"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"753"
charge=
"0.0782"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"754"
charge=
"0.22"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"755"
charge=
"0.0292"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"756"
charge=
"0.1141"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"757"
charge=
"-0.0235"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"758"
charge=
"-0.0169"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"759"
charge=
"0.8194"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"760"
charge=
"-0.8084"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"761"
charge=
"-0.8084"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"762"
charge=
"0.5621"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"763"
charge=
"-0.5889"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"764"
charge=
"0.1325"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"765"
charge=
"0.2023"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"766"
charge=
"0.0927"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"767"
charge=
"0.1411"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"768"
charge=
"-0.1195"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"769"
charge=
"0.1188"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"770"
charge=
"-0.3298"
radius=
"0.195"
gamma=
"-4.273956"
/>
<Atom
type=
"771"
charge=
"0.1975"
radius=
"0.125"
gamma=
"3.6563976"
/>
<Atom
type=
"772"
charge=
"0.6123"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"773"
charge=
"-0.5713"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"774"
charge=
"0.2069"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"775"
charge=
"0.1815"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"776"
charge=
"0.1055"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"777"
charge=
"0.0922"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"778"
charge=
"-0.0277"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"779"
charge=
"0.068"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"780"
charge=
"-0.0984"
radius=
"0.195"
gamma=
"-4.273956"
/>
<Atom
type=
"781"
charge=
"0.6123"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"782"
charge=
"-0.5713"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"783"
charge=
"0.1493"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"784"
charge=
"0.1996"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"785"
charge=
"0.0536"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"786"
charge=
"0.1015"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"787"
charge=
"0.0651"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"788"
charge=
"0.005"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"789"
charge=
"-0.0903"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"790"
charge=
"0.0331"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"791"
charge=
"0.7354"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"792"
charge=
"-0.6133"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"793"
charge=
"-1.0031"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"794"
charge=
"0.4429"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"795"
charge=
"0.6123"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"796"
charge=
"-0.5713"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"797"
charge=
"0.0017"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"798"
charge=
"0.2391"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"799"
charge=
"0.0588"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"800"
charge=
"0.1202"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"801"
charge=
"0.0909"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"802"
charge=
"-0.0232"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"803"
charge=
"-0.0236"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"804"
charge=
"-0.0315"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"805"
charge=
"0.8087"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"806"
charge=
"-0.8189"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"807"
charge=
"-0.8189"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"808"
charge=
"0.5621"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"809"
charge=
"-0.5889"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"810"
charge=
"0.2943"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"811"
charge=
"0.1642"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"812"
charge=
"-0.01"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"813"
charge=
"0.0895"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"814"
charge=
"0.6163"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"815"
charge=
"-0.5722"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"816"
charge=
"0.1542"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"817"
charge=
"0.1963"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"818"
charge=
"0.0964"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"819"
charge=
"0.0958"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"820"
charge=
"0.0259"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"821"
charge=
"0.0209"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"822"
charge=
"-0.0399"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"823"
charge=
"-0.3819"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"824"
charge=
"0.3632"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"825"
charge=
"0.2127"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"826"
charge=
"0.1385"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"827"
charge=
"-0.5711"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"828"
charge=
"0.1046"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"829"
charge=
"0.1299"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"830"
charge=
"0.6123"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"831"
charge=
"-0.5713"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"832"
charge=
"0.1472"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"833"
charge=
"0.2016"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"834"
charge=
"0.0236"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"835"
charge=
"0.138"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"836"
charge=
"0.0489"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"837"
charge=
"0.0223"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"838"
charge=
"0.174"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"839"
charge=
"-0.5579"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"840"
charge=
"0.1804"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"841"
charge=
"0.1397"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"842"
charge=
"-0.2781"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"843"
charge=
"0.3324"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"844"
charge=
"-0.2349"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"845"
charge=
"0.1963"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"846"
charge=
"0.6123"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"847"
charge=
"-0.5713"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"848"
charge=
"0.256"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"849"
charge=
"0.1704"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"850"
charge=
"0.0581"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"851"
charge=
"0.1047"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"852"
charge=
"0.0484"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"853"
charge=
"0.0531"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"854"
charge=
"-0.0236"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"855"
charge=
"-0.151"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"856"
charge=
"0.3821"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"857"
charge=
"-0.0011"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"858"
charge=
"0.2645"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"859"
charge=
"-0.1739"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"860"
charge=
"0.3921"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"861"
charge=
"-0.1433"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"862"
charge=
"0.2495"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"863"
charge=
"0.7214"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"864"
charge=
"-0.6013"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"865"
charge=
"0.0311"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"866"
charge=
"0.2329"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"867"
charge=
"0.0257"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"868"
charge=
"0.1031"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"869"
charge=
"0.1885"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"870"
charge=
"0.0213"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"871"
charge=
"-0.372"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"872"
charge=
"0.0947"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"873"
charge=
"-0.0387"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"874"
charge=
"0.0201"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"875"
charge=
"-0.0908"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"876"
charge=
"0.0226"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"877"
charge=
"0.6123"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"878"
charge=
"-0.5713"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"879"
charge=
"0.101"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"880"
charge=
"0.2148"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"881"
charge=
"0.0104"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"882"
charge=
"0.1053"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"883"
charge=
"-0.0244"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"884"
charge=
"0.0256"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"885"
charge=
"0.3421"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"886"
charge=
"-0.038"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"887"
charge=
"-0.4106"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"888"
charge=
"0.098"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"889"
charge=
"-0.4104"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"890"
charge=
"0.098"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"891"
charge=
"0.6123"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"892"
charge=
"-0.5713"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"893"
charge=
"0.0966"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"894"
charge=
"0.2165"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"895"
charge=
"-0.0015"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"896"
charge=
"0.118"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"897"
charge=
"0.0212"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"898"
charge=
"0.0283"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"899"
charge=
"-0.0048"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"900"
charge=
"0.0121"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"901"
charge=
"-0.0608"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"902"
charge=
"0.0633"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"903"
charge=
"-0.0181"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"904"
charge=
"0.1171"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"905"
charge=
"-0.3764"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"906"
charge=
"0.3382"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"907"
charge=
"0.7214"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"908"
charge=
"-0.6013"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"909"
charge=
"0.1592"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"910"
charge=
"0.1984"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"911"
charge=
"0.0221"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"912"
charge=
"0.1116"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"913"
charge=
"0.0865"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"914"
charge=
"0.0125"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"915"
charge=
"0.0334"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"916"
charge=
"0.0292"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"917"
charge=
"-0.2774"
radius=
"0.195"
gamma=
"-4.273956"
/>
<Atom
type=
"918"
charge=
"-0.0341"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"919"
charge=
"0.0597"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"920"
charge=
"0.6123"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"921"
charge=
"-0.5713"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"922"
charge=
"0.1737"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"923"
charge=
"0.1921"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"924"
charge=
"0.0733"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"925"
charge=
"0.1041"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"926"
charge=
"0.033"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"927"
charge=
"0.0104"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"928"
charge=
"0.0031"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"929"
charge=
"-0.1392"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"930"
charge=
"0.1374"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"931"
charge=
"-0.1602"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"932"
charge=
"0.1433"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"933"
charge=
"-0.1208"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"934"
charge=
"0.1329"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"935"
charge=
"-0.1603"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"936"
charge=
"0.1433"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"937"
charge=
"-0.1391"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"938"
charge=
"0.1374"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"939"
charge=
"0.6123"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"940"
charge=
"-0.5713"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"941"
charge=
"-0.202"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"942"
charge=
"0.312"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"943"
charge=
"-0.012"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"944"
charge=
"0.1"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"945"
charge=
"-0.121"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"946"
charge=
"0.1"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"947"
charge=
"-0.115"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"948"
charge=
"0.1"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"949"
charge=
"0.1"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"950"
charge=
"0.1"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"951"
charge=
"0.526"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"952"
charge=
"-0.5"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"953"
charge=
"0.1849"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"954"
charge=
"0.1898"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"955"
charge=
"0.0567"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"956"
charge=
"0.0782"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"957"
charge=
"0.2596"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"958"
charge=
"0.0273"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"959"
charge=
"-0.6714"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"960"
charge=
"0.4239"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"961"
charge=
"0.6163"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"962"
charge=
"-0.5722"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"963"
charge=
"0.1812"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"964"
charge=
"0.1934"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"965"
charge=
"0.0034"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"966"
charge=
"0.1087"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"967"
charge=
"0.4514"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"968"
charge=
"-0.0323"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"969"
charge=
"-0.2554"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"970"
charge=
"0.0627"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"971"
charge=
"-0.6764"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"972"
charge=
"0.407"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"973"
charge=
"0.6163"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"974"
charge=
"-0.5722"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"975"
charge=
"0.1913"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"976"
charge=
"0.1888"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"977"
charge=
"0.0421"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"978"
charge=
"0.1162"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"979"
charge=
"0.0543"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"980"
charge=
"0.0222"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"981"
charge=
"-0.1654"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"982"
charge=
"-0.1788"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"983"
charge=
"0.2195"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"984"
charge=
"-0.3444"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"985"
charge=
"0.3412"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"986"
charge=
"0.1575"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"987"
charge=
"-0.271"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"988"
charge=
"0.1589"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"989"
charge=
"-0.108"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"990"
charge=
"0.1411"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"991"
charge=
"-0.2034"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"992"
charge=
"0.1458"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"993"
charge=
"-0.2265"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"994"
charge=
"0.1646"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"995"
charge=
"0.1132"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"996"
charge=
"0.6123"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"997"
charge=
"-0.5713"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"998"
charge=
"0.194"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"999"
charge=
"0.1873"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1000"
charge=
"0.057"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1001"
charge=
"0.0983"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1002"
charge=
"0.0659"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1003"
charge=
"0.0102"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1004"
charge=
"-0.0205"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1005"
charge=
"-0.2002"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1006"
charge=
"0.172"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1007"
charge=
"-0.2239"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1008"
charge=
"0.165"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1009"
charge=
"0.3139"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1010"
charge=
"-0.5578"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1011"
charge=
"0.4001"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1012"
charge=
"-0.2239"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1013"
charge=
"0.165"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1014"
charge=
"-0.2002"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1015"
charge=
"0.172"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1016"
charge=
"0.6123"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1017"
charge=
"-0.5713"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1018"
charge=
"0.0577"
radius=
"0.165"
gamma=
"-16.9213512"
/>
<Atom
type=
"1019"
charge=
"0.2272"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1020"
charge=
"-0.0054"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1021"
charge=
"0.1093"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1022"
charge=
"0.3196"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1023"
charge=
"-0.0221"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1024"
charge=
"-0.3129"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1025"
charge=
"0.0735"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1026"
charge=
"-0.3129"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1027"
charge=
"0.0735"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1028"
charge=
"0.6163"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1029"
charge=
"-0.5722"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1030"
charge=
"1.1659"
radius=
"0.215"
gamma=
"-17.2301304"
/>
<Atom
type=
"1031"
charge=
"-0.7761"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1032"
charge=
"-0.7761"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1033"
charge=
"-0.4954"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1034"
charge=
"-0.0069"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1035"
charge=
"0.0754"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1036"
charge=
"0.1629"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1037"
charge=
"0.1176"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1038"
charge=
"-0.3691"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1039"
charge=
"0.0431"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1040"
charge=
"0.1838"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1041"
charge=
"-0.0268"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1042"
charge=
"0.1607"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1043"
charge=
"0.1877"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1044"
charge=
"-0.6175"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1045"
charge=
"0.0725"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1046"
charge=
"0.6897"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1047"
charge=
"-0.9123"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1048"
charge=
"0.4167"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1049"
charge=
"-0.7624"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1050"
charge=
"0.5716"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1051"
charge=
"0.0598"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1052"
charge=
"-0.7417"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1053"
charge=
"0.38"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1054"
charge=
"0.0713"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1055"
charge=
"0.0985"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1056"
charge=
"-0.0854"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1057"
charge=
"0.0718"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1058"
charge=
"-0.5232"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1059"
charge=
"1.1659"
radius=
"0.215"
gamma=
"-17.2301304"
/>
<Atom
type=
"1060"
charge=
"-0.7761"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1061"
charge=
"-0.7761"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1062"
charge=
"-0.4954"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1063"
charge=
"-0.0069"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1064"
charge=
"0.0754"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1065"
charge=
"0.1629"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1066"
charge=
"0.1176"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1067"
charge=
"-0.3691"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1068"
charge=
"0.0431"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1069"
charge=
"0.1838"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1070"
charge=
"-0.0268"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1071"
charge=
"0.1607"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1072"
charge=
"0.1877"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1073"
charge=
"-0.6175"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1074"
charge=
"0.0725"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1075"
charge=
"0.6897"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1076"
charge=
"-0.9123"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1077"
charge=
"0.4167"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1078"
charge=
"-0.7624"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1079"
charge=
"0.5716"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1080"
charge=
"0.0598"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1081"
charge=
"-0.7417"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1082"
charge=
"0.38"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1083"
charge=
"0.0713"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1084"
charge=
"0.0985"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1085"
charge=
"-0.0854"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1086"
charge=
"0.0718"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1087"
charge=
"-0.6549"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1088"
charge=
"0.4396"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1089"
charge=
"0.4422"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1090"
charge=
"-0.6318"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1091"
charge=
"-0.0069"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1092"
charge=
"0.0754"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1093"
charge=
"0.1629"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1094"
charge=
"0.1176"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1095"
charge=
"-0.3691"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1096"
charge=
"0.0431"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1097"
charge=
"0.1838"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1098"
charge=
"-0.0268"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1099"
charge=
"0.1607"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1100"
charge=
"0.1877"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1101"
charge=
"-0.6175"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1102"
charge=
"0.0725"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1103"
charge=
"0.6897"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1104"
charge=
"-0.9123"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1105"
charge=
"0.4167"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1106"
charge=
"-0.7624"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1107"
charge=
"0.5716"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1108"
charge=
"0.0598"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1109"
charge=
"-0.7417"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1110"
charge=
"0.38"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1111"
charge=
"0.0713"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1112"
charge=
"0.0985"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1113"
charge=
"-0.0854"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1114"
charge=
"0.0718"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1115"
charge=
"-0.5232"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1116"
charge=
"0.4422"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1117"
charge=
"-0.6318"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1118"
charge=
"-0.0069"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1119"
charge=
"0.0754"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1120"
charge=
"0.1629"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1121"
charge=
"0.1176"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1122"
charge=
"-0.3691"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1123"
charge=
"0.0431"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1124"
charge=
"0.1838"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1125"
charge=
"-0.0268"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1126"
charge=
"0.1607"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1127"
charge=
"0.1877"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1128"
charge=
"-0.6175"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1129"
charge=
"0.0725"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1130"
charge=
"0.6897"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1131"
charge=
"-0.9123"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1132"
charge=
"0.4167"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1133"
charge=
"-0.7624"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1134"
charge=
"0.5716"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1135"
charge=
"0.0598"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1136"
charge=
"-0.7417"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1137"
charge=
"0.38"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1138"
charge=
"0.0713"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1139"
charge=
"0.0985"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1140"
charge=
"-0.0854"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1141"
charge=
"0.0718"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1142"
charge=
"-0.6549"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1143"
charge=
"0.4396"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1144"
charge=
"1.1659"
radius=
"0.215"
gamma=
"-17.2301304"
/>
<Atom
type=
"1145"
charge=
"-0.7761"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1146"
charge=
"-0.7761"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1147"
charge=
"-0.4954"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1148"
charge=
"-0.0069"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1149"
charge=
"0.0754"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1150"
charge=
"0.1629"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1151"
charge=
"0.1176"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1152"
charge=
"-0.3691"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1153"
charge=
"-0.0116"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1154"
charge=
"0.1963"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1155"
charge=
"-0.0339"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1156"
charge=
"-0.0183"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1157"
charge=
"0.2293"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1158"
charge=
"-0.5222"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1159"
charge=
"0.1863"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1160"
charge=
"0.8439"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1161"
charge=
"-0.9773"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1162"
charge=
"0.4314"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1163"
charge=
"-0.7748"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1164"
charge=
"0.7959"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1165"
charge=
"-0.6548"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1166"
charge=
"0.0713"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1167"
charge=
"0.0985"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1168"
charge=
"-0.0854"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1169"
charge=
"0.0718"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1170"
charge=
"-0.5232"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1171"
charge=
"1.1659"
radius=
"0.215"
gamma=
"-17.2301304"
/>
<Atom
type=
"1172"
charge=
"-0.7761"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1173"
charge=
"-0.7761"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1174"
charge=
"-0.4954"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1175"
charge=
"-0.0069"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1176"
charge=
"0.0754"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1177"
charge=
"0.1629"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1178"
charge=
"0.1176"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1179"
charge=
"-0.3691"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1180"
charge=
"-0.0116"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1181"
charge=
"0.1963"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1182"
charge=
"-0.0339"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1183"
charge=
"-0.0183"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1184"
charge=
"0.2293"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1185"
charge=
"-0.5222"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1186"
charge=
"0.1863"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1187"
charge=
"0.8439"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1188"
charge=
"-0.9773"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1189"
charge=
"0.4314"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1190"
charge=
"-0.7748"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1191"
charge=
"0.7959"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1192"
charge=
"-0.6548"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1193"
charge=
"0.0713"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1194"
charge=
"0.0985"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1195"
charge=
"-0.0854"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1196"
charge=
"0.0718"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1197"
charge=
"-0.6549"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1198"
charge=
"0.4396"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1199"
charge=
"0.4422"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1200"
charge=
"-0.6318"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1201"
charge=
"-0.0069"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1202"
charge=
"0.0754"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1203"
charge=
"0.1629"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1204"
charge=
"0.1176"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1205"
charge=
"-0.3691"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1206"
charge=
"-0.0116"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1207"
charge=
"0.1963"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1208"
charge=
"-0.0339"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1209"
charge=
"-0.0183"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1210"
charge=
"0.2293"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1211"
charge=
"-0.5222"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1212"
charge=
"0.1863"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1213"
charge=
"0.8439"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1214"
charge=
"-0.9773"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1215"
charge=
"0.4314"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1216"
charge=
"-0.7748"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1217"
charge=
"0.7959"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1218"
charge=
"-0.6548"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1219"
charge=
"0.0713"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1220"
charge=
"0.0985"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1221"
charge=
"-0.0854"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1222"
charge=
"0.0718"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1223"
charge=
"-0.5232"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1224"
charge=
"0.4422"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1225"
charge=
"-0.6318"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1226"
charge=
"-0.0069"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1227"
charge=
"0.0754"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1228"
charge=
"0.1629"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1229"
charge=
"0.1176"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1230"
charge=
"-0.3691"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1231"
charge=
"-0.0116"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1232"
charge=
"0.1963"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1233"
charge=
"-0.0339"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1234"
charge=
"-0.0183"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1235"
charge=
"0.2293"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1236"
charge=
"-0.5222"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1237"
charge=
"0.1863"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1238"
charge=
"0.8439"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1239"
charge=
"-0.9773"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1240"
charge=
"0.4314"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1241"
charge=
"-0.7748"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1242"
charge=
"0.7959"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1243"
charge=
"-0.6548"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1244"
charge=
"0.0713"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1245"
charge=
"0.0985"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1246"
charge=
"-0.0854"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1247"
charge=
"0.0718"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1248"
charge=
"-0.6549"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1249"
charge=
"0.4396"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1250"
charge=
"1.1659"
radius=
"0.215"
gamma=
"-17.2301304"
/>
<Atom
type=
"1251"
charge=
"-0.7761"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1252"
charge=
"-0.7761"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1253"
charge=
"-0.4954"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1254"
charge=
"-0.0069"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1255"
charge=
"0.0754"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1256"
charge=
"0.1629"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1257"
charge=
"0.1176"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1258"
charge=
"-0.3691"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1259"
charge=
"0.0358"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1260"
charge=
"0.1746"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1261"
charge=
"0.0577"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1262"
charge=
"0.0736"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1263"
charge=
"0.1997"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1264"
charge=
"-0.5725"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1265"
charge=
"0.1991"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1266"
charge=
"0.4918"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1267"
charge=
"-0.5699"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1268"
charge=
"-0.5053"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1269"
charge=
"0.352"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1270"
charge=
"0.7432"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1271"
charge=
"-0.923"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1272"
charge=
"0.4235"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1273"
charge=
"-0.6636"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1274"
charge=
"0.1814"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1275"
charge=
"0.0713"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1276"
charge=
"0.0985"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1277"
charge=
"-0.0854"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1278"
charge=
"0.0718"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1279"
charge=
"-0.5232"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1280"
charge=
"1.1659"
radius=
"0.215"
gamma=
"-17.2301304"
/>
<Atom
type=
"1281"
charge=
"-0.7761"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1282"
charge=
"-0.7761"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1283"
charge=
"-0.4954"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1284"
charge=
"-0.0069"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1285"
charge=
"0.0754"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1286"
charge=
"0.1629"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1287"
charge=
"0.1176"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1288"
charge=
"-0.3691"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1289"
charge=
"0.0358"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1290"
charge=
"0.1746"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1291"
charge=
"0.0577"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1292"
charge=
"0.0736"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1293"
charge=
"0.1997"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1294"
charge=
"-0.5725"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1295"
charge=
"0.1991"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1296"
charge=
"0.4918"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1297"
charge=
"-0.5699"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1298"
charge=
"-0.5053"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1299"
charge=
"0.352"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1300"
charge=
"0.7432"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1301"
charge=
"-0.923"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1302"
charge=
"0.4235"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1303"
charge=
"-0.6636"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1304"
charge=
"0.1814"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1305"
charge=
"0.0713"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1306"
charge=
"0.0985"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1307"
charge=
"-0.0854"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1308"
charge=
"0.0718"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1309"
charge=
"-0.6549"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1310"
charge=
"0.4396"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1311"
charge=
"0.4422"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1312"
charge=
"-0.6318"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1313"
charge=
"-0.0069"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1314"
charge=
"0.0754"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1315"
charge=
"0.1629"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1316"
charge=
"0.1176"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1317"
charge=
"-0.3691"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1318"
charge=
"0.0358"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1319"
charge=
"0.1746"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1320"
charge=
"0.0577"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1321"
charge=
"0.0736"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1322"
charge=
"0.1997"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1323"
charge=
"-0.5725"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1324"
charge=
"0.1991"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1325"
charge=
"0.4918"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1326"
charge=
"-0.5699"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1327"
charge=
"-0.5053"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1328"
charge=
"0.352"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1329"
charge=
"0.7432"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1330"
charge=
"-0.923"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1331"
charge=
"0.4235"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1332"
charge=
"-0.6636"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1333"
charge=
"0.1814"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1334"
charge=
"0.0713"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1335"
charge=
"0.0985"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1336"
charge=
"-0.0854"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1337"
charge=
"0.0718"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1338"
charge=
"-0.5232"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1339"
charge=
"0.4422"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1340"
charge=
"-0.6318"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1341"
charge=
"-0.0069"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1342"
charge=
"0.0754"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1343"
charge=
"0.1629"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1344"
charge=
"0.1176"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1345"
charge=
"-0.3691"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1346"
charge=
"0.0358"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1347"
charge=
"0.1746"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1348"
charge=
"0.0577"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1349"
charge=
"0.0736"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1350"
charge=
"0.1997"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1351"
charge=
"-0.5725"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1352"
charge=
"0.1991"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1353"
charge=
"0.4918"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1354"
charge=
"-0.5699"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1355"
charge=
"-0.5053"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1356"
charge=
"0.352"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1357"
charge=
"0.7432"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1358"
charge=
"-0.923"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1359"
charge=
"0.4235"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1360"
charge=
"-0.6636"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1361"
charge=
"0.1814"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1362"
charge=
"0.0713"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1363"
charge=
"0.0985"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1364"
charge=
"-0.0854"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1365"
charge=
"0.0718"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1366"
charge=
"-0.6549"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1367"
charge=
"0.4396"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1368"
charge=
"1.1659"
radius=
"0.215"
gamma=
"-17.2301304"
/>
<Atom
type=
"1369"
charge=
"-0.7761"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1370"
charge=
"-0.7761"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1371"
charge=
"-0.4954"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1372"
charge=
"-0.0069"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1373"
charge=
"0.0754"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1374"
charge=
"0.1629"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1375"
charge=
"0.1176"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1376"
charge=
"-0.3691"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1377"
charge=
"0.068"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1378"
charge=
"0.1804"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1379"
charge=
"-0.0239"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1380"
charge=
"-0.2209"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1381"
charge=
"0.2607"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1382"
charge=
"0.0025"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1383"
charge=
"-0.2269"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1384"
charge=
"0.077"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1385"
charge=
"0.5194"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1386"
charge=
"-0.5563"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1387"
charge=
"-0.434"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1388"
charge=
"0.342"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1389"
charge=
"0.5677"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1390"
charge=
"-0.5881"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1391"
charge=
"0.0713"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1392"
charge=
"0.0985"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1393"
charge=
"-0.0854"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1394"
charge=
"0.0718"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1395"
charge=
"-0.5232"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1396"
charge=
"1.1659"
radius=
"0.215"
gamma=
"-17.2301304"
/>
<Atom
type=
"1397"
charge=
"-0.7761"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1398"
charge=
"-0.7761"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1399"
charge=
"-0.4954"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1400"
charge=
"-0.0069"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1401"
charge=
"0.0754"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1402"
charge=
"0.1629"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1403"
charge=
"0.1176"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1404"
charge=
"-0.3691"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1405"
charge=
"0.068"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1406"
charge=
"0.1804"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1407"
charge=
"-0.0239"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1408"
charge=
"-0.2209"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1409"
charge=
"0.2607"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1410"
charge=
"0.0025"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1411"
charge=
"-0.2269"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1412"
charge=
"0.077"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1413"
charge=
"0.5194"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1414"
charge=
"-0.5563"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1415"
charge=
"-0.434"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1416"
charge=
"0.342"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1417"
charge=
"0.5677"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1418"
charge=
"-0.5881"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1419"
charge=
"0.0713"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1420"
charge=
"0.0985"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1421"
charge=
"-0.0854"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1422"
charge=
"0.0718"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1423"
charge=
"-0.6549"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1424"
charge=
"0.4396"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1425"
charge=
"0.4422"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1426"
charge=
"-0.6318"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1427"
charge=
"-0.0069"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1428"
charge=
"0.0754"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1429"
charge=
"0.1629"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1430"
charge=
"0.1176"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1431"
charge=
"-0.3691"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1432"
charge=
"0.068"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1433"
charge=
"0.1804"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1434"
charge=
"-0.0239"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1435"
charge=
"-0.2209"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1436"
charge=
"0.2607"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1437"
charge=
"0.0025"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1438"
charge=
"-0.2269"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1439"
charge=
"0.077"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1440"
charge=
"0.5194"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1441"
charge=
"-0.5563"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1442"
charge=
"-0.434"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1443"
charge=
"0.342"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1444"
charge=
"0.5677"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1445"
charge=
"-0.5881"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1446"
charge=
"0.0713"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1447"
charge=
"0.0985"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1448"
charge=
"-0.0854"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1449"
charge=
"0.0718"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1450"
charge=
"-0.5232"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1451"
charge=
"0.4422"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1452"
charge=
"-0.6318"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1453"
charge=
"-0.0069"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1454"
charge=
"0.0754"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1455"
charge=
"0.1629"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1456"
charge=
"0.1176"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1457"
charge=
"-0.3691"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1458"
charge=
"0.068"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1459"
charge=
"0.1804"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1460"
charge=
"-0.0239"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1461"
charge=
"-0.2209"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1462"
charge=
"0.2607"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1463"
charge=
"0.0025"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1464"
charge=
"-0.2269"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1465"
charge=
"0.077"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1466"
charge=
"0.5194"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1467"
charge=
"-0.5563"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1468"
charge=
"-0.434"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1469"
charge=
"0.342"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1470"
charge=
"0.5677"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1471"
charge=
"-0.5881"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1472"
charge=
"0.0713"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1473"
charge=
"0.0985"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1474"
charge=
"-0.0854"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1475"
charge=
"0.0718"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1476"
charge=
"-0.6549"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1477"
charge=
"0.4396"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1478"
charge=
"1.1662"
radius=
"0.215"
gamma=
"-17.2301304"
/>
<Atom
type=
"1479"
charge=
"-0.776"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1480"
charge=
"-0.776"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1481"
charge=
"-0.4989"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1482"
charge=
"0.0558"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1483"
charge=
"0.0679"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1484"
charge=
"0.1065"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1485"
charge=
"0.1174"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1486"
charge=
"-0.3548"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1487"
charge=
"0.0394"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1488"
charge=
"0.2007"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1489"
charge=
"-0.0251"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1490"
charge=
"0.2006"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1491"
charge=
"0.1553"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1492"
charge=
"-0.6073"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1493"
charge=
"0.0515"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1494"
charge=
"0.7009"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1495"
charge=
"-0.9019"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1496"
charge=
"0.4115"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1497"
charge=
"-0.7615"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1498"
charge=
"0.5875"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1499"
charge=
"0.0473"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1500"
charge=
"-0.6997"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1501"
charge=
"0.3053"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1502"
charge=
"0.2022"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1503"
charge=
"0.0615"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1504"
charge=
"0.067"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1505"
charge=
"0.0972"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1506"
charge=
"-0.6139"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1507"
charge=
"0.4186"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1508"
charge=
"-0.5246"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1509"
charge=
"1.1662"
radius=
"0.215"
gamma=
"-17.2301304"
/>
<Atom
type=
"1510"
charge=
"-0.776"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1511"
charge=
"-0.776"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1512"
charge=
"-0.4989"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1513"
charge=
"0.0558"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1514"
charge=
"0.0679"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1515"
charge=
"0.1065"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1516"
charge=
"0.1174"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1517"
charge=
"-0.3548"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1518"
charge=
"0.0394"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1519"
charge=
"0.2007"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1520"
charge=
"-0.0251"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1521"
charge=
"0.2006"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1522"
charge=
"0.1553"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1523"
charge=
"-0.6073"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1524"
charge=
"0.0515"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1525"
charge=
"0.7009"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1526"
charge=
"-0.9019"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1527"
charge=
"0.4115"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1528"
charge=
"-0.7615"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1529"
charge=
"0.5875"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1530"
charge=
"0.0473"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1531"
charge=
"-0.6997"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1532"
charge=
"0.3053"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1533"
charge=
"0.2022"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1534"
charge=
"0.0615"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1535"
charge=
"0.067"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1536"
charge=
"0.0972"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1537"
charge=
"-0.6139"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1538"
charge=
"0.4186"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1539"
charge=
"-0.6541"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1540"
charge=
"0.4376"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1541"
charge=
"0.4295"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1542"
charge=
"-0.6223"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1543"
charge=
"0.0558"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1544"
charge=
"0.0679"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1545"
charge=
"0.1065"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1546"
charge=
"0.1174"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1547"
charge=
"-0.3548"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1548"
charge=
"0.0394"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1549"
charge=
"0.2007"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1550"
charge=
"-0.0251"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1551"
charge=
"0.2006"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1552"
charge=
"0.1553"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1553"
charge=
"-0.6073"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1554"
charge=
"0.0515"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1555"
charge=
"0.7009"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1556"
charge=
"-0.9019"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1557"
charge=
"0.4115"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1558"
charge=
"-0.7615"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1559"
charge=
"0.5875"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1560"
charge=
"0.0473"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1561"
charge=
"-0.6997"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1562"
charge=
"0.3053"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1563"
charge=
"0.2022"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1564"
charge=
"0.0615"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1565"
charge=
"0.067"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1566"
charge=
"0.0972"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1567"
charge=
"-0.6139"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1568"
charge=
"0.4186"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1569"
charge=
"-0.5246"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1570"
charge=
"0.4295"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1571"
charge=
"-0.6223"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1572"
charge=
"0.0558"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1573"
charge=
"0.0679"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1574"
charge=
"0.1065"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1575"
charge=
"0.1174"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1576"
charge=
"-0.3548"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1577"
charge=
"0.0394"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1578"
charge=
"0.2007"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1579"
charge=
"-0.0251"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1580"
charge=
"0.2006"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1581"
charge=
"0.1553"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1582"
charge=
"-0.6073"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1583"
charge=
"0.0515"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1584"
charge=
"0.7009"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1585"
charge=
"-0.9019"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1586"
charge=
"0.4115"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1587"
charge=
"-0.7615"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1588"
charge=
"0.5875"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1589"
charge=
"0.0473"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1590"
charge=
"-0.6997"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1591"
charge=
"0.3053"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1592"
charge=
"0.2022"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1593"
charge=
"0.0615"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1594"
charge=
"0.067"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1595"
charge=
"0.0972"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1596"
charge=
"-0.6139"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1597"
charge=
"0.4186"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1598"
charge=
"-0.6541"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1599"
charge=
"0.4376"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1600"
charge=
"1.1662"
radius=
"0.215"
gamma=
"-17.2301304"
/>
<Atom
type=
"1601"
charge=
"-0.776"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1602"
charge=
"-0.776"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1603"
charge=
"-0.4989"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1604"
charge=
"0.0558"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1605"
charge=
"0.0679"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1606"
charge=
"0.1065"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1607"
charge=
"0.1174"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1608"
charge=
"-0.3548"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1609"
charge=
"0.0066"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1610"
charge=
"0.2029"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1611"
charge=
"-0.0484"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1612"
charge=
"0.0053"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1613"
charge=
"0.1958"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1614"
charge=
"-0.5215"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1615"
charge=
"0.1928"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1616"
charge=
"0.8185"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1617"
charge=
"-0.953"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1618"
charge=
"0.4234"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1619"
charge=
"-0.7584"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1620"
charge=
"0.7538"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1621"
charge=
"-0.6252"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1622"
charge=
"0.2022"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1623"
charge=
"0.0615"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1624"
charge=
"0.067"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1625"
charge=
"0.0972"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1626"
charge=
"-0.6139"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1627"
charge=
"0.4186"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1628"
charge=
"-0.5246"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1629"
charge=
"1.1662"
radius=
"0.215"
gamma=
"-17.2301304"
/>
<Atom
type=
"1630"
charge=
"-0.776"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1631"
charge=
"-0.776"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1632"
charge=
"-0.4989"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1633"
charge=
"0.0558"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1634"
charge=
"0.0679"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1635"
charge=
"0.1065"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1636"
charge=
"0.1174"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1637"
charge=
"-0.3548"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1638"
charge=
"0.0066"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1639"
charge=
"0.2029"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1640"
charge=
"-0.0484"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1641"
charge=
"0.0053"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1642"
charge=
"0.1958"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1643"
charge=
"-0.5215"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1644"
charge=
"0.1928"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1645"
charge=
"0.8185"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1646"
charge=
"-0.953"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1647"
charge=
"0.4234"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1648"
charge=
"-0.7584"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1649"
charge=
"0.7538"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1650"
charge=
"-0.6252"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1651"
charge=
"0.2022"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1652"
charge=
"0.0615"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1653"
charge=
"0.067"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1654"
charge=
"0.0972"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1655"
charge=
"-0.6139"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1656"
charge=
"0.4186"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1657"
charge=
"-0.6541"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1658"
charge=
"0.4376"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1659"
charge=
"0.4295"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1660"
charge=
"-0.6223"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1661"
charge=
"0.0558"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1662"
charge=
"0.0679"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1663"
charge=
"0.1065"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1664"
charge=
"0.1174"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1665"
charge=
"-0.3548"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1666"
charge=
"0.0066"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1667"
charge=
"0.2029"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1668"
charge=
"-0.0484"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1669"
charge=
"0.0053"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1670"
charge=
"0.1958"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1671"
charge=
"-0.5215"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1672"
charge=
"0.1928"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1673"
charge=
"0.8185"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1674"
charge=
"-0.953"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1675"
charge=
"0.4234"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1676"
charge=
"-0.7584"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1677"
charge=
"0.7538"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1678"
charge=
"-0.6252"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1679"
charge=
"0.2022"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1680"
charge=
"0.0615"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1681"
charge=
"0.067"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1682"
charge=
"0.0972"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1683"
charge=
"-0.6139"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1684"
charge=
"0.4186"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1685"
charge=
"-0.5246"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1686"
charge=
"0.4295"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1687"
charge=
"-0.6223"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1688"
charge=
"0.0558"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1689"
charge=
"0.0679"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1690"
charge=
"0.1065"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1691"
charge=
"0.1174"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1692"
charge=
"-0.3548"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1693"
charge=
"0.0066"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1694"
charge=
"0.2029"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1695"
charge=
"-0.0484"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1696"
charge=
"0.0053"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1697"
charge=
"0.1958"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1698"
charge=
"-0.5215"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1699"
charge=
"0.1928"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1700"
charge=
"0.8185"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1701"
charge=
"-0.953"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1702"
charge=
"0.4234"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1703"
charge=
"-0.7584"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1704"
charge=
"0.7538"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1705"
charge=
"-0.6252"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1706"
charge=
"0.2022"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1707"
charge=
"0.0615"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1708"
charge=
"0.067"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1709"
charge=
"0.0972"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1710"
charge=
"-0.6139"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1711"
charge=
"0.4186"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1712"
charge=
"-0.6541"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1713"
charge=
"0.4376"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1714"
charge=
"1.1662"
radius=
"0.215"
gamma=
"-17.2301304"
/>
<Atom
type=
"1715"
charge=
"-0.776"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1716"
charge=
"-0.776"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1717"
charge=
"-0.4989"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1718"
charge=
"0.0558"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1719"
charge=
"0.0679"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1720"
charge=
"0.1065"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1721"
charge=
"0.1174"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1722"
charge=
"-0.3548"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1723"
charge=
"0.0191"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1724"
charge=
"0.2006"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1725"
charge=
"0.0492"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1726"
charge=
"0.1374"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1727"
charge=
"0.164"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1728"
charge=
"-0.5709"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1729"
charge=
"0.1744"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1730"
charge=
"0.477"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1731"
charge=
"-0.5597"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1732"
charge=
"-0.4787"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1733"
charge=
"0.3424"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1734"
charge=
"0.7657"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1735"
charge=
"-0.9672"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1736"
charge=
"0.4364"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1737"
charge=
"-0.6323"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1738"
charge=
"0.1222"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1739"
charge=
"0.2022"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1740"
charge=
"0.0615"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1741"
charge=
"0.067"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1742"
charge=
"0.0972"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1743"
charge=
"-0.6139"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1744"
charge=
"0.4186"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1745"
charge=
"-0.5246"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1746"
charge=
"1.1662"
radius=
"0.215"
gamma=
"-17.2301304"
/>
<Atom
type=
"1747"
charge=
"-0.776"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1748"
charge=
"-0.776"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1749"
charge=
"-0.4989"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1750"
charge=
"0.0558"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1751"
charge=
"0.0679"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1752"
charge=
"0.1065"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1753"
charge=
"0.1174"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1754"
charge=
"-0.3548"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1755"
charge=
"0.0191"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1756"
charge=
"0.2006"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1757"
charge=
"0.0492"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1758"
charge=
"0.1374"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1759"
charge=
"0.164"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1760"
charge=
"-0.5709"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1761"
charge=
"0.1744"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1762"
charge=
"0.477"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1763"
charge=
"-0.5597"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1764"
charge=
"-0.4787"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1765"
charge=
"0.3424"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1766"
charge=
"0.7657"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1767"
charge=
"-0.9672"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1768"
charge=
"0.4364"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1769"
charge=
"-0.6323"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1770"
charge=
"0.1222"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1771"
charge=
"0.2022"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1772"
charge=
"0.0615"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1773"
charge=
"0.067"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1774"
charge=
"0.0972"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1775"
charge=
"-0.6139"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1776"
charge=
"0.4186"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1777"
charge=
"-0.6541"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1778"
charge=
"0.4376"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1779"
charge=
"0.4295"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1780"
charge=
"-0.6223"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1781"
charge=
"0.0558"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1782"
charge=
"0.0679"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1783"
charge=
"0.1065"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1784"
charge=
"0.1174"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1785"
charge=
"-0.3548"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1786"
charge=
"0.0191"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1787"
charge=
"0.2006"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1788"
charge=
"0.0492"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1789"
charge=
"0.1374"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1790"
charge=
"0.164"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1791"
charge=
"-0.5709"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1792"
charge=
"0.1744"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1793"
charge=
"0.477"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1794"
charge=
"-0.5597"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1795"
charge=
"-0.4787"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1796"
charge=
"0.3424"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1797"
charge=
"0.7657"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1798"
charge=
"-0.9672"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1799"
charge=
"0.4364"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1800"
charge=
"-0.6323"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1801"
charge=
"0.1222"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1802"
charge=
"0.2022"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1803"
charge=
"0.0615"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1804"
charge=
"0.067"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1805"
charge=
"0.0972"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1806"
charge=
"-0.6139"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1807"
charge=
"0.4186"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1808"
charge=
"-0.5246"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1809"
charge=
"0.4295"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1810"
charge=
"-0.6223"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1811"
charge=
"0.0558"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1812"
charge=
"0.0679"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1813"
charge=
"0.1065"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1814"
charge=
"0.1174"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1815"
charge=
"-0.3548"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1816"
charge=
"0.0191"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1817"
charge=
"0.2006"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1818"
charge=
"0.0492"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1819"
charge=
"0.1374"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1820"
charge=
"0.164"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1821"
charge=
"-0.5709"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1822"
charge=
"0.1744"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1823"
charge=
"0.477"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1824"
charge=
"-0.5597"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1825"
charge=
"-0.4787"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1826"
charge=
"0.3424"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1827"
charge=
"0.7657"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1828"
charge=
"-0.9672"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1829"
charge=
"0.4364"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1830"
charge=
"-0.6323"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1831"
charge=
"0.1222"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1832"
charge=
"0.2022"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1833"
charge=
"0.0615"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1834"
charge=
"0.067"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1835"
charge=
"0.0972"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1836"
charge=
"-0.6139"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1837"
charge=
"0.4186"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1838"
charge=
"-0.6541"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1839"
charge=
"0.4376"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1840"
charge=
"1.1662"
radius=
"0.215"
gamma=
"-17.2301304"
/>
<Atom
type=
"1841"
charge=
"-0.776"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1842"
charge=
"-0.776"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1843"
charge=
"-0.4989"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1844"
charge=
"0.0558"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1845"
charge=
"0.0679"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1846"
charge=
"0.1065"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1847"
charge=
"0.1174"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1848"
charge=
"-0.3548"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1849"
charge=
"0.0674"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1850"
charge=
"0.1824"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1851"
charge=
"0.0418"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1852"
charge=
"-0.1126"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1853"
charge=
"0.2188"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1854"
charge=
"-0.3635"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1855"
charge=
"0.1811"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1856"
charge=
"0.5952"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1857"
charge=
"-0.5761"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1858"
charge=
"-0.3549"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1859"
charge=
"0.3154"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1860"
charge=
"0.4687"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1861"
charge=
"-0.5477"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1862"
charge=
"0.2022"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1863"
charge=
"0.0615"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1864"
charge=
"0.067"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1865"
charge=
"0.0972"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1866"
charge=
"-0.6139"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1867"
charge=
"0.4186"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1868"
charge=
"-0.5246"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1869"
charge=
"1.1662"
radius=
"0.215"
gamma=
"-17.2301304"
/>
<Atom
type=
"1870"
charge=
"-0.776"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1871"
charge=
"-0.776"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1872"
charge=
"-0.4989"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1873"
charge=
"0.0558"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1874"
charge=
"0.0679"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1875"
charge=
"0.1065"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1876"
charge=
"0.1174"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1877"
charge=
"-0.3548"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1878"
charge=
"0.0674"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1879"
charge=
"0.1824"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1880"
charge=
"0.0418"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1881"
charge=
"-0.1126"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1882"
charge=
"0.2188"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1883"
charge=
"-0.3635"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1884"
charge=
"0.1811"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1885"
charge=
"0.5952"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1886"
charge=
"-0.5761"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1887"
charge=
"-0.3549"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1888"
charge=
"0.3154"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1889"
charge=
"0.4687"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1890"
charge=
"-0.5477"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1891"
charge=
"0.2022"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1892"
charge=
"0.0615"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1893"
charge=
"0.067"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1894"
charge=
"0.0972"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1895"
charge=
"-0.6139"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1896"
charge=
"0.4186"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1897"
charge=
"-0.6541"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1898"
charge=
"0.4376"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1899"
charge=
"0.4295"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1900"
charge=
"-0.6223"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1901"
charge=
"0.0558"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1902"
charge=
"0.0679"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1903"
charge=
"0.1065"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1904"
charge=
"0.1174"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1905"
charge=
"-0.3548"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1906"
charge=
"0.0674"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1907"
charge=
"0.1824"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1908"
charge=
"0.0418"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1909"
charge=
"-0.1126"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1910"
charge=
"0.2188"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1911"
charge=
"-0.3635"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1912"
charge=
"0.1811"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1913"
charge=
"0.5952"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1914"
charge=
"-0.5761"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1915"
charge=
"-0.3549"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1916"
charge=
"0.3154"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1917"
charge=
"0.4687"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1918"
charge=
"-0.5477"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1919"
charge=
"0.2022"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1920"
charge=
"0.0615"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1921"
charge=
"0.067"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1922"
charge=
"0.0972"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1923"
charge=
"-0.6139"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1924"
charge=
"0.4186"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1925"
charge=
"-0.5246"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1926"
charge=
"0.4295"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1927"
charge=
"-0.6223"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1928"
charge=
"0.0558"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1929"
charge=
"0.0679"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1930"
charge=
"0.1065"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1931"
charge=
"0.1174"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1932"
charge=
"-0.3548"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1933"
charge=
"0.0674"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1934"
charge=
"0.1824"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1935"
charge=
"0.0418"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1936"
charge=
"-0.1126"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1937"
charge=
"0.2188"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1938"
charge=
"-0.3635"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1939"
charge=
"0.1811"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1940"
charge=
"0.5952"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1941"
charge=
"-0.5761"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1942"
charge=
"-0.3549"
radius=
"0.165"
gamma=
"-2.6204392"
/>
<Atom
type=
"1943"
charge=
"0.3154"
radius=
"0.125"
gamma=
"4.3768824"
/>
<Atom
type=
"1944"
charge=
"0.4687"
radius=
"0.2"
gamma=
"-0.5016616"
/>
<Atom
type=
"1945"
charge=
"-0.5477"
radius=
"0.14"
gamma=
"21.2158088"
/>
<Atom
type=
"1946"
charge=
"0.2022"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1947"
charge=
"0.0615"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1948"
charge=
"0.067"
radius=
"0.18"
gamma=
"-1.1978792"
/>
<Atom
type=
"1949"
charge=
"0.0972"
radius=
"0.125"
gamma=
"1.0196408"
/>
<Atom
type=
"1950"
charge=
"-0.6139"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1951"
charge=
"0.4186"
radius=
"0.1"
gamma=
"9.399356"
/>
<Atom
type=
"1952"
charge=
"-0.6541"
radius=
"0.135"
gamma=
"-2.8698056"
/>
<Atom
type=
"1953"
charge=
"0.4376"
radius=
"0.1"
gamma=
"9.399356"
/>
</GBVIForce>
</ForceField>
wrappers/python/simtk/openmm/app/forcefield.py
View file @
14e78600
...
...
@@ -1393,92 +1393,6 @@ class GBSAOBCGenerator:
parsers
[
"GBSAOBCForce"
]
=
GBSAOBCGenerator
.
parseElement
## @private
class
GBVIGenerator
:
"""A GBVIGenerator constructs a GBVIForce."""
def
__init__
(
self
,
ff
):
self
.
ff
=
ff
self
.
fixedParameters
=
{}
self
.
fixedParameters
[
'soluteDielectric'
]
=
1.0
self
.
fixedParameters
[
'solventDielectric'
]
=
78.3
self
.
fixedParameters
[
'scalingMethod'
]
=
1
self
.
fixedParameters
[
'quinticUpperBornRadiusLimit'
]
=
5.0
self
.
fixedParameters
[
'quinticLowerLimitFactor'
]
=
0.8
self
.
typeMap
=
{}
@
staticmethod
def
parseElement
(
element
,
ff
):
generator
=
GBVIGenerator
(
ff
)
for
key
in
generator
.
fixedParameters
.
iterkeys
():
if
(
key
in
element
.
attrib
):
generator
.
fixedParameters
[
key
]
=
float
(
element
.
attrib
[
key
])
ff
.
registerGenerator
(
generator
)
for
atom
in
element
.
findall
(
'Atom'
):
types
=
ff
.
_findAtomTypes
(
atom
.
attrib
,
1
)
if
None
not
in
types
:
values
=
(
float
(
atom
.
attrib
[
'charge'
]),
float
(
atom
.
attrib
[
'radius'
]),
float
(
atom
.
attrib
[
'gamma'
]))
for
t
in
types
[
0
]:
generator
.
typeMap
[
t
]
=
values
def
createForce
(
self
,
sys
,
data
,
nonbondedMethod
,
nonbondedCutoff
,
args
):
methodMap
=
{
NoCutoff
:
mm
.
NonbondedForce
.
NoCutoff
,
CutoffNonPeriodic
:
mm
.
NonbondedForce
.
CutoffNonPeriodic
,
CutoffPeriodic
:
mm
.
NonbondedForce
.
CutoffPeriodic
}
if
nonbondedMethod
not
in
methodMap
:
raise
ValueError
(
'Illegal nonbonded method for GB/VI Force'
)
# add particles
force
=
mm
.
GBVIForce
()
for
atom
in
data
.
atoms
:
t
=
data
.
atomType
[
atom
]
if
t
in
self
.
typeMap
:
values
=
self
.
typeMap
[
t
]
force
.
addParticle
(
values
[
0
],
values
[
1
],
values
[
2
])
else
:
raise
ValueError
(
'No GB/VI parameters defined for atom type '
+
t
)
# get HarmonicBond generator -- exit if not found
hbGenerator
=
0
for
generator
in
self
.
ff
.
_forces
:
if
(
generator
.
__class__
.
__name__
==
'HarmonicBondGenerator'
):
hbGenerator
=
generator
break
if
(
hbGenerator
==
0
):
raise
ValueError
(
'HarmonicBondGenerator not found.'
)
# add bonds
for
bond
in
data
.
bonds
:
type1
=
data
.
atomType
[
data
.
atoms
[
bond
.
atom1
]]
type2
=
data
.
atomType
[
data
.
atoms
[
bond
.
atom2
]]
for
i
in
range
(
len
(
hbGenerator
.
types1
)):
types1
=
hbGenerator
.
types1
[
i
]
types2
=
hbGenerator
.
types2
[
i
]
if
(
type1
in
types1
and
type2
in
types2
)
or
(
type1
in
types2
and
type2
in
types1
):
#bond.length = hbGenerator.length[i]
force
.
addBond
(
bond
.
atom1
,
bond
.
atom2
,
hbGenerator
.
length
[
i
])
force
.
setNonbondedMethod
(
methodMap
[
nonbondedMethod
])
force
.
setCutoffDistance
(
nonbondedCutoff
)
force
.
setSolventDielectric
(
self
.
fixedParameters
[
'solventDielectric'
])
force
.
setSoluteDielectric
(
self
.
fixedParameters
[
'soluteDielectric'
])
force
.
setBornRadiusScalingMethod
(
self
.
fixedParameters
[
'scalingMethod'
])
force
.
setQuinticLowerLimitFactor
(
self
.
fixedParameters
[
'quinticLowerLimitFactor'
])
force
.
setQuinticUpperBornRadiusLimit
(
self
.
fixedParameters
[
'quinticUpperBornRadiusLimit'
])
sys
.
addForce
(
force
)
parsers
[
"GBVIForce"
]
=
GBVIGenerator
.
parseElement
## @private
class
CustomBondGenerator
:
"""A CustomBondGenerator constructs a CustomBondForce."""
...
...
wrappers/python/simtk/openmm/app/internal/amber_file_parser.py
View file @
14e78600
...
...
@@ -674,7 +674,7 @@ def readAmberSystem(topology, prmtop_filename=None, prmtop_loader=None, shake=No
OPTIONAL ARGUMENTS
shake (String) - if 'h-bonds', will SHAKE all bonds to hydrogen and water; if 'all-bonds', will SHAKE all bonds and water (default: None)
gbmodel (String) - if 'OBC', OBC GBSA will be
used; if 'GBVI', GB/VI will be
used (default: None)
gbmodel (String) - if 'OBC', OBC GBSA will be used (default: None)
soluteDielectric (float) - The solute dielectric constant to use in the implicit solvent model (default: 1.0)
solventDielectric (float) - The solvent dielectric constant to use in the implicit solvent model (default: 78.5)
implicitSolventKappa (float) - The Debye screening parameter corresponding to implicit solvent ionic strength
...
...
@@ -1097,8 +1097,6 @@ def readAmberSystem(topology, prmtop_filename=None, prmtop_loader=None, shake=No
# created above. Do not bind force to another name before this!
force
.
setReactionFieldDielectric
(
1.0
)
# TODO: Add GBVI terms?
return
system
#=============================================================================================
...
...
wrappers/python/src/swig_doxygen/swigInputConfig.py
View file @
14e78600
...
...
@@ -43,7 +43,6 @@ SKIP_METHODS = [('State',),
(
'CalcCustomTorsionForceKernel'
,),
(
'CalcForcesAndEnergyKernel'
,),
(
'CalcGBSAOBCForceKernel'
,),
(
'CalcGBVIForceKernel'
,),
(
'CalcHarmonicAngleForceKernel'
,),
(
'CalcHarmonicBondForceKernel'
,),
(
'CalcKineticEnergyKernel'
,),
...
...
@@ -393,14 +392,6 @@ UNITS = {
:
(
None
,
(
'unit.elementary_charge'
,
'unit.nanometer'
,
None
)),
(
"GBSAOBCForce"
,
"getSurfaceAreaEnergy"
)
:
(
'unit.kilojoule_per_mole/unit.nanometer/unit.nanometer'
,
()),
(
"GBVIForce"
,
"getBornRadiusScalingMethod"
)
:
(
None
,
()),
(
"GBVIForce"
,
"getQuinticLowerLimitFactor"
)
:
(
None
,
()),
(
"GBVIForce"
,
"getQuinticUpperBornRadiusLimit"
)
:
(
'unit.nanometer'
,
()),
(
"GBVIForce"
,
"getBondParameters"
)
:
(
None
,
(
None
,
None
,
'unit.nanometer'
)),
(
"GBVIForce"
,
"getParticleParameters"
)
:
(
None
,
(
'unit.elementary_charge'
,
'unit.nanometer'
,
'unit.kilojoule_per_mole'
)),
(
"HarmonicAngleForce"
,
"getAngleParameters"
)
:
(
None
,
(
None
,
None
,
None
,
'unit.radian'
,
'unit.kilojoule_per_mole/(unit.radian*unit.radian)'
)),
...
...
Prev
1
2
Next
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment